@import url("../css/reset.css");
@import url("../fonts/fonts.css");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  background: #fff;
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
}

a {
  color: #000000;
  text-decoration: none;
}

input,
button,
textarea {
  font-family: "Open Sans", sans-serif;
}

.list-numbered {
  counter-reset: list-counter;
  list-style: none;
  padding: 0;
}
.list-numbered li {
  counter-increment: list-counter;
}
.list-numbered li::before {
  content: counter(list-counter) ". ";
}

.btn-orange {
  background: #E67C00;
}
.btn-orange:hover {
  background: #EB9633;
}

.btn-white {
  background: #fff;
}
.btn-white:hover {
  background: #fff;
  color: #000;
}

.btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-xl {
  height: 56px;
  padding: 17px 24px;
}

.btn-large {
  height: 92px;
  padding: 24px;
}

.bg-orange {
  background: #E67C00;
}

.bg-orange-dark {
  background: #CC6E00;
}

.bg-gray {
  background: #E5E5E4;
}

.bg-white {
  background: #fff;
}

.text-orange {
  color: #E67C00;
}

.text-orange-dark {
  color: #CC6E00;
}

.border-radius-4 {
  border-radius: 4px;
}

.border-radius-8 {
  border-radius: 8px;
}

.orange-hover-links a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.orange-hover-links a:hover {
  color: #E67C00;
}

.opacity-10 {
  opacity: 0.1;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.material-symbols-rounded.symbols-fill {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.btn-lg {
  padding: 12px 16px;
  height: 48px;
}

.btn-md {
  padding: 12px 16px;
  height: 40px;
}

.ff-oscondensed {
  font-family: "Open Sans Condensed", sans-serif;
}

.fs-56 {
  font-size: 56px;
}

.fs-48 {
  font-size: 48px;
  line-height: 54px;
}

.fs-36 {
  font-size: 36px;
  line-height: 40px;
}

.fs-32 {
  font-size: 32px;
  line-height: 35px;
}

.fs-24 {
  font-size: 24px;
  line-height: 26px;
}

.fs-20 {
  font-size: 20px;
  line-height: 28px;
}

.fs-14 {
  font-size: 14px;
  line-height: 21px;
}

.cursor-pointer {
  cursor: pointer;
}

.hyphens {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

.main-content {
  margin-top: 136px;
  overflow-x: hidden;
}

.navbar-toggler {
  width: 24px;
  height: 24px;
}
.navbar-toggler[aria-expanded=false] {
  background: url(../images/icons/menu.svg);
}
.navbar-toggler[aria-expanded=true] {
  background: url(../images/icons/close.svg);
}
.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.dropdown-toggle {
  padding: 12px 16px;
  border-radius: 4px;
}
.dropdown-toggle.show {
  background: #E5E5E4;
}

.dropdown-menu-gray {
  background: #E5E5E4;
  border: 0;
  top: 26px;
}

.dropdown-menu.show {
  min-width: 96px;
}

.dropdown-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
  font-weight: 600;
}

.section-hero .hero-cards,
.section-hero .hero-cards.hero-cards-grid {
  margin: 68px 0 0;
  padding-bottom: 105px;
  display: grid;
  grid-gap: 24px;
}

.section-hero .hero-cards {
  grid-template-columns: 1.5fr 2fr;
}
.section-hero .hero-cards.hero-cards-inspection .hero-card {
  min-height: 480px;
}

.section-hero .hero-cards.hero-cards-grid {
  grid-template-columns: 1.5fr 1fr;
}

.section-hero .hero-cards.hero-cards-grid .hero-card:last-child {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
}

.container-small {
  max-width: 856px;
}

.img-cover {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
}

.section-hero .hero-cards .hero-card .poster img {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
}
.section-hero .hero-cards .hero-card .poster img.portrait {
  width: auto;
  height: 100%;
  max-width: inherit;
}
.section-hero .hero-cards .hero-card .poster:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.h-85 {
  height: 85%;
}

.h-320 {
  height: 320px;
}

.truncate-row-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.overflow-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  max-width: 144px;
}

.page-404 {
  position: relative;
  height: calc(100vh - 136px);
  max-height: 100vh;
  overflow: hidden;
}
.page-404:before {
  content: url(../images/top-404.svg);
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.page-404:after {
  content: url(../images/bottom-404.svg);
  position: absolute;
  right: 0;
  bottom: -50px;
  z-index: -1;
}
.page-404 .text-404 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.page-404 .ls-2 {
  letter-spacing: 1.92px;
}

.hr-star {
  position: relative;
  border-bottom: 1px solid #000;
}
.hr-star:after {
  content: url("../images/icons/star.svg");
  background: #fff;
  padding: 0 24px;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 2;
}

.section-benefits {
  position: relative;
}
.section-benefits::before {
  content: "";
  background: url(../images/seacats-text.webp) no-repeat top center;
  position: absolute;
  background-size: contain;
  top: -140px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-height: 347px;
}

.swiper-benefits {
  margin-top: 68px;
}

.swiper-benefits .swiper-nav {
  margin: 68px auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-benefits .swiper-slide {
  width: 416px;
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  width: 48px;
  height: 48px;
}

.swiper-benefits .swiper-button-next:after,
.swiper-benefits .swiper-rtl .swiper-button-prev:after,
.swiper-benefits .swiper-button-prev:after,
.swiper-benefits .swiper-rtl .swiper-button-next:after {
  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;
  font-family: "Material Symbols Rounded";
  content: "chevron_left";
  border: 1px solid #000;
  border-radius: 50%;
  color: #000;
  font-size: 28px;
  width: 48px;
  height: 48px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.swiper-benefits .swiper-button-prev:after,
.swiper-benefits .swiper-rtl .swiper-button-next:after {
  content: "chevron_right";
}

.swiper-benefits .swiper-button-next:hover:after,
.swiper-benefits .swiper-rtl .swiper-button-prev:hover:after,
.swiper-benefits .swiper-button-prev:hover:after,
.swiper-benefits .swiper-rtl .swiper-button-next:hover:after {
  background: #000;
  color: #fff;
}

.section-service-card {
  position: relative;
  border-bottom: 1px solid #000;
  padding-bottom: 96px;
}
.section-service-card::before {
  content: "";
  background: url(../images/service-do.svg) no-repeat;
  position: absolute;
  background-size: contain;
  top: -60px;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.section-service-card:after {
  content: url("../images/icons/star.svg");
  background: #fff;
  padding: 0 24px;
  position: absolute;
  bottom: -31px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 2;
}

.section-service-card .service-card {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.section-service-card .service-card::after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.mt-44 {
  margin-top: 44px;
}

.my-96 {
  margin-top: 96px;
  margin-bottom: 96px;
}

.my-144 {
  margin-top: 144px;
  margin-bottom: 144px;
}

.mb-96 {
  margin-bottom: 96px;
}

.h-240 {
  height: 240px;
}

.section-clean {
  position: relative;
  padding: 0 0 96px;
  border-bottom: 1px solid #000;
}

.clean-price .price-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.clean-price .price-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 12px;
}

.accordion-button {
  font-weight: 600;
  padding: 0;
}
.accordion-button::after, .accordion-button:not(.collapsed)::after {
  background-image: url(../images/icons/arrow_drop_down.svg);
}

.accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-button:not(.collapsed) {
  font-weight: 600;
  color: #000;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-button:hover {
  color: #CC6E00;
}

.accordion-body {
  padding: 12px 0 0;
}

#map {
  width: 100%;
  height: 475px;
  border-radius: 8px;
}

.footer {
  position: relative;
  margin-top: 190px;
  padding-bottom: 44px;
}
.footer::after {
  content: "";
  background: url(../images/footer-bg.svg) no-repeat center top;
  position: absolute;
  background-size: contain;
  top: -60px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 247px;
}
.footer .social-links svg:hover path {
  fill: #CC6E00;
}

.faq-img {
  position: relative;
  height: 343px;
  overflow: hidden;
}
.faq-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.7;
}

.speedbar li a {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.speedbar li a::after {
  content: "/";
  padding: 0 4px;
}
.speedbar li a:hover {
  color: #E67C00;
}

.blog-post-content h3,
.blog-post-content h4 {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-top: 24px;
}
.blog-post-content p {
  margin-top: 12px;
}
.blog-post-content img {
  border-radius: 8px;
  margin-top: 24px;
}

@media (max-width: 1196px) {
  .img-lg-cover {
    position: absolute;
    left: 50%;
    top: 50%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -2;
  }
}
@media (max-width: 992px) {
  .w-md-100 {
    width: 100% !important;
  }
  .card-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
  }
  .scroll-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .scroll-container::-webkit-scrollbar {
    display: none;
  }
  .fixed-md-col {
    width: 306px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .section-hero .hero-cards {
    padding-bottom: 0;
  }
  .nav-logo img {
    width: 78px;
    height: 68px;
  }
  .navbar-collapse {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 5;
    left: 0;
    top: 84px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    padding: 0 16px;
  }
  .navbar-collapse .m-menu {
    height: calc(100% - 134px);
    border-top: 1px solid #000;
    position: relative;
    top: 48px;
  }
  .navbar-collapse .m-menu:before {
    content: url("../images/icons/star.svg");
    background: #fff;
    padding: 0 24px;
    position: absolute;
    top: -24px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    z-index: 2;
  }
  .navbar-collapse ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .my-144,
  .my-96 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .mt-44 {
    margin-top: 24px;
  }
  .text-md-white {
    color: #fff;
  }
  .fs-md-40 {
    font-size: 40px;
  }
  .fs-md-36 {
    font-size: 36px;
    line-height: 40px;
  }
  .fs-md-24 {
    font-size: 24px;
    line-height: 26px;
  }
  .fs-md-20 {
    font-size: 20px;
    line-height: 150%;
  }
  .fs-md-16 {
    font-size: 16px;
    line-height: 22px;
  }
  .section-hero .hero-info {
    position: relative;
    height: 575px;
    border-radius: 8px;
    overflow: hidden;
  }
  .section-hero .hero-info .hero-poster {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 110%;
    width: auto;
    max-width: none;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .section-hero .hero-info .hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 48px 24px;
  }
  .swiper-benefits {
    margin-top: 24px;
  }
  .section-benefits::before {
    top: -60px;
  }
  .main-content {
    margin-top: 84px;
  }
  .section-service-card {
    padding-bottom: 48px;
  }
  .section-hero .hero-cards,
  .section-hero .hero-cards.hero-cards-grid {
    padding-bottom: 48px;
  }
  .section-service-card::before {
    background-size: inherit;
    background-position: 70% 0;
  }
  .section-clean {
    padding: 0 0 48px;
  }
  .footer {
    margin-top: 48px;
  }
  .footer::after {
    background-position: -40px top;
    background-size: inherit;
    top: -40px;
  }
  .h-sm-292 {
    height: 292px !important;
  }
  .btn-large {
    height: 56px;
  }
  .hero-md-info {
    height: 343px !important;
  }
  .hero-md-info .hero-poster {
    height: 100% !important;
  }
  .hero-md-gradiend:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
}