html {
  scroll-behavior: smooth;
  scroll-margin: 70px;
}

body {
  font-size: 16px;
  font-weight: 600;
  font-family: "Onest", sans-serif;
}

.page-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8a2722;
  transform: scaleY(0);
  transform-origin: bottom;
  z-index: 9999;
  pointer-events: none;
  display: none;
}

.word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.line {
  overflow: hidden;
  will-change: transform, opacity, filter;
}

h1 {
  color: white;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  overflow: hidden;
  font-size: 40px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  h1 {
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 68px;
  }
}

h2 {
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 32px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 48px;
  }
}
@media (min-width: 1280px) {
  h2 {
    font-size: 52px;
  }
}

h3 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  h3 {
    font-size: 40px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  h4 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 32px;
    line-height: 1.4;
  }
}

h5 {
  font-size: 18px;
  letter-spacing: -0.04em;
  line-height: 1.4;
  color: #090c0a;
}

h6 {
  line-height: 1.5;
}

p {
  font-size: 16px;
  line-height: 1.8;
}
p.lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.sub-title {
  position: relative;
  color: #df5430;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  overflow: hidden;
  background: #fae5da;
  width: fit-content;
  padding: 4px 12px;
  position: relative;
  border-radius: 24px;
  opacity: 0.8;
}

.title {
  perspective: 1000px;
  will-change: transform, opacity;
}

.line,
.word {
  overflow: hidden;
}

#site-header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1001;
  padding: 16px;
}
@media (min-width: 1024px) {
  #site-header .container-fluid {
    width: 100%;
    padding: 0 3.8vw;
  }
}
#site-header .logo {
  outline: none;
}
#site-header .logo a {
  display: block;
}
#site-header .logo img {
  max-width: 140px;
  height: auto;
}
#site-header nav.menu-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  #site-header nav.menu-wrapper {
    display: flex;
  }
}
#site-header nav.menu-wrapper > ul.menu {
  display: flex;
  position: relative;
}
#site-header nav.menu-wrapper > ul.menu > li {
  padding: 0 24px;
  position: relative;
}
#site-header nav.menu-wrapper > ul.menu li.has-sub:hover .sub-menu {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
#site-header nav.menu-wrapper > ul.menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  top: 24px;
  position: absolute;
  background: white;
  padding: 32px 24px 16px;
  left: 0%;
  min-width: 280px;
  width: fit-content;
  box-shadow: 0 10px 15px -10px #090c0a;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: all 0.45s ease;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  z-index: 100;
}
#site-header nav.menu-wrapper > ul.menu .sub-menu li {
  position: relative;
  padding: 4px 0;
}
#site-header nav.menu-wrapper .menu-link {
  display: block;
  overflow: hidden;
}
#site-header nav.menu-wrapper .menu-link span {
  display: block;
  position: relative;
  padding: 0;
  transition: all 0.5s ease;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  font-size: 16px;
  opacity: 1;
  color: rgba(9, 12, 10, 0.7);
  font-weight: 400;
  letter-spacing: -0.01em;
  z-index: 4;
}
#site-header nav.menu-wrapper .menu-link span:after {
  content: attr(data-title);
  color: #df5430;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  transition: all 0.5s ease;
  opacity: 0;
}
#site-header nav.menu-wrapper .menu-link:hover span, #site-header nav.menu-wrapper .menu-link:focus span {
  transform: rotateX(90deg) translateY(-22px);
  color: rgba(9, 12, 10, 0);
}
#site-header nav.menu-wrapper .menu-link:hover span:after, #site-header nav.menu-wrapper .menu-link:focus span:after {
  color: #df5430;
  opacity: 1;
}
#site-header nav.menu-wrapper li.active a.menu-link span {
  transform: rotateX(90deg) translateY(-22px);
  color: rgba(9, 12, 10, 0);
}
#site-header nav.menu-wrapper li.active a.menu-link span:after {
  color: #df5430;
  opacity: 1;
}
#site-header a.btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

.fixed {
  position: fixed;
  top: 0;
  width: 5%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 100;
  font-family: "Onest", sans-serif;
  display: none;
}
@media (min-width: 1024px) {
  .fixed {
    display: flex;
  }
}
.fixed-inner {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.fixed.left {
  left: 0;
}
.fixed.right {
  right: 0;
}
.fixed a,
.fixed p,
.fixed span {
  font-weight: 500;
  color: #090c0a;
}
.fixed p.title,
.fixed .contact-info,
.fixed .back_to_top {
  writing-mode: vertical-rl;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  letter-spacing: 2px;
  width: fit-content;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.fixed p.title {
  color: #090c0a;
  transform: rotate(180deg);
  bottom: 44%;
}
.fixed ul.social {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 40px;
  left: 0;
  margin: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding-left: top;
}
.fixed ul.social:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: rgba(229, 118, 82, 0.2);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.fixed ul.social li {
  padding: 12px;
  background: #fff;
  position: relative;
  z-index: 1;
  margin: 24px 0;
}
.fixed ul.social li:first-child {
  margin-top: 56px;
}
.fixed ul.social li:last-child {
  margin-bottom: 0;
}
.fixed ul.social li a {
  color: #e57652;
  display: block;
  transition: all 0.6s ease-in-out;
}
.fixed ul.social li a:hover {
  transform: scale(1.2);
}
.fixed ul.social li a svg {
  fill: #d13d25;
  width: 24px;
  height: 24px;
}
.fixed .contact-info {
  bottom: 40px;
  color: #181b19;
  letter-spacing: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.fixed .contact-info .divider {
  width: 2px;
  height: 40px;
  background: #f4c9b4;
  display: block;
}
.fixed .contact-info a {
  transition: all 0.5s ease;
  font-weight: bold;
  color: #d13d25;
}
.fixed .contact-info a:hover {
  color: #d13d25;
}
.fixed .back_to_top {
  bottom: 40px;
}
.fixed .back_to_top a {
  position: relative;
  transition: all 0.5s ease;
}
.fixed .back_to_top a:hover {
  color: #d13d25;
}
.fixed .back_to_top a:hover .line {
  transform: scaleY(1.2);
}
.fixed .back_to_top a .line {
  top: -60px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 2px;
  height: 40px;
  background-color: #090c0a;
  transform-origin: bottom center;
  transition: all 0.6s ease-in-out 0s;
  opacity: 0.7;
}
.fixed .back_to_top a .line:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: #090c0a 2px solid;
  border-left: #090c0a 2px solid;
  left: 0;
  right: 0;
  margin: auto;
}

.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger:before {
  content: "";
  position: absolute;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  inset: 0;
  transform: scale(1.4);
}
.hamburger .line {
  width: 24px;
  height: 2px;
  background-color: #df5430;
  display: block;
  margin: 4px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger .line:nth-child(2) {
  transform-origin: center center;
}
.hamburger.is-active .line {
  width: 24px;
}
.hamburger.is-active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg) scale(0.9);
}
.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .line:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg) scale(0.9);
}
.hamburger.is-active:before {
  border: 1px solid #e57652;
}
.hamburger:hover {
  cursor: pointer;
}

.mobile-menu-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: fixed;
  max-width: 100vw;
  width: 100%;
  background: #252825;
  height: 100vh;
  inset: 0;
  z-index: 888;
  pointer-events: none;
  transition: all 0.6s ease;
  transform: translateX(-100%);
  overflow-y: scroll;
}
.mobile-menu-wrapper.is-active {
  transform: translateX(0%);
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .mobile-menu-wrapper {
    display: none;
  }
}
.mobile-menu-content {
  padding: 32px 60px 0;
}
.mobile-menu-content ul li {
  padding: 16px 0;
  text-align: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.mobile-menu-content ul li:last-child {
  border-bottom: none;
}
.mobile-menu-content ul li a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}
.mobile-menu-footer {
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mobile-menu-footer span {
  width: 100%;
  max-width: 70%;
}
.mobile-menu-footer .btn {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.footer {
  position: relative;
  margin: 0 auto;
  background: #0b0f0e;
  color: #e8f0ee;
  padding: 32px 20px 0;
  width: 100%;
  font-weight: 100;
}
@media (min-width: 1024px) {
  .footer {
    padding: 32px 5vw 0;
  }
}
.footer .logo img {
  max-width: 200px;
}
.footer__top {
  display: flex;
  margin-bottom: 32px;
  padding: 40px 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.footer__col h4 {
  font-size: 20px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .footer__col h4 {
    font-size: 24px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.footer__col ul:hover li a {
  opacity: 0.7;
}
.footer__col ul li {
  padding-top: 8px;
  padding-bottom: 8px;
}
.footer__col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s ease;
  display: block;
}
.footer__col ul li a:hover {
  color: white;
  opacity: 1;
}

.cta {
  padding: 120px 0;
  position: relative;
  background: url("../images/slider-2.jpg") no-repeat center bottom;
  background-size: cover;
  min-height: 60vh;
  z-index: 1;
}
.cta::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(9, 12, 10, 0.6);
  z-index: -1;
}

.page-header {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-header .page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 10, 0.7);
}
.page-header .breadcrumb {
  margin-bottom: 20px;
}
.page-header .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-header .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.page-header .breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.42);
}
.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease;
}
.page-header .breadcrumb a:hover {
  color: white;
}
.page-header .breadcrumb span {
  color: white;
}
@media (min-width: 1024px) {
  .page-header {
    min-height: 88vh;
  }
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 10px 28px;
  transition: all 0.5s ease;
  background: #090c0a;
  color: white;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 32px;
  width: fit-content;
  cursor: pointer;
}
.btn span {
  display: block;
  position: relative;
  padding: 0;
  transition: all 0.5s ease;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  font-size: 16px;
  opacity: 1;
  color: white;
  text-align: center;
}
.btn span:after {
  content: attr(data-title);
  color: #df5430;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  text-align: center;
  transition: all 0.5s ease;
  opacity: 0;
}
.btn svg {
  transition: all 0.5s ease;
  will-change: transform;
}
.btn:hover {
  background: #ad2d21;
}
.btn:hover span {
  transform: rotateX(90deg) translateY(-22px);
  color: rgba(255, 255, 255, 0);
}
.btn:hover span:after {
  color: white;
  opacity: 1;
}
.btn:hover svg {
  transform: rotate(-45deg);
}
.btn-small {
  padding: 8px 20px;
  border-radius: 24px;
}
.btn-small span {
  font-size: 15px;
}
.btn-outline {
  background: none;
  border: solid 1px white;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-black-outline {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #df5430;
}
.btn-black-outline span {
  color: #df5430;
}
.btn-black-outline:hover {
  background: transparent;
  color: #090c0a;
}
.btn-black-outline:hover span::after {
  color: #090c0a;
}
.btn.btn-primary {
  background: #df5430;
  color: white;
}
.btn.btn-primary:hover {
  background: #d13d25;
}
.btn-anim {
  display: inline-block;
}
.btn-anim .inner {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}
.btn-anim .text {
  display: inline-flex;
  gap: 0.75rem;
  transition: transform 0.5s ease;
}
.btn-anim .text--top {
  transform: translateY(0) skewY(0deg);
}
.btn-anim .text--bottom {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(150%) skewY(12deg);
}
.btn-anim:hover .text--top {
  transform: translateY(-120%) skewY(12deg);
}
.btn-anim:hover .text--bottom {
  transform: translateY(0) skewY(0deg);
}

/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */
:root {
  --swiper-theme-color: #007aff ;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-slides-offset-before);
  scroll-margin-inline-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:last-child {
  margin-inline-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-slides-offset-before);
  scroll-margin-block-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child {
  margin-block-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.1490196078);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s linear infinite;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  height: var(--swiper-virtual-size);
  width: 1px;
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next ::slotted(svg),
.swiper-button-next svg,
.swiper-button-prev ::slotted(svg),
.swiper-button-prev svg {
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  width: 100%;
  fill: currentColor;
  pointer-events: none;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-button-prev .swiper-navigation-icon,
.swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(180deg);
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal .swiper-button-next,
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev {
  margin-left: 0;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal .swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl .swiper-button-next ::slotted(.swiper-navigation-icon), .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl ~ .swiper-button-next ::slotted(.swiper-navigation-icon), .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal ~ .swiper-button-prev ::slotted(.swiper-navigation-icon),
.swiper-horizontal .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal .swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(180deg);
}
.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl .swiper-button-prev ::slotted(.swiper-navigation-icon), .swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl ~ .swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(0deg);
}

.swiper-vertical .swiper-button-next,
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev {
  left: var(--swiper-navigation-top-offset, 50%);
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: 0;
  right: auto;
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  bottom: auto;
  top: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-vertical .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical .swiper-button-prev ::slotted(.swiper-navigation-icon),
.swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(-90deg);
}
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-next {
  bottom: var(--swiper-navigation-sides-offset, 4px);
  top: auto;
}
.swiper-vertical .swiper-button-next .swiper-navigation-icon,
.swiper-vertical .swiper-button-next ::slotted(.swiper-navigation-icon),
.swiper-vertical ~ .swiper-button-next .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-next ::slotted(.swiper-navigation-icon) {
  transform: rotate(90deg);
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination.swiper-pagination-disabled, .swiper-pagination-disabled > .swiper-pagination {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
}
.swiper-pagination-bullet button {
  appearance: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: transform 0.2s, top 0.2s;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, left 0.2s;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  width: 100%;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > .swiper-pagination-progressbar, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
  width: 100%;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar {
  height: 100%;
  left: 0;
  top: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
}
.swiper-scrollbar.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > .swiper-scrollbar {
  display: none !important;
}
.swiper-scrollbar.swiper-scrollbar-horizontal, .swiper-horizontal > .swiper-scrollbar {
  bottom: var(--swiper-scrollbar-bottom, 4px);
  height: var(--swiper-scrollbar-size, 4px);
  left: var(--swiper-scrollbar-sides-offset, 1%);
  position: absolute;
  top: var(--swiper-scrollbar-top, auto);
  width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  z-index: 50;
}
.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  left: var(--swiper-scrollbar-left, auto);
  position: absolute;
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  width: var(--swiper-scrollbar-size, 4px);
  z-index: 50;
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  background: #000;
  bottom: 0;
  content: "";
  filter: blur(50px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transform-origin: center bottom;
}

body {
  color: #5e6663;
  font-weight: 200;
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container-fluid {
    width: 90%;
  }
}

.wrapper {
  padding: 0 16px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .wrapper {
    padding: 0;
    width: 90%;
  }
}

.section-wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .section-wrap {
    width: 90%;
  }
}

.hero {
  height: 90vh;
  position: relative;
}
@media (min-width: 1024px) {
  .hero {
    height: calc(100vh - 70px);
  }
}
.hero .outer,
.hero .inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.hero .inner {
  padding: 16px;
}
@media (min-width: 1024px) {
  .hero .inner {
    padding: 0 0 0 5vw;
  }
}
.hero .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero .bg {
    background-position: center;
  }
}
.hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 12, 10, 0.6);
  z-index: -1;
}
.hero .content {
  z-index: 10;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
}
@media (min-width: 1024px) {
  .hero .content {
    max-width: 900px;
    align-items: flex-start;
  }
}
.hero .content h1 {
  color: white;
  overflow: hidden;
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.04em;
  transform: scale(1.1);
  margin-bottom: 32px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .hero .content h1 {
    font-weight: 500;
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
  .hero .content h1 {
    font-size: 80px;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 32px;
    font-weight: 300;
    transform: unset;
  }
  .hero .content h1 .line:nth-child(2) {
    margin-top: -4px;
  }
}
.hero .content p {
  font-size: 18px;
  line-height: 1.6;
  color: white;
  text-align: center;
  overflow: hidden;
  margin-top: -8px;
  margin-bottom: 16x;
}
@media (min-width: 1024px) {
  .hero .content p {
    font-size: 20px;
    text-align: left;
    max-width: 768px;
  }
}
.hero .content .btns-wrap {
  overflow: hidden;
}
.hero .content .btn {
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  width: auto;
}
.hero .content .btn span {
  font-size: 15px;
}
.hero .slider-controls {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex: row;
  gap: 8px;
}
.hero .slider-controls > button {
  background: rgba(255, 255, 255, 0);
  border: solid 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  border-radius: 24px;
  outline: none;
  transition: all 0.5s ease;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .hero .slider-controls > button {
    padding: 6px 12px;
  }
}
.hero .slider-controls > button:hover {
  background: rgba(255, 255, 255, 0.3);
  border: solid 1px rgba(255, 255, 255, 0);
}

.about {
  align-items: center;
}
.about__imageWrapper {
  overflow: hidden;
  height: 500px;
  background: #111;
}
.about__imageMask {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about__imageMask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(100%);
}
.about__content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.about__content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.stat-wrapper .stat {
  background: #f4f5f5;
  border-radius: 8px;
  overflow: hidden;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stat-wrapper .stat .counter {
  font-size: 64px;
}
.stat-wrapper .stat .suffix {
  font-size: 32px;
  margin-left: 6px;
  font-weight: bold;
  font-size: 24px;
}
.stat-wrapper .stat p {
  font-size: 13px;
  color: #3d4340;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.08em;
}
.stat-wrapper div:last-child {
  border-right: none;
  border-radius: 8px;
  overflow: hidden;
}

.products {
  position: relative;
}
.products .products-swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.products .products-swiper .swiper {
  padding-bottom: 40px;
}
.products .products-swiper .swiper-slide {
  height: auto;
  background: #fff;
  overflow: hidden;
  border-radius: 16px;
}
.products .products-swiper .swiper-pagination {
  position: relative;
}
.products .products-swiper .swiper-pagination {
  display: flex;
  height: 4px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fae5da;
  border-radius: 10px;
}
.products .products-swiper .swiper-pagination-progressbar-fill {
  background: #d13d25;
  border-radius: 10px;
}
.products .products-swiper .btns-wrap {
  margin-left: 24px;
}
.products .products-swiper .btns-wrap button {
  background: white;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  color: #090c0a;
  box-shadow: 0 8px 16px -12px rgba(9, 12, 10, 0.2);
}
.products .product-card .product-content {
  padding: 16px;
}
.products .product-card .product-content h3 {
  font-size: 20px;
  color: #090c0a;
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1024px) {
  .products .product-card .product-content h3 {
    font-size: 22px;
    font-weight: 500;
  }
}
.products .product-card .product-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .products .product-card .product-content {
    padding: 24px;
  }
}

@media (min-width: 1024px) {
  .title-section {
    position: sticky;
    top: 140px;
  }
}

.why-cosmedd {
  padding: 120px 0;
  background: url("../images/why-cosmedd.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.why-cosmedd .why-card {
  display: flex;
  flex-direction: column;
  padding: 40px 8px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  border-radius: 16px;
  border: solid 1px rgba(255, 255, 255, 0.2);
}
@media (min-width: 1024px) {
  .why-cosmedd .why-card {
    padding: 40px 16px;
  }
}
.why-cosmedd .why-card .icon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 32px;
  margin-bottom: 24px;
}
.why-cosmedd .why-card .icon img {
  max-width: 72px;
}
.why-cosmedd .why-card .icon-content {
  color: #fff;
}
.why-cosmedd .why-card .icon-content-title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 600;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  text-transform: capitalize;
}
.why-cosmedd .why-card .icon-content-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}
.why-cosmedd .why-card .icon-number {
  font-size: 24px;
  color: #fff;
  padding-right: 16px;
}
.why-cosmedd .swiper {
  padding-bottom: 16px;
}
.why-cosmedd .swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  border-radius: 16px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  padding: 40px 16px 24px;
}
.why-cosmedd .swiper .swiper-slide .why-card {
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  margin-bottom: 0;
}
.why-cosmedd .swiper .swiper-pagination {
  bottom: 0;
}
.why-cosmedd .swiper .swiper-pagination-bullet {
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  transition: width ease 0.4s;
}
.why-cosmedd .swiper .swiper-pagination-bullet-active {
  width: 16px;
}
.why-cosmedd .swiper .swiper-pagination-horizontal .swiper-pagination-bullet {
  margin: 0 10px;
}

.whyus-swiper .swiper-slide {
  height: auto;
}
.whyus-swiper .swiper-pagination-progressbar {
  background: #fae5da;
}
.whyus-swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #df5430;
}

.global-presence {
  overflow: hidden;
}
.global-presence .col {
  display: flex;
  gap: 60px;
  padding: 40px 24px 0;
}
.global-presence .location {
  max-width: 170px;
  position: relative;
  z-index: 10;
  background: white;
  border-radius: 8px;
  border: solid 1px rgba(9, 12, 10, 0.2);
  overflow: hidden;
}
.global-presence .location img {
  display: block;
  width: 100%;
}
.global-presence .location h5 {
  font-weight: bold;
  padding: 16px;
  font-size: 15px;
}

.qc-certificates {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
.qc-certificates .swiper-wrapper {
  transition-timing-function: linear !important;
}
.qc-certificates .swiper-wrapper .swiper-slide {
  height: auto;
  margin-left: -1px;
}

.pills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
.pills .pill {
  border-radius: 24px;
  background: #f4f5f5;
  padding: 4px 12px;
  font-weight: 500;
  font-size: 13px;
}

.product-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #e4e7e5;
}
@media (min-width: 1024px) {
  .product-list {
    gap: 64px;
    flex-direction: row;
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
}
.product-list:last-child, .product-list:only-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.prod-card {
  border-radius: 8px;
  overflow: hidden;
  border: solid 1px #e4e7e5;
}
.prod-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 8px;
  display: none;
}
.prod-card-content {
  padding: 16px;
}
.prod-card-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #090c0a;
}
/*# sourceMappingURL=style.css.map */
