.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
  background-color: #fff;
  box-shadow: 0 3px 50px rgba(0, 0, 0, 0.05);
  z-index: 3;
}
.header_inner {
  padding: 15px 0;
}
.header__row {
  align-items: center;
}
.header__controls {
  position: fixed;
  top: 104px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 350ms ease-in-out;
}
.header__controls.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 992px) {
  .header__controls {
    position: static;
    display: flex;
    flex-direction: row;
    flex: 1 1;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
    visibility: visible;
    opacity: 1;
  }
}
.header__controls .navbar-nav {
  flex-direction: column;
  flex: 1 1 auto;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .header__controls .navbar-nav {
    flex-direction: row;
  }
}
.header__cta-col {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: column;
  margin: 25px 0 50px;
}
@media screen and (min-width: 992px) {
  .header__cta-col {
    flex-direction: row;
    justify-items: center;
    margin: 0;
  }
}

.logo {
  flex: 1 0 auto;
}
.logo-col {
  width: auto;
  max-width: 240px;
}
.logo__link {
  font-weight: 700;
  font-size: 16px;
  padding: 1rem;
  background-color: #f6b111;
  color: #ffffff;
  letter-spacing: -1px;
  transition: 150ms ease-in-out;
}
@media screen and (min-width: 1025px) {
  .logo__link {
    font-size: 24px;
    padding: 1rem 1.25rem;
  }
}
.logo__link:hover {
  background-color: #0a7cff;
}

@media screen and (min-width: 992px) {
  .contacts {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .contacts {
    display: block;
  }
}
.contacts__l {
  list-style: none;
  padding: 0 15px;
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .contacts__l {
    font-size: 1rem;
    text-align: right;
  }
}
.contacts__l-i a {
  color: currentColor;
}
.contacts__l-i a:hover {
  color: #0a7cff;
}

.cta {
  margin-top: 25px;
}
@media screen and (min-width: 992px) {
  .cta {
    margin-top: 0;
    margin-left: 25px;
  }
}

.nav-link {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .nav-link {
    font-size: 1rem;
  }
}

.navbar-expand {
  align-items: flex-start;
  flex: 1;
  height: calc(100% - 109px);
}
@media screen and (min-width: 992px) {
  .navbar-expand {
    flex: 0;
    margin: 0 auto;
  }
}

.nav-item {
  display: block;
  width: 100%;
  text-align: center;
}

.mobile-nav-trigger {
  display: flex;
  flex: 0;
  align-items: center;
  margin-left: auto;
  width: 58px;
  height: 58px;
}
@media screen and (min-width: 992px) {
  .mobile-nav-trigger {
    display: none;
  }
}
.mobile-nav-trigger__btn {
  padding: 5px !important;
  font-size: 32px !important;
}
.mobile-nav-trigger__btn.collapsed .fa-close {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.mobile-nav-trigger__btn:not(.collapsed) .fa-close {
  visibility: visible;
  opacity: 1;
  display: block;
}
.mobile-nav-trigger__btn:not(.collapsed) .fa-bars {
  visibility: hidden;
  opacity: 0;
  display: none;
}

.btn {
  font-size: 14px;
  padding: 13px 28px 11px;
  border-radius: 2px;
  border: none;
  transition: 150ms ease-in-out;
}
.btn-primary {
  background-color: #0a7cff;
  color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #4ea4e6 !important;
}
.btn-secondary {
  background-color: #f6b111;
}

.nav-link {
  transition: 150ms ease-in-out;
}
.nav-link:hover, .nav-link:active, .nav-link:focus {
  color: #4ea4e6;
}

.section-title {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
}
.section-title__text h1, .section-title__text h2 {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -2px;
}
.section-title__text h1 {
  font-size: 3.5rem;
}

.service {
  height: auto;
  background-color: #fff;
  margin-bottom: 24px;
  padding: 3.2em 2em 1.2em;
  transition: box-shadow 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .service {
    height: calc(100% - 24px);
  }
}
.service:hover {
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
}
.service:hover .service__icon {
  color: #0a7cff;
}
.service__icon {
  display: flex;
  flex: 0 0 auto;
  justify-self: center;
  max-width: 110px;
  margin: 0 auto 15px;
  color: #f6b111;
  transition: 150ms ease-in-out;
}
.service__title, .service__subtitle {
  text-align: center;
}
.service__title h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.gallery-grid__item, .gallery-grid__img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    grid-template-areas: "lg-1-1 lg-1-1 sm-1-1 sm-1-2" "lg-1-1 lg-1-1 sm-2-1 sm-2-2";
  }
  .gallery-grid__item:nth-child(1) {
    grid-area: lg-1-1;
  }
  .gallery-grid__item:nth-child(2) {
    grid-area: sm-1-1;
  }
  .gallery-grid__item:nth-child(3) {
    grid-area: sm-1-2;
  }
  .gallery-grid__item:nth-child(4) {
    grid-area: sm-2-1;
  }
  .gallery-grid__item:nth-child(5) {
    grid-area: sm-2-2;
  }
  .gallery-grid__item, .gallery-grid__img {
    width: 100%;
    height: 100%;
  }
}
.gallery-grid__item {
  overflow: hidden;
}
.gallery-grid__img {
  transition: 150ms ease-in-out;
}
.gallery-grid__img:hover {
  transform: scale(1.25);
}
.gallery-grid__img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
@media screen and (min-width: 768px) {
  .gallery-grid__img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.carousel {
  margin: 50px 0;
}
.carousel-indicators {
  position: relative;
  margin: 1rem;
}
.carousel-indicators [data-bs-target] {
  background-color: #ffe398;
  opacity: 1;
}
.carousel-indicators .active {
  background-color: #4ea4e6;
}
.carousel .carousel-control-next, .carousel .carousel-control-prev {
  display: none;
  top: 1.25rem;
  transform: translateY(calc(-50% + 1.25rem));
}
@media screen and (min-width: 768px) {
  .carousel .carousel-control-next, .carousel .carousel-control-prev {
    display: block;
  }
}

.footer {
  padding: 90px 0 50px;
  background-color: #313131;
}
.footer-cta {
  color: #fff;
}
.footer-cta h3 {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .footer-cta h3 {
    font-size: 2.25rem;
    letter-spacing: -2px;
  }
}
.footer-cta a {
  color: currentColor;
}
.footer-cta a:hover, .footer-cta a:active, .footer-cta a:focus {
  color: #f6b111;
}

.copyright {
  margin-top: 50px;
  color: #dfdfe0;
  font-weight: 200;
}

.scroll-to-top {
  position: fixed;
  right: 10px;
  bottom: 50px;
  width: 55px;
  height: 55px;
  font-size: 1.25rem;
  color: #fff;
  background-color: #f6b111;
  box-shadow: none;
  outline: none;
  border: none;
  transition: 150ms ease-in-out;
}
.scroll-to-top:hover {
  color: #0a7cff;
}

.tags {
  padding: 25px 15px 25px 0;
}
.tags__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tags__item {
  display: inline-flex;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  background: #f6b111;
  color: #fff;
  padding: 5px 15px;
  border-radius: 22px;
}

.sm-title {
  color: #fff;
}
.sm-l {
  list-style: none;
  display: flex;
  align-items: center;
  padding-left: 0;
}
.sm-i + .sm-i {
  margin-left: 15px;
}
.sm-link {
  display: flex;
  flex: 0 0 auto;
  justify-self: center;
  width: 50px;
  height: 50px;
  background-color: #f6b111;
  color: #fff;
  transition: 150ms ease-in-out;
}
.sm-link:hover, .sm-link:active, .sm-link:focus {
  background-color: #0a7cff;
}

.lg-backdrop {
  background-color: rgba(34, 34, 34, 0.85);
}

.lg-outer .lg-content {
  width: 90%;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
}

.lg-outer .lg-inner {
  width: 100%;
  background-color: #000;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .lg-outer .lg-inner {
    width: 65%;
  }
}

.lg-sidebar {
  display: none;
}
@media screen and (min-width: 992px) {
  .lg-sidebar {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35%;
    padding: 15px;
    background-color: #fff;
  }
}

.lg-components {
  display: none;
}

.lg-next, .lg-prev {
  width: 42px;
  background-color: rgba(246, 177, 17, 0.6);
  color: #fff;
}
.lg-next:hover, .lg-next:active, .lg-next:focus, .lg-prev:hover, .lg-prev:active, .lg-prev:focus {
  background-color: rgb(246, 177, 17);
}

.lg-next {
  left: calc(100% - 62px);
}
@media screen and (min-width: 992px) {
  .lg-next {
    left: calc(65% - 62px);
  }
}

.ratings {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .ratings {
    margin-left: 0;
  }
}
.ratings__icon {
  display: flex;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  color: #fff;
}
.ratings__stars {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .ratings__stars {
    justify-content: flex-start;
  }
}
.ratings__stars li {
  font-size: 1.5rem;
}
.ratings__text {
  display: flex;
}
.ratings__text a {
  display: flex;
  font-size: 1.1rem;
  color: #fff;
}
.ratings__angi {
  display: flex;
  flex: 0 0 auto;
  width: 51px;
  height: 30px;
  margin-left: 10px;
}

.trust-l {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-l-i {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  width: calc(100% - 20px);
  margin: 10px;
  padding: 35px;
  background-color: #fff;
  border-radius: 2.5em;
  transition: all 0.3s linear 0s;
}
.trust-l-i:hover {
  background-color: #0a7cff;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .trust-l-i {
    width: calc(50% - 20px);
    max-width: 540px;
  }
}
.trust-l-i__icon {
  display: flex;
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  margin-right: 15px;
}
.trust-l-i__text h4 {
  margin: 0;
  font-weight: 600;
}

.scope {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .scope {
    padding: 100px 0;
  }
}

.scope-content {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .scope-content {
    margin-top: 0;
  }
}
.scope-content__l {
  list-style: none;
  margin: 0;
  padding: 0;
}
.scope-content__i {
  display: flex;
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  .scope-content__i {
    margin-bottom: 0;
  }
}
.scope-content__i:hover .scope-content__icon::after {
  opacity: 1;
  transform: scale(1);
}
.scope-content__icon {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  margin: 10px 10px 10px;
}
@media screen and (min-width: 992px) {
  .scope-content__icon {
    margin: 50px 10px 10px;
  }
}
.scope-content__icon::before, .scope-content__icon::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  right: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.scope-content__icon::before {
  background-color: #EDEDED;
}
.scope-content__icon::after {
  background-color: #f6b111;
  transform: scale(1.3);
  opacity: 0;
  transition: all 0.3s linear 0s;
  top: -20px;
  left: -8px;
}
.scope-content__desc {
  margin: 10px 30px;
}
.scope-content__title {
  margin-bottom: 15px;
}
.scope-content__title h4 {
  font-weight: 700;
  margin: 0;
}
.scope-content__text {
  text-align: justify;
  display: none;
}
@media screen and (min-width: 992px) {
  .scope-content__text {
    display: block;
  }
}
.scope-content__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .scope-content__cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .scope-content__cta {
    padding-left: 114px;
  }
}
.scope-content__cta-contact {
  display: flex;
  flex-direction: column;
}
.scope-content__cta-btn {
  margin: 10px;
}
@media screen and (min-width: 992px) {
  .scope-content__cta-btn {
    margin: 0;
  }
}
.scope-content__cta-phone {
  display: flex;
  align-items: center;
  margin: 10px;
}
@media screen and (min-width: 992px) {
  .scope-content__cta-phone {
    margin: 0;
  }
}
.scope-content__cta-phone a {
  font-size: 1.25rem;
  font-weight: 600;
  color: currentColor;
}
.scope-content__cta-phone a:hover {
  color: #f6b111;
}
.scope-content__cta-icon {
  display: flex;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.scope-content__cta-text {
  font-size: 0.8rem;
}

.scope-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 130px 130px 130px 130px;
  grid-template-areas: "lg-1-1 sm-1-1" "lg-1-1 sm-1-2" "sm-2-1 lg-2-2" "sm-2-2 lg-2-2";
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .scope-image-grid {
    grid-template-rows: 200px 200px 200px 200px;
  }
}
.scope-image-grid__item {
  border-radius: 20px;
  overflow: hidden;
}
.scope-image-grid__item:nth-child(1) {
  grid-area: lg-1-1;
}
.scope-image-grid__item:nth-child(2) {
  grid-area: sm-1-1;
}
.scope-image-grid__item:nth-child(3) {
  grid-area: sm-1-2;
}
.scope-image-grid__item:nth-child(4) {
  grid-area: sm-2-1;
}
.scope-image-grid__item:nth-child(5) {
  grid-area: sm-2-2;
}
.scope-image-grid__item:nth-child(6) {
  grid-area: lg-2-2;
}
.scope-image-grid__item:hover img {
  transform: scale(1.15);
}
.scope-image-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 300ms ease-in-out;
}

.faq {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 100px 0;
  }
}
.faq .section-title {
  padding-top: 0;
  padding-left: 0;
  max-width: 100%;
}
.faq__img {
  position: relative;
  display: none;
}
@media screen and (min-width: 768px) {
  .faq__img {
    display: block;
  }
}
.faq__img-container {
  height: 100%;
}
.faq__img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.accordion-item {
  border: none;
  margin-bottom: 20px;
  background-color: #f4f4f4;
  border-radius: 20px !important;
}
.accordion-header {
  margin-bottom: 0;
  background: #f4f4f4;
  border-radius: 20px;
}
.accordion-button {
  border-radius: 20px !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 30px;
  outline: none;
}
.accordion-button:not(.collapsed) {
  background-color: #f6b111;
  border-color: #f6b111;
}
.accordion-button.collapsed {
  border: 1px solid #adadad;
}
.accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.accordion-button::after {
  margin-left: 15px;
}
.accordion-body {
  background-color: #f4f4f4;
  padding: 40px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.features-section {
  padding: 50px 0;
}

.services-section {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .services-section {
    padding: 50px 0 100px;
  }
}
.services-section .section-title {
  margin: 0;
  padding: 0 0 25px;
}
.services-section__image {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .services-section__image {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .services-section__image {
    padding-right: 90px;
  }
}
.services-section p {
  text-align: justify;
}
.services-section .section-title__headig {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .services-section .section-title__headig {
    text-align: left !important;
  }
}
.services-section .col-lg-6:nth-of-type(1) {
  order: 2;
}
@media screen and (min-width: 768px) {
  .services-section .col-lg-6:nth-of-type(1) {
    order: 0;
  }
}
.services-section .col-lg-6:nth-of-type(2) {
  order: 1;
}
@media screen and (min-width: 768px) {
  .services-section .col-lg-6:nth-of-type(2) {
    order: 1;
  }
}
.services-carousel {
  margin: 0;
}

.services-pagination .pagination-item {
  cursor: pointer;
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.services-pagination .pagination-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #f6b111;
  box-shadow: 0 0 0 4px #f1e0b3;
}

.services-pagination .pagination-item.active::before {
  background: #0a7cff;
  box-shadow: 0 0 0 4px #a6cbf7;
}

.services-pagination .pagination-item span {
  display: block;
}

.video-wrapper {
  position: relative;
  padding-top: 123.5%;
  overflow: hidden;
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-section {
  padding: 50px 0 100px;
  background: url("/assets/images/reviews-bg-1.webp") no-repeat center center/cover;
}
.reviews-section .carousel-control-prev, .reviews-section .carousel-control-next {
  display: none;
}
@media screen and (min-width: 992px) {
  .reviews-section .carousel-control-prev, .reviews-section .carousel-control-next {
    display: block;
  }
}
.reviews-section .carousel-item p {
  min-height: 195px;
}
@media screen and (min-width: 768px) {
  .reviews-section .carousel-item p {
    min-height: 100px;
  }
}
@media screen and (min-width: 992px) {
  .reviews-section .carousel-item p {
    min-height: 120px;
  }
}
.reviews-section .fa-quote-left {
  color: #4ea4e6;
}
.reviews-section__more-reviews {
  margin: 0 auto;
  background-color: #FFF;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
  padding: 1.2em 2em;
}
.reviews-section__more-reviews a {
  display: flex;
  align-items: center;
}
.reviews-section__more-reviews-icon {
  display: flex;
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  margin-left: 25px;
}

.hero-section-landing {
  padding: 100px 0;
  background: url("/assets/images/luxury-bathroom.avif") no-repeat center center/cover;
}
.hero__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__col-landing {
  padding: 25px;
  color: #fff;
  background-color: rgba(10, 124, 255, 0.9);
  border-radius: 2.5em;
}
.hero__col-cta {
  display: flex;
  margin: 15px 0 30px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .hero__col-cta {
    justify-content: flex-start;
  }
}
.hero__col-heading .section-title {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center !important;
}
.hero__col-heading .section-title h1 {
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .hero__col-heading .section-title h1 {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .hero__col-heading .section-title {
    text-align: left !important;
  }
}
.hero__col-slider {
  position: relative;
}
.hero__col-slider::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.hero-slider .carousel-inner, .hero-slider .carousel-item {
  width: 100%;
  height: 100%;
}
.hero-slider .carousel-item img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-slider .carousel-indicators {
  position: absolute;
}

.benefits-section {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .benefits-section {
    padding: 80px 0 100px;
  }
}
.benefits__item {
  height: auto;
  background-color: #fff;
  margin-bottom: 24px;
  padding: 3.2em 2em 1.2em;
  transition: box-shadow 0.3s ease-out;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .benefits__item {
    flex-direction: row;
    align-items: center;
    padding: 1.2em 2em;
  }
}
@media screen and (min-width: 992px) {
  .benefits__item {
    height: 100%;
    flex-direction: column;
    padding: 3.2em 2em 1.2em;
  }
}
.benefits__item:hover {
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
}
.benefits__item:hover .benefits__icon {
  color: #0a7cff;
}
.benefits__icon {
  display: flex;
  flex: 0 0 auto;
  justify-self: center;
  max-width: 100px;
  margin: 0 auto 15px;
  color: #f6b111;
  transition: 150ms ease-in-out;
}
@media screen and (min-width: 768px) {
  .benefits__icon {
    margin: 0 15px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .benefits__icon {
    margin: 0 auto 15px;
  }
}

.about {
  display: flex;
  align-items: stretch;
}
.about-section {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .about-section {
    padding: 100px 0;
  }
}
.about-section .section-title {
  margin-left: 0;
  padding-left: 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about-section .section-title {
    text-align: left !important;
  }
}
.about-section p {
  text-align: justify;
}
.about__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .about__col-img {
    padding-left: 90px;
  }
}
.about__content-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  .about__content-cta {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}

.project-slider {
  flex-wrap: wrap;
}
.project-slider__item {
  position: relative;
  padding-top: 70%;
  aspect-ratio: 4/3;
}
.project-slider__item picture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-slider__indicators {
  position: absolute;
  bottom: 0;
}
.project-slider .carousel {
  padding-top: 5px;
  margin: 0 0 50px;
}
.project-slider .carousel-control-next, .project-slider .carousel-control-prev {
  display: block;
  top: 50%;
}
.project-slider__description {
  padding: 0 15px 25px;
}
@media screen and (min-width: 1200px) {
  .project-slider__description {
    padding-top: 5px;
  }
}

.project {
  margin-bottom: 24px;
}
.project-title {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 12px;
  background-color: #f6b111;
  color: #fff;
  padding: 15px;
  pointer-events: none;
}
.project-title::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 3px solid #0b7cff;
}
.project-title h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}
.project-cover {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.project-cover:hover .project-cover__link picture img, .project-cover:active .project-cover__link picture img, .project-cover:focus .project-cover__link picture img {
  transform: scale(1.1);
}
.project-cover__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.project-cover__link picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.project-cover__link picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 350ms ease-in-out;
}

.process {
  display: flex;
  align-items: stretch;
  background-color: #f4f4f4;
  border-radius: 20px;
}
.process-section {
  padding-top: 85px;
  padding-bottom: 75px;
}
.process__nav {
  position: relative;
  display: none;
  width: 25%;
  margin-right: 50px;
  padding: 20px 0;
  background-color: #f6b111;
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
  .process__nav {
    display: block;
  }
}
.process__content {
  width: 100%;
  height: 500px;
  overflow: auto;
}
.process__content-wrap {
  padding: 30px 20px;
}
@media screen and (min-width: 992px) {
  .process__content-wrap {
    width: 75%;
    padding: 30px 0;
  }
}
.process__content-heading {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
.process__content-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  width: 80px;
  height: 80px;
  margin-right: 15px;
  color: #f6b111;
}
.process__content-step {
  padding: 20px 0;
}
.process__content-title {
  font-weight: 800;
}
@media screen and (max-width: 991px) {
  .process__content {
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  .process__content {
    padding-right: 80px;
  }
}
.process__nav-items {
  position: sticky;
  top: 110px;
}
.process__nav-title {
  transition: all 150ms ease-out;
}
.process__nav-title, .process__nav-title {
  margin-top: 15px;
}

h3.process__nav-title a {
  display: block;
  padding: 10px;
  color: #222;
  font-size: 1.15rem;
  font-weight: 600;
}
h3.process__nav-title a.active, h3.process__nav-title a:hover, h3.process__nav-title a:active {
  color: #fff;
}
h3.process__nav-title.active a {
  color: #fff;
  background-color: #0a7cff;
}

.cta-section {
  padding: 80px 0;
  background: url("/assets/images/call-to-action.jpg") no-repeat center center/cover;
}
.cta-section .section-title {
  color: #fff;
}
.cta-section__form {
  background-color: #fff;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
}
.cta-section__form-wrap {
  padding: 40px;
}
.cta-section__form-contacts {
  padding: 40px 25px;
}
.cta-section__form-contacts h3 {
  padding: 0 15px;
}
.cta-section__form-contacts .contacts__l {
  text-align: left;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .cta-section__form-contacts .contacts {
    display: block;
  }
}

.intro-section {
  padding: 50px 0 0;
}
@media screen and (min-width: 768px) {
  .intro-section {
    padding: 100px 0 0;
  }
}
.intro-section__text {
  max-width: 85%;
  margin: 0 auto;
  font-size: 1.25rem;
  text-align: center;
}

.service-area {
  padding: 100px 0;
}

.towns__l {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.towns__i {
  width: calc(100% - 20px);
  margin: 10px;
}
@media screen and (min-width: 992px) {
  .towns__i {
    width: calc(33% - 20px);
    max-width: 540px;
  }
}
.towns__link {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  padding: 35px;
  background-color: #fff;
  border-radius: 2.5em;
  transition: all 0.3s linear 0s;
}
.towns__link:hover, .towns__link:active, .towns__link:focus {
  background-color: #0a7cff;
}
.towns__link:hover .towns__icon, .towns__link:hover .towns__title, .towns__link:active .towns__icon, .towns__link:active .towns__title, .towns__link:focus .towns__icon, .towns__link:focus .towns__title {
  color: #fff;
}
.towns__icon {
  display: flex;
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  margin-right: 15px;
  color: #222;
}
.towns__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-display: auto;
  color: #222;
  background: #fff;
}

.container {
  width: min(1400px, 100% - 32px);
  margin-inline: auto;
}

.icon {
  width: 100%;
  height: 100%;
  color: currentColor;
}

.carousel-indicators [data-bs-target] {
  width: 25px;
  height: 4px;
  border-radius: 0;
}

img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  text-decoration: none;
  color: #4ea4e6;
  transition: 150ms ease-in-out;
}

.bg-secondary {
  background-color: #eaf3fb !important;
}

main {
  flex-grow: 1;
  padding-top: 106px;
}
@media screen and (min-width: 992px) {
  main {
    padding-top: 100px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.bg-shape {
  color: #fff;
}
.bg-shape .icon {
  height: 100px;
}
/*# sourceMappingURL=main.css.map */
