/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

body {
  margin: unset;
  padding: 0;
}

.def-container {
  width: calc(100% - 77px);
  margin: auto;
}

a {
  -webkit-text-decoration: unset;
  text-decoration: unset;
  color: #000;
}

h1, h2, h3, h4, h5 {
  margin: unset;
}

.main-container {
  max-width: 100%;
  overflow: hidden;
}

button {
  font: inherit;
  color: inherit;
  text-align: inherit;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Helvetica Neue;
  src: url("/assets/fonts/HelveticaNeueLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url("/assets/fonts/HelveticaNeueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url("/assets/fonts/HelveticaNeueBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica-Neue-Italic;
  src: url("/assets/fonts/HelveticaNeueLightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica-Neue-Italic;
  src: url("/assets/fonts/HelveticaNeueMediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica-Neue-Italic;
  src: url("/assets/fonts/HelveticaNeueBoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Alternate Gothic No1 D;
  src: url("/assets/fonts/AlternateGothicNo1DRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

header {
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-right: 50px;
  font-family: Helvetica Neue, sans-serif;
  font-weight: 300;
  display: flex;
}

header .logo .logo-link img {
  width: 100%;
  max-width: 264px;
  height: auto;
}

header .menu-items {
  align-items: center;
  gap: 75px;
  height: -webkit-fill-available;
  display: flex;
}

header .menu-items .menu-item {
  align-items: center;
  height: 100%;
  display: flex;
}

header .menu-items .menu-item .menu-btn {
  color: #080808;
  font-family: Helvetica Neue;
  font-size: 20px;
  font-weight: 300;
  transition: all .3s;
}

header .menu-items .menu-item:hover .menu-btn {
  text-shadow: 0 0 5px #0003;
}

header .menu-items .menu-item.sub-menu {
  height: 100%;
  position: relative;
}

header .menu-items .menu-item.sub-menu > a {
  position: relative;
}

header .menu-items .menu-item.sub-menu > a:after {
  content: "";
  background-image: url("/assets/images/icons/menu-down-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  right: -20px;
  transform: translate(0%, -30%);
}

header .menu-items .menu-item.sub-menu:hover .sub-menu-items {
  display: block;
}

header .menu-items .menu-item.sub-menu .sub-menu-items {
  z-index: 9999;
  background: #ffffffcf;
  border-top: 1px solid #f1f1f1;
  border-radius: 5px;
  width: 220px;
  margin-top: 10px;
  padding: 10px 10px 6px;
  display: none;
  position: absolute;
  top: 61%;
  left: 55%;
  transform: translate(-50%);
}

header .menu-items .menu-item.sub-menu .sub-menu-items .sub-menu-item {
  background-color: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 8px;
  padding: 10px 15px;
  transition: all .3s;
}

header .menu-items .menu-item.sub-menu .sub-menu-items .sub-menu-item:hover {
  transform: scale(1.05);
}

header .menu-items .menu-item.sub-menu .sub-menu-items .sub-menu-item .sub-menu-btn {
  color: #080808;
  text-align: center;
  width: 100%;
  font-family: Helvetica Neue;
  font-size: 18px;
  font-weight: 300;
  transition: all .3s;
  display: block;
  position: relative;
}

header .menu-items .menu-item.sub-menu .sub-menu-items .sub-menu-item:hover .sub-menu-btn {
  text-shadow: 0 0 5px #0003;
}

.lang-selector {
  align-items: center;
  height: -webkit-fill-available;
  display: flex;
  position: relative;
}

.default-lang-btn {
  color: #080808;
  align-items: center;
  height: 100%;
  font-family: Helvetica Neue;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  position: relative;
}

.default-lang-btn:after {
  content: "";
  background-image: url("/assets/images/icons/menu-down-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translate(0%, -30%);
}

.lang-select-items {
  text-align: center;
  background: linear-gradient(#f4f4f4, #0000);
  border-top: 1px solid #a1a1a1;
  border-radius: 0;
  width: 40px;
  margin-top: 10px;
  padding: 15px 10px;
  display: none;
  position: absolute;
  top: 60%;
  left: 85%;
  transform: translate(-50%);
}

.lang-select-items .lang-item {
  margin-bottom: 10px;
}

.lang-selector:hover .lang-select-items {
  display: block;
}

.lang-select-items .lang-btn {
  color: #080808;
  font-family: Helvetica Neue;
  font-size: 16px;
  font-weight: 300;
}

.footer {
  color: #6f6f6f;
  background: #fff;
  padding: 40px 80px 20px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.footer a {
  color: inherit;
  max-width: 264px;
  text-decoration: none;
}

.footer-logo a {
  max-width: 264px;
  display: block;
}

.footer-logo a img {
  width: 100%;
}

.footer-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-newsletter {
  text-align: center;
  flex-direction: column;
  display: flex;
}

.footer-newsletter .label {
  color: #606060;
  font-size: 22px;
  font-weight: 300;
}

.footer-newsletter strong {
  color: #606060;
  padding-left: 105px;
  font-size: 29px;
  font-weight: 500;
}

.footer-subscribe {
  justify-content: flex-end;
  gap: 8px;
  display: flex;
  position: relative;
}

.footer-subscribe input {
  border: 1px solid #ccc;
  border-radius: 999px;
  padding: 17px 130px 17px 23px;
  font-size: 24px;
  font-weight: 300;
}

.footer-subscribe button {
  color: #fff;
  cursor: pointer;
  background: #9a9a9a;
  border: none;
  border-radius: 999px;
  height: 77%;
  padding: 13px 16px;
  font-size: 21px;
  font-weight: 300;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.footer-line {
  background-image: url("/assets/images/footer-line.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100px;
  position: absolute;
  left: 0;
}

.footer-columns {
  justify-content: space-between;
  gap: 40px;
  margin-top: 100px;
  display: flex;
}

.footer-col h4 {
  color: #444;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
}

.footer-link, .footer-col ul li a {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 300;
  transition: color .2s;
  display: inline-block;
}

.footer-link:hover, .footer-col ul li a:hover {
  color: #000;
  text-decoration: underline;
}

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

.footer-social {
  gap: 12px;
  margin-top: 16px;
  display: flex;
}

.footer-social a {
  border: 1px solid #aaa;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.footer-bottom {
  text-align: center;
  color: #777;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 300;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.hero-slider {
  border-radius: 58px;
  width: 100%;
  margin-top: 40px;
  font-family: Helvetica Neue;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

.hero-slider .slider-area .slide-content .slide-detail-box {
  position: absolute;
  top: 50%;
  left: 85px;
  transform: translate(0%, -50%);
}

.hero-slider .slider-area .slide-content .slide-detail-box .text-area {
  color: #47413b;
}

.hero-slider .slider-area .slide-content .slide-detail-box .text-area .slide-title {
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 500;
  line-height: 63px;
}

.hero-slider .slider-area .slide-content .slide-detail-box .text-area .slide-description {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
}

.hero-slider .slider-area .slide-content .slide-detail-box .redirect-btn-list {
  justify-content: center;
  gap: 10px;
  display: flex;
}

.hero-slider .slider-area .slide-content .slide-detail-box .redirect-btn-list .redirect-btn {
  flex-direction: column;
  display: flex;
  overflow: auto;
}

.hero-slider .slider-area .slide-content .slide-detail-box .redirect-btn-list .redirect-btn .product-image {
  max-width: 140px;
  height: auto;
  transition: all .3s;
}

.hero-slider .slider-area .slide-content .slide-detail-box .redirect-btn-list .redirect-btn .product-image img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

.hero-slider .slider-area .slide-content .slide-detail-box .redirect-btn-list .redirect-btn .btn-text {
  text-align: center;
  color: #000;
  margin-top: 10px;
  font-family: Helvetica-Neue-Italic;
  font-size: 21px;
  font-weight: 300;
  line-height: 25px;
  transition: all .3s;
  position: relative;
}

.hero-slider .slider-area .slide-content .slide-detail-box .redirect-btn-list .redirect-btn:hover .product-image {
  border-radius: 35px;
  box-shadow: inset 0 0 0 4px #aaa;
}

.hero-slider .slider-area .slide-content .slide-detail-box .redirect-btn-list .redirect-btn:hover .btn-text {
  transform: translateY(-5px);
}

.hero-slider .slider-area .slide-content .slide-media img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.hero-slider .slider-area .swiper-pagination {
  top: unset !important;
  bottom: 50px !important;
}

.swiper-pagination-bullet {
  opacity: 1 !important;
  background: #fff !important;
  border-radius: 6px !important;
  width: 35px !important;
}

.swiper-pagination-bullet-active {
  background: #d0d0d0 !important;
  border-radius: 6px !important;
  width: 90px !important;
}

.home-about-use-texts {
  margin-top: 80px;
}

.home-about-use-texts .title {
  text-align: center;
  margin-bottom: 40px;
  font-family: Helvetica Neue;
  font-size: 90px;
  font-weight: 300;
}

.home-about-use-texts .text {
  text-align: left;
  width: 95%;
  margin: auto;
  font-family: Helvetica Neue;
  font-size: 36px;
  font-weight: 300;
  line-height: 56px;
}

.usage-categories {
  gap: 2%;
  max-width: 1440px;
  margin: 100px auto 0;
  display: flex;
}

.usage-categories .category {
  width: 49%;
  position: relative;
}

.usage-categories .half-box {
  flex-direction: column;
  gap: 2%;
  width: 49%;
  display: flex;
}

.usage-categories .half-box .category {
  width: 100%;
  position: relative;
}

.usage-categories .category .image {
  border-radius: 48px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.usage-categories .category .image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: all 7.5s;
}

.usage-categories .category .head-bar {
  background-color: #fff;
  border-radius: 48px;
  width: 80%;
  padding: 20px;
  display: flex;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0 4px 3px #00000075;
}

.usage-categories .category .head-bar .item {
  text-align: center;
  border-right: 1px solid #000;
  flex-direction: column;
  flex: 1;
  padding: 12px 0 0;
  font-family: Helvetica Neue;
  display: flex;
}

.usage-categories .category .head-bar .item:last-child {
  border-right: unset;
}

.usage-categories .category .head-bar .item .master {
  font-family: Helvetica Neue;
  font-size: 37px;
  font-weight: bold;
  line-height: 34px;
}

.usage-categories .category .head-bar .item .sub {
  font-family: Helvetica Neue;
  font-size: 33px;
  font-weight: 300;
  line-height: 40px;
}

.usage-categories .category .sub-title {
  background: #fff;
  border-radius: 48px;
  justify-content: center;
  align-items: center;
  padding: 25px 22px 18px;
  font-family: Helvetica Neue;
  font-size: 35px;
  font-weight: 300;
  line-height: 18px;
  display: flex;
  position: absolute;
  bottom: 30px;
  right: 24px;
  box-shadow: 0 4px 3px #000000e6;
}

.usage-categories .category:hover .image img {
  transform: scale(1.1);
}

.product-slider-wrapper {
  background-color: #f9f9f9;
  margin-top: 40px;
  padding: 70px 0;
}

.product-slider-wrapper .product-slider-title {
  text-align: center;
  color: #000;
  margin-bottom: 35px;
  font-family: Helvetica Neue;
  font-size: 49px;
  font-weight: 300;
  line-height: 59px;
}

.product-slider-wrapper .engine-type-selector {
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  font-family: Helvetica Neue;
  font-size: 23px;
  font-weight: 300;
  line-height: 44px;
  display: flex;
}

.product-slider-wrapper .engine-type-selector .type {
  color: #fff;
  padding: 10px 40px;
  transition: all .3s ease-in-out;
  position: relative;
}

.product-slider-wrapper .engine-type-selector .type-2.active, .product-slider-wrapper .engine-type-selector .type-1.active {
  box-shadow: 6px 0 8px 1px #00000047;
}

.product-slider-wrapper .engine-type-selector .type.type-1 {
  background-color: #97989b;
  border-radius: 48px 0 0 48px;
  padding-right: 70px;
}

.product-slider-wrapper .engine-type-selector .type.type-1:after, .product-slider-wrapper .engine-type-selector .type.type-2:after {
  content: "";
  background-image: url("/assets/images/icons/benzinli-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 20px;
}

.product-slider-wrapper .engine-type-selector .type.type-2:after {
  background-image: url("/assets/images/icons/elektrikli-icon.svg");
  left: 20px;
}

.product-slider-wrapper .engine-type-selector .type.type-2 {
  background-color: #c1ef03;
  border-radius: 0 48px 48px 0;
  padding-left: 60px;
}

.product-slider-wrapper .engine-type-selector .type:hover {
  box-shadow: inset 0 -9px 14px 5px #00000054;
}

.product-slider-wrapper .product-slider {
  position: relative;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper {
  justify-content: center;
  display: flex;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .sub-slider-box {
  width: 100%;
  max-width: 50%;
}

.product-slider-wrapper .product-swiper .swiper-pagination-bullet {
  border: 1px solid #00000026;
  background: var(--bullet-color, #fff) !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  width: 34px !important;
  height: 34px !important;
}

.product-slider-wrapper .product-swiper .swiper-pagination-bullet-active {
  box-shadow: 0 0 0 3px #0000001f;
  width: 34px !important;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .product-detail-wrapper {
  flex: 1;
  width: 100%;
  max-width: 50%;
  padding: 80px;
  overflow: hidden;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .product-detail-wrapper .product-name {
  color: #000;
  font-family: Helvetica-Neue-Italic;
  font-size: 70px;
  font-weight: 300;
  line-height: 56px;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .product-detail-wrapper .description {
  color: #000;
  margin-bottom: 40px;
  font-family: Helvetica Neue;
  font-size: 24px;
  font-weight: 300;
  line-height: 34px;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .product-detail-wrapper .product-specs {
  margin-bottom: 40px;
  display: flex;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .product-detail-wrapper .product-specs .spec {
  border-right: 1px solid #707070;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  font-family: Helvetica Neue;
  font-size: 24px;
  font-weight: 300;
  line-height: 34px;
  display: flex;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .product-detail-wrapper .product-specs .spec:first-child {
  padding-left: unset;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .product-detail-wrapper .product-specs .spec:last-child {
  border-right: unset;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .product-detail-wrapper .redirect-btn {
  color: #fff;
  background-color: #b93836;
  border-radius: 48px;
  margin: auto;
  padding: 22px 62px;
  font-family: Helvetica Neue;
  font-size: 29px;
  font-weight: 300;
  line-height: 34px;
  display: inline-block;
}

.product-slider-wrapper .product-slider .slide-inner-wrapper .product-detail-wrapper .redirect-btns {
  justify-content: center;
  align-items: center;
  display: flex;
}

.product-slider-wrapper .product-swiper .swiper-pagination {
  bottom: 60px !important;
}

.home-product-swiper {
  border-radius: 48px;
  box-shadow: 0 3px 6px 1px #00000029;
}

.product-slider-nav {
  z-index: 1;
  cursor: pointer;
  z-index: 999999;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.product-slider-nav.left {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  left: -44px;
}

.product-slider-nav.right {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  right: -44px;
}

.product-slider-nav.left:before {
  content: "";
  background-image: url("/assets/images/icons/left-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.product-slider-nav.right:before {
  content: "";
  background-image: url("/assets/images/icons/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-sub-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home-sub-slider .swiper {
  width: 100%;
  height: 100%;
}

.home-sub-slider .swiper-slide {
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-sub-slider .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-sub-slider .swiper-button-next, .home-sub-slider .swiper-button-prev {
  color: #fff;
}

.home-sub-slider .swiper-pagination-bullet {
  opacity: .6;
  background: #fff;
}

.home-sub-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.home-sub-nav.left {
  z-index: 999999;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.home-sub-nav.right {
  z-index: 999999;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.home-sub-nav.left:before {
  content: "";
  filter: brightness(0) invert();
  background-image: url("/assets/images/icons/left-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-sub-nav.right:before {
  content: "";
  filter: brightness(0) invert();
  background-image: url("/assets/images/icons/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-detail-specs {
  max-width: 100vw;
  padding: 100px 0;
  font-family: Helvetica Neue;
  font-weight: 300;
  overflow: hidden;
}

.section-title {
  color: #111;
  margin-bottom: 38px;
  font-size: 49px;
  font-weight: 300;
  line-height: 56px;
}

.specs-grid {
  gap: 32px;
  display: flex;
}

.spec-card {
  background: #fafafa;
  border-radius: 28px;
  width: 100%;
  min-width: calc(33.3333% + 50px);
  padding: 12px 12px 12px 21px;
  position: relative;
}

.spec-card.half {
  min-width: 25%;
}

.spec-index {
  color: #00000082;
  font-size: 49px;
  font-weight: 500;
  line-height: 56px;
  position: absolute;
  top: 38px;
  left: 28px;
}

.spec-image {
  border-radius: 48px;
  width: 393px;
  height: 247px;
  margin-bottom: 20px;
  margin-left: auto;
  overflow: hidden;
}

.spec-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.spec-card.half .spec-image {
  width: 250px;
  height: 250px;
}

.spec-card h3 {
  color: #7c7c7c;
  margin-bottom: 0;
  font-size: 41px;
  font-weight: 500;
  line-height: 56px;
}

.spec-card p {
  color: #7c7c7c;
  width: 85%;
  margin: unset;
  font-size: 24px;
  line-height: 27px;
}

.spec-card.half h3 {
  margin-top: 75px;
  margin-left: 10px;
}

.home-blog-bg {
  background: #f9f9f9;
  padding: 50px 0;
}

.blog-section {
  box-sizing: border-box;
  width: 100%;
  font-family: Helvetica Neue;
}

.blog-section-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.blog-section-header h2 {
  font-size: 49px;
  font-weight: 300;
}

.blog-section-header .view-all {
  color: #222;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
}

.blog-cards {
  gap: 32px;
  padding: 0 50px;
  display: flex;
}

.blog-card {
  border-radius: 48px;
  width: 100%;
  max-width: 33.3333%;
  position: relative;
  overflow: hidden;
}

.blog-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-date {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  text-align: center;
  z-index: 2;
  color: #fff;
  background: #ffffff80;
  border-radius: 28px;
  flex-direction: column;
  justify-content: center;
  width: 112px;
  height: 95px;
  padding: 10px 14px;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
}

.blog-date span {
  font-size: 40px;
  font-weight: 600;
  display: block;
}

.blog-date small {
  letter-spacing: 1px;
  font-size: 24px;
}

.blog-content {
  color: #fff;
  z-index: 2;
  flex-direction: column;
  align-items: end;
  display: flex;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.blog-content h3 {
  width: 100%;
  margin-bottom: 8px;
  font-size: 30px;
}

.blog-content p {
  opacity: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 26px;
}

.blog-content button {
  color: #000;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 999px;
  width: min-content;
  padding: 14px 25px;
  font-size: 25px;
  font-weight: 300;
  line-height: 27px;
}

.sub-page-banner {
  margin-top: 18px;
  position: relative;
}

.sub-page-banner img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.sub-page-banner .bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  width: -webkit-fill-available;
  max-width: 100vw;
  padding: 0 134px 123px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sub-page-banner .bottom-wrapper .left {
  align-items: center;
  gap: 20px;
  display: flex;
}

.sub-page-banner .bottom-wrapper .left .title {
  color: #fff;
  font-family: Helvetica Neue;
  font-size: 70px;
  font-weight: 500;
  line-height: 69px;
}

.sub-page-banner .bottom-wrapper .right {
  align-items: center;
  gap: 20px;
  display: flex;
}

.sub-page-banner .bottom-wrapper .right .logo {
  width: 100px;
}

.sub-page-about-text {
  align-items: center;
  padding: 90px 0 30px 83px;
  font-family: Helvetica Neue;
  display: flex;
}

.sub-page-about-text .title {
  color: #939393;
  width: 32%;
  max-width: 496px;
  font-size: 45px;
  font-weight: 700;
  line-height: 69px;
}

.sub-page-about-text .text {
  width: 68%;
  max-width: 1170px;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
}

.tabs-section {
  color: #111;
  background: #fafafa;
  margin: 0 auto;
  padding: 90px 0 104px;
  font-family: Inter, sans-serif;
}

.tabs-section .tabs {
  justify-content: center;
  gap: 120px;
  margin-bottom: 110px;
  display: flex;
}

.tabs-section .tab {
  cursor: pointer;
  color: #777;
  background: none;
  border: none;
  padding: 0;
  font-size: 26px;
  font-weight: 300;
  line-height: 49px;
  position: relative;
}

.tabs-section .tab.active {
  color: #000;
  font-weight: 500;
}

.tabs-section .tab.active:after {
  content: "";
  background: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.tabs-section .tab-content {
  display: none;
}

.tabs-section .tab-content.active {
  display: block;
}

.tabs-section .content-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  display: grid;
}

.tabs-section .images {
  border-radius: 24px;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: grid;
  overflow: hidden;
}

.tabs-section .images.single {
  grid-template-columns: 1fr;
  position: relative;
  left: -20px;
}

.tabs-section .text {
  width: 80%;
}

.tabs-section .images img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.tabs-section .text h2 {
  margin: 0 0 20px;
  font-size: 49px;
  font-weight: 500;
  line-height: 69px;
}

.tabs-section .text p {
  color: #000;
  margin: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
}

.tabs-section .text strong {
  color: #000;
  font-weight: 600;
}

.about-us-video-box {
  position: relative;
}

.about-us-video-box .video-player {
  display: none;
}

.about-us-video-box .video-thumbnail {
  width: 100%;
  display: flex;
  position: relative;
}

.about-us-video-box .video-thumbnail img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.about-us-video-box .video-thumbnail .play-button {
  max-width: 150px;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-us-video-box .video-thumbnail .bottom-wrapper {
  color: #fff;
  position: absolute;
  bottom: 22%;
  left: 7%;
}

.about-us-video-box .video-thumbnail .bottom-wrapper .title {
  font-size: 90px;
  font-weight: 300;
  line-height: 45px;
}

.about-us-video-box .video-thumbnail .bottom-wrapper .description {
  margin: 30px 0 0;
  font-size: 70px;
  font-weight: 300;
  line-height: 45px;
}

.about-us-form-box {
  background: linear-gradient(#000000c9 0%, #000000f2 48%, #000 100%);
  max-height: 880px;
}

.about-us-form-box .form-container {
  position: relative;
  top: -156px;
}

.form-container {
  color: #000;
  background-color: #fff;
  border-radius: 48px;
  justify-content: center;
  width: -webkit-fill-available;
  min-height: 700px;
  margin: auto;
  padding: 90px 50px;
  display: flex;
  max-width: 1700px !important;
}

.general-form-wrapper {
  width: 100%;
  max-width: 1000px;
}

.general-form-wrapper .form-title {
  text-align: center;
  font-size: 45px;
  font-weight: 500;
}

.general-form-wrapper .form-description {
  text-align: center;
  margin-top: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
}

.general-form-wrapper .contact-form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 48px;
  display: flex;
}

.general-form-wrapper .contact-form .form-row {
  gap: 35px;
  width: 100%;
  margin-bottom: 22px;
  display: flex;
}

.general-form-wrapper .contact-form .form-row .form-group {
  width: 100%;
  display: flex;
}

.general-form-wrapper .contact-form .form-row .form-group.full-width {
  width: 100%;
}

.general-form-wrapper .contact-form .form-row .form-group input, .general-form-wrapper .contact-form .form-row .form-group select, .general-form-wrapper .contact-form .form-group textarea {
  border: unset;
  color: #000;
  background-color: #f0f0f0;
  border-radius: 48px;
  width: 100%;
  padding: 20px 50px;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
  outline: unset !important;
}

.general-select-input {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background: #f1f1f0;
  border-radius: 999px;
  width: 100%;
  position: relative;
}

.general-select-input .gsi-selected {
  color: #000;
  padding: 20px 50px;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
}

.general-select-input .gsi-arrow {
  border-top: 10px solid #000;
  border-left: 8px solid #0000;
  border-right: 8px solid #0000;
  width: 0;
  height: 0;
  transition: transform .25s;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}

.general-select-input.active .gsi-arrow {
  transform: translateY(-50%)rotate(180deg);
}

.general-select-input .gsi-options {
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  background: #fff;
  border-radius: 24px;
  max-height: 320px;
  transition: all .25s;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  overflow: hidden auto;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #0000001f;
}

.general-select-input.active .gsi-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.general-select-input .gsi-option {
  cursor: pointer;
  padding: 18px 32px;
  font-size: 18px;
}

.general-select-input .gsi-option:hover {
  background: #f3f3f3;
}

.general-select-input .gsi-search {
  z-index: 1;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 16px;
  position: sticky;
  top: 0;
}

.general-select-input .gsi-search input {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  outline: none;
  width: 100%;
  padding: 10px 12px;
  font-size: 20px;
  font-weight: 300;
}

.general-select-input .gsi-empty {
  color: #666;
  padding: 16px 24px;
  font-size: 14px;
}

.general-form-wrapper .contact-form .form-row .form-group input::placeholder, .general-form-wrapper .contact-form .form-group textarea::placeholder {
  color: #000;
}

.general-form-wrapper .contact-form .form-group.full-width {
  width: 100%;
  display: flex;
}

.general-form-wrapper .contact-form .form-footer {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 28px;
  display: flex;
}

.general-form-wrapper .contact-form .form-footer .checkbox-label {
  padding-left: 35px;
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
}

.general-form-wrapper .contact-form .form-footer button {
  color: #fff;
  border: unset;
  background-color: #000;
  border-radius: 48px;
  padding: 15px 50px;
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
}

.products-hero {
  max-height: 1040px;
  margin-top: 18px;
  position: relative;
}

.products-hero .products-hero-image {
  width: 100%;
  height: 100%;
  display: flex;
}

.products-hero .products-hero-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.products-hero .products-hero-content {
  color: #fff;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  padding: 0% 5%;
  display: flex;
  position: absolute;
  bottom: 17%;
}

.products-hero .products-hero-content .products-hero-sub-title {
  font-size: 45px;
  font-weight: 700;
}

.products-hero .products-hero-content .products-hero-title {
  margin: 10px 0 0;
  font-family: Helvetica-Neue-Italic;
  font-size: 70px;
  font-weight: 700;
}

.products-hero .products-hero-content .redirect-button {
  border: unset;
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  max-height: 66px;
  margin-top: 20px;
  padding: 21px 34px;
  font-size: 24px;
  font-weight: 500;
  display: inline-flex;
}

.product-list-box {
  background: linear-gradient(#776e6782 0%, #000 48% 100%);
}

.product-list-box .product-list-wrapper {
  color: #000;
  background-color: #fff;
  border-radius: 100px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px 65px;
  width: -webkit-fill-available;
  max-width: 92vw;
  min-height: 700px;
  margin: auto;
  padding: 64px 50px;
  display: flex;
  position: relative;
  top: -140px;
}

.product-list-box .product-list-wrapper .product-list-item {
  width: calc(50% - 50px);
}

.product-list-box .product-list-wrapper .product-list-item .product-name {
  text-align: center;
  width: 100%;
  margin-top: 50px;
  font-family: Helvetica-Neue-Italic;
  font-size: 40px;
  font-weight: 500;
  display: block;
}

.product-swiper-wrapper {
  background: #f3f3f2;
  border-radius: 48px;
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.product-swiper-2 {
  width: 100%;
}

.product-swiper-2 .swiper-slide {
  justify-content: center;
  display: flex;
}

.product-swiper-2 img {
  pointer-events: none;
  width: 100%;
  max-width: 600px;
}

.ps-arrow {
  cursor: pointer;
  z-index: 99;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ps-arrow.left {
  left: 24px;
}

.ps-arrow.right {
  right: 24px;
}

.ps-arrow:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ps-arrow.left:after {
  content: "";
  width: 100%;
  height: 100%;
  transform: unset;
  background-image: url("/assets/images/icons/left-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.ps-arrow.right:after {
  content: "";
  width: 100%;
  height: 100%;
  transform: unset;
  background-image: url("/assets/images/icons/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  left: unset !important;
}

.ps-colors {
  z-index: 9999;
  gap: 18px;
  display: flex;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.ps-colors span {
  background: var(--c);
  width: 26px;
  height: 26px;
  box-shadow: 0px 0px 5px var(--bsc);
  cursor: pointer;
  opacity: 1;
  border-radius: 50%;
}

.ps-colors span.active {
  opacity: 1;
  box-shadow: 0px 0px 11px var(--bsc);
}

.product-swiper-2 .swiper-backface-hidden .swiper-slide {
  height: 500px;
}

.pd-hero-banner {
  background-color: var(--bg-color);
  border-radius: 0 0 100px 100px;
  min-height: 800px;
  margin-top: 18px;
  margin-bottom: 27px;
  display: flex;
  box-shadow: 0 3px 11px #00000021;
}

.pd-hero-banner .pd-hero-wrapper {
  width: 100%;
  display: flex;
  position: relative;
}

.pd-hero-banner .pd-hero-wrapper .product-name {
  color: #fff;
  z-index: 10;
  text-align: center;
  width: 100%;
  font-size: 445px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pd-hero-banner .pd-hero-wrapper .image-box {
  z-index: 11;
  max-width: 588px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.pd-hero-banner .pd-hero-wrapper .image-box .product-image {
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 100%;
  display: flex;
}

.pd-hero-banner .pd-hero-wrapper .image-box .spec-text {
  color: var(--text-color);
  background-color: #fff;
  border-radius: 50px;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 10px;
  display: flex;
  position: absolute;
}

.pd-hero-banner .pd-hero-wrapper .image-box .spec-text.spec-1 {
  top: 57%;
  left: 3%;
}

.pd-hero-banner .pd-hero-wrapper .image-box .spec-text.spec-2 {
  top: 75%;
  left: 68%;
}

.pd-hero-banner .pd-hero-wrapper .image-box .spec-text.spec-3 {
  top: 89%;
  left: 18%;
}

.main-detail-box {
  color: #333;
  width: 40%;
  padding-top: 150px;
  padding-left: 50px;
}

.main-detail-box .product-header-title {
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 15px;
  font-size: 60px;
  font-style: italic;
  font-weight: 500;
}

.main-detail-box .product-description-text {
  color: #000;
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 300;
  line-height: 43px;
}

.main-detail-box .selection-group-row {
  margin-bottom: 34px;
}

.main-detail-box .group-label-text {
  color: #000;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 300;
}

.main-detail-box .color-options-wrapper {
  gap: 10px;
  display: flex;
}

.main-detail-box .color-circle-item {
  cursor: pointer;
  background-color: var(--bg-color);
  appearance: none;
  border: 2px solid #0000;
  border-radius: 50%;
  outline: none;
  width: 88px;
  height: 88px;
  padding: 0;
}

.main-detail-box .color-circle-item.active {
  box-shadow: 0px 0px 5px var(--bg-color);
}

.main-detail-box .color-circle-item.yellow-theme {
  background-color: var(--bg-color);
  box-shadow: 0 2px 5px var(--bg-color);
}

.main-detail-box .color-circle-item.grey-theme, .main-detail-box .color-circle-item.dark-theme {
  background-color: var(--bg-color);
}

.main-detail-box .box-options-wrapper {
  gap: 10px;
  display: flex;
}

.main-detail-box .box-selection-item {
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 139px;
  height: 129px;
  transition: all .2s;
  display: flex;
}

.main-detail-box .box-selection-item.active-state {
  color: #fdd835;
  background-color: #fff;
  border-color: #fdd835;
}

.main-detail-box .box-selection-item.passive-state {
  color: #666;
  border-color: #ccc;
}

.main-detail-box .box-selection-item .value-large-text {
  font-size: 41px;
  font-weight: 500;
}

.main-detail-box .box-selection-item .unit-small-text {
  margin-top: 2px;
  font-size: 34px;
  font-weight: 300;
}

.main-detail-box .box-selection-item.icon-mode {
  justify-content: center;
}

.main-detail-box .box-selection-item:hover {
  border-color: var(--bg-color);
  color: #fff;
  background-color: var(--bg-color);
}

.main-detail-container {
  gap: 50px;
  padding-top: 150px;
  padding-bottom: 100px;
  display: flex;
}

.main-detail-container .product-media-box {
  width: 60%;
  position: relative;
}

.main-detail-container .product-media-box .animated-shape-container {
  z-index: -1;
  position: absolute;
}

.main-detail-container .product-media-box .animated-shape-container img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  left: 100px;
}

.main-detail-container .product-media-box .product-media-wrapper {
  width: 100%;
  height: 100%;
}

.main-detail-container .product-media-box .product-media-wrapper img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  left: -120px;
}

.technical-detail-box {
  background-color: var(--bg-color);
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  font-family: Roboto, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}

.technical-detail-box:before {
  content: "";
  z-index: 0;
  background-image: url("/assets/images/dot.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -42%;
  right: -18%;
}

.technical-detail-box .content-wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 50px;
}

.technical-detail-box .content-wrapper .left-panel {
  z-index: 1;
  width: 100%;
  position: relative;
}

.technical-detail-box .main-title {
  color: #fff;
  margin: 0 0 40px;
  font-family: Alternate Gothic No1 D;
  font-size: 136px;
  font-weight: 700;
  line-height: 132px;
}

.technical-detail-box .tables {
  align-items: start;
  gap: 30px;
  display: flex;
}

.technical-detail-box .table-wrapper {
  width: 100%;
  max-width: 700px;
}

.technical-detail-box .tab-menu {
  gap: 30px;
  margin-bottom: 20px;
  display: flex;
}

.technical-detail-box .tab-btn {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 15px 30px;
  font-size: 30px;
  font-weight: 300;
  transition: all .3s;
}

.technical-detail-box .tab-btn.active {
  background-color: var(--card-bg);
  background-color: #ffffff49;
  font-weight: 500;
}

.technical-detail-box:hover .tab-btn.active {
  background-color: unset;
}

.technical-detail-box .tab-btn:hover {
  background-color: #ffffff49 !important;
}

.technical-detail-box .specs-card {
  background-color: var(--card-bg);
  -webkit-backdrop-filter: blur(9.2px);
  background: #ffffff17;
  border: 1px solid #ffffff4d;
  border-radius: 48px;
  margin-bottom: 22px;
  padding: 30px;
  box-shadow: 0 4px 30px #0000000d;
}

.technical-detail-box .spec-row {
  color: #fff;
  border-bottom: 1px solid #fff6;
  justify-content: flex-start;
  margin-top: 20px;
  padding: 15px 0 22px;
  font-size: 18px;
  display: flex;
}

.technical-detail-box .spec-row:last-child {
  border-bottom: none;
}

.technical-detail-box .label {
  flex-shrink: 0;
  width: 220px;
  font-size: 30px;
  font-weight: 500;
}

.technical-detail-box .value {
  font-size: 30px;
  font-weight: 300;
}

.technical-detail-box .product-visual-card {
  -webkit-backdrop-filter: blur(9.2px);
  background: #ffffff17;
  border: 1px solid #ffffff4d;
  border-radius: 48px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 494px;
  margin-top: 80px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 30px #0000000d;
}

.technical-detail-box .product-image {
  object-fit: contain;
  max-width: 90%;
  max-height: 90%;
}

.technical-detail-box .brand-logo-container {
  background-color: #fff;
  border-radius: 50px;
  padding: 12px 35px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 4px 15px #0000001a;
}

.technical-detail-box .brand-text {
  color: #a93226;
  letter-spacing: 1px;
  font-size: 26px;
  font-weight: 700;
}

.right-panel {
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  display: flex;
}

.technical-detail-box .catalog-btn {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 17px 35px 15px;
  font-size: 25px;
  font-weight: 300;
  display: flex;
  box-shadow: 8px 6px 10px #00000059;
}

.technical-detail-box .catalog-btn img {
  width: 26px;
  height: auto;
  margin-left: 6px;
}

.brand-logo-btn {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 17px 35px 15px;
  font-size: 25px;
  font-weight: 300;
  display: flex;
  box-shadow: 8px 6px 10px #00000059;
}

.technical-detail-box .brand-logo-btn img {
  width: auto;
  height: 27px;
  margin-left: 6px;
}

.video-image-box {
  width: 100%;
  display: flex;
}

.video-image-box .video-box {
  width: 50%;
  position: relative;
}

.video-image-box .video-box .thumb-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.video-image-box .video-box .play-btn {
  cursor: pointer;
  background-color: #0000;
  border: none;
  transition: all .3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-image-box .video-box .play-btn:hover img {
  transform: scale(1.1);
}

.video-image-box .video-box .play-btn img {
  object-fit: cover;
  object-position: center;
  width: 218px;
  height: auto;
  outline: unset !important;
}

.video-image-box .collapse-images {
  flex-wrap: wrap;
  width: 50%;
  display: flex;
}

.video-image-box .collapse-images .single {
  width: 100%;
  display: flex;
}

.video-image-box .collapse-images .single .thumb-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.video-image-box .collapse-images .multi {
  width: 100%;
  display: flex;
}

.video-image-box .collapse-images .multi .thumb-image {
  object-fit: cover;
  object-position: center;
  width: 50%;
}

.video-modal {
  z-index: 9999;
  background: #000000b3;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0;
}

.video-modal__content {
  background: #000;
  border-radius: 18px;
  width: min(1100px, 95vw);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px #00000080;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000;
  width: 100%;
}

.video-modal__frame iframe, .video-modal__frame video {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal__close {
  color: #fff;
  cursor: pointer;
  z-index: 1;
  background: #000000bf;
  border: 1px solid #ffffff4d;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  padding-top: 4px;
  font-size: 20px;
  display: flex;
  position: absolute;
  top: 24px;
  right: 24px;
}

.video-modal__close:hover {
  background: #ffffff26;
}

.gallery-box {
  margin-top: 140px;
}

.gallery-wrapper {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery-box .title {
  text-align: center;
  font-size: 40px;
  font-weight: 300;
}

.gallery-wrapper .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.gallery-wrapper .swiper .swiper-pagination {
  bottom: 100px;
}

.gallery-wrapper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
}

.gallery-wrapper .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-wrapper .swiper-slide-active {
  filter: blur();
  z-index: 10;
}

.gallery-wrapper .swiper-pagination-bullet {
  opacity: .5;
  background: #fff;
}

.gallery-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fdd835;
}

.gallery-wrapper .swiper-3d .swiper-slide-shadow-left, .gallery-wrapper .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.detail-form-box {
  padding-bottom: 500px;
}

.detail-form-box .bg-logo-wrapper {
  width: 100%;
  height: 400px;
  position: absolute;
}

.detail-form-box .bg-logo-wrapper img {
  opacity: .15;
  width: 100%;
}

.detail-form-box .form-container {
  -webkit-backdrop-filter: blur(4px);
  background: #fff9;
  border: 1px solid #ffffff1f;
  border-radius: 48px;
  max-width: 68vw;
  position: relative;
  top: 400px;
  box-shadow: 0 4px 30px #0000001a;
  max-width: 1400px !important;
}

.tech-header {
  justify-content: space-between;
  display: flex;
}

.tech-header .badges {
  gap: 40px;
  display: flex;
}

.tech-header .badges .badge {
  color: #000;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  transition: all .3s;
  display: flex;
  box-shadow: 4px 7px 5px #00000038;
}

.tech-header .badges .badge:hover {
  background: linear-gradient(14deg, #ffffff80 0%, #0000004d 100%);
  transform: scale(1.1);
}

.tech-header .badges .badge img {
  filter: brightness(0) invert() drop-shadow(0 0 6px #fff);
  width: 60px;
  height: auto;
}

.tech-header .badges .badge span.title {
  color: #fff;
  margin-top: 15px;
  font-size: 24px;
  font-weight: 500;
}

.tech-header .badges .badge span.desc {
  color: #fff;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 300;
}

.sub-page-effect-text {
  margin: 70px 0;
  display: flex;
}

.sub-page-effect-text .title {
  letter-spacing: -3px;
  width: 30%;
  font-family: Alternate Gothic No1 D;
  font-size: 90px;
  font-weight: 400;
  line-height: 83px;
}

.sub-page-effect-text .title span {
  color: #fff;
  text-shadow: 0 0 2px #000;
  font-family: Alternate Gothic No1 D;
}

.sub-page-effect-text .text {
  align-items: center;
  width: 65%;
  font-size: 30px;
  font-weight: 300;
  line-height: 41px;
  display: flex;
}

.multiple-boxes {
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 70px;
  display: flex;
}

.multiple-boxes .multiple-box {
  border-radius: 10px;
  width: calc(33.3333% - 23.3333px);
  min-height: 310px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 5px #0000000d;
}

.multiple-boxes .multiple-box.image {
  box-shadow: unset;
}

.multiple-boxes .multiple-box.image img {
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 6px 5px #0000000d);
  width: 100%;
  height: 100%;
}

.multiple-boxes .multiple-box.redirect {
  background-color: #97989b;
  padding: 20px;
  transform: scale(.95);
}

.multiple-boxes .multiple-box.redirect.red {
  background-color: #e73842;
}

.multiple-boxes .multiple-box.redirect .title {
  color: #fff;
  width: 30%;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  display: inline-flex;
}

.multiple-boxes .multiple-box.redirect .logo {
  width: 160px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.multiple-boxes .multiple-box.redirect .arrow {
  width: auto;
  max-width: 200px;
  height: auto;
  position: absolute;
  top: -20px;
  right: -23px;
}

.sunny-detail-box, .sunny-detail-box img {
  width: 100%;
}

.sunny-detail-box .detail-box {
  background-color: #fff;
  border-radius: 48px;
  width: 93%;
  margin: auto;
  padding: 60px 80px;
  position: relative;
  top: -150px;
  box-shadow: 0 4px 5px #00000024;
}

.sunny-detail-box .detail-box .title {
  margin-bottom: 40px;
  font-size: 60px;
  font-weight: 500;
  line-height: 88px;
}

.sunny-detail-box .detail-box .desc {
  font-size: 27px;
  font-weight: 300;
  line-height: 41px;
}

.sunny-detail-box .detail-box .logo-redirect {
  margin-top: 60px;
  display: flex;
}

.sunny-detail-box .detail-box .logo-redirect .logo {
  width: 85%;
  height: max-content;
}

.sunny-detail-box .detail-box .logo-redirect .redirect-detail {
  justify-content: center;
  align-items: center;
  display: flex;
}

.sunny-detail-box .detail-box .logo-redirect .redirect-detail img {
  width: 70px;
}

.sunny-detail-box .detail-box .logo-redirect .redirect-detail .detail {
  flex-flow: column wrap;
  justify-content: center;
  align-items: start;
  min-width: 125px;
  display: flex;
}

.sunny-detail-box .detail-box .logo-redirect .redirect-detail .detail span {
  display: flex;
}

.sunny-detail-box .detail-box .logo-redirect .redirect-detail .detail span span {
  color: #0d5cab;
}

.contact-hero-box .def-container .contact-hero-wrapper {
  flex-flow: column wrap;
  justify-self: center;
  width: fit-content;
  margin: 70px 0;
  display: flex;
  position: relative;
}

.contact-hero-box .def-container .contact-hero-wrapper:before {
  content: "";
  z-index: -1;
  background: url("/assets/images/icons/map-arrow.svg") center / contain no-repeat;
  width: 75px;
  height: 106px;
  position: absolute;
  top: 30%;
  left: -11%;
}

.contact-hero-box .def-container .contact-hero-wrapper h2 {
  width: fit-content;
  font-size: 80px;
  font-weight: 300;
  line-height: 87px;
}

.contact-hero-box .def-container .contact-hero-wrapper .links {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.contact-hero-box .def-container .contact-hero-wrapper .links a {
  font-size: 24px;
  font-weight: 300;
  line-height: 16px;
}

.map-box {
  z-index: 1;
  position: relative;
}

.contact-form-box {
  z-index: 10;
  position: relative;
}

.contact-form-box .form-container {
  background: #fff;
  border: 1px solid #ffffff1f;
  border-radius: 48px;
  max-width: 68vw;
  position: relative;
  top: -130px;
  box-shadow: 0 4px 30px #0000001a;
}

.logo-shape {
  width: 100%;
  min-height: 250px;
}

.logo-shape img {
  object-fit: cover;
  object-position: center;
  width: 116%;
  height: 100%;
  position: relative;
  left: -8%;
}

.contact-info-box {
  margin: 80px 0 150px;
}

.contact-info-box .def-container {
  align-items: center;
  gap: 200px;
  display: flex;
}

.contact-info-box .def-container .left {
  width: 40%;
}

.contact-info-box .def-container .left .title {
  font-size: 30px;
  font-weight: 500;
  line-height: 37px;
}

.contact-info-box .def-container .left .title img {
  width: 36px;
  height: 36px;
}

.contact-info-box .def-container .left .desc {
  max-width: 555px;
  font-size: 30px;
  font-weight: 300;
  line-height: 41px;
}

.contact-info-box .def-container .right {
  width: 60%;
}

.contact-info-box .def-container .right .info-table {
  width: 100%;
}

.contact-info-box .def-container .right .info-table .info-row {
  border-bottom: 1px solid #1b1a1b;
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 14px;
  font-weight: 300;
  display: flex;
}

.contact-info-box .def-container .right .info-table .info-row .title {
  color: #1b1a1b;
  font-size: 27px;
  font-weight: 300;
  line-height: 33px;
}

.contact-info-box .def-container .right .info-table .info-row .desc {
  color: #1b1a1b;
  font-size: 30px;
  line-height: 36px;
}

.contact-info-box .def-container .right .info-table .info-row .desc a {
  color: #1b1a1b;
}

.sub-page-banner.services-banner .bottom-wrapper {
  flex-wrap: wrap;
  height: 100%;
  max-height: 500px;
  padding: 0 134px;
}

.sub-page-banner.services-banner .bottom-wrapper .option-selector-wrapper {
  gap: 40px;
  width: 100%;
  display: flex;
}

.services-table-box {
  color: #2b2b2b;
  margin: 60px auto;
  padding: 0 40px;
  font-family: Arial, Helvetica, sans-serif;
}

.services-table-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
  font-size: 24px;
  display: flex;
}

.services-table-title {
  font-size: 40px;
  font-weight: 700;
}

.services-table-reset {
  color: #000;
  font-size: 14px;
  text-decoration: none;
}

.services-table-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.services-table-search {
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  min-width: 260px;
  height: 44px;
  padding: 0 14px;
  font-size: 16px;
}

.services-table-list {
  width: 100%;
}

.services-table-item {
  color: #313131;
  border-bottom: 1px solid #cfcfcf;
  align-items: center;
  gap: 100px;
  padding: 26px 0;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
}

.services-index {
  margin-right: 30px;
  font-size: 30px;
  font-weight: 700;
}

.services-name {
  width: 18%;
  max-width: 300px;
  font-size: 30px;
  font-weight: 300;
}

.services-address {
  color: #3a3a3a;
  width: 32%;
  max-width: 560px;
  font-size: 30px;
  font-weight: 300;
}

.services-phone, .services-mail {
  white-space: nowrap;
  width: 10%;
  font-size: 30px;
  font-weight: 300;
}

.form-box .form-nav-btn-wrapper {
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
  padding-top: 100px;
  display: flex;
}

.form-box .form-nav-btn-wrapper .form-nav-btn {
  color: #fff;
  border: unset;
  background-color: #3b3b3b;
  border-radius: 38px;
  padding: 12px 54px;
  font-size: 29px;
  font-weight: 300;
  line-height: 61px;
}

.form-box .form-nav-btn-wrapper .form-nav-btn:first-child {
  border-radius: 48px 0 0 48px;
}

.form-box .form-nav-btn-wrapper .form-nav-btn:last-child {
  border-radius: 0 48px 48px 0;
}

.form-box .form-nav-btn-wrapper .form-nav-btn.active {
  background-color: #97989b;
}

.form-box .map-info-box {
  position: relative;
}

.form-box .map-info-box .map-svg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.form-box .map-info-box .title {
  text-align: center;
  color: #1f1f1f;
  font-size: 70px;
  font-weight: 500;
  line-height: 39px;
}

.form-box .map-info-box .text {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: #1f1f1f;
  background-color: #ffffff80;
  border-radius: 48px;
  width: 83%;
  margin: 40px auto 0;
  padding: 30px;
  font-size: 38px;
  font-weight: 300;
  line-height: 39px;
}

.form-box .service-form-wrapper {
  margin-bottom: 70px;
}

.form-box .service-form-wrapper .form-container {
  z-index: 1000;
  position: relative;
  top: 64px;
  box-shadow: 0 4px 30px #0000001a;
  background-color: #fff !important;
}

.sub-page-banner.blogs-banner .bottom-wrapper {
  flex-wrap: wrap;
  height: 100%;
  max-height: 500px;
  padding: 0 134px;
}

.sub-page-banner.blogs-banner .bottom-wrapper .page-title {
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: 100px;
  font-weight: 500;
  line-height: 69px;
}

.blogs-container .blog-section {
  margin: 50px 0;
}

.blogs-container .blog-cards {
  flex-wrap: wrap;
}

.blogs-container .blog-card {
  max-width: 31.6667%;
}

.sub-page-banner.blog-banner .bottom-wrapper {
  flex-wrap: wrap;
  height: 100%;
  max-height: 500px;
  padding: 0 134px;
}

.sub-page-banner.blog-banner .bottom-wrapper .page-title {
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: 100px;
  font-weight: 500;
  line-height: 69px;
}

.blog-container .blog-section {
  margin: 50px 0;
}

.blog-container .blog-cards {
  flex-wrap: wrap;
}

.blog-container .blog-card {
  max-width: 31.6667%;
}

.blog-detail-container {
  gap: 97px;
  margin-bottom: 100px;
  padding-top: 56px;
  display: flex;
}

.blog-detail-container .blog-contents {
  background-color: #f7f7f7;
  border-radius: 48px;
  width: 70%;
  padding: 40px;
}

.blog-detail-container .blog-contents .master-image {
  border-radius: 48px;
  overflow: hidden;
}

.blog-detail-container .blog-contents .master-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.blog-detail-container .blog-contents .html-content h3 {
  color: #4d4d4d;
  margin-top: 40px;
  font-size: 40px;
  line-height: 69px;
}

.blog-detail-container .blog-contents .html-content h4 {
  color: #4d4d4d;
  margin-top: 25px;
  font-size: 24px;
  line-height: 69px;
}

.blog-detail-container .blog-contents .html-content p {
  color: #4d4d4d;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
}

.blog-detail-container .blog-helpers {
  width: 25%;
}

.blog-detail-container .blog-helpers .recent-posts {
  background-color: #f7f7f7;
  border-radius: 48px;
  margin-bottom: 100px;
  padding: 20px;
}

.blog-detail-container .blog-helpers .recent-posts .search-box {
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

.blog-detail-container .blog-helpers .recent-posts .search-box input {
  border: unset;
  color: #4d4d4d;
  border-radius: 30px;
  width: 100%;
  padding: 13px 20px;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
}

.blog-detail-container .blog-helpers .recent-posts .search-box button {
  border: unset;
  background-color: unset;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.blog-detail-container .blog-helpers .recent-posts .search-box button img {
  width: 31px;
  height: 31px;
}

.blog-detail-container .blog-helpers .recent-posts .recent-posts-list .recent-post {
  border-bottom: 1px solid #adadad;
  margin-top: 20px;
  padding-bottom: 20px;
}

.blog-detail-container .blog-helpers .recent-posts .recent-posts-list .recent-post:last-child {
  border-bottom: unset;
}

.blog-detail-container .blog-helpers .recent-posts .recent-posts-list .recent-post .recent-post-content {
  gap: 25px;
  display: flex;
}

.blog-detail-container .blog-helpers .recent-posts .recent-posts-list .recent-post .recent-post-content .date {
  color: #fff;
  background-color: #626262;
  border-radius: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 75px;
  min-width: 75px;
  height: 75px;
  font-size: 26px;
  font-weight: 700;
  line-height: 17px;
  display: inline-flex;
}

.blog-detail-container .blog-helpers .recent-posts .recent-posts-list .recent-post .recent-post-content .recent-post-info {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.blog-detail-container .blog-helpers .recent-posts .recent-posts-list .recent-post .recent-post-content .date span {
  font-size: 15px;
}

.blog-detail-container .blog-helpers .recent-posts .recent-posts-list .recent-post .recent-post-content .title {
  color: #626262;
  font-size: 24px;
  font-weight: 700;
  line-height: 22px;
}

.blog-detail-container .blog-helpers .recent-posts .recent-posts-list .recent-post .recent-post-content .desc {
  color: #626262;
  font-size: 20px;
  font-weight: 300;
  line-height: 22px;
}

.blog-detail-container .blog-helpers .blog-gallery {
  background-color: #f7f7f7;
  border-radius: 48px;
  margin-bottom: 100px;
  padding: 25px 30px;
}

.blog-detail-container .blog-helpers .blog-gallery .title {
  color: #000;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.blog-detail-container .blog-helpers .blog-gallery .blog-gallery-images {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.blog-detail-container .blog-helpers .blog-gallery .blog-gallery-images .blog-gallery-image.half {
  width: calc(50% - 5px);
}

.blog-detail-container .blog-helpers .blog-gallery .blog-gallery-images .blog-gallery-image.full {
  width: 100%;
}

.blog-detail-container .blog-helpers .blog-gallery .blog-gallery-images .blog-gallery-image img {
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.blog-detail-container .blog-helpers .blog-tags {
  background-color: #f7f7f7;
  border-radius: 48px;
  margin-bottom: 100px;
  padding: 25px 30px;
}

.blog-detail-container .blog-helpers .blog-tags .title {
  color: #000;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.blog-detail-container .blog-helpers .blog-tags .blog-tags-list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  display: flex;
}

.blog-detail-container .blog-helpers .blog-tags .blog-tags-list .blog-tag {
  color: #fff;
  background-color: #626262;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 300;
}

.sub-page-banner.info-banner .bottom-wrapper {
  flex-wrap: wrap;
  height: 100%;
  max-height: 500px;
  padding: 0 134px;
}

.sub-page-banner.info-banner .bottom-wrapper .page-title {
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: 100px;
  font-weight: 500;
  line-height: 69px;
}

.info-page-container {
  background-color: #f7f7f7;
  border-radius: 48px;
  margin-top: 56px;
  margin-bottom: 100px;
  padding: 40px;
}

.info-page-container .info-content {
  color: #4d4d4d;
}

.info-page-container .info-content .title {
  color: #4d4d4d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 69px;
}

.info-page-container .info-content .html-content {
  color: #4d4d4d;
  font-size: 24px;
  font-weight: 300;
  line-height: 39px;
}

.info-page-container .info-content .html-content b {
  margin-top: 40px;
  font-size: 24px;
  line-height: 39px;
  display: block;
}

.app-preloader {
  z-index: 9999;
  color: #000;
  letter-spacing: .04em;
  background: #ffffffab;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  display: flex;
  position: fixed;
  inset: 0;
}

.app-preloader__spinner {
  border: 3px solid #0003;
  border-top-color: #000;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  animation: 1s linear infinite app-preloader-spin;
}

.app-preloader__text {
  text-transform: uppercase;
  font-size: .95rem;
}

.app-preloader--error {
  background: #fff;
}

@keyframes app-preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/