@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap");
body {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
}

.h0 {
  font-size: 3.981rem;
  font-weight: 300;
  line-height: 1.3;
}
@media screen and (min-width: 48rem) {
  .h0 {
    font-size: calc(1.4020833333vw + 3.308rem);
  }
}
@media screen and (min-width: 192rem) {
  .h0 {
    font-size: 6rem;
  }
}

.h1 {
  font-size: 3.318rem;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (min-width: 48rem) {
  .h1 {
    font-size: calc(1.0868055556vw + 2.7963333333rem);
  }
}
@media screen and (min-width: 192rem) {
  .h1 {
    font-size: 4.883rem;
  }
}

.h2 {
  font-size: 2.765rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (min-width: 48rem) {
  .h2 {
    font-size: calc(0.7923611111vw + 2.3846666667rem);
  }
}
@media screen and (min-width: 192rem) {
  .h2 {
    font-size: 3.906rem;
  }
}

.h3 {
  font-size: 2.304rem;
  font-weight: 800;
  line-height: 1.7;
}
@media screen and (min-width: 48rem) {
  .h3 {
    font-size: calc(0.5701388889vw + 2.0303333333rem);
  }
}
@media screen and (min-width: 192rem) {
  .h3 {
    font-size: 3.125rem;
  }
}

.h4 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.7;
}
@media screen and (min-width: 48rem) {
  .h4 {
    font-size: calc(0.4861111111vw + 1.5666666667rem);
  }
}
@media screen and (min-width: 192rem) {
  .h4 {
    font-size: 2.5rem;
  }
}

.para {
  font-size: 1.6rem !important;
}

p {
  margin-bottom: 3rem;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 64em) {
  html {
    font-size: 56.25%;
  }
}
@media screen and (max-width: 50em) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 25em) {
  html {
    font-size: 43.75%;
  }
}

body {
  box-sizing: border-box;
}

::-moz-selection {
  background-color: #0092ee;
  color: #000;
}

::selection {
  background-color: #0092ee;
  color: #000;
}

.bold {
  font-weight: 700;
}

.normal {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.uppercase {
  text-transform: uppercase;
}

.color-gray-darker {
  color: #747474;
}

.color-primary {
  color: #0092ee;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  align-items: stretch;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 66.75em) {
  .nav--active .nav__background {
    transform: scaleX(1);
  }
  .nav--active .nav__line {
    background-color: transparent;
  }
  .nav--active .nav__line::before {
    transform: translateY(0) rotate(45deg);
  }
  .nav--active .nav__line::after {
    transform: translateY(0) rotate(-45deg);
  }
  .nav--active .nav__list {
    opacity: 1;
    pointer-events: initial;
  }
  .nav--active .nav__list-item--resp {
    display: block;
  }
}
.nav__logo-wrapper {
  min-width: 35rem;
  background-color: #fff;
  position: relative;
}
.nav__logo-wrapper-inner {
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10.4rem;
  text-align: center;
  padding: 1rem;
  transition: background-color 0.3s;
}
.nav__logo-wrapper-inner:hover {
  background-color: white;
}
.nav__logo {
  display: inline-block;
  height: 100%;
}
.nav__background {
  display: none;
}
@media screen and (max-width: 66.75em) {
  .nav__background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    display: block;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s;
  }
}
.nav__hamburger {
  height: 8rem;
  width: 8rem;
  outline: none;
  background-color: #0092ee;
  border: none;
  padding: 2rem;
  display: none;
}
@media screen and (max-width: 66.75em) {
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    position: relative;
    z-index: 5;
  }
}
.nav__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  position: relative;
  transition: background-color 0.3s;
}
.nav__line::before,
.nav__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #000;
  transition: transform 0.3s;
}
.nav__line::before {
  transform: translateY(-400%) rotate(0);
}
.nav__line::after {
  transform: translateY(400%) rotate(0);
}
.nav__list {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 66.75em) {
  .nav__list {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 3;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s;
  }
}
.nav__resp-logo {
  display: block;
  height: 6rem;
}
.nav__list-item--resp {
  display: none;
}
.nav__link {
  text-decoration: none;
  display: inline-block;
  color: #000;
  padding: 2rem 2.5rem;
  transition: color 0.3s;
}
.nav__link:hover {
  color: #0092ee;
}
.nav__link--active {
  color: #0092ee;
}

.footer {
  background-color: #fff;
  color: #000;
}
.footer__wrapper {
  width: 100%;
  max-width: 164.5rem;
  margin: 0 auto;
  padding: 5rem 5vw 3rem;
}
@media screen and (max-width: 72.5em) {
  .footer__wrapper {
    max-width: 60rem;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: 25rem repeat(2, 1fr);
  grid-gap: 5rem;
}
@media screen and (max-width: 88.4375em) {
  .footer__grid {
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 72.5em) {
  .footer__grid {
    grid-template-columns: 1fr;
    grid-gap: 5rem;
  }
}
.footer__logo {
  display: block;
  width: 24rem;
}
.footer__list {
  list-style: none;
}
.footer__list--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.footer__list-item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.footer__link {
  color: #000;
  transition: color 0.3s;
}
.footer__link:hover {
  color: #0092ee;
}
.footer__copyright {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #747474;
}
.footer__copyright p {
  margin-bottom: 0;
}
.footer__dev {
  text-align: center;
}
.footer__dev p {
  margin-bottom: 0;
}
.footer .whatsapp__img {
  position: fixed;
  width: 6rem;
  height: 6rem;
  bottom: 4rem;
  right: 4rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 3rem;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: transform 0.3s;
}
.footer .whatsapp__img:hover {
  transform: scale(1.1);
}

.link {
  color: #0092ee;
  font-weight: bold;
  transition: color 0.3s;
}
.link:hover {
  color: #0063a2;
}

.btn {
  display: inline-block;
  border: none;
  background: none;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  padding: 1rem 5rem;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 8px;
}
.btn--primary {
  background-color: #0092ee;
  color: #fff;
  transition: background-color 0.3s;
}
.btn--primary:hover {
  background-color: #0073bb;
}
.btn--ghost {
  padding: 0.7rem 5rem;
  border: 3px solid #0092ee;
  color: #0092ee;
  transition: background-color 0.3s, color 0.3s;
}
.btn--ghost:hover {
  background-color: #0092ee;
  color: #000;
}

.input__label {
  display: block;
}
.input__control {
  display: block;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
  padding: 1rem 0;
  border-bottom: 5px solid #d9d9d9;
  transition: background-color 0.3s, border-bottom-color 0.3s;
}
.input__control:hover {
  background-color: #fbfbfb;
}
.input__control:focus {
  background-color: #f3f3f3;
  border-bottom-color: #0092ee;
}

.line {
  display: block;
  background-color: #0092ee;
}
.line--vertical {
  width: 3px;
  height: 5rem;
}
.line--horizontal {
  height: 3px;
  width: 100%;
  max-width: 16rem;
}

.hero {
  position: relative;
  padding-bottom: 3rem;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.7)
    ),
    url("../img/header-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 3rem 5rem;
}
.hero__wrapper {
  color: #000;
  width: 100%;
  max-width: 109rem;
  text-align: center;
}
.hero__logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.hero__logo {
  display: block;
  width: 50rem;
  height: auto;
}
.hero__content-wrapper {
  margin-bottom: 7rem;
}
.hero__stats-list {
  width: 100%;
  max-width: 74.3rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: end;
}
.hero__stats-item {
  text-align: center;
}
.hero__stat-icon {
  display: inline-block;
  height: 4rem;
  width: auto;
  background-color: #0092ee;
  padding: 0.8rem;
  border-radius: 1rem;
}
.hero__stat {
  text-align: center;
}
.hero__btns-wrapper {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 2px solid #0092ee;
}
@media screen and (max-width: 35em) {
  .hero__btns-wrapper .btn {
    display: block;
    width: 100%;
  }
}
.hero__btns-wrapper .btn:first-child {
  margin-right: 1rem;
}
@media screen and (max-width: 35em) {
  .hero__btns-wrapper .btn:first-child {
    margin-right: unset;
    margin-bottom: 2rem;
  }
}
.hero__arrow-icon {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.why {
  padding: 8rem 5vw;
}
.why__header {
  text-align: center;
  padding-bottom: 3rem;
  position: relative;
  margin-bottom: 7rem;
}
.why__header p {
  margin-bottom: 0;
}
.why__header-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.why__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.6rem;
}
@media screen and (max-width: 81.25em) {
  .why__cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 34.375em) {
  .why__cards-grid {
    grid-template-columns: 1fr;
  }
}
.why__card {
  padding: 2.4rem 2.4rem;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.why__card-img {
  display: inline-block;
  width: 100%;
  height: 22.6rem;
  margin-bottom: 4.4rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.why__btn-wrapper {
  margin-top: 5rem;
  text-align: center;
}

.placeholder__img {
  display: block;
  width: 100%;
  height: 58.4rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.works {
  padding: 8rem 5vw;
}
.works__header {
  text-align: center;
  padding-bottom: 3rem;
  position: relative;
  margin-bottom: 7rem;
}
.works__header p {
  margin-bottom: 0;
}
.works__header-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.works__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8vw;
}
@media screen and (max-width: 74.5em) {
  .works__cards-grid {
    grid-gap: 3rem;
  }
}
@media screen and (max-width: 56.25em) {
  .works__cards-grid {
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 51.875em) {
  .works__cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 34.375em) {
  .works__cards-grid {
    grid-template-columns: 1fr;
  }
}
.works__card {
  padding: 2.4rem 2.4rem;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 51.875em) {
  .works__card:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 34.375em) {
  .works__card:nth-child(3) {
    grid-column: unset;
    grid-row: unset;
  }
}
.works__card-img {
  display: inline-block;
  width: 100%;
  height: 22.6rem;
  margin-bottom: 4.4rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.works__card-title {
  margin-bottom: 1rem;
  border-bottom: 1px solid #d9d9d9;
}
.works__card-count {
  font-size: 4rem;
  font-weight: 300;
}

.service-cta {
  padding: 12rem 5vw;
  margin: 2rem;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0.75)
    ),
    url("../img/header-services.jpg");
  background-size: cover;
  background-position: center;
}
.service-cta__wrapper {
  color: #000;
  text-align: center;
  width: 100%;
  max-width: 81.2rem;
  margin: 0 auto;
}
.service-cta__line {
  margin: 0 auto 3rem;
}
.services__header {
  height: 100%;
  min-height: 52vh;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/header-services.jpg");
  background-size: cover;
  background-position: center;
}
.services__header-wrapper {
  width: 100%;
  max-width: 164rem;
}
.services__header-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}
.services__header-icon {
  display: block;
  height: 2rem;
  margin-left: 1rem;
}

.service {
  margin: 2rem;
  background-color: #000;
  color: #fff;
}
.service__img {
  display: block;
  height: 42rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.service__header {
  padding: 3rem 0;
  max-width: 164rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  grid-gap: 3rem;
  padding: 3rem 2rem;
}
.service__header::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #0092ee;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.6rem;
  max-width: 164rem;
  margin: 0 auto;
  padding: 0 2rem 7rem;
}
@media screen and (max-width: 53.125em) {
  .service__grid {
    grid-template-columns: 1fr;
  }
}
.service__grid-img-wrapper {
  margin-bottom: 3rem;
}
.service__grid-img {
  display: block;
  height: 35rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 68.75em) {
  .service__grid-img {
    height: 30rem;
  }
}
@media screen and (max-width: 53.125em) {
  .service__grid-img {
    height: 25rem;
  }
}
.service__grid-content-wrapper {
  padding-right: 3rem;
}

.contact-cta {
  padding: 11rem 5vw;
  margin: 2rem;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url("../img/cta-contact.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.contact-cta__wrapper {
  width: 100%;
  max-width: 163.9rem;
  margin: 0 auto;
  text-align: center;
  color: #000;
}
.contact-cta__btn-wrapper {
  position: relative;
  padding-top: 4rem;
}
.contact-cta__btn-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2rem;
  width: 3px;
  background-color: #0092ee;
}
.contact {
  max-width: 108rem;
  width: 100%;
  margin: 10rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5rem;
}
.contact p {
  margin-bottom: 0;
}
@media screen and (max-width: 75.625em) {
  .contact {
    padding: 0 5vw;
  }
}
@media screen and (max-width: 45.625em) {
  .contact {
    grid-template-columns: 1fr;
  }
}
.contact__header {
  height: 100%;
  min-height: 52vh;
  position: relative;
  padding: 3rem 5vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/header-contact.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.contact__header-wrapper {
  width: 100%;
  max-width: 108rem;
  margin: 0 auto;
}
.contact__header-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.contact__header-content {
  margin-top: 2rem;
}
.contact__header-img {
  margin-left: 3rem;
  display: block;
  height: 2rem;
}
.contact__details-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact__detail {
  text-align: left;
  margin-bottom: 3rem;
}
.contact__info {
  list-style-type: disc;
  lighting-color: #0092ee;
}
.contact__social-header {
  margin-bottom: 1rem;
}
.contact__social-icon-wrapper {
  display: inline-block;
  transition: transform 0.3s;
}
.contact__social-icon-wrapper:hover {
  transform: translateY(-1rem);
}
.contact__social-icon {
  pointer-events: none;
  display: block;
  width: 4rem;
}
.contact__form {
  width: 100%;
  margin: 0 auto;
}
.contact__grid-wrapper {
  max-width: 150rem;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(1fr);
  grid-column-gap: 10rem;
  grid-row-gap: 5rem;
}
.contact__grid-heading {
  display: grid;
  grid-template-columns: max-content auto;
  grid-column-gap: 3rem;
  align-items: center;
  margin: 5rem 0;
}
.contact__grid-headingline {
  background-color: #0092ee;
  height: 0.3rem;
  width: 100%;
}
.contact__btn-wrapper {
  margin-top: 8rem;
  text-align: right;
}
@media screen and (max-width: 22.5em) {
  .contact__btn-wrapper .btn {
    width: 100%;
  }
}

.projects-cta {
  padding: 18rem 5vw;
  margin: 2rem;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url("../img/cta-projects.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.projects-cta__wrapper {
  width: 100%;
  max-width: 106.8rem;
  margin: 0 auto;
  text-align: center;
}
.projects-cta__btn-wrapper {
  position: relative;
  padding-top: 4rem;
}
.projects-cta__btn-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4rem;
  width: 3px;
  background-color: #0092ee;
}
.projects-cta__btn {
  margin-top: 3rem;
}

.about__header {
  height: 100%;
  min-height: 45vh;
  position: relative;
  padding: 3rem 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/header-about.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.about__header-wrapper {
  width: 100%;
  max-width: 135rem;
  margin: 0 auto;
}
.about__header-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.about__header-content {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
}
.about__header-img {
  margin-left: 3rem;
  display: block;
  height: 2rem;
}

.vision {
  margin: 5rem 0;
}
.vision__content-wrapper {
  width: 100%;
  max-width: 135rem;
  margin: 0 auto;
}
@media screen and (max-width: 85em) {
  .vision__content-wrapper {
    padding: 0 2rem;
  }
}
.vision__header-wrapper {
  padding: 1rem;
}
.vision__heading-content {
  width: 100%;
  max-width: 80%;
  margin: 3rem 0;
}
@media screen and (max-width: 35em) {
  .vision__heading-content {
    max-width: unset;
  }
}
.vision__img-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 45rem 30rem;
  grid-gap: 1.8rem;
}
.vision__img-fw {
  grid-column: 1/3;
  grid-row: 1/2;
}
.vision__line {
  display: block;
  background-color: #d9d9d9;
  height: 0.2rem;
  width: 100%;
  max-width: 85%;
  margin: 5rem auto;
}
.vision__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.values {
  margin: 2rem;
}
.values__header-wrapper {
  height: 100%;
  min-height: 50vh;
  position: relative;
  padding: 3rem 5vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/header-values.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.values__heading {
  width: 100%;
  max-width: 135rem;
  margin: 0 auto;
}
.values__grid {
  width: 100%;
  max-width: 135rem;
  padding: 3rem 0;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 85em) {
  .values__grid {
    padding: 0 2rem;
    grid-column-gap: 3rem;
  }
}
@media screen and (max-width: 32.5em) {
  .values__grid {
    grid-template-columns: 1fr;
  }
}

.value {
  padding: 0 2rem;
  border-left: solid 1rem #0092ee;
}
@media screen and (max-width: 85em) {
  .value {
    padding: 0 0 0 2rem;
  }
}
.value__wrapper {
  max-width: 80%;
}
@media screen and (max-width: 85em) {
  .value__wrapper {
    max-width: unset;
  }
}

.covenants {
  margin: 2rem;
  background-color: #000;
  color: #fff;
}
.covenants__header-wrapper {
  height: 100%;
  min-height: 50vh;
  position: relative;
  padding: 3rem 5vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/header-covenants.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.covenants__heading {
  width: 100%;
  max-width: 135rem;
  margin: 0 auto;
}
.covenants__grid {
  width: 100%;
  max-width: 135rem;
  padding: 3rem 0;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 85em) {
  .covenants__grid {
    padding: 0 2rem;
    grid-column-gap: 3rem;
  }
}
@media screen and (max-width: 32.5em) {
  .covenants__grid {
    grid-template-columns: 1fr;
  }
}
.covenants__line {
  grid-column: 1/3;
  background-color: #d9d9d9;
  height: 0.1rem;
  width: 75%;
  align-self: center;
  justify-self: center;
}
@media screen and (max-width: 32.5em) {
  .covenants__line {
    grid-column: unset;
  }
}

.covenant {
  padding: 0 2rem;
  border-left: solid 1rem #0092ee;
}
@media screen and (max-width: 85em) {
  .covenant {
    padding: 0 0 0 2rem;
  }
}
.covenant-fw {
  grid-column: 1/3;
}
@media screen and (max-width: 32.5em) {
  .covenant-fw {
    grid-column: unset;
  }
}
.covenant__wrapper {
  max-width: 80%;
}
@media screen and (max-width: 85em) {
  .covenant__wrapper {
    max-width: unset;
  }
}

.jobs {
  width: 100%;
  max-width: 80rem;
  text-align: center;
  padding: 3rem 0;
  margin: 3rem auto;
}
@media screen and (max-width: 53.125em) {
  .jobs {
    padding: 0 2rem;
    grid-column-gap: 3rem;
  }
}
.jobs__header-wrapper {
  margin: 3rem 0;
  position: relative;
  padding-bottom: 2rem;
}
.jobs__header-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 0.3rem;
  background-color: #0092ee;
  width: 15rem;
  text-align: center;
}

.career__header {
  height: 100%;
  min-height: 52vh;
  position: relative;
  padding: 3rem 5vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/header-career.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
@media screen and (max-width: 75em) {
  .career__header {
    padding: 3rem 5vw;
  }
}
.career__header-wrapper {
  width: 100%;
  max-width: 109.2rem;
  margin: 0 auto;
}
.career__header-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.career__header-content {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
}
.career__header-img {
  margin-left: 3rem;
  display: block;
  height: 2rem;
}
.career__form {
  width: 100%;
  max-width: 109rem;
  margin: 0 auto;
  padding: 10rem 0;
}
@media screen and (max-width: 75em) {
  .career__form {
    padding: 5rem 5vw;
    margin: unset;
  }
}
.career__grid-wrapper {
  max-width: 150rem;
}
.career__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10rem;
  grid-row-gap: 5rem;
  align-items: end;
}
@media screen and (max-width: 46.875em) {
  .career__grid {
    grid-column-gap: 5rem;
  }
}
@media screen and (max-width: 35em) {
  .career__grid {
    grid-template-columns: 1fr;
  }
}
.career__grid-heading {
  display: grid;
  grid-template-columns: max-content auto;
  grid-column-gap: 3rem;
  align-items: center;
  margin: 5rem 0;
}
.career__grid-headingline {
  background-color: #0092ee;
  height: 0.3rem;
  width: 100%;
}
.career__btn-wrapper {
  margin-top: 8rem;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 27.5em) {
  .career__btn-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.career__file-btn {
  display: none;
}
.career__btn {
  display: block;
  text-align: center;
}
.career__file-wrapper {
  margin-right: 3rem;
}
@media screen and (max-width: 27.5em) {
  .career__file-wrapper {
    margin-right: unset;
    margin-bottom: 2rem;
  }
}

.professional__heading {
  margin-top: 10rem;
}

.cost__header {
  color: #fff;
}
.cost__header-img {
  height: 100%;
  min-height: 35vh;
  position: relative;
  padding: 3rem 5vw;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/header-cost-estimator.jpg");
  background-size: cover;
  background-position: center;
}
.cost__header-heading {
  background-color: #000;
  padding: 1rem 0;
}
.cost__heading {
  max-width: 109rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 76.5625em) {
  .cost__heading {
    padding: 0 5vw;
  }
}
.cost__form {
  width: 100%;
  max-width: 109rem;
  margin: 0 auto;
  padding: 10rem 0;
}
@media screen and (max-width: 76.5625em) {
  .cost__form {
    padding: 10rem 5vw;
  }
}
.cost__grid-wrapper {
  max-width: 150rem;
}
.cost__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10rem;
  grid-row-gap: 5rem;
}
@media screen and (max-width: 76.5625em) {
  .cost__grid {
    grid-template-columns: 1fr;
  }
}
.cost__btn-wrapper {
  margin-top: 5rem;
  text-align: right;
}
@media screen and (max-width: 22.5em) {
  .cost__btn-wrapper .btn {
    width: 100%;
  }
}

.estimates {
  background-color: #fbfbfb;
}
.estimates__header {
  padding: 3rem;
  background-color: #000;
  color: #fff;
  text-align: center;
}
.estimates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5rem;
  padding: 5rem 5vw;
}
@media screen and (max-width: 72.8125em) {
  .estimates__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 41.5625em) {
  .estimates__grid {
    grid-template-columns: 1fr;
  }
}

.estimate {
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.estimate p {
  margin-bottom: 0;
}
.estimate__header {
  background-color: #0092ee;
  padding: 1rem 3rem;
}
.estimate__heading {
  font-size: 1.8rem;
}
.estimate__content-wrapper {
  padding: 2rem 3rem;
}
.estimate__single {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.estimate__single:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 1rem;
}
.estimate__single--total {
  font-size: 2.2rem;
}
.estimate__info-wrapper {
  font-size: 1.6rem;
}
.estimate__info-sample {
  color: #747474;
}
.types {
  margin: 2rem;
  background-color: #000;
  color: #fff;
}
.types__header {
  height: 100%;
  min-height: 52vh;
  position: relative;
  padding: 3rem 5vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/header-projects.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.types__header-wrapper {
  width: 100%;
  max-width: 164rem;
  margin: 0 auto;
}
.types__header-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.types__header-content {
  margin-top: 2rem;
}
.types__header-img {
  display: block;
  height: 2rem;
  margin-left: 3rem;
}
.types__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
  padding: 3rem 0;
  width: 100%;
  max-width: 164rem;
  margin: 0 auto;
}
@media screen and (max-width: 109.375em) {
  .types__grid {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 51.875em) {
  .types__grid {
    grid-template-columns: 1fr;
  }
}

.type__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  text-decoration: none;
}
.type__img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}

.faqs__header {
  height: 100%;
  min-height: 35vh;
  position: relative;
  padding: 3rem 5vw;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/header-faqs.jpg");
  background-size: cover;
  background-position: center 83%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faqs__heading-wrapper {
  width: 100%;
  max-width: 142rem;
  margin: 0 auto;
  color: #fff;
}
.faqs__container {
  width: 100%;
  max-width: 142rem;
  margin: 5rem auto;
}
@media screen and (max-width: 99.375em) {
  .faqs__container {
    padding: 0 5vw;
  }
}
.faqs__single {
  padding: 3rem 0;
  border-bottom: 2px solid #d9d9d9;
}
.faqs__question {
  margin-bottom: 1rem;
} /*# sourceMappingURL=main.css.map */
