/* Intro slide */
.intro-slide {
  min-height: 70vh;
  background: linear-gradient(0deg, rgb(0 0 0 / 55%), rgb(0 0 0 / 55%)),
    url(../.././img/Background.jpg);
  background-size: cover;
  color: white;
  background-position-y: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-content a {
    color: white;
    padding: 2rem 0;
}

.slide-content h2 {
  font-size: 4rem;
  font-weight: normal;
  margin-top: 0;
}

/* Company contact */
.company-contacts {
  background-color: #404041;
  color: white;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

@media only screen and (max-width: 600px) {
  .company-contacts {
    display: none;
  }
}

/* Google reviews */
.google-reviews {
  background-color: #404041;
  color: white;
  text-align: center;
  padding: 10rem 0;
  font-size: 2.2rem;
}

img.google-logo {
  height: 3rem;
}

.author-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.review-content {
  max-width: 60rem;
  margin: 3rem auto 1rem;
  line-height: 2;
}

/* Services */
.company-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  color: white;
}

.service-box {
  padding: 10rem 1rem;
  text-align: center;
}

.service-box.box-1 {
  background: linear-gradient(0deg, rgb(18 18 18 / 76%), rgb(60 60 60 / 65%)),
    url(../.././img/Installation.jpg);
  background-position: center;
  background-size: cover;
}
.service-box.box-2 {
  background: linear-gradient(0deg, rgb(18 18 18 / 76%), rgb(60 60 60 / 65%)),
    url(../.././img/Repair.jpg);
  background-position: center;
  background-size: cover;
}
.service-box.box-3 {
  background: linear-gradient(0deg, rgb(18 18 18 / 76%), rgb(60 60 60 / 65%)),
    url(../.././img/Replacement.jpg);
  background-position: center;
  background-size: cover;
}

.company-services h3 {
  font-size: 2.5rem;
  margin: 0 auto 1rem;
}

/* About us */
section.about-us {
  max-width: 90rem;
  margin: 0 auto;
  line-height: 2;
  font-size: 2.2rem;
  padding: 12rem 0;
}

.about-us h1 {
  color: var(--theme-color);
  margin-top: 0;
  font-size: 5rem;
  text-align: center;
  font-weight: normal;
}

/* Parallax */
.parallax-item {
  background: linear-gradient(0deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 70%)),
    url(../.././img/Our\ Services.jpg);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  color: white;
  font-size: 2.2rem;
  line-height: 2;
}

.parallax-item .content-wrapper {
  max-width: 90rem;
  margin: 0 auto;
  padding: 7rem 0 12rem;
}

.parallax-section h2 {
  margin-top: 0;
  color: white;
}

/* Get free eastimate */
.get-estimate {
  display: grid;
  grid-template-columns: 6fr 10fr;
}

@media only screen and (max-width: 768px) {
  .get-estimate {
    display: unset;
  }
}

.estimate-form form {
  margin: 0 auto;
}

.estimate-form .title {
  text-align: center;
}

.get-estimate .background-image {
  background: linear-gradient(0deg, rgb(0 0 0 / 10%), rgb(0 0 0 / 10%)),
    url(../.././img/Free\ Estimate.jpg);
  background-position: center;
  background-size: cover;
  min-height: 55vh;
}

.get-estimate .content {
  max-width: 70rem;
  margin: auto;
  line-height: 2;
  font-size: 2.2rem;
}

.get-estimate h2 {
  color: var(--theme-color);
  text-align: center;
}

/* Eastimate form and map */
.estimate-form {
  display: grid;
  grid-template-columns: 6fr 10fr;
}

@media only screen and (max-width: 768px) {
  .estimate-form {
    display: unset;
  }
}

@media only screen and (min-width: 768px) {
  .estimate-form .form-wrapper {
    padding: 4rem;
  }
}

.map iframe {
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  min-height: 50rem;
}
