@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  border: none;
  list-style: none;
}

@-webkit-keyframes icon {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes icon {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

body {
  min-height: 100vh;
}

body.-lock {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  max-width: 1210px;
  padding: 0 20px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 20;
  background-color: #08454a;
  padding: 0 20px;
  border-bottom: 1px solid #ffffff;
}

.header .container {
  max-width: 1170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1024px) {
  .header .container {
    max-width: 984px;
  }
}

@media (max-width: 767px) {
  .header .container {
    border-bottom: none;
  }
}

.header__logo {
  width: 140px;
  overflow: hidden;
  display: block;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .header__logo {
    width: 100px;
    padding: 0;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__nav {
  list-style: none;
  width: 100%;
  min-width: 134px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .header__nav {
    min-width: 112px;
  }
}

.header__nav a {
  text-decoration: none;
  padding: 53px 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  position: relative;
}

@media (max-width: 1024px) {
  .header__nav a {
    font-size: 12px;
    line-height: 14px;
    padding: 43px 0;
  }
}

.header__nav a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.header__nav a:hover::after {
  width: 100%;
}

.header__nav a:active::after {
  background-color: #e6b656;
}

.header__nav a:active {
  color: #e6b656;
}

.burger {
  display: none;
}

@media (max-width: 767px) {
  .burger {
    display: block;
    position: fixed;
    top: 44px;
    right: 47px;
    z-index: 30;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    cursor: pointer;
  }
}

.burger__lines {
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 110;
}

.burger__lines::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  top: -7.5px;
  z-index: 110;
}

.burger__lines::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  top: 7.5px;
  z-index: 110;
}

.burger._active .burger__lines {
  background-color: transparent;
}

.burger._active .burger__lines::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #000000;
}

.burger._active .burger__lines::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #000000;
}

.burger__nav {
  padding: 102px 20px 0 20px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: transparent;
  -webkit-transition: left 0.4s linear;
  transition: left 0.4s linear;
  text-align: center;
}

.burger__nav._active {
  left: 0;
  z-index: 90;
  background-image: url("../media/banner.jpg");
  background-repeat: no-repeat;
  background-position: 25%;
  background-size: cover;
  background-color: #08454a;
  background-blend-mode: multiply;
}

.burger__link {
  display: block;
  padding: 25px 0;
  font-size: 18px;
  line-height: 21px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
}

.burger__link:active {
  color: #e6b656;
}

.banner {
  padding: 250px 0 120px;
  background-image: url("../media/banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100vh;
}

.banner .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .banner {
    padding: 257px 0 126px;
  }
}

@media (max-width: 767px) {
  .banner {
    padding: 200px 0 52px;
    background-position: 25% 75%;
  }
}

.banner::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #08454a;
  opacity: 0.9;
}

.banner__block {
  max-width: 600px;
  margin-left: auto;
}

.banner__title {
  font-size: 60px;
  line-height: 75px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: right;
  color: #ffffff;
  margin-bottom: 31.43px;
}

@media (max-width: 1024px) {
  .banner__title {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 61.86px;
  }
}

@media (max-width: 767px) {
  .banner__title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 32.71px;
  }
}

.banner__title.-none {
  opacity: 0;
}

.banner__text {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  text-align: right;
  color: #f4dcac;
  margin-bottom: 82px;
}

@media (max-width: 1024px) {
  .banner__text {
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    text-align: right;
    margin-bottom: 90.57px;
  }
}

@media (max-width: 767px) {
  .banner__text {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    text-align: right;
    margin-bottom: 51px;
  }
}

.banner__text.-none {
  opacity: 0;
}

.banner__button {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  font-weight: 900;
  display: block;
  background-color: #e6b656;
  padding: 26px;
  max-width: 370px;
  width: 100%;
  text-transform: uppercase;
  color: #08454a;
  text-align: center;
  margin: 0 0 0 auto;
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-box-shadow: 0 16px 16px 0 #08454a;
          box-shadow: 0 16px 16px 0 #08454a;
}

@media (max-width: 1024px) {
  .banner__button {
    max-width: 314px;
  }
}

@media (max-width: 767px) {
  .banner__button {
    max-width: 100%;
    padding: 15px;
  }
}

.banner__button.-none {
  opacity: 0;
}

.banner__button:hover {
  background-color: #bf8717;
  color: #ffffff;
  cursor: pointer;
}

.banner__button:active {
  -webkit-box-shadow: 4px 4px 30px #e6b656;
          box-shadow: 4px 4px 30px #e6b656;
  background-color: #e6b656;
  cursor: pointer;
}

.advantages {
  padding: 124px 0 0;
  background-color: #08454a;
}

@media (max-width: 767px) {
  .advantages {
    padding: 39px 0 32px;
  }
}

.advantages__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
  font-weight: 900;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .advantages__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .advantages__subtitle {
    margin-bottom: 30px;
  }
}

.advantages__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

@media (max-width: 1024px) {
  .advantages__box {
    row-gap: 50px;
  }
}

@media (max-width: 767px) {
  .advantages__box {
    display: block;
  }
}

@media (max-width: 767px) {
  .advantages__item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .advantages__item:last-child {
    margin-bottom: 0;
  }
}

.advantages__icon {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin: 0 auto 21px;
  -webkit-animation: icon 2s linear infinite;
          animation: icon 2s linear infinite;
}

@media (max-width: 767px) {
  .advantages__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 38px;
  }
}

.advantages svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.advantages__title {
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .advantages__title {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .advantages__title {
    margin-bottom: 9px;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
  }
}

.advantages__text {
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .advantages__text {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
  }
}

.about {
  padding: 124px 0 44px;
  background-color: #08454a;
}

@media (max-width: 767px) {
  .about {
    padding: 39px 0 32px;
  }
}

.about__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
  color: #ffffff;
}

.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .about__container {
    display: block;
  }
}

.about__box {
  width: calc((100% - 50px) / 2);
}

.about__box:first-child {
  margin-right: 50px;
}

@media (max-width: 767px) {
  .about__box:first-child {
    margin-right: 0;
    width: 100%;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .about__box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.about__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  text-align: center;
}

@media (max-width: 767px) {
  .about__block {
    margin-bottom: 40px;
  }
}

.about__item {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__item:last-child {
  margin-bottom: 0;
}

.about__icon {
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin-right: 21px;
}

.about svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__title {
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .about__title {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .about__title {
    margin-bottom: 9px;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
  }
}

.about__number {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #f4dcac;
}

@media (max-width: 767px) {
  .about__number {
    font-size: 32px;
    line-height: 36px;
  }
}

.about__desc {
  font-size: 20px;
  line-height: 22px;
  color: #ffffff;
}

@media (max-width: 767px) {
  .about__desc {
    font-size: 16px;
    line-height: 18px;
  }
}

.about__services {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #ffffff;
  text-align: right;
  padding-right: 26px;
}

@media (max-width: 767px) {
  .about__services {
    display: none;
  }
}

.about__svg {
  margin-left: auto;
  margin-bottom: 35px;
}

.about__text {
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  text-align: left;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .about__text {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .about__text {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    text-align: left;
  }
}

.stages {
  padding: 124px 0 44px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .stages {
    padding: 39px 0 32px;
  }
}

.stages__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #08454a;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
}

.stages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

@media (max-width: 767px) {
  .stages__item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .stages__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
}

.stages__number {
  font-size: 50px;
  line-height: 56px;
  font-weight: 500;
  text-align: center;
  color: #0a555c;
  width: 60px;
  height: 60px;
  border: 2px solid #0a555c;
  border-radius: 50%;
  margin: 0 auto 14px;
}

.stages__numberBlock:nth-child(odd) {
  min-width: 127px;
  margin-bottom: auto;
}

@media (max-width: 767px) {
  .stages__numberBlock:nth-child(even) {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.stages__text {
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  text-align: center;
  color: #08454a;
}

.works {
  padding: 124px 0 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  background-color: #08454a;
}

@media (max-width: 767px) {
  .works {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 29px 40px 0;
    row-gap: 10px;
  }
}

.works__picture {
  display: block;
  position: relative;
  border: 1px solid #e6b656;
}

.works__picture::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.works img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.works__hover {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #bf8717;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.works__title {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  .works__title {
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 23px;
  }
}

@media (max-width: 767px) {
  .works__title {
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 8px;
  }
}

.works__text {
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .works__text {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .works__text {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
  }
}

.works__picture:hover .works__hover {
  opacity: 0.8;
}

.works__picture:active .works__hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #08454a;
  color: #e6b656;
  opacity: 0.9;
}

.works__picture:active .works__title {
  color: #e6b656;
}

.footer {
  padding: 71px 0 69px;
  background-color: #08454a;
  border-top: 1px solid #ffffff;
}

@media (max-width: 1024px) {
  .footer {
    padding: 47px 0 42px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 35.14px 0 33.14px;
  }
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .footer .container {
    display: block;
  }
}

.footer__item {
  width: calc((100% - 30px - 30px) / 3);
  margin-right: 30px;
}

@media (max-width: 1024px) {
  .footer__item {
    width: calc((100% - 20px - 20px) / 3);
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .footer__item {
    margin-right: 0;
    width: 100%;
    margin-bottom: 69.34px;
  }
}

.footer__item:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .footer__item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .footer__item:nth-child(2) {
    margin-bottom: 60px;
  }
}

.footer__title {
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 29px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .footer__title {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 17px;
  }
}

@media (max-width: 767px) {
  .footer__title {
    margin-bottom: 34px;
  }
}

.footer__text {
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  font-weight: 400;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .footer__text {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
  }
}

.footer__sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__icon {
  width: 39px;
  height: 39px;
  overflow: hidden;
  border: 1px solid #c6cbcd;
  margin-right: 27px;
  position: relative;
  display: block;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1024px) {
  .footer__icon {
    width: 33px;
    height: 33px;
    margin-right: 23px;
  }
}

@media (max-width: 767px) {
  .footer__icon {
    margin-right: 16px;
  }
}

.footer__icon:last-child {
  margin-right: 0;
}

.footer__icon svg {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.footer__icon path {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer__icon:hover {
  cursor: pointer;
  border: 1px solid #e6b656;
}

.footer__icon:active {
  -webkit-box-shadow: 1px 1px 2px 2px #e6b656;
          box-shadow: 1px 1px 2px 2px #e6b656;
}

.footer__icon:hover path {
  fill: #e6b656;
}

.call {
  padding: 108px 0 100px;
  background-color: #e6b656;
}

@media (max-width: 1024px) {
  .call {
    padding: 90px 0 78px;
  }
}

@media (max-width: 767px) {
  .call {
    padding: 49px 0 45px;
  }
}

.call__title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 500;
  margin-bottom: 23.29px;
  color: #08454a;
  text-align: center;
}

@media (max-width: 1024px) {
  .call__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 19.71px;
  }
}

@media (max-width: 767px) {
  .call__title {
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 21.71px;
  }
}

.call__text {
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  color: #063135;
  margin-bottom: 49.14px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .call__text {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 44.71px;
  }
}

@media (max-width: 767px) {
  .call__text {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 13.42px;
  }
}

.call__btn {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  font-weight: 900;
  display: block;
  background-color: #08454a;
  padding: 25px;
  max-width: 370px;
  width: 100%;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  -webkit-box-shadow: 0 16px 16px 0 #bf8717;
          box-shadow: 0 16px 16px 0 #bf8717;
}

@media (max-width: 1024px) {
  .call__btn {
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    max-width: 314px;
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .call__btn {
    max-width: 100%;
  }
}

.call__btn:hover {
  background-color: #063135;
  cursor: pointer;
  color: #ffffff;
}

.call__btn:active {
  -webkit-box-shadow: 4px 4px 30px #0a555c;
          box-shadow: 4px 4px 30px #0a555c;
  background-color: #0a555c;
  cursor: pointer;
}

.menuMobile {
  display: none;
  position: relative;
  right: 0;
}

@media (max-width: 767px) {
  .menuMobile {
    display: block;
  }
}

.menuMobile a {
  text-align: right;
  font-size: 12px;
  line-height: 14px;
  padding: 43px 0;
  text-decoration: none;
  padding: 32px 0;
  font-size: 13px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  display: block;
}

.menuMobile a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.menuMobile a:hover::after {
  width: 100%;
}

.menuMobile a:active::after {
  background-color: #e6b656;
}

.menuMobile a:active {
  color: #e6b656;
}

.repair {
  padding: 134px 0 64px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .repair {
    padding: 99px 0 32px;
  }
}

.repair__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #08454a;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .repair__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .repair__subtitle {
    margin-bottom: 30px;
  }
}

.repair__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .repair__block {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .repair__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.repair__picture {
  display: block;
  position: relative;
  border: 1px solid #fff;
}

.repair__picture::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.repair img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.roofing {
  padding: 134px 0 64px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .roofing {
    padding: 99px 0 32px;
  }
}

.roofing__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #08454a;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .roofing__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .roofing__subtitle {
    margin-bottom: 30px;
  }
}

.roofing__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .roofing__block {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .roofing__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.roofing__picture {
  display: block;
  position: relative;
  border: 1px solid #fff;
}

.roofing__picture::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.roofing img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.insulation {
  padding: 134px 0 64px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .insulation {
    padding: 99px 0 32px;
  }
}

.insulation__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #08454a;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .insulation__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .insulation__subtitle {
    margin-bottom: 30px;
  }
}

.insulation__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .insulation__block {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .insulation__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.insulation__picture {
  display: block;
  position: relative;
  border: 1px solid #fff;
}

.insulation__picture::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.insulation img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.doorstep {
  padding: 134px 0 64px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .doorstep {
    padding: 99px 0 32px;
  }
}

.doorstep__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #08454a;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .doorstep__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .doorstep__subtitle {
    margin-bottom: 30px;
  }
}

.doorstep__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .doorstep__block {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .doorstep__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.doorstep__picture {
  display: block;
  position: relative;
  border: 1px solid #fff;
}

.doorstep__picture::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.doorstep img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.sealing {
  padding: 134px 0 64px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .sealing {
    padding: 99px 0 32px;
  }
}

.sealing__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #08454a;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .sealing__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .sealing__subtitle {
    margin-bottom: 30px;
  }
}

.sealing__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media (max-width: 1024px) {
  .sealing__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .sealing__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.sealing__picture {
  display: block;
  position: relative;
  border: 1px solid #fff;
}

.sealing__picture::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.sealing img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.roof_cleaning {
  padding: 134px 0 64px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .roof_cleaning {
    padding: 99px 0 32px;
  }
}

.roof_cleaning__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #08454a;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .roof_cleaning__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .roof_cleaning__subtitle {
    margin-bottom: 30px;
  }
}

.roof_cleaning__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .roof_cleaning__block {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .roof_cleaning__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.roof_cleaning__picture {
  display: block;
  position: relative;
  border: 1px solid #fff;
}

.roof_cleaning__picture::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.roof_cleaning img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.content {
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  padding: 50px;
  -webkit-box-shadow: 0 5px 35px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 35px rgba(0, 0, 0, 0.1);
}

.before-after {
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .before-after {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .before-after {
    margin-bottom: 24px;
  }
}

.porch {
  padding: 134px 0 64px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .porch {
    padding: 99px 0 32px;
  }
}

.porch__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
  color: #08454a;
}

@media (max-width: 1024px) {
  .porch__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .porch__subtitle {
    margin-bottom: 30px;
  }
}

.facades {
  padding: 134px 0 64px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .facades {
    padding: 99px 0 32px;
  }
}

.facades__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #08454a;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .facades__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .facades__subtitle {
    margin-bottom: 30px;
  }
}

.facades__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .facades__block {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .facades__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.facades__picture {
  display: block;
  position: relative;
  border: 1px solid #fff;
}

.facades__picture::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.facades img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.ramp {
  padding: 134px 0 64px;
  background-color: #e6b656;
}

@media (max-width: 767px) {
  .ramp {
    padding: 99px 0 32px;
  }
}

.ramp__subtitle {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #08454a;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .ramp__subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .ramp__subtitle {
    margin-bottom: 30px;
  }
}

.ramp__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .ramp__block {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .ramp__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.ramp__picture {
  display: block;
  position: relative;
  border: 1px solid #fff;
}

.ramp__picture::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.ramp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.phone {
  position: -webkit-sticky;
  position: sticky;
  bottom: 40px;
  left: calc(100% - 70px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #08454a;
  background-color: #e6b656;
  -webkit-animation: icon 2s linear infinite;
          animation: icon 2s linear infinite;
}
/*# sourceMappingURL=style.css.map */