/* =========================================================
   RESET / BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #364153;
  background: #fff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Reset and base typography ------------------------------------------------ */

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #000000;
}

p {
  margin: 0;
  line-height: 1.6;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Container utility for consistent horizontal padding ------------------------ */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.main-holder {
  flex-grow: 1;
}

/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  height: 88px;
  display: flex;
  align-items: center;

  background: transparent;
  transition:
          background 0.3s ease,
          backdrop-filter 0.3s ease,
          box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.site-header__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: clamp(0.938rem, -0.711rem + 2.931vw, 2rem);
}

/* =========================================================
   LOGO
   ========================================================= */

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 24px;
  width: auto;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  flex: 1;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav__menu li:hover .nav__link {
  background: #deeded66;
}

/* Dropdown */

.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;

  min-width: 220px;
  padding: 12px 0;

  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 12px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  transition:
          opacity 0.2s ease,
          transform 0.2s ease;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__dropdown li {
  list-style: none;
  line-height: 36px;
}

.nav__dropdown a {
  display: block;
  padding: 0 10px;
  font-size: 14px;
  color: #ffffff;
  border-radius: 6px;
}

.nav__dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* =========================================================
   CONFIGURATOR BUTTON
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  padding: 0 18px;

  font-size: 14px;
  font-weight: 500;

  border-radius: 8px;
  white-space: nowrap;
}

.btn--primary {
  background: #ffffff;
  color: #1e8e8a;
  transition: background 0.2s ease;
}

.btn--primary:hover {
  background: #f0f0f0;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
}

.hero__slide {
  position: relative;
  min-height: calc(100vh - 88px);
}

.hero__slide .slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.2),
          rgba(0, 0, 0, 0.75)
  );
}

.hero__content {
  position: relative;
  z-index: 2;

  max-width: 720px;
  padding: 160px 32px 0;
}

.hero__title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 24px;
}

.hero__subtitle {
  font-size: 20px;
  opacity: 0.9;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: #0c0c0c;
  padding: 40px 0;
}

.footer p {
  margin: 0;
  font-size: 14px;
  color: #6a7282;
}

.footer .logo {
  margin-bottom: 20px;
}

/* =========================================================
   MOBILE
   ========================================================= */

.mobile-toggle {
  display: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .nav__menu {
    gap: 20px;
  }

  .hero__title {
    font-size: 42px;
  }
}

@media (max-width: 868px) {
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
  }

  .mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #28817e;
  }

  .home-page .mobile-toggle span {
    background: #ffffff;
  }

  .header--sticky .mobile-toggle span {
    background: #28817e;
  }

  .hero__content {
    padding-top: 120px;
  }

  .hero__title {
    font-size: 34px;
  }
  .lang-btn ,
  .site-header__container .btn--primary.header__cta {
    display: none;
  }
  .site-header__container {
    justify-content: space-between;
  }
}
.site-header {
  left: 0;
  right: 0;
  z-index: 1000;
  height: 84px;
  transition:
          background-color 0.3s ease,
          backdrop-filter 0.3s ease,
          box-shadow 0.3s ease,
          height 0.3s ease,
          color 0.3s ease;
}
.home-page .header--absolute .lang-btn span ,
.home-page .header--absolute .nav__link,
.home-page .header--absolute .logo img {
  filter: brightness(0) invert(1);
}
.header--sticky {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  height: 72px;
}
.home-page .header--sticky .nav__link {
  color: #1a1a1a;
}
.nav__link {
  color: #1a1a1a;
}

.header--sticky .logo img {
  filter: none;
}
.header__cta {
  margin-left: auto;
  display: flex !important;
  gap: 8px;
  align-items: center;
  color: #fff;
  background: #28817e;
  transition: opacity 0.2s ease !important;
}
.home-page .header--absolute .header__cta {
  background: #fff;
  color: #28817e;
}
.header--sticky .header__cta {
  color: #fff;
  background: #28817e;
}
.header__cta svg {
  width: 16px;
  height: 16px;
}
.header__cta:hover {
  opacity: 0.9;
}

.header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  color: #ffffff;
}

.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  color: #1a1a1a;
}

/* Header behaviour and navigation ------------------------------------------- */
.site-header {
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, height 0.3s ease;
}

/* Top-of-page state: header is transparent and sits over hero */
.header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  background: transparent;
  color: #ffffff;
}

/* Scrolled state: header becomes fixed with a light background */
.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
}

/* Logo in the header */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 24px;
  width: auto;
}

/* Navigation bar and drop-down menus */
.nav {
  display: flex;
  align-items: center;
}

.nav__menu {
  display: flex;
  gap: clamp(0.938rem, -0.711rem + 2.931vw, 2rem);
  padding: 0;
  margin: 0;
}

.nav__menu .nav__item {
  padding: 5px 0;
}


.nav__link {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-btn span svg ,
.nav__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.lang-btn:hover span svg ,
.nav__menu li:hover .nav__link svg {
  transform: rotate(180deg);
}

/* Basic dropdown styling.  You may customise colours to match branding. */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  padding: 10px;
  background-color: #ffffff7d;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(13px);
}
.header--sticky .nav__dropdown {
  backdrop-filter: none;
}

.nav__item:hover > .nav__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header--sticky .lang-btn:hover .nav__dropdown ,
.header--sticky .nav__item:hover > .nav__dropdown {
  background: rgba(255, 255, 255, 0.9);
}

.nav__dropdown li {
  margin-bottom: 8px;
}
.nav__dropdown li:last-child {
  margin-bottom: 0;
}
.nav__dropdown a {
  color: #1a1a1a;
  font-size: 14px;
}

/* Primary button styling */
.btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background-color: #1e8e8a;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #15756f;
}

/* Hero section basics (optional slider styles) */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.hero__slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.hero__slide {
  flex: 0 0 100%;
  position: relative;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 180px;
  padding-left: 16px;
  padding-right: 16px;
}

/* Section padding helper */
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

/* Footer layout --------------------------------------------------------------- */
.footer {
  background-color: #f9fafb;
  color: #1a1a1a;
  padding-top: 40px;
  padding-bottom: 32px;
}

.footer__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.footer__left {
  flex: 1 1 260px;
}

.footer__tagline {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 260px;
  text-align:left;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer__social li a {
  display: block;
  height: 24px;
  width: 24px;
}
/*
.footer__social img {
  height: 100%;
  width: 100%;
  border-color: #e6e6e6;
  color: #e6e6e6;
}
*/
.footer__social .social-icon {
  color: #99a1af;
  transition: color .2s ease;
}

.footer__social .social-icon:hover {
  color: #28817e;
}

.footer__contacts .contact-icon {
  color: #28817e;
}

.footer__menu {
  flex: 3 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__column {
  flex: 1 1 200px;
  color: #4a5565;
}
.footer__column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
.footer__column ul li {
  margin-bottom: 8px;
  font-size: 14px;
}
.footer__column ul li:last-child {
  margin-bottom: 0;
}
.footer__column ul a {
  color: #4a5565;
  text-decoration: none;
}
.footer__column ul a:hover {
  text-decoration: underline;
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}
.footer__contacts li img {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: #28817e;
}
.footer__contacts li:last-child {
  margin-bottom: 0;
}

.footer__bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e6e6e6;
  font-size: 12px;
  color: #99a1af;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer__bottom-link {
  display: flex;
  gap: 24px;
}
.footer__bottom-link a {
  color: #99a1af;
}
.footer__bottom-link a:hover {
  text-decoration: underline;
}
.footer__bottom p {
  font-size: 12px;
  color: #99a1af;
}

/* Responsive adjustments */
@media (max-width: 868px) {
  .nav {
    display: none; /* hide desktop nav on mobile; implement mobile menu via JS */
  }
  .footer__menu {
    flex-direction: column;
    gap: 24px;
  }
}

.section-p {
  padding: 96px 0;
}
/* section-contact */
.section-contact {
  position: relative;
  overflow: hidden;
}
.section-contact .bg-black {
  position: absolute;
  background: #000;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
}
.img-contact-bg {
  position: absolute;
  opacity: 0.6;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-contact .items-start {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.section-contact .items-start .col {
  width: 428px;
}
.section-contact .text-contact-title {
  color: #28817e;
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 40px;
}
.section-contact .text-contact-description {
  color: #ebe6e7;
}
.section-contact .card-contact-form {
  padding: 32px;
  background-color: #ffffff0d;
  border-radius: 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(5px);
}
.section-contact .card-contact-form form {
  display: flex;
  gap: 16px;
  width: 100%;
  flex-direction: column;
}
.section-contact .card-contact-form .grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-contact .card-contact-form label {
  display: block;
  font-size: 14px;
}
.section-contact .card-contact-form .input-field {
  color: #fff;
  padding: 0 16px;
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  background-color: #ffffff0d;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  outline-style: none;
  font-size: 16px;
}
.section-contact .card-contact-form .input-field::placeholder {
  color: #fff6;
  font-size: 16px;
  font-family: Inter, sans-serif;
}
.section-contact .card-contact-form button {
  display: block;
  width: 100%;
  height: 48px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border: none;
  background: #28817e;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.section-contact .card-contact-form button:hover {
  background: #28817ee6;
}
.section-h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #000;
  text-transform: uppercase;
}
/* section-steps */
.section-steps {
  background: #fff;
}
.section-benefits .container ,
.section-advantages .container ,
.section-steps .container {
  max-width: 1280px;
}
.section-steps .steps-holder {
  display: flex;
  gap: 16px;
}
.section-steps .steps-box {
  border-left: 4px solid #f6f3f4;
  padding: 24px;
  font-size: 14px;
  transition: all 0.2s ease;
  width: 100%;
}
.section-steps .steps-box:hover {
  border-color: #28817e;
}
.section-steps .steps-number {
  color: #f6f3f4;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 16px;
  display: block;
}
.section-steps h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}
.section-steps p {
  margin-bottom: 16px;
  color: #6a7282;
}
.section-steps .steps-box a {
  color: #28817e;
}
.section-steps .steps-box a:hover {
  text-decoration: underline;
}

/* section-advantages */
.section-advantages {
  background: #fbf9fa;
}
.section-advantages .text-advantages-subtitle {
  text-align: center;
  color: #4a5565;
}
.section-advantages .section-h2 {
  margin-bottom: 12px;
}
.advantages-holder {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
.advantages-holder .advantages-box {
  padding: 28px;
  text-align: center;
  background: #fff;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 #0000001a;
}
.advantages-holder .advantages-box h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.advantages-holder .advantages-icon {
  width: 48px;
  height: 48px;
  background: #28817e1a;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1000px) {
  .advantages-holder {
    flex-wrap: wrap;
  }
  .advantages-holder .advantages-box {
    width: calc(50% - 12px);
  }
  .site-header__container .header__cta {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .advantages-holder .advantages-box {
    width: 100%;
  }
}

/* section-carousel */
.section-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.section-carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-carousel-hold {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.section-carousel__content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 40px;
  box-sizing: border-box;
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}
.section-carousel__text {
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  flex-shrink: 0;
  font-family: Inter, sans-serif;
  backdrop-filter: blur(3px);
  background-color: #ffffff7d;
}
.section-carousel__text h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 36px;
}
.section-carousel__text p {
  color: #364153;
  margin-bottom: 24px;
}
.main-btn ,
.section-carousel__text button {
  display: flex;
  width: 100%;
  height: 48px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border: none;
  background: #28817e;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.main-btn img ,
.section-carousel__text button img {
  width: 16px;
}
.main-btn:hover ,
.section-carousel__text button:hover {
  background: #28817ee6;
}
.section-carousel__content .corner-text {
  font-size: 12px;
  line-height: 34px;
  display: block;
  padding: 0 12px;
  color: rgb(255 255 255 / 80%);
  border-radius: 14px;
  background: #00000059;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffff1a;
}

/* section-benefits */
.section-benefits {
  background: #fff;
}
.section-benefits__hold {
  display: flex;
  gap: 40px;
  margin-bottom: 56px;
}
.section-benefits__hold .col1 {
  width: 100%;
}
.section-benefits__hold .col1 p {
  color: #364153;
  font-size: 16px;
}
.link-about-to-configurator ,
.section-benefits__hold .col1 a {
  color: #28817e;
  font-weight: 500;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
}
.link-about-to-configurator:hover ,
.section-benefits__hold .col1 a:hover {
  text-decoration: underline;
}
.section-benefits__hold .col2 {
  width: 480px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 1px 3px 0 #0000001a;
}
.section-benefits__hold .col2 img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.section-benefits__boxes {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.section-benefits__box {
  position: relative;
  padding-right: 50px;
  display: flex;
  gap: 24px;
}
.section-benefits__icon {
  width: 64px;
  height: 64px;
  background-color: #f6f3f4;
  color: #28817e;
  border-radius: 16px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-benefits__icon svg {
  width: 32px;
  height: 32px;
}
.section-benefits__box:hover .section-benefits__icon {
  background-color: #28817e;
  color: #fff;
}
.section-benefits__boxes h4 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-benefits__boxes p {
  color: #4a5565;
}
.plus-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ebe6e7;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/icon07.svg) no-repeat 50% 50%;
  transition: background-color 0.2s ease;
}
.plus-icon:hover {
  background-color: #f9fafb;
}
@media (max-width: 1000px) {
  .section-benefits__hold {
    flex-direction: column;
  }
  .section-benefits__hold .col2 {
    width: 100%;
  }
}

/* section-box-holder */
.section-box-holder {
  background: #fff;
}
.section-box-holder .container {
  max-width: 1280px;
}
.section-box-holder .box-holder {
  display: flex;
  gap: 16px;
}
.section-box-holder .box {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #ebe6e7;
  box-shadow: 0 1px 3px 0 #0000001a;
  position: relative;
  width: 100%;
  transition: all 0.2s ease;
}
.section-box-holder .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 4px -2px #0000001a;
}
.section-box-holder .box .plus-icon {
  right: 24px;
  top: 24px;
}
.section-box-holder .box h3 {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #000
}
.section-box-holder .box p {
  margin-top: 8px;
  font-size: 14px;
  color: #4a5565;
}
.section-box-holder .box .icon {
  width: 44px;
  height: 44px;
  background: #28817e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

@media (max-width: 968px) {
  .section-box-holder .box-holder {
    flex-wrap: wrap;
  }
  .section-box-holder .box-holder .box {
    width: calc(50% - 8px);
  }
  .section-contact .items-start {
    flex-direction: column;
  }
  .section-contact .items-start .col {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section-steps .steps-holder {
    flex-wrap: wrap;
  }
  .section-steps .steps-holder ,
  .section-box-holder .box-holder .box {
    width: 100%;
  }
  .section-p {
    padding: 64px 0;
  }
  .section-benefits__boxes {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .section-carousel__content .corner-text {
    display: none;
  }
}

/* section-main-hero */
.section-main-hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #101828;
}
.section-main-hero .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}
.section-main-hero .slider {
  min-height: 100%;
  display: flex;
  width: 100%;
}
.section-main-hero .slide {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.slide-text-container {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
.section-main-hero .slide-text {
  max-width: 542px;
}
.section-main-hero .slide-text h1 {
  font-size: 60px;
  line-height: 66px;
  color: #fff;
  margin-bottom: 24px;
}
.section-main-hero .slide-text h1 span {
  color: #28817e;
}
.section-main-hero .slide-text p {
  margin-bottom: 32px;
  font-size: 20px;
  color: #ebe6e7;
}
.section-main-hero .slide-text .main-btn {
  width: 274px;
  height: 56px;
  font-size: 18px;
  font-weight: 700;
}
.section-main-hero .slide-text .main-btn3 {
  width: 378px;
}
.hero-btm-row {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #000;
}
.hero-btm-row .container {
  max-width: 1280px;
  display: flex;
  gap: 32px;
  padding: 32px;
}
.hero-btm-row .container .box {
  width: 100%;
}
.hero-btm-row .container .box strong {
  color: #28817e;
  display: block;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  font-family: "Montserrat", sans-serif;
}
.hero-btm-row .container .box p {
  color: #d1d5dc;
  margin-top: 4px;
  font-size: 14px;
}
.hero-btm-row .container .box a {
  color: #fff;
  line-height: 36px;
  transition: all 0.2s ease;
  background: url(../images/icon09.svg) no-repeat 100% 50%;
  padding-right: 25px;
  font-size: 14px;
}
.hero-btm-row .container .box a:hover {
  color: #28817e;
  text-decoration: underline;
  background: url(../images/icon08.svg) no-repeat 100% 50%;
}
@media (max-width: 768px) {
  .section-main-hero .slide-text h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .hero-btm-row {
    display: none;
  }
  .footer__column {
    flex: 1;
  }
  .container {
    padding: 0 16px;
  }
  .section-carousel-hold .overflow-hidden .slide ,
  .section-carousel-hold .overflow-hidden .flex ,
  .section-carousel-hold .overflow-hidden {
    height: 100%;
  }
  .section-carousel {
    min-height: 430px;
    aspect-ratio: inherit;
  }
}

/* section-create */
.section-create {
  background: #fbf9fa;
  border: solid #f6f3f4;
  border-width: 1px 0;
}
.section-create .container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}
.section-create__box {
  grid-column: span 5 / span 5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 40px;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-create__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.section-create__box .text {
  position: relative;
  margin-bottom: 30px;
}
.section-create h3 {
  color: #fff;
  font-size: 36px;
  margin-top: 12px;
  line-height: 40px;
}
.section-create p {
  color: #ffffffd9;
  margin-top: 20px;
}
.section-create .top-text {
  text-transform: uppercase;
  margin: 0;
  font-size: 14px;
}
.section-create__box .main-btn {
  position: relative;
  background: #fff;
  width: 230px;
  color: #000;
  font-size: 14px;
}
.section-create__box .main-btn:hover {
  background-color: #f6f3f4;
}
.section-create__box2 {
  grid-column: span 7 / span 7;
  padding: 40px;
  background: #fff;
  box-shadow: 0 1px 3px 0 #0000001a;
  border: 1px solid #ebe6e7;
  border-radius: 24px;
}
.section-create__box2 .top-text {
  color: #6a7282;
  font-size: 12px;
}
.section-create__box2 h3 {
  color: #000;
  font-size: 30px;
}
.section-create__box2 .main-btn {
  width: 230px;
  margin: 0 auto;
  font-size: 14px;
}
.doors-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.doors-list .block {
  position: relative;
  padding: 16px;
  box-shadow: 0 1px 3px 0 #0000001a;
  transition: all 0.2s ease;
  border: 1px solid #ebe6e7;
  border-radius: 16px;
}
.doors-list .block .img {
  background: #fbf9fa;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.doors-list .block .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.doors-list .block a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.doors-list .block:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 4px -2px #0000001a;
}
.doors-list .btm-row {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.doors-list .btm-row p {
  color: #6a7282;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 14px;
  margin: 0;
}
.doors-list .btm-row strong {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  color: #101828;
}
.doors-list .btm-row .arrow {
  width: 36px;
  height: 36px;
  background: #28817e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28817e;
  transition: all 0.2s ease;
}
.doors-list .block:hover .btm-row .arrow {
  background: #28817e;
  color: #fff;
}
@media (max-width: 1000px) {
  .section-create .container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0;
  }
  .section-create__box {
    margin-bottom: 32px;
  }
}
@media (max-width: 878px) {
  .doors-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .section-main-hero {
    padding: 0;
  }
}


.relative {
  position: relative;
}
.overflow-hidden {
  overflow: hidden;
}

.mobile-bg-black {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(15, 15, 15, 0.8);
  z-index: 1000;
  display: none;
}
.mobile-menu {
  padding: 24px;
  background: #fff;
  overflow-y: auto;
  width: 300px;
  height: 100%;
  z-index: 1001;
  position: fixed;
  top: 0;
  right: -100%;
  transition: right 0.3s ease;
  display: none;
}
.open-menu  .mobile-menu {
  display: block;
  right: 0;
}
.open-menu .mobile-bg-black {
  display: block;
}
.img-mobile-menu-logo {
  width: 170px;
  display: block;
  margin-bottom: 32px;
}
.mobile-menu .btn {
  width: 100%;
  margin-top: 30px;
}
.mobile-menu h4 {
  color: #101828;
  font-weight: 700;
  margin-bottom: 12px;
}
.mobile-menu .mobile-menu__nav {
  padding-left: 16px;
  border-left: 2px solid #f6f3f4;
  margin-bottom: 12px;
}
.mobile-menu .mobile-menu__nav li {
  margin-bottom: 7px;
}
.mobile-menu .mobile-menu__nav a {
  color: #4a5565;
}
.mobile-menu .close-btn {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #000;
}
@media (max-width: 878px) {
  .mobile-menu {
    display: block;
  }
}
.section-text {
  background: #fff;
  text-align: center;
}
.section-text .container {
  max-width: 900px;
}
.section-text .text-title {
  font-size: 36px;
  font-weight: 700;
}
.section-text .text-description {
  font-size: 18px;
  color: #4a5565;
  margin-top: 20px;
}
.section-doors-black-edition ,
.section-doors-black-edition .container ,
.section-accessories .container ,
.section-accessories {
  position: relative;
}
.img-doors-black-edition-bg ,
.img-doors-accessories-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-doors-accessories-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.text-doors-black-edition-description ,
.text-doors-accessories-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}
.list-doors-accessories {
  margin-top: 24px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}
.list-doors-accessories li {
  position: relative;
  padding-left: 18px;
}
.list-doors-accessories li:after {
  width: 6px;
  height: 6px;
  background: #bbbabc;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
}
.absolute-black {
  background: #00000099;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.text-doors-black-edition-title {
  font-size: 36px;
  color: #fff;
}
.section-doors-black-edition .container {
  text-align: center;
  max-width: 700px;
}
.link-doors-black-edition {
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  width: 245px;
  line-height: 40px;
  display: block;
  margin: 32px auto 0;
  font-weight: 500;
  transition: all 0.2s ease;
}
.link-doors-black-edition:hover {
  background: #fff;
  color: #000;
}
.section-doors-properties {
  background: #fff;
}
.text-world-why-title ,
.text-doors-faq-title ,
.text-doors-properties-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
}
.section-doors-properties .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  display: grid;
  margin-bottom: 64px;
}
.text-world-why-title ,
.section-doors-properties .grid:last-child {
  margin-bottom: 0;
}
.card-doors-image {
  padding: 24px;
  box-shadow: 0 1px 3px 0 #0000001a;
  border: 1px solid #ebe6e7;
  border-radius: 16px;
}
.card-doors-image img {
  width: 100%;
  height: 320px;
  object-fit: contain;
}
.text-doors-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.text-doors-description {
  color: #4a5565;
  margin-bottom: 24px;
}
.link-doors-more {
  color: #28817e;
}
.link-doors-more:hover {
  text-decoration: underline;
}
.text-doors-intro {
  background: #fff;
  color: #4a5565;
  font-size: 18px;
  text-align: center;
  padding: 64px 0;
}
.text-doors-intro .container {
  max-width: 900px;
}
.section-hero .container ,
.section-hero {
  position: relative;
}
.img-hero-bg {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
}
.section-hero h1 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 32px;
}
.section-hero .btn--primary {
  width: 160px;
}
.main-p {
  padding-top: 84px;
}
.text-doors-models-title {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.carousel-doors-models {
  overflow: auto;
  display: flex;
  gap: 24px;
  padding-bottom: 20px;
}
.carousel-doors-models .block {
  position: relative;
  box-shadow: 0 1px 3px 0 #0000001a;
  transition: all 0.2s ease;
  border: 1px solid #ebe6e7;
  border-radius: 16px;
  width: 300px;
  flex-shrink: 0;
}
.carousel-doors-models .block .img {
  background: #fbf9fa;
  border-radius: 12px 12px 0 0;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
}
.carousel-doors-models .block .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.carousel-doors-models .block a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.carousel-doors-models .block:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 4px -2px #0000001a;
}
.carousel-doors-models .block .btm-row {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 20px;
}
.carousel-doors-models .block .btm-row p {
  color: #6a7282;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 14px;
  margin: 0;
}
.carousel-doors-models .block .btm-row strong {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  color: #101828;
}
.carousel-doors-models .block .btm-row .arrow {
  width: 36px;
  height: 36px;
  background: #28817e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28817e;
  transition: all 0.2s ease;
}
.carousel-doors-models .block .block:hover .btm-row .arrow {
  background: #28817e;
  color: #fff;
}
.section-faq {
  background: #fbf9fa;
}
.faq-list li {
  font-weight: 500;
  font-style: 14px;
  border-bottom: 1px solid #e6e6e6;
  color: #000;
}
.faq-list a {
  display: flex;
  position: relative;
  color: #000;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.faq-list .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-list .faq-content p {
  margin-bottom: 20px;
  font-weight: 400;
}
.faq-list a svg {
  color: #737373;
  transition: transform 0.3s ease;
}
.faq-list li.active .faq-open svg {
  transform: rotate(180deg);
}

@media (max-width: 868px) {
  .section-doors-properties .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .section-doors-properties .order-2 {
    order: 2;
  }
  .section-hero h1 {
    font-size: 30px;
  }
}
.intro-block {
  max-width: 896px;
  margin: 0 auto;
  border: 1px solid #ebe6e7;
  box-shadow: 0 1px 3px 0 #0000001a;
  padding: 40px;
  color: #101828;
  font-weight: 600;
  border-radius: 24px;
  font-size: 16px;
}
.intro-block .block-hold {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.intro-block .block {
  background: #fbf9fa;
  padding: 20px;
  border: 1px solid #ebe6e7;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  color: #364153;
  font-weight: 400;
  width: 100%;
}
.rounded-icon {
  width: 28px;
  height: 28px;
  background: #28817e1a;
  color: #28817e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-components-intro {
  padding: 64px 0;
}
.section-components-list {
  background: #fbf9fa;
}
.list-component2 .rounded-icon svg {
  width: 16px;
  height: 16px;
}
/* card-component */
.card-component {
  padding: 32px;
  background: #fff;
  border: 1px solid #ebe6e7;
  border-radius: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  box-shadow: 0 1px 3px 0 #0000001a;
  transition: all 0.2s ease;
}
.section-components-list2 .card-component:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 4px -2px #0000001a;
}
.card-component__icon {
  color: #28817e;
  background-color: #28817e1a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.card-component__icon-w {
  background: #fff;
  color: #101828;
}
.card-about-highlight .text-kicker ,
.text-component-kicker {
  color: #6a7282;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.card-component h2 {
  font-size: 30px;
  line-height: 34px;
  margin-top: 8px;
}
.text-component-subtitle {
  margin-top: 16px;
  color: #101828;
  font-weight: 600;
}
.text-component-subtitle:first-child {
  margin-top: 0;
}
.text-component-text {
  margin-top: 16px;
  color: #364153;
}
.list-component {
  margin-top: 16px;
  color: #364153;
}
.list-component li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.list-component li p {
  margin: 0;
}
.text-component-outcome {
  padding: 20px;
  background: #fbf9fa;
  border: 1px solid #ebe6e7;
  border-radius: 16px;
  color: #364153;
  margin-top: 24px;
}
.section-components-list .container {
  max-width: 1024px;
}
.card-component-last {
  display: block;
  margin-bottom: 0;
}
.card-component-last .text-component-subtitle {
  margin-top: 0;
}
.card-component-last .text-component {
  margin-top: 16px;
  color: #364153;
}
.card-component .btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.card-component .btn-row a {
  color: #28817e;
  font-size: 16px;
  font-weight: 600;
}
.card-component .btn-row a:hover {
  text-decoration: underline;
}
.card-component .btn-row .main-btn {
  width: auto;
  padding: 0 20px;
  border-radius: 24px;
  white-space: nowrap;
}
.section-hero .text-kicker {
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffffd9;
  letter-spacing: 2px;
}
.section-components-hero h1 {
  font-size: 60px;
  margin: 16px 0 0;
  line-height: 64px;
}
.page-sound-insulation .text-subtitle ,
.section-hero-how .text-subtitle ,
.section-components-hero .text-subtitle {
  font-size: 18px;
  color: #ffffffd9;
  margin-top: 20px;
}
.section-components-hero .max-w-3xl {
  max-width: 768px;
}
.grid-components-chips {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  display: grid;
}
.grid-components-chips a {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 22px;
  color: #ffffffd9;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: background-color 0.2s ease;
}
.grid-components-chips a .text-white svg ,
.grid-components-chips a .text-white {
  width: 20px;
  height: 20px;
}
.grid-components-chips a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.grid-components-chips2 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.grid-components-chips2 .ml-1 svg {
  width: 16px;
  height: 16px;
  margin: 4px 0 -4px;
}
.section-doors-properties-intro {
  padding: 64px 0;
  background: #fff;
}
.section-doors-properties-intro .text-doors-properties-intro-body {
  font-weight: 400;
}
.card-component .block-hold {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.card-component .block-hold .block {
  background: #fbf9fa;
  padding: 8px 16px;
  border: 1px solid #ebe6e7;
  border-radius: 24px;
  display: flex;
  gap: 12px;
  color: #364153;
  font-weight: 400;
  font-size: 14px;
  align-items: center;
}
.card-component .block-hold .block .rounded-icon {
  padding: 0;
  background: none;
  width: 16px;
  height: 16px;
}
.card-component__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.text-world-hero-title {
  text-align: center;
}
.bg-primary-row {
  background: #28817e;
  padding: 64px 0;
}
.bg-primary-row .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 32px;
  text-align: center;
}
.bg-primary-row .grid .p-4 {
  padding: 16px;
  border-left: 1px solid #539a98;
}
.bg-primary-row .grid .p-4:first-child {
  border: none;
}
.bg-primary-row .text-5xl {
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 8px;
  color: #fff;
}
.bg-primary-row .text-sm {
  text-transform: uppercase;
  color: #ffffffd9;
}
.text-world-why-subtitle {
  color: #4a5565;
  max-width: 678px;
  text-align: center;
  margin: 16px auto 0;
}

@media (max-width: 868px) {
  .bg-primary-row .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .bg-primary-row .grid .p-4 {
    border: solid #539a98;
    border-width: 1px 0 0;
  }
  .intro-block .block-hold {
    flex-direction: column;
  }
  .intro-block {
    padding: 30px;
  }
  .card-component {
    padding: 20px;
  }
  .card-component h2 {
    font-size: 24px;
  }
  .card-component .btn-row {
    flex-direction: column;
    gap: 20px;
  }
  .grid-components-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-components-hero h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .card-component2 {
    flex-direction: column;
  }
  .card-component2 .btn-row {
    justify-content: center;
    width: 100%;
  }
}
.section-world-certificates {
  padding: 40px;
  border: 1px solid #ebe6e7;
  border-radius: 24px;
  margin-top: 64px;
}
.section-world-certificates h3 {
  text-align: center;
  color: #6a7282;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}
.section-world-certificates .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  justify-items: center;
  align-items: center;
  margin-top: 32px;
}
.section-world-certificates .grid > div {
  padding: 16px;
  box-shadow: 0 1px 3px 0 #0000001a;
  border-radius: 12px;
  border: 1px solid #ebe6e7;
  max-width: 220px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.section-world-certificates .grid > div img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.text-world-growth {
  margin-top: 56px;
  max-width: 896px;
  margin-inline: auto;
  text-align: center;
  color: #4a5565;
}
.section-world-video {
  margin-top: 56px;
}
.section-world-video .relative {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px #00000040;
  height: 520px;
}
.section-world-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.section-world-video .absolute-black {
  background: rgba(15, 15, 15, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  color: #fff;
}
.section-world-video:hover .section-world-video-img ,
.section-world-video:hover .video-play-icon {
  transform: scale(1.1);
}
.grid-rows {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}
.grid-rows p {
  color: #364153;
}
.grid-rows > div {
  grid-column: span 6 / span 6;
}
.grid-rows .img-world-production {
  border: 1px solid #ebe6e7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 #0000001a;
}
.grid-rows .img-world-production img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.section-about-experience .grid-rows .img-world-production {
  grid-column: span 5 / span 5;
}
.section-hero-how {
  padding: 160px 0;
}
.section-how-steps .grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  align-items: flex-start;
}
.section-how-steps .col-span-5 {
  grid-column: span 5 / span 5;
}
.section-how-steps .col-span-7 {
  grid-column: span 7 / span 7;
}
.link-how-to-configurator {
  display: flex;
  font-weight: 600;
  gap: 8px;
  color: #28817e;
  align-items: center;
  margin-top: 32px;
}
.link-how-to-configurator:hover {
  text-decoration: underline;
}
.link-how-to-configurator svg {
  width: 16px;
  height: 16px;
}
.card-component-bg {
  background: #fbf9fa;
}
.page-sound-insulation h1 ,
.section-hero-how h1 {
  font-size: 60px;
  margin-bottom: 20px;
}
@media (max-width: 868px) {
  .grid-rows {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .section-world-certificates .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-world-certificates {
    padding: 32px;
  }
  .section-world-video .relative {
    height: 420px;
  }
  .grid-rows .order-2 {
    order: 2;
  }
  .section-how-steps .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0;
  }

}
.contact-area h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}
.contact-holder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fbf9fa;
  padding: 48px;
  border-radius: 16px;
  gap: 48px;
  margin-bottom: 64px;
}
.contact-form-column {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px 0 #0000001a;
}
.contact-form-column h3 {
  margin-bottom: 24px;
  font-size: 20px;
}
.contact-form-column label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: #000;
  margin-bottom: 4px;
}
.contact-form-column .form-textarea ,
.contact-form-column .form-input {
  border: 1px solid #d1d5dc;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  width: 100%;
  height: 42px;
  display: block;
}
.contact-form-column form > div {
  margin-bottom: 16px;
}
.contact-form-column .form-textarea {
  height: 128px;
  resize: none;
  margin-bottom: 20px;
}
.contact-column .contact-icon {
  width: 40px;
  height: 40px;
  background: #28817e1a;
  border-radius: 50%;
  color: #28817e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-column .contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact-column h3 {
  font-size: 24px;
  margin-bottom: 24px;
}
.contact-column .flex {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 16px;
}
.contact-column .font-bold {
  color: #000;
  font-weight: 600;
}
.contact-column .text-gray-600 ,
.contact-column a {
  color: #4a5565;
  display: flex;
}
.row-faq-hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
}
.main-btn2 {
  width: 178px;
  border-radius: 24px;
}
.main-btn2 svg {
  width: 16px;
  height: 16px;
}
.link-faq-to-doors {
  color: #ffffffe6;
  font-weight: 600;
}
.link-faq-to-doors:hover {
  text-decoration: underline;
}
.row-faq-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.row-faq-nav .link-faq-home {
  font-size: 16px;
  color: #28817e;
  font-weight: 600;
}
.row-faq-nav .link-faq-home:hover {
  text-decoration: underline;
}
.page-security .section-hero-how {
  padding: 112px 0;
}
.page-sound-insulation .section-hero .text-subtitle ,
.page-security .section-hero .text-subtitle {
  max-width: 768px;
}
.card-security-outcome {
  padding: 28px;
  border: 1px solid #ebe6e7;
  border-radius: 24px;
  margin-top: 28px;
  background: #fff;
  color: #364153;
}
.section-smart-body .container ,
.section-sound-body .container ,
.page-security .container {
  max-width: 960px;
}
.card-security-intro {
  padding: 40px;
  background: #fff;
  border: 1px solid #ebe6e7;
  border-radius: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px 0 #0000001a;
}
.card-security-intro h2 {
  font-size: 30px;
}
.card-security-intro p {
  margin-top: 16px;
  color: #364153;
}
.card-security-intro p:first-child {
  margin-top: 0;
}
.card-security-intro .card-component ,
.card-component .card-component {
  margin-top: 24px;
  box-shadow: none;
}
.bg-gradient {
  background: linear-gradient(
          10deg,
          #f4f6f7 0%,
          #e9eef1 50%,
          #dde3e7 100%
  );
}
.section-gray-bg {
  background: #fbf9fa;
}
.section-thermal .container {
  max-width: 1024px;
}
.grid-thermal-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.grid-thermal-highlight {
  background: #fbf9fa;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #ebe6e7;
}
.grid-thermal-highlight p {
  color: #364153;
  margin-top: 8px;
}
.grid-thermal-highlight h4 {
  color: #000;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
}
.center-message-hold {
  text-align: center;
}
.center-message-hold .container {
  padding: 32px;
}
.center-message-hold h1 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 700;
}
.center-message-hold p {
  max-width: 448px;
  margin: 0 auto 32px;
}
.center-message-hold a {
  color: #28817e;
}
.center-message-hold a:hover {
  text-decoration: underline;
}
.page-holder {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.section-warranty-general .container {
  max-width: 896px;
}
.warranty-title {
  font-size: 36px;
  font-weight: 700;
}
.section-warranty-general .grid-thermal-highlights {
  margin-top: 40px;
}
.grid-warranty-exclusions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.grid-warranty-exclusions-b {
  padding: 20px;
  border: 1px solid #ebe6e7;
  border-radius: 16px;
  align-items: flex-start;
  display: flex;
  gap: 12px;
}
.exclusions-number {
  color: #101828;
  border-radius: 50%;
  text-align: center;
  width: 28px;
  line-height: 28px;
  background: #f2f2f2;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
}
.section-p .text-center {
  text-align: center;
}
.card-warranty-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card-warranty {
  padding: 28px;
  border: 1px solid #ebe6e7;
  box-shadow: 0 1px 3px 0 #0000001a;
  background: #fff;
  border-radius: 24px;
}
.flex-items {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.text-warranty-period {
  font-size: 48px;
  line-height: 50px;
  color: #28817e;
  font-weight: 700;
}
.warranty-period-label {
  color: #6a7282;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-warranty-conditions .container ,
.section-warranty-periods .container {
  max-width: 1088px;
}
.section-warranty-general .card-component {
  margin-top: 40px;
}
.warranty-conditions-h {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: self-start;
}
.warranty-conditions-h .lg-col {
  grid-column: span 6 / span 6;
}
.warranty-conditions-h .card-warranty-note {
  grid-column: span 6 / span 6;
  padding: 28px;
  border: 1px solid #ebe6e7;
  box-shadow: 0 1px 3px 0 #0000001a;
  background: #fff;
  border-radius: 24px;
}
.section-warranty-claim-h {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: flex-start;
  max-width: 1024px;
  margin-inline: auto;
}
.section-warranty-claim-h .lg-col {
  grid-column: span 7 / span 7;
}
.section-warranty-claim-h .lg-col5 {
  grid-column: span 5 / span 5;
}
.list-component-file .rounded-icon svg {
  width: 16px;
  height: 16px;
}
.box-bg {
  padding: 32px;
  border: 1px solid #ebe6e7;
  box-shadow: 0 1px 3px 0 #0000001a;
  background: #fff;
  border-radius: 24px;
}
.box-bg.box-gray {
  background: #fbf9fa;
}
.warranty-fix-title {
  font-size: 20px;
}
.section-warranty-claim-h .box-bg {
  margin-top: 40px;
}
.card-warranty-claimform {
  margin-top: 24px;
  background: #101828;
  border-radius: 24px;
  color: #fff;
  padding: 32px;
}
.card-warranty-claimform .text-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}
.card-warranty-claimform .text-component-subtitle {
  color: #fff;
}
.card-warranty-claimform .text-component-text {
  font-size: 14px;
  color: #c3d1c9;
  margin-top: 24px;
}
.card-warranty-claimform a {
  margin-top: 24px;
  display: inline-block;
}
.card-warranty-claimform a:hover {
  text-decoration: underline;
}

.box-slide {
  position: relative;
  overflow: hidden;
}

.box-slide__slides {
  display: flex;
  transition: transform 0.5s ease;
}

.box-slide__slide {
  min-width: 100%;
  padding: 60px;
  box-sizing: border-box;
}
.box-slide__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-slide__controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero__slides {
  display: flex;
  transition: transform 0.5s ease;
}

.hero__slide {
  min-width: 100%;
  padding: 60px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.hero__controls {
  display: none;
}


.hero {
  position: relative;
  overflow: hidden;
}

.hero__slides {
  display: flex;
  transition: transform 0.5s ease;
}

.hero__slide {
  min-width: 100%;
  padding: 60px;
  box-sizing: border-box;
}
.hero {
  overflow: hidden;
  cursor: grab;
}

.hero:active {
  cursor: grabbing;
}

.hero__slides {
  display: flex;
  will-change: transform;
}
.section-about-text .container {
  max-width: 896px;
}
.section-about-text h2 {
  font-size: 36px;
  line-height: 40px;
}
.section-about-text p {
  margin-top: 20px;
}
.section-about-text p.size18 {
  font-size: 18px;
}
.section-about-text .card-component {
  margin-top: 40px;
}
.card-about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card-about-highlight {
  padding: 28px;
  border: 1px solid #ebe6e7;
  box-shadow: 0 1px 3px 0 #0000001a;
  border-radius: 16px;
}
.card-about-highlight .text-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
}
.card-about-highlight p {
  margin-top: 12px;
}
.card-about-highlight .text-kicker {
  font-size: 14px;
}
.section-about-experience {
  padding: 80px 0;
}
.section-about-experience .grid-rows {
  margin-top: 0;
}
.section-about-experience h2 {
  font-size: 36px;
  line-height: 40px;
}
.section-about-experience p {
  margin-top: 20px;
  font-size: 16px;
}
.badge-about-hold {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}
.badge-about {
  padding: 0 16px;
  font-size: 14px;
  line-height: 36px;
  border-radius: 18px;
  background: #ecedee;
  color: #1e2939;
  font-weight: 500;
}
.badge-about2 {
  background: #e4eeee;
  color: #28817e;
}

@media (max-width: 868px) {
  .contact-holder {
    display: block;
    padding: 20px;
  }
  .contact-form-column {
    padding: 20px;
  }
  .page-sound-insulation h1 ,
  .section-hero-how h1 ,
  .contact-area h1 {
    font-size: 30px;
  }
  .card-security-intro h2 {
    font-size: 26px;
  }
  .card-security-intro {
    padding: 30px;
  }
  .grid-thermal-highlights {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-warranty-exclusions ,
  .warranty-conditions-h ,
  .card-warranty-cols {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .section-warranty-claim-h .lg-col {}
  .warranty-title {
    font-size: 30px;
  }
  .section-warranty-claim-h {
    display: block;
  }
  .hero__slide {
    padding: 30px;
    min-height: 100vh;
  }
  .slide-text-container {
    margin-bottom: 0;
  }
  .section-main-hero .slide-text .main-btn2 {
    width: 275px;
  }
  .card-about-highlights {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .section-about-text h2 ,
  .section-about-experience h2 {
    font-size: 30px;
  }
  .section-about-experience .grid-rows {
    display: block;
  }
  .section-about-experience .grid-rows .img-world-production {
    margin: 40px 0;
  }
  .section-about-experience .grid-rows .img-world-production:first-child {
    margin-top: 0;
  }
  .section-about-experience .grid-rows .img-world-production:last-child {
    margin-bottom: 0;
  }
  .section-about-experience {
    padding: 64px 0;
  }
  .footer__bottom {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
  .footer__tagline {
    max-width: none;
  }
  .section-carousel__text h3 {
    font-size: 26px;
  }
}
.section-carousel-hold .hero__slider ,
.section-carousel-hold .hero ,
.section-carousel-hold .hero__slides ,
.section-carousel-hold .hero__slide {
  height: 100%;
}
.lang-btn {
  position: relative;
  padding: 5px 0;
}
.lang-btn span {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.lang-btn span a {
  color: #1a1a1a;
  font-weight: 600;
}
.lang-btn span svg {
  color: #1a1a1a;
}
.lang-btn:hover span {
  background: #deeded66;
}
.lang-btn:hover .nav__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #101828;
}
.nav__dropdown a em {
  font-style: normal;
  color: #6f7887;
}
.nav__dropdown a:hover {
  color: #6f7887;
  background: #deeded;
}
.nav__dropdown-menu {
  width: 500px;
  padding: 25px;
  display: flex;
}
.nav__dropdown-menu2 {
  width: 600px;
}
.nav__dropdown-menu-last {
  right: 0;
  left: auto;
}
.nav__dropdown-menu {
  display: flex;
  flex-wrap: wrap;
}
.nav__dropdown-menu ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}
.nav__dropdown-menu li {
  width: calc(50% - 8px);
  margin: 0;
}
.nav__dropdown-menu li strong {
  display: block;
  font-weight: 500;
  color: #000;
}
.nav__dropdown-menu li a {
  color: #524949;
  display: block;
  padding: 10px 13px;
  line-height: 19px;
  transition: background 0.2s ease;
}
.nav__dropdown-menu .nav__dropdown-box-link {
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff !important;
  border-radius: 10px;
  background: linear-gradient(0deg,rgba(127, 173, 174, 1) 0%, rgba(40, 129, 126, 1) 100%) !important;
  width: 190px;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 18px;
  transition: opacity 0.2s ease;
}
.nav__dropdown-menu .nav__dropdown-box-link:hover {
  opacity: 0.9;
}
.nav__dropdown-menu .nav__dropdown-box-link strong {
  font-size: 18px;
  display: block;
}
.nav__dropdown-menu li a:hover {
  background: #deeded;
}
.nav__dropdown-menu li a:hover strong {
  color: #524949;
}
.header--sticky .nav__dropdown-menu li a:hover {
  background: #eee;
}
.nav__dropdown-menu .nav__dropdown-box-link + ul {
  flex-direction: column;
}
.nav__dropdown-menu .nav__dropdown-box-link + ul li {
  width: 100%;
}
.nav__dropdown-menu3 {
  flex-wrap: nowrap;
  gap: 15px;
}