/* Style */
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
@import "reset.css";
@import "variables.css";
@import "globals.css";
@import "responsive.css";

.swiper-pagination {
  position: static;
  margin-top: 3.5rem;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #d9d9d9;
  opacity: 1;
  width: 0.9rem;
  height: 0.9rem;
  transition: all 300ms ease;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/* * Home Hero */
section.home-hero {
  position: relative;
  height: 100vh;
  padding-top: var(--header-height);
  overflow: hidden;
  background: radial-gradient(
    68.29% 67.29% at 40.83% 48.7%,
    #1423bd 0%,
    #1423bd 0%,
    #1423bd 30.5%,
    #091057 100%
  );
}

section.home-hero .site-container {
  height: 100%;
}

section.home-hero .brands-wrapper {
  position: absolute;
  top: var(--header-height);
  left: 0;
  overflow: hidden;
  width: 150px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  section.home-hero .brands-wrapper {
    display: none;
  }
}

section.home-hero .brands {
  position: absolute;
  left: 0;
  top: var(--header-height);
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  z-index: 5;
  gap: 2rem;
  overflow: hidden;
  opacity: 0.5;
}

section.home-hero .hero-brand {
  height: calc(100% - 2.5rem - 1.25rem - var(--header-height));
}

section.home-hero .hero-swiper {
  height: 100%;
  overflow: hidden;
}

section.home-hero .hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10rem;
  color: var(--color-light);
}

section.home-hero .hero-swiper .swiper-slide .product-image {
  position: relative;
  margin-left: -2.5rem;
  /* margin-right: auto; */
}

section.home-hero .hero-swiper .swiper-slide .product-image img {
  max-width: 410px;
  /* min-width: 650px; */
  /* border: 1px solid red; */
  object-fit: contain;
  position: relative;
  z-index: 1;
}

section.home-hero .hero-swiper .swiper-slide .product-image .pins .pin {
  position: absolute;
  left: 50%;
  top: calc(50% - 2.5rem);
  display: flex;
  align-items: center;
  transform-origin: left;
  /* z-index: -1; */
}

section.home-hero .hero-swiper .swiper-slide .product-image .pins .pin .border {
  position: relative;
  min-width: 200px;
  min-height: 2px;
  margin-right: 1rem;
  background: var(--color-secondary);
  border-radius: 100px;
  border: 0 !important;
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin
  .border::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 1px solid var(--color-secondary);
  opacity: 0;
  transform: translate(50%, -50%);
  transition: all 300ms ease;
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin
  .border::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-secondary);
  transform: translate(50%, -50%);
}

section.home-hero .hero-swiper .swiper-slide .product-image .pins .pin .info {
  display: flex;
  flex-direction: column;
  width: max-content;
  margin-left: 2rem;
  text-align: right;
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin
  .property-name {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  line-height: 200%;
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin
  .property-value {
  position: relative;
  color: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #fff;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 135%;
  transition: all 300ms ease;
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin
  .property-value::before {
  content: attr(data-val);
  position: absolute;
  inset: 0;
  opacity: 0;
  font-weight: 900;
  -webkit-text-stroke-color: #009a37;
  -webkit-text-stroke-width: 5px;
  z-index: -1;
  transform: translate(0, 0);
  transition: all 300ms ease;
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin:first-child {
  transform: translate(25%, -25%) rotate(-40deg);
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin:first-child
  .info {
  transform: rotate(40deg) translateY(30%);
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin:nth-child(2) {
  transform: translate(23%, 0) rotate(0deg);
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin:nth-child(2)
  .info {
  transform: rotate(0deg) translateY(0);
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin:last-child {
  transform: translate(19%, 25%) rotate(40deg);
}

section.home-hero
  .hero-swiper
  .swiper-slide
  .product-image
  .pins
  .pin:last-child
  .info {
  transform: rotate(-40deg) translateY(-50%) translateX(-10%);
}

section.home-hero .hero-swiper .swiper-slide .product-title {
  color: var(--color-light);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 120%;
}

section.home-hero .hero-swiper .swiper-slide .product-title .highlight {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-secondary);
  position: relative;
  background-clip: text;
  transition: all 350ms ease !important;
  background-size: 200%;
  background-position: right;
  background-image: linear-gradient(
    to right,
    var(--color-secondary) 0%,
    var(--color-secondary) 50%,
    transparent 50%,
    transparent 100%
  );
  transition: all 350ms ease !important;
}

section.home-hero .hero-swiper .swiper-slide .explore-link {
  margin-top: 2.5rem;
  padding-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  color: var(--color-light);
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 1rem;
  position: relative;
  transition: all 350ms ease !important;
}

section.home-hero .hero-swiper .swiper-slide .explore-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  min-height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

section.home-hero .hero-swiper .swiper-slide .explore-link svg {
  color: var(--color-light);
  transition: all 350ms ease !important;
}

section.home-hero .hero-swiper .swiper-slide .product-content {
  flex: 1;
  max-width: 450px;
  margin-bottom: 240px;
}

section.home-hero .hero-nav-card-swiper {
  background: var(--color-light);
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;
  /* width: 650px; */
  width: 650px;
  height: 240px;
  border-top-left-radius: 50px;
  /* overflow: hidden; */
}

section.home-hero .hero-nav-card-swiper {
  overflow: visible;
}

section.home-hero .hero-nav-card-swiper .swiper-slide {
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.home-hero .hero-nav-card-swiper .swiper-slide .slide-title {
  max-width: 225px;
  color: var(--color-primary);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: normal;
}

section.home-hero .hero-nav-card-swiper .swiper-slide .seperator {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 143, 38, 0.3) 30%,
    rgba(255, 143, 38, 0.3) 50%,
    rgba(255, 143, 38, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  min-width: 2px;
  height: 175%;
}

section.home-hero .hero-nav-card-swiper .swiper-slide .slide-image {
  margin-top: -150px;
  animation: bounce 3s linear infinite;
  width: 200px;
}

section.home-hero .hero-nav-card-swiper .swiper-current-page {
  position: absolute;
  left: 0;
  top: -1rem;
  color: var(--color-secondary);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 100%;
}

section.home-hero .hero-nav-card-swiper .swiper-current-page span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--color-secondary);
  color: transparent;
  font-size: 6rem;
}

section.home-hero .hero-nav-card-swiper .swiper-navigation {
  position: absolute;
  width: 100px;
  height: 150px;
  left: calc(1.5rem - 100px);
  border-top-left-radius: 25px;
  bottom: 0;
  background-color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: white;
  box-shadow: 5px 5px 13px 0px rgba(255, 145, 38, 0.2);
}

section.home-hero .hero-nav-card-swiper .swiper-navigation .seperator {
  margin: 0 auto;
  width: 75%;
  min-height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

section.home-hero .hero-nav-card-swiper .swiper-navigation a {
  transition: all 300ms ease;
}

section.home-hero .hero-nav-card-swiper .swiper-navigation svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* * Home Tab View */
section.home-tab-view {
  min-height: 100vh;
  background-color: var(--color-primary);
  position: relative;
  padding: 5rem 0;
}

section.home-tab-view .tab-buttons {
  margin-bottom: 6rem;
}

section.home-tab-view .tab-buttons ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

section.home-tab-view .tab-buttons ul a {
  min-width: 265px;
  display: flex;
  justify-content: center;
  padding: 1rem 1.25rem;
  color: rgba(var(--rgb-color-light));
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 135%;
  border-radius: 0.5rem;
  position: relative;
  transition: background 350ms ease;
}

section.home-tab-view .tab-buttons ul a .active-border {
  position: absolute;
  left: 0;
  bottom: -0.5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(var(--rgb-color-secondary)) 30%,
    rgba(var(--rgb-color-secondary)) 50%,
    rgba(var(--rgb-color-secondary)) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.2;
  transform: scaleX(0);
  transition: opacity, transform, 350ms ease;
}

section.home-tab-view .tab-buttons ul a::before,
section.home-tab-view .tab-buttons ul a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(var(--rgb-color-secondary)) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.2;
  transform: scaleX(0);
  transition: opacity, transform, 350ms ease;
}

section.home-tab-view .tab-buttons ul a::before {
  top: 0;
  transform-origin: left;
}

section.home-tab-view .tab-buttons ul a::after {
  bottom: 1.5px;
  transform-origin: right;
}

section.home-tab-view .tab-buttons ul a.active {
  background: rgba(255, 255, 255, 0.05);
}

section.home-tab-view .tab-buttons ul a.active::before,
section.home-tab-view .tab-buttons ul a.active::after,
section.home-tab-view .tab-buttons ul a.active .active-border {
  opacity: 1;
  transform: scaleX(1);
}

section.home-tab-view .tab-main {
  display: flex;
  justify-content: space-between;
  transition: all 300ms ease;
  min-height: 200px;
}

section.home-tab-view .tab-content {
  flex: 1.4;
  position: relative;
  transition: all 350ms ease;
}

section.home-tab-view .tab-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: max-content;
  opacity: 0;
  transform: scale(1.04);
  filter: blur(0.75rem);
  visibility: hidden;
  transition: all 350ms ease;
}

section.home-tab-view .tab-view.active {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: scale(1);
}

section.home-tab-view .tab-view .about-content {
  max-width: 775px;
}

section.home-tab-view .tab-view[data-tab="about-us"] {
  padding: 3rem 0;
}

section.home-tab-view .tab-view[data-tab="about-us"] h3 {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 2.75rem;
}

section.home-tab-view .tab-view[data-tab="about-us"] h3 span {
  color: var(--color-secondary);
  font-weight: 900;
}

section.home-tab-view .tab-view[data-tab="about-us"] p {
  max-width: 735px;
  color: #b3b5cb;
  font-size: 1.5rem;
  line-height: normal;
  margin-bottom: 5rem;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

section.home-tab-view .tab-view[data-tab="about-us"] .content-text-wrapper {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

section.home-tab-view .tab-view[data-tab="about-us"] .btn-explore {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  padding-bottom: 17px;
  position: relative;
  transition: all 300ms ease;
}

section.home-tab-view .tab-view[data-tab="about-us"] .btn-explore svg {
  transition: inherit;
}

section.home-tab-view .tab-view[data-tab="about-us"] .btn-explore::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  min-height: 1.5px;
  width: 30%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 30%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

section.home-tab-view .tab-view[data-tab="catalog"] {
  padding-bottom: 4rem;
}

section.home-tab-view .tab-view[data-tab="catalog"] .catalog-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4.5rem;
}

section.home-tab-view .tab-view[data-tab="catalog"] .catalog-list a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 185px;
  height: 250px;
  padding: 80px 2rem 1.85rem;
  transition: all 350ms ease;
}

section.home-tab-view .tab-view[data-tab="catalog"] .catalog-list a::before {
  content: attr(data-file-type);
  position: absolute;
  top: 1.4rem;
  left: 2rem;
  color: #b3b5cb;
  font-size: 1rem;
  font-weight: 900;
  line-height: normal;
  transition: all 350ms ease;
}

section.home-tab-view
  .tab-view[data-tab="catalog"]
  .catalog-list
  a
  .pdf-file-name {
  color: #b3b5cb;
  font-size: 1rem;
  line-height: normal;
}

section.home-tab-view
  .tab-view[data-tab="catalog"]
  .catalog-list
  a
  .pdf-file-name-2 {
  color: #b3b5cb;
  font-size: 0.9rem;
  line-height: normal;
}

section.home-tab-view .tab-view[data-tab="catalog"] .catalog-list a .view {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  opacity: 0.5;
  color: #b3b5cb;
  font-size: 0.9rem;
  line-height: normal;
  transition: all 350ms ease;
}

section.home-tab-view .tab-view[data-tab="catalog"] .catalog-list a .file-svg {
  stroke-width: 0.5px;
  position: absolute;
  inset: 0;
  transition: all 350ms ease;
}

section.home-tab-view .tab-view[data-tab="partners"] .partner-list {
  display: grid;
  gap: 1px;
  /* background: linear-gradient(to left, transparent, #4a4f83, transparent); */
  background: radial-gradient(#4a4f83, transparent -20%);
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: repeat(4, 1fr); */
  position: relative;
  overflow: hidden;
}

section.home-tab-view
  .tab-view[data-tab="partners"]
  .partner-list
  .grid-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(
    rgba(var(--rgb-color-secondary)) 30%,
    #4a4f83aa,
    transparent,
    transparent
  );
  /* box-shadow: 0 0 18px rgba(var(--rgb-color-secondary), 0.5); */
  z-index: 10;
  --x: -101%;
  --y: -101%;
  transform: translate(calc(var(--x) - 50%), calc(var(--y) - 50%));
  transition: transform 30ms ease-in-out;
  pointer-events: none;
}

section.home-tab-view .tab-view[data-tab="partners"] .partner-list li {
  pointer-events: none;
  position: relative;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100px;
  background-color: var(--color-primary);
}

section.home-tab-view .tab-view[data-tab="partners"] .partner-list li img {
  max-height: 75px;
}

section.home-tab-view .tab-view[data-tab="references"] .reference-list {
  display: grid;
  gap: 1px;
  /* background: linear-gradient(to left, transparent, #4a4f83, transparent); */
  background: radial-gradient(#4a4f83, transparent -20%);
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: repeat(4, 1fr); */
  position: relative;
  overflow: hidden;
}

section.home-tab-view
  .tab-view[data-tab="references"]
  .reference-list
  .grid-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(
    rgba(var(--rgb-color-secondary)) 30%,
    #4a4f83aa,
    transparent,
    transparent
  );
  /* box-shadow: 0 0 18px rgba(var(--rgb-color-secondary), 0.5); */
  z-index: 10;
  --x: -101%;
  --y: -101%;
  transform: translate(calc(var(--x) - 50%), calc(var(--y) - 50%));
  transition: transform 30ms ease-in-out;
  pointer-events: none;
}

section.home-tab-view .tab-view[data-tab="references"] .reference-list li {
  pointer-events: none;
  position: relative;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100px;
  background-color: var(--color-primary);
}

section.home-tab-view .tab-view[data-tab="references"] .reference-list li img {
  max-height: 75%;
  max-width: 210px;
  object-fit: contain;
}

section.home-tab-view .video-content {
  flex: 1;
}

section.home-tab-view .video-content .video-circle {
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  overflow: hidden;
}

section.home-tab-view .video-content .video-circle img {
  width: 100%;
  height: 100%;
}

section.home-tab-view .video-content .video-circle .play-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 230px;
  color: var(--color-orange);
  transform: translate(-50%, -50%) scale(0.9);
  border-radius: 50%;
  border: 0.25px solid rgba(var(--rgb-color-light));
  background: rgba(196, 196, 196, 0.01);
  backdrop-filter: blur(0.9rem);
  -webkit-backdrop-filter: blur(0.9rem);
}

section.home-tab-view .circles {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

section.home-tab-view .circles svg {
  height: 105%;
}

section.home-tab-view .circles svg:last-child {
  margin-left: -5vw;
}

/* * Home Products */
section.home-products {
  background-color: var(--color-light);
  color: var(--color-dark);
}

section.home-products .products-header {
  margin-top: -4rem;
  border-radius: 1.25rem 1.25rem 0px 0px;
  padding: 5rem 0 2rem;
  -webkit-text-stroke: 1.5px var(--color-primary);
  color: transparent;
  text-align: center;
  font-size: 76px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  position: relative;
  background-color: var(--color-light);
}

section.home-products .products-header::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 300px;
  height: 4px;
  bottom: 0;
  z-index: 20;
  transform: translateX(-50%);
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 169, 60, 0.3) 30%,
    rgba(0, 169, 60, 0.3) 50%,
    rgba(0, 169, 60, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

section.home-products .categories {
  padding: 4.5rem 0 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;
}

section.home-products .categories a {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 8px;
  background: rgba(230, 231, 238, 0.12);
  color: #8e91b2;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  transition: all 300ms ease;
}

section.home-products .categories a .tag {
  background-color: var(--color-light);
  color: #8e91b2;
  position: absolute;
  left: 50%;
  top: 10px;
  font-size: 1rem;
  transform: translate(-50%, -100%);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.02));
}

section.home-products .categories a.active {
  background: #f2fbf5;
  color: var(--color-secondary);
}

section.home-products .categories a.active .tag {
  color: var(--color-primary);
}

section.home-products .home-products-swiper-container {
  /* max-width: calc((100vw + 1820px) / 2); */
  /* width: 90%; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  padding-bottom: 5rem;
  /* .home-products-swiper {
   display: none;
   &.active {
   display: block;
   }
   } */
  /* .swiper-slide{
   } */
}

section.home-products .home-products-swiper-container .swiper-pagination {
  position: static;
  margin-top: 4.5rem;
}

section.home-products
  .home-products-swiper-container
  .swiper-pagination
  .swiper-pagination-bullet {
  background-color: #d9d9d9;
  opacity: 1;
  width: 0.9rem;
  height: 0.9rem;
  transition: all 300ms ease;
}

section.home-products
  .home-products-swiper-container
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/* * Home Solutions */
section.home-solutions-card {
  height: 100vh;
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 5rem 0 10rem;
  display: flex;
  justify-content: space-between;
}

section.home-solutions-card .site-container {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

section.home-solutions-card .solutions {
  display: flex;
}

section.home-solutions-card .product-list {
  flex: 2;
  background-color: #e6e7ee;
  border-radius: 0px 90px 90px 0px;
}

section.home-solutions-card .product-content {
  display: none;
  padding-right: 220px;
  position: relative;
}

section.home-solutions-card .product-content.show {
  display: flex;
}

section.home-solutions-card .product-content .product-info {
  flex: 1;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

section.home-solutions-card .product-content .product-info .solution-name {
  color: #3a4079;
  text-align: center;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 110%;
  white-space: pre-line;
}

section.home-solutions-card .product-content .product-info .solution-name span {
  color: #091057;
}

section.home-solutions-card .product-content .product-info .solution-image {
  height: 70vh;
  margin-top: -8rem;
  margin-bottom: -2.5rem;
}

section.home-solutions-card .product-content .product-info .view-all {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  border-radius: 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-light);
  font-size: 1.35rem;
  line-height: normal;
  transition: all 300ms ease;
}

section.home-solutions-card .product-content .product-name-stroke-wrapper {
  position: absolute;
  right: 210px;
  top: 50%;
  z-index: 0;
  max-height: calc(100% - 1rem);
  height: auto;
  overflow: hidden;
  text-align: center;
  transform: translateY(-50%);
}

section.home-solutions-card .product-content .product-name-stroke {
  display: inline-block;
  /* writing-mode: sideways-lr;
   text-orientation: upright; */
  writing-mode: sideways-lr;
  color: rgba(9, 16, 87, 0);
  -webkit-text-stroke: 2px #b3b5cb;
  opacity: 0.5;
  white-space: nowrap;
  font-size: 167px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.83px;
}

section.home-solutions-card .product-content .product-name-stroke span {
  display: none;
}

section.home-solutions-card .product-categories-nav {
  flex: 1;
  position: relative;
  z-index: 10;
  /* margin-top: 5.5rem; */
  /* margin-bottom: -10rem; */
  padding: 6rem 4rem 0;
  background-color: var(--color-primary);
  color: var(--color-light);
  display: flex;
  flex-direction: column;
  border-radius: 90px 0px 0px 90px;
  margin: 5.5rem 0 -3.5rem;
  margin-left: -260px;
}

section.home-solutions-card .product-categories-nav .category-index {
  position: absolute;
  top: 40px;
  right: 50px;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-secondary);
  font-size: 116px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

@media screen and (max-width: 1440px) {
  section.home-solutions-card .product-categories-nav .category-index {
    font-size: 60px;
  }
}

@media screen and (max-width: 1199px) {
  section.home-solutions-card .product-categories-nav .category-index {
    font-size: 55px;
    top: 34px;
  }
}

section.home-solutions-card .product-categories-nav .category-index span {
  position: relative;
}

section.home-solutions-card
  .product-categories-nav
  .category-index
  span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 95%;
  border-bottom: 5px solid var(--color-secondary);
}

section.home-solutions-card .product-categories-nav .category-list {
  margin-bottom: 3rem;
  position: relative;
}

section.home-solutions-card .product-categories-nav .category-list::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 75%;
  height: 50px;
  z-index: 50;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(9, 16, 87, 0) 0%, #091057 100%);
}

section.home-solutions-card .product-categories-nav .category-list::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 75%;
  height: 50px;
  z-index: 50;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 16, 87, 0) 0%, #091057 100%);
}

section.home-solutions-card
  .product-categories-nav
  .category-list
  li:not(:last-child)
  a {
  margin-bottom: 4rem;
}

section.home-solutions-card
  .product-categories-nav
  .category-list
  .category-item {
  display: inline-flex;
  align-items: baseline;
  color: #b3b5cb;
  opacity: 0.5;
  font-size: 1.25rem;
  line-height: normal;
  transition: all 350ms ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

section.home-solutions-card
  .product-categories-nav
  .category-list
  .category-item.half-active {
  font-size: 39px;
  opacity: 1;
}

section.home-solutions-card
  .product-categories-nav
  .category-list
  .category-item
  span {
  font-size: 1.25rem;
  font-weight: 600;
  margin-right: 1.4rem;
  transition: all 350ms ease;
}

section.home-solutions-card
  .product-categories-nav
  .category-list
  .category-item.active {
  font-size: 49px;
  color: transparent;
  font-weight: 900;
  opacity: 1;
  -webkit-text-stroke: 1px var(--color-secondary);
}

section.home-solutions-card
  .product-categories-nav
  .category-list
  .category-item.active
  span {
  position: relative;
  font-size: 2.25rem;
  padding-left: 2.5rem;
}

section.home-solutions-card
  .product-categories-nav
  .category-list
  .category-item.active
  span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  min-height: 4px;
  transform: translateY(-50%);
  background: var(--color-secondary);
}

section.home-solutions-card .product-categories-nav .btn-all-products {
  width: 100%;
  position: relative;
  /* margin: 0 0 4rem; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  color: #e6e7ee;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  transition: all 300ms ease;
  margin-top: 5vw;
}

section.home-solutions-card .product-categories-nav .btn-all-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 2px;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 169, 60, 0.3) 25%,
    rgba(0, 169, 60, 0.3) 50%,
    rgba(0, 169, 60, 0.3) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: all 300ms ease;
}

section.home-solutions-card .product-categories-nav .product-categories-title {
  /* margin-top: auto; */
  color: #3a4079;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: normal;
}

/* * Help Form */
section.help-form {
  padding: 10rem 0;
  background-color: var(--color-light);
}

section.help-form .help-form-card {
  background-repeat: no-repeat;
  background-position: -4px;
  background-color: #e6e7ee;
  color: var(--color-primary);
  border-radius: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3rem 5rem 3rem 265px;
  min-height: 595px;
}

section.help-form .help-form-card .content {
  flex: 1;
}

section.help-form .help-form-card .content h2 {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4.5rem;
}

section.help-form .help-form-card .content h2 span {
  font-weight: 900;
}

section.help-form .help-form-card .content a {
  display: inline-block;
  color: var(--color-primary);
  font-size: 1.75rem;
  line-height: normal;
  position: relative;
  padding: 0.5rem;
  overflow: hidden;
}

section.help-form .help-form-card .content a::after {
  content: "";
  position: absolute;
  width: 100%;
  min-height: 3px;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(9, 16, 87, 0.3) 30%,
    rgba(9, 16, 87, 0.3) 50%,
    rgba(9, 16, 87, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 350ms ease;
}

section.help-form .help-form-card .help-form {
  flex: 1;
  height: calc(100% + 25px);
}

section.help-form .help-form-card .help-form .field {
  height: 75px;
  margin-bottom: 0.75rem;
  position: relative;
}

section.help-form .help-form-card .help-form .captcha-field {
  display: flex;
  gap: 0.75rem;
}

section.help-form .help-form-card .help-form .captcha-field .col {
  flex: 1;
  padding: 0;
}

section.help-form .help-form-card .help-form .captcha-field a {
  background: var(--color-primary);
}

section.help-form .help-form-card .help-form .captcha-field .captcha_img {
  border-radius: 0.75rem;
  width: 100%;
  height: 74px;
  max-height: 100%;
  border: 1px solid var(--color-dark);
  max-height: unset !important;
}

section.help-form .help-form-card .help-form .captcha-field input {
  /* text-align: center; */
  text-transform: uppercase;
}

section.help-form .help-form-card .help-form .captcha-field input::placeholder {
  opacity: 0;
}

section.help-form .help-form-card .help-form label {
  pointer-events: none;
  color: var(--color-dark);
  position: absolute;
  top: 50%;
  left: 1.25rem;
  font-size: 1.5rem;
  transform: translateY(-50%);
  transition: all 350ms ease;
}

section.help-form .help-form-card .help-form input {
  font-size: 1.5rem;
  width: 100%;
  background-color: transparent;
  height: auto;
  border: 1px solid var(--color-dark);
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem 1rem;
  box-shadow: unset;
  outline: unset;
  color: var(--color-dark);
}

section.help-form .help-form-card .help-form input.not-valid {
  border-color: var(--danger);
}

section.help-form .help-form-card .help-form input.valid {
  border-color: var(--success);
}

section.help-form .help-form-card .help-form input:focus + label,
section.help-form .help-form-card .help-form input:valid + label {
  opacity: 0.6;
  font-size: 0.9rem;
  color: var(--color-dark);
  transform: translateY(calc(-100% - 0.5rem));
}

section.help-form .help-form-card .help-form .field-tooltip {
  box-shadow: 2px 4px 18px -4px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: inline-flex;
  max-width: 280px;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: max-content;
  background-color: #fdeaea;
  border: 1px solid #f8bcbd;
  color: #f06f71;
  /* font-weight: 500; */
  font-size: 0.9rem;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 30;
  transform: translate(calc(-75% - 1.5rem), -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}

section.help-form .help-form-card .help-form .field-tooltip::after {
  content: "";
  border: 0.4rem solid transparent;
  border-left-color: #f8bcbd;
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translate(1rem, -50%);
}

section.help-form .help-form-card .help-form .field-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translate(calc(-100% - 1.5rem), -50%);
}

section.help-form .help-form-card .help-form .btn-submit {
  font-size: 1.5rem;
  line-height: normal;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--color-dark);
  padding: 1.25rem;
  color: #e6e7ee;
  background-color: var(--color-primary);
  transition: all 300ms ease;
}

section.help-form .help-form-card .help-form p {
  font-weight: 600;
  margin-top: 1.85rem;
}

section.help-form .help-form-card .help-form p a {
  text-decoration: underline;
}

/* * Home References */
section.home-references.about-references {
  position: relative;
  z-index: 5;
  margin-top: -10rem;
  border-radius: 90px 90px 0 0;
}

section.home-references.about-references .site-container {
  padding-top: 10rem;
}

section.home-references {
  background-color: var(--color-light);
  padding: 0 !important;
}

section.home-references .site-container {
  padding-bottom: 10rem;
}

section.home-references .site-container .swiper-wrapper {
  transition-timing-function: linear;
}

section.home-references .site-container .swiper-slide {
  /* border: 1px solid #8e91b2; */
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
}

section.home-references .site-container .swiper-slide img {
  width: 40%;
  height: 40%;
  object-fit: contain;
}

/* * Product List Header */
header.product-list-header {
  margin-top: var(--header-height);
  height: 160px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  color: var(--color-primary);
  border-top: 1px solid #e6e7ee;
  /* border-bottom: 1px solid #e6e7ee; */
}

@media screen and (max-width: 1440px) {
  header.product-list-header {
    height: 150px;
  }
}

@media screen and (max-width: 11990px) {
  header.product-list-header {
    height: 140px;
  }
}

@media screen and (max-width: 991px) {
  header.product-list-header {
    height: 120px;
  }
}

@media screen and (max-width: 767px) {
  header.product-list-header {
    height: 180px;
    flex-wrap: wrap;
  }
}

header.product-list-header .filter-options {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.75rem;
  min-width: 465px;
  border-right: 1px solid #e6e7ee;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 0;
}

@media screen and (max-width: 1440px) {
  header.product-list-header .filter-options {
    min-width: 450px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1199px) {
  header.product-list-header .filter-options {
    min-width: 150px;
  }
}

@media screen and (max-width: 767px) {
  header.product-list-header .filter-options {
    flex: 1;
    width: 50%;
    max-height: 50%;
    font-size: 1.15rem;
    border-bottom: 1px solid #e6e7ee;
  }
}

@media screen and (max-width: 1199px) {
  header.product-list-header .filter-options span {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  header.product-list-header .filter-options span {
    display: none;
  }
}

header.product-list-header .filter-options svg {
  width: 2.5rem;
}

@media screen and (max-width: 1440px) {
  header.product-list-header .filter-options svg {
    width: 2rem;
  }
}

header.product-list-header .main-title {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 4.5rem;
  border-right: 1px solid #e6e7ee;
  column-gap: 2.5rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 1440px) {
  header.product-list-header .main-title {
    padding: 0 3rem;
    column-gap: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  header.product-list-header .main-title {
    padding: 0 1.5rem;
    min-width: 100%;
    text-align: center;
    justify-content: center;
    order: -1;
    max-height: 50%;
    border-bottom: 1px solid #e6e7ee;
    margin-bottom: 0;
  }
}

header.product-list-header .main-title .category-name {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: normal;
}

@media screen and (max-width: 1440px) {
  header.product-list-header .main-title .category-name {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  header.product-list-header .main-title .category-name {
    font-size: 1.15rem;
  }
}

header.product-list-header .main-title .tag {
  background-color: #f3f3f7;
  border-radius: 0.75rem;
  display: flex;
  padding: 0.75rem 2rem;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  line-height: normal;
  display: inline-block;
}

@media screen and (max-width: 1440px) {
  header.product-list-header .main-title .tag {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }
}

@media screen and (max-width: 767px) {
  header.product-list-header .main-title .tag {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    display: none;
  }
}

header.product-list-header .order-title {
  min-width: 400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 1440px) {
  header.product-list-header .order-title {
    min-width: 350px;
  }
}

@media screen and (max-width: 1199px) {
  header.product-list-header .order-title {
    min-width: 300px;
  }
}

@media screen and (max-width: 991px) {
  header.product-list-header .order-title {
    min-width: 275px;
  }
}

@media screen and (max-width: 767px) {
  header.product-list-header .order-title {
    min-width: 180px;
    max-height: 50%;
    margin: 0;
  }
}

header.product-list-header .order-title a {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  line-height: normal;
  gap: 1.25rem;
  padding: 1.5rem;
}

@media screen and (max-width: 1440px) {
  header.product-list-header .order-title a {
    font-size: 1.15rem;
  }
}

@media screen and (max-width: 767px) {
  header.product-list-header .order-title a {
    font-size: 1rem;
    gap: 0.75rem;
  }
}

header.product-list-header .order-title .order-dropdown {
  position: absolute;
  top: 99%;
  left: -1px;
  right: -1px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0);
  border-radius: 0 0 0 2rem;
  /* width: 250px; */
  min-width: 100%;
  z-index: 100;
  height: 0;
  border-bottom-color: transparent;
  overflow: hidden;
  transition: all 300ms ease;
}

header.product-list-header .order-title .order-dropdown.show {
  border-bottom-color: #ddd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

header.product-list-header .order-title .order-dropdown ul {
  list-style: none;
  padding: 0.5rem 0 0.5rem 0;
  margin: 0;
}

header.product-list-header .order-title .order-dropdown li {
  cursor: pointer;
}

header.product-list-header .order-title .order-dropdown a {
  text-decoration: none;
  color: var(--color-primary);
  display: block;
  font-weight: 500;
  font-size: 1.15rem;
  padding: 1.25rem 2rem;
  transition: all 250ms ease;
}

header.product-list-header .order-title .order-dropdown a.active {
  background-color: #e6e7ee;
}

/* * Product List */
section.product-list-main {
  display: flex;
  align-items: flex-start;
}

section.product-list-main .product-filter-sidebar {
  overflow: hidden;
  padding: 2.5rem 3.75rem;
  color: var(--color-primary);
  min-width: 465px;
  border-right: 1px solid #e6e7ee;
  border-bottom: 1px solid #e6e7ee;
  height: max-content;
  border-bottom-right-radius: 5rem;
  margin-bottom: 5rem;
}

section.product-list-main .product-filter-sidebar .close-icon-wrapper {
  text-align: center;
  padding: 0 0 2.5rem;
}

section.product-list-main
  .product-filter-sidebar
  .close-icon-wrapper
  .close-icon {
  display: none;
}

@media screen and (max-width: 1199px) {
  section.product-list-main
    .product-filter-sidebar
    .close-icon-wrapper
    .close-icon {
    display: inline-block;
  }
}

@media screen and (max-width: 1440px) {
  section.product-list-main .product-filter-sidebar {
    min-width: 450px;
  }
}

@media screen and (max-width: 1199px) {
  section.product-list-main .product-filter-sidebar {
    min-width: unset;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    overflow-y: auto;
    border-radius: 0;
    padding-top: calc(var(--header-height) + 2.5rem);
    background-color: var(--color-light);
    transform: translateY(100%);
    visibility: hidden;
    transition: all 300ms ease;
  }

  section.product-list-main .product-filter-sidebar.show {
    visibility: visible;
    transform: translateY(0);
  }
}

@media screen and (max-width: 991px) {
  section.product-list-main .product-filter-sidebar {
    padding: calc(var(--header-height) + 2.5rem) 1.5rem 3.75rem 1.5rem;
  }
}

section.product-list-main
  .product-filter-sidebar
  .filters
  > li:not(:first-child)
  > a {
  margin-top: 2.5rem;
}

@media screen and (max-width: 1440px) {
  section.product-list-main
    .product-filter-sidebar
    .filters
    > li:not(:first-child)
    > a {
    margin-top: 1.5rem;
  }
}

section.product-list-main .product-filter-sidebar .filters > li > a {
  border-radius: 0.9rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e6e7ee;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: normal;
}

@media screen and (max-width: 1440px) {
  section.product-list-main .product-filter-sidebar .filters > li > a {
    font-size: 1.15rem;
  }
}

section.product-list-main .product-filter-sidebar .filters > li > a .icon {
  transition: all 350ms ease;
}

section.product-list-main
  .product-filter-sidebar
  .filters
  > li
  > a.active
  .icon {
  transform: rotateX(180deg);
}

section.product-list-main .product-filter-sidebar .child-list {
  /* overflow: hidden; */
  /* will-change: height; */
  /* transition: all 350ms ease; */
}

section.product-list-main .product-filter-sidebar .brand-list li {
  padding: 1.75rem 0;
  margin-left: 2.2rem;
  border-left: 1px solid #e6e7ee;
}

@media screen and (max-width: 1440px) {
  section.product-list-main .product-filter-sidebar .brand-list li {
    padding: 1.5rem 0;
  }
}

section.product-list-main .product-filter-sidebar .brand-list li:last-child {
  position: relative;
}

section.product-list-main
  .product-filter-sidebar
  .brand-list
  li:last-child::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -1.3px;
  background-color: white;
  height: 40px;
  width: 3px;
  z-index: 100;
}

section.product-list-main .product-filter-sidebar .brand-list li a {
  display: flex;
  /* overflow: hidden; */
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  padding: 0.25rem 1.5rem 0.25rem 2.5rem;
  position: relative;
}

@media screen and (max-width: 1440px) {
  section.product-list-main .product-filter-sidebar .brand-list li a {
    font-size: 1.15rem;
    padding: 0.25rem 1.5rem 0.25rem 2rem;
  }
}

section.product-list-main .product-filter-sidebar .brand-list li a::before {
  content: "";
  display: block;
  width: 1.5px;
  height: 100%;
  background-color: var(--color-secondary);
  left: -1px;
  top: 0;
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate(-100%, 0);
  transition: all 300ms ease;
  z-index: 10;
}

section.product-list-main .product-filter-sidebar .brand-list li a::after {
  content: "";
  display: block;
  width: 16px;
  height: 3px;
  background-color: #e6e7ee;
  left: -1px;
  top: 50%;
  position: absolute;
  opacity: 1;
  will-change: transform, opacity;
  transform: translate(0, -50%) scaleY(0.5);
  transition: all 300ms ease;
  z-index: 10;
}

section.product-list-main
  .product-filter-sidebar
  .brand-list
  li
  a
  .custom-control-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.product-list-main
  .product-filter-sidebar
  .brand-list
  li
  a
  .custom-control-label::before,
section.product-list-main
  .product-filter-sidebar
  .brand-list
  li
  a
  .custom-control-label::after {
  display: none;
}

section.product-list-main
  .product-filter-sidebar
  .brand-list
  li
  a.selected::before {
  opacity: 1;
  transform: translate(0, 0);
}

section.product-list-main
  .product-filter-sidebar
  .brand-list
  li
  a.selected::after {
  opacity: 1;
  transform: translate(0, -50%) scaleY(1);
  background-color: var(--color-secondary);
}

section.product-list-main
  .product-filter-sidebar
  .category-filter.active
  + .category-list {
  margin-bottom: -2.5rem;
}

section.product-list-main .product-filter-sidebar .category-list li {
  padding: 1.75rem 0;
  margin-left: 2.2rem;
  border-left: 1px solid #e6e7ee;
}

@media screen and (max-width: 1440px) {
  section.product-list-main .product-filter-sidebar .category-list li {
    padding: 1.5rem 0;
  }
}

section.product-list-main .product-filter-sidebar .category-list li a {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  padding: 0.25rem 1.5rem 0.25rem 2.5rem;
  position: relative;
}

@media screen and (max-width: 1440px) {
  section.product-list-main .product-filter-sidebar .category-list li a {
    font-size: 1.15rem;
  }
}

section.product-list-main .product-filter-sidebar .category-list li a::before {
  content: "";
  display: block;
  width: 1.5px;
  height: 100%;
  background-color: var(--color-secondary);
  left: -1px;
  top: 0;
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate(-100%, 0);
  transition: all 300ms ease;
  z-index: 10;
}

section.product-list-main .product-filter-sidebar .category-list li a::after {
  content: "";
  display: block;
  width: 16px;
  height: 3px;
  background-color: #e6e7ee;
  left: -1px;
  top: 50%;
  position: absolute;
  opacity: 1;
  will-change: transform, opacity;
  transform: translate(0, -50%) scaleY(0.5);
  transition: all 300ms ease;
  z-index: 10;
}

section.product-list-main .product-filter-sidebar .category-list li a .icon {
  transition: all 300ms ease;
}

section.product-list-main
  .product-filter-sidebar
  .category-list
  li
  a.selected::before {
  opacity: 1;
  transform: translate(0, 0);
}

section.product-list-main
  .product-filter-sidebar
  .category-list
  li
  a.selected::after {
  opacity: 1;
  transform: translate(0, -50%) scaleY(1);
  background-color: var(--color-secondary);
}

section.product-list-main
  .product-filter-sidebar
  .category-list
  li
  a.selected
  .icon {
  color: var(--color-secondary);
  transform: translateX(25%);
}

section.product-list-main .product-filter-sidebar .category-list li:last-child {
  padding-bottom: 2rem;
}

section.product-list-main
  .product-filter-sidebar
  .category-toggle.active
  .icon {
  transform: translateX(25%) rotate(90deg) !important;
}

section.product-list-main .product-filter-sidebar .icon {
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 5px;
}

section.product-list-main .product-filter-sidebar .sub-category-list {
  /* max-height: 0px; */
  /* height: 0;
   opacity: 0;
   visibility: hidden;
   overflow: hidden; */
  /* transition: all 300ms ease; */
  /* display: none; */
}

section.product-list-main
  .product-filter-sidebar
  .sub-category-list
  li
  a::before {
  opacity: 1;
  transform: translate(0, 0);
}

section.product-list-main
  .product-filter-sidebar
  .sub-category-list
  li
  a::after {
  opacity: 1;
  transform: translate(0, -50%) scaleY(1);
  background-color: var(--color-secondary);
}

section.product-list-main
  .product-filter-sidebar
  .category-list
  li.sub-category-active
  a {
  font-weight: 800;
  color: var(--color-secondary);
}

section.product-list-main
  .product-filter-sidebar
  .category-list
  li.sub-category-active
  a::before {
  opacity: 1;
  transform: translate(0, 0);
}

section.product-list-main
  .product-filter-sidebar
  .category-list
  li.sub-category-active
  a::after {
  opacity: 1;
  transform: translate(0, -50%) scaleY(1);
  background-color: var(--color-secondary);
}

section.product-list-main
  .product-filter-sidebar
  .category-list
  li.sub-category-active
  a
  .icon {
  color: var(--color-secondary);
  transform: rotate(-90deg);
}

section.product-list-main
  .product-filter-sidebar
  .category-list
  li.sub-category-active
  + .sub-category-list {
  /* max-height: 350px; */
  /* opacity: 1;
   visibility: visible; */
}

.product-list-wrapper {
  width: 100%;
}

section.product-list-main .product-list .product-item-wrapper {
  max-height: 100%;
  height: auto;
}

section.product-list-main .product-list .product-item-wrapper .product-item {
  width: 100%;
  height: 100%;
}

section.product-list-main .product-list {
  width: 100%;
  padding: 2.5rem;
  gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

section.product-list-main .product-list .product-item {
  flex: calc((100% / 3) - 2);
}

@media screen and (max-width: 1440px) {
  section.product-list-main .product-list {
    gap: 1.5rem;
    padding: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 1199px) {
  section.product-list-main .product-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
}

@media screen and (max-width: 991px) {
  section.product-list-main .product-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  section.product-list-main .product-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 450px) {
  section.product-list-main .product-list .product-item {
    width: 100%;
  }
}

/* * Product Detail */
.product-detail {
  padding-top: var(--header-height);
  height: calc(100vh);
  background-size: 200%;
  position: relative;
  background-image: linear-gradient(
    -90deg,
    #1423bd 0%,
    #1423bd 0%,
    #1423bd 1%,
    #091057 100%
  );
}

@media screen and (max-width: 767px) {
  .product-detail {
    height: auto;
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: calc(100px + 2.5rem);
  }
}

.product-detail .site-container {
  height: 100%;
}

.product-detail .product-detail-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(100% - 200px);
  /* position: relative; */
}

.product-detail .product-detail-content .swiper-thumbs {
  /* position: absolute; */
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (max-width: 991px) {
  .product-detail .product-detail-content .swiper-thumbs {
    padding-right: 1.5rem;
  }

  .product-detail {
    height: calc(95vh);
  }
}

@media screen and (max-width: 767px) {
  .product-detail .product-detail-content .swiper-thumbs {
    display: none;
  }
}

.product-detail .product-detail-content .swiper-thumbs a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 1.25rem;
  border: 1px solid #3a4079;
  transition: all 300ms ease;
}

.product-detail .product-detail-content .swiper-thumbs a.active {
  border-color: var(--color-secondary);
}

@media screen and (max-width: 991px) {
  .product-detail .product-detail-content .swiper-thumbs a {
    width: 75px;
    height: 75px;
  }
}

.product-detail .product-detail-content .swiper-thumbs a img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .product-detail .product-detail-content {
    flex-direction: column;
    gap: 3rem;
  }
}

.product-detail .product-swiper {
  overflow: hidden;
  flex: 1;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .product-detail .product-swiper {
    min-height: 200px;
  }
}

.product-detail .product-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail .product-swiper .swiper-slide img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-swiper .swiper-slide img {
    height: 450px;
  }
}

@media screen and (max-width: 1199px) {
  .product-detail .product-swiper .swiper-slide img {
    height: 400px;
  }
}

@media screen and (max-width: 991px) {
  .product-detail .product-swiper .swiper-slide img {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .product-detail .product-swiper .swiper-slide img {
    width: 250px;
    height: 100%;
    object-fit: contain;
  }
}

.product-detail .product-detail-tab {
  flex: 1;
  position: relative;
  height: auto;
  max-height: 100%;
  /* transition: all 300ms ease; */
}

.product-detail .product-detail-tab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  min-width: 2px;
  height: 45vh;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 169, 60, 0.3) 30%,
    rgba(0, 169, 60, 0.3) 50%,
    rgba(0, 169, 60, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media screen and (max-width: 767px) {
  .product-detail .product-detail-tab::before {
    display: none;
  }
}

.product-detail .product-detail-tab ::-webkit-scrollbar {
  display: none;
}

.product-detail .product-detail-tab .tab-item {
  display: none;
  height: inherit;
  overflow-y: auto;
  /* transition: all 300ms ease; */
}

@media screen and (max-width: 767px) {
  .product-detail .product-detail-tab .tab-item {
    padding-left: 0 !important;
  }
}

.product-detail .product-detail-tab .tab-item.active {
  display: block;
  visibility: visible;
  position: relative;
}

.product-detail .product-detail-tab [data-tab="description"] {
  padding-left: 10rem;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-tab [data-tab="description"] {
    padding-left: 5rem;
  }
}

.product-detail .product-detail-tab [data-tab="description"] .product-name {
  white-space: pre-line;
  color: #e6e7ee;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 120%;
  max-width: 585px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-tab [data-tab="description"] .product-name {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 1199px) {
  .product-detail .product-detail-tab [data-tab="description"] .product-name {
    font-size: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .product-detail .product-detail-tab [data-tab="description"] .product-name {
    font-size: 2.5rem;
  }
}

.product-detail
  .product-detail-tab
  [data-tab="description"]
  .product-description {
  color: #8e91b2;
  font-size: 1.4rem;
  line-height: normal;
  max-width: 585px;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 1440px) {
  .product-detail
    .product-detail-tab
    [data-tab="description"]
    .product-description {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1199px) {
  .product-detail
    .product-detail-tab
    [data-tab="description"]
    .product-description {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  .product-detail
    .product-detail-tab
    [data-tab="description"]
    .product-description {
    font-size: 1.1rem;
  }
}

.product-detail .product-detail-tab [data-tab="description"] .features {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.5rem;
}

.product-detail .product-detail-tab [data-tab="description"] .features li {
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.product-detail .product-detail-tab [data-tab="description"] .features svg,
.product-detail .product-detail-tab [data-tab="description"] .features img {
  filter: invert(1);
  height: 2rem;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-tab [data-tab="description"] .features svg,
  .product-detail .product-detail-tab [data-tab="description"] .features img {
    height: 1.85rem;
  }
}

@media screen and (max-width: 1199px) {
  .product-detail .product-detail-tab [data-tab="description"] .features svg,
  .product-detail .product-detail-tab [data-tab="description"] .features img {
    height: 1.75rem;
  }
}

@media screen and (max-width: 991px) {
  .product-detail .product-detail-tab [data-tab="description"] .features svg,
  .product-detail .product-detail-tab [data-tab="description"] .features img {
    height: 1.6rem;
  }
}

.product-detail .product-detail-tab [data-tab="description"] .features span {
  color: #e6e7ee;
  font-size: 1.15rem;
  line-height: normal;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-tab [data-tab="description"] .features span {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 991px) {
  .product-detail .product-detail-tab [data-tab="description"] .features span {
    font-size: 1rem;
  }
}

.product-detail .product-detail-tab [data-tab="features"] {
  padding-left: 10rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-tab [data-tab="features"] {
    padding-left: 5rem;
  }
}

.product-detail .product-detail-tab [data-tab="features"] table {
  width: 100%;
}

.product-detail .product-detail-tab [data-tab="features"] table tr {
  position: relative;
}

.product-detail .product-detail-tab [data-tab="features"] table tr::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  min-height: 2px;
  width: 100%;
  opacity: 0.75;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 169, 60, 0.3) 25%,
    rgba(0, 169, 60, 0.3) 50%,
    rgba(0, 169, 60, 0.3) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}

.product-detail .product-detail-tab [data-tab="features"] table td {
  color: var(--color-light);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1rem 0;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-tab [data-tab="features"] table td {
    font-size: 1rem;
  }
}

.product-detail
  .product-detail-tab
  [data-tab="features"]
  table
  td:nth-child(2) {
  text-align: center;
}

.product-detail .product-detail-tab [data-tab="features"] table td:last-child {
  text-align: end;
}

.product-detail .product-detail-tab [data-tab="technical"] {
  position: relative;
  height: 100%;
}

.product-detail .product-detail-tab [data-tab="technical"] .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.product-detail .product-detail-tab [data-tab="technical"] .download-button {
  /* position: absolute;
   top: 0;
   right: 0; */
  margin-bottom: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 2rem;
  border: 2px solid #e6e7ee;
  border-radius: 100px;
  font-weight: 500;
  color: #e6e7ee;
  transition: all 300ms ease;
}

.product-detail .product-detail-nav {
  display: flex;
  align-items: center;
  height: 165px;
  gap: 5rem;
  position: absolute;
  bottom: 0;
  width: calc(100vw - ((100vw - 1820px) / 2));
  max-width: 95%;
  /* max-width: 1820px; */
  /* left: auto; */
  right: 0;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-nav {
    gap: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  .product-detail .product-detail-nav {
    min-width: 100%;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .product-detail .product-detail-nav {
    height: 100px;
  }
}

.product-detail .product-detail-nav .product-detail-swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-nav .product-detail-swiper-navigation {
    gap: 2rem;
  }
}

@media screen and (max-width: 1199px) {
  .product-detail .product-detail-nav .product-detail-swiper-navigation {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .product-detail .product-detail-nav .product-detail-swiper-navigation {
    gap: 1.5rem;
  }
}

.product-detail .product-detail-nav a {
  border-radius: 50%;
}

.product-detail .product-detail-nav a.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.2;
}

.product-detail .product-detail-nav .nav-card {
  margin-left: auto;
  flex: 0.85;
  background: white;
  color: var(--color-primary);
  border-top-left-radius: 4rem;
  height: 100%;
  max-width: calc(1820px - 5%);
}

@media screen and (max-width: 1199px) {
  .product-detail .product-detail-nav .nav-card {
    border-radius: 0;
    width: 100%;
    flex: 1;
  }
}

.product-detail .product-detail-nav .nav-card ul {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7.5rem;
  position: relative !important;
}

.product-detail .product-detail-nav .nav-card ul::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 2px;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 0%,
    rgba(9, 16, 87, 0.3) 25%,
    rgba(9, 16, 87, 0.3) 50%,
    rgba(9, 16, 87, 0.3) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}

.product-detail .product-detail-nav .nav-card ul::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-nav .nav-card ul {
    padding: 0 5rem;
  }
}

@media screen and (max-width: 991px) {
  .product-detail .product-detail-nav .nav-card ul {
    padding: 0 4rem;
  }
}

@media screen and (max-width: 767px) {
  .product-detail .product-detail-nav .nav-card ul {
    padding: 0 2rem;
    overflow-x: auto;
  }
}

.product-detail .product-detail-nav .nav-card ul li:not(:last-child) {
  margin-right: 3.5rem;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-nav .nav-card ul li:not(:last-child) {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .product-detail .product-detail-nav .nav-card ul li:not(:last-child) {
    margin-right: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  /* &:last-child {
   order: -1;
   padding-right: 2rem;
   } */
  .product-detail .product-detail-nav .nav-card ul li:not(:last-child) {
    margin-right: 1.5rem;
  }
}

.product-detail .product-detail-nav .nav-card ul .seperator {
  min-width: 1px;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 169, 60, 0.3) 30%,
    rgba(0, 169, 60, 0.3) 50%,
    rgba(0, 169, 60, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.product-detail .product-detail-nav .nav-card ul a {
  color: #091057;
  font-size: 1.65rem;
  line-height: normal;
  white-space: nowrap;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-nav .nav-card ul a {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  .product-detail .product-detail-nav .nav-card ul a {
    font-size: 1.35rem;
  }
}

@media screen and (max-width: 767px) {
  .product-detail .product-detail-nav .nav-card ul a {
    font-size: 1.2rem;
  }
}

.product-detail .product-detail-nav .nav-card ul a.active {
  font-weight: 900;
}

.product-detail .product-detail-nav .nav-card a.highlight {
  padding: 1.25rem 5rem;
  border-radius: 90px;
  background: var(--color-secondary);
  /* color: #e6f6ec; */
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: normal;
  transition: all 300ms ease;
}

@media screen and (max-width: 1440px) {
  .product-detail .product-detail-nav .nav-card a.highlight {
    font-size: 1.6rem;
    padding: 1.25rem 3.5rem;
  }
}

@media screen and (max-width: 991px) {
  .product-detail .product-detail-nav .nav-card a.highlight {
    font-size: 1.5rem;
    padding: 1rem 3rem;
  }
}

@media screen and (max-width: 767px) {
  .product-detail .product-detail-nav .nav-card a.highlight {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    /* position: sticky;
     left: 0;
     top: 50%;
     transform: translateY(-50%); */
  }
}

/* * Product Detail Recommended Swiper */
.product-detail-recommendeds {
  padding: 7.5rem 0;
}

@media screen and (max-width: 991px) {
  .product-detail-recommendeds {
    padding: 5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .product-detail-recommendeds {
    padding: 2.5rem 0;
  }
}

.product-detail-recommendeds .product-detail-recommendeds-header {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--color-primary);
  color: transparent;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding: 0 0 0.5rem;
  display: inline-block;
}

@media screen and (max-width: 1440px) {
  .product-detail-recommendeds .product-detail-recommendeds-header {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  .product-detail-recommendeds .product-detail-recommendeds-header {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 991px) {
  .product-detail-recommendeds .product-detail-recommendeds-header {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .product-detail-recommendeds .product-detail-recommendeds-header {
    font-size: 2.5rem;
  }
}

.product-detail-recommendeds .product-detail-recommendeds-header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 169, 60, 0.3) 30%,
    rgba(0, 169, 60, 0.3) 50%,
    rgba(0, 169, 60, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.product-detail-recommendeds .product-detail-recommended-swiper {
  margin-top: 2.5rem;
}

.product-detail-recommendeds
  .product-detail-recommended-swiper
  .swiper-pagination {
  position: static;
  margin-top: 4.5rem;
}

.product-detail-recommendeds
  .product-detail-recommended-swiper
  .swiper-pagination
  .swiper-pagination-bullet {
  opacity: 1;
  width: 0.9rem;
  height: 0.9rem;
  transition: all 300ms ease;
  background-color: #d9d9d9;
}

.product-detail-recommendeds
  .product-detail-recommended-swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/* * News List Cuff */
section.news-list-cuff {
  padding-top: var(--header-height);
  height: 90vh;
  position: relative;
}

@media screen and (max-width: 991px) {
  section.news-list-cuff {
    height: max-content;
  }
}

section.news-list-cuff::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 100%;
  min-width: 50%;
  width: 75%;
  max-width: 1380px;
  background-color: var(--color-primary);
  border-bottom-left-radius: 80px;
}

@media screen and (max-width: 991px) {
  section.news-list-cuff::before {
    width: 100%;
    border-radius: 0;
  }
}

section.news-list-cuff .site-container {
  height: 100%;
  position: relative;
}

section.news-list-cuff .cuff-swiper-navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 175px;
  height: 85px;
  padding: 0.5rem 0;
  background-color: var(--color-secondary);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

@media screen and (max-width: 767px) {
  section.news-list-cuff .cuff-swiper-navigation {
    width: 150px;
    height: 75px;
  }
}

section.news-list-cuff .cuff-swiper-navigation a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

section.news-list-cuff .cuff-swiper-navigation .seperator {
  min-width: 1px;
  min-height: 75%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

section.news-list-cuff .cuff-swiper-navigation svg {
  width: 1.75rem;
  height: 1.75rem;
}

section.news-list-cuff .news-list-cuff-flex {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7.5rem;
}

@media screen and (max-width: 991px) {
  section.news-list-cuff .news-list-cuff-flex {
    gap: 2rem;
    padding: 2.5rem 0 7.5rem;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  section.news-list-cuff .news-list-cuff-flex {
    gap: 4rem;
    padding: 2.5rem 0 7.5rem;
    flex-direction: column;
    justify-content: space-between;
  }
}

section.news-list-cuff .news-list-cuff-image-swiper {
  flex: 1;
  overflow: hidden;
  border-radius: 10px 10px 10px 90px;
}

@media screen and (max-width: 991px) {
  section.news-list-cuff .news-list-cuff-image-swiper {
    max-width: 100%;
  }
}

section.news-list-cuff .news-list-cuff-image-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

section.news-list-cuff .news-list-cuff-image-swiper .swiper-slide img {
  min-width: 100%;
  min-height: 100%;
  max-height: 55vh;
  object-fit: cover;
  border-radius: 10px 10px 10px 90px;
}

section.news-list-cuff .news-list-cuff-swiper {
  flex: 1;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  section.news-list-cuff .news-list-cuff-swiper {
    max-width: 100%;
  }
}

section.news-list-cuff .news-list-cuff-swiper .swiper-slide .cuff-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: normal;
  max-width: 650px;
}

@media screen and (max-width: 1440px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .cuff-title {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-list-cuff .news-list-cuff-image-swiper .swiper-slide img {
    max-height: 30vh;
  }

  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .cuff-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .cuff-title {
    font-size: 2.5rem;
  }
}

section.news-list-cuff .news-list-cuff-swiper .swiper-slide .seperator {
  margin: 4.5rem 0;
  min-height: 2px;
  width: 100%;
  max-width: 620px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 169, 60, 0.3) 30%,
    rgba(0, 169, 60, 0.3) 50%,
    rgba(0, 169, 60, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media screen and (max-width: 991px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .seperator {
    margin: 2.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .seperator {
    margin: 2rem 0;
  }
}

section.news-list-cuff .news-list-cuff-swiper .swiper-slide .cuff-slide-items {
  display: flex;
  align-items: center;
}

section.news-list-cuff .news-list-cuff-swiper .swiper-slide .tag {
  border-radius: 100px;
  background: #3a4079;
  display: inline-flex;
  padding: 10px 60px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: #e6e7ee;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 3rem;
  transition: all 350ms ease;
}

@media screen and (max-width: 1440px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .tag {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .tag {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .tag {
    font-size: 1.3rem;
  }
}

section.news-list-cuff .news-list-cuff-swiper .swiper-slide .date {
  color: #b3b5cb;
  font-size: 1.25rem;
  line-height: normal;
}

@media screen and (max-width: 1440px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .date {
    font-size: 1.15rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .date {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .date {
    font-size: 1rem;
  }
}

/* * News List Banner */
section.news-list-banner {
  margin-bottom: 4rem;
}

section.news-list-banner .site-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

section.news-list-banner .show-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 100px;
  padding: 1.5rem 2.5rem;
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  border: 1px solid #8e91b2;
  transition: all 350ms ease;
}

@media screen and (max-width: 1440px) {
  section.news-list-banner .show-more-btn {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-list-banner .show-more-btn {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-list-banner .show-more-btn {
    display: none;
  }
}

section.news-list-banner .banner-text {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #54c57c;
  font-size: 300px;
  font-weight: 900;
  line-height: normal;
  margin-top: -100px;
}

@media screen and (max-width: 1440px) {
  section.news-list-banner .banner-text {
    font-size: 275px;
  }
}

@media screen and (max-width: 991px) {
  section.news-list-banner .banner-text {
    font-size: 250px;
  }
}

@media screen and (max-width: 767px) {
  section.news-list-banner .banner-text {
    display: none;
    font-size: 150px;
    margin-top: -50px;
  }
}

/* * News List Latest */
section.news-list-latest {
  color: var(--color-primary);
  margin-bottom: 10rem;
}

@media screen and (max-width: 1440px) {
  section.news-list-latest {
    margin-bottom: 7.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-list-latest {
    margin-bottom: 5rem;
  }
}

section.news-list-latest .news-list-latest-title {
  color: black;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 1440px) {
  section.news-list-latest .news-list-latest-title {
    font-size: 2.25rem;
  }
}

/* * All News List */
section.all-news-list {
  color: var(--color-primary);
  margin-bottom: 7.5rem;
}

section.all-news-list .all-news-list-title {
  color: black;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 1440px) {
  section.all-news-list .all-news-list-title {
    font-size: 2.25rem;
  }
}

section.all-news-list .all-news-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  /* column-gap: 3.5rem; */
  section.all-news-list .all-news-list-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    margin-bottom: 3rem;
  }
}

section.all-news-list .all-news-list-grid .news-card {
  max-width: 100%;
}

@media screen and (min-width: 1199px) {
  section.all-news-list .all-news-list-grid .news-card:first-child {
    min-width: 500px;
    position: relative;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
  }

  section.all-news-list .all-news-list-grid .news-card:first-child .news-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    z-index: 10;
  }

  section.all-news-list
    .all-news-list-grid
    .news-card:first-child
    .news-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      transparent 40%,
      rgba(var(--rgb-color-primary))
    );
    z-index: 15;
  }

  section.all-news-list
    .all-news-list-grid
    .news-card:first-child
    .news-content {
    pointer-events: none;
    color: var(--color-light);
    position: absolute;
    left: 3rem;
    bottom: 2rem;
    z-index: 20;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  section.all-news-list
    .all-news-list-grid
    .news-card:first-child
    .news-content
    .news-title {
    min-width: 720px;
    order: -1;
    font-size: 3rem;
    font-weight: 900;
    line-height: normal;
    transform-origin: left bottom;
  }

  section.all-news-list
    .all-news-list-grid
    .news-card:first-child
    .news-content
    .tag {
    margin-right: 3rem;
  }

  section.all-news-list
    .all-news-list-grid
    .news-card:first-child
    .news-content
    .time {
    color: #e6e7ee;
  }
}

@media screen and (min-width: 1199px) and (max-width: 1199px) {
  section.all-news-list .all-news-list-grid .news-card:first-child {
    min-width: 400px;
  }
}

section.all-news-list .show-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.all-news-list .show-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 100px;
  padding: 1.5rem 2.5rem;
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  border: 1px solid #8e91b2;
  transition: all 350ms ease;
}

@media screen and (max-width: 1440px) {
  section.all-news-list .show-more-btn {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1199px) {
  section.all-news-list .show-more-btn {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 991px) {
  section.all-news-list .show-more-btn {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  section.all-news-list .show-more-btn {
    font-size: 1.1rem;
  }
}

/* * News Detail Banner */
section.news-detail-banner {
  margin-top: var(--header-height);
}

section.news-detail-banner .site-container {
  max-width: 100%;
  width: 100%;
  /* .news-banner {
   } */
}

/* * News Detail Header */
section.news-detail-header .site-container {
  position: relative;
  z-index: 100;
  background-color: var(--color-light);
  color: var(--color-primary);
  padding: 5rem 12.5rem 2.5rem;
  border-radius: 90px;
  margin-top: -5rem;
}

@media screen and (max-width: 1440px) {
  section.news-detail-header .site-container {
    padding: 4.5rem 10rem 2.5rem;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
}

@media screen and (max-width: 1199px) {
  section.news-detail-header .site-container {
    padding: 4rem 7.5rem 2.5rem;
    border-top-left-radius: 75px;
    border-top-right-radius: 75px;
  }
}

@media screen and (max-width: 991px) {
  section.news-detail-header .site-container {
    margin-top: -4.5rem;
    padding: 3.75rem 5rem 2.25rem;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
  }
}

@media screen and (max-width: 767px) {
  section.news-detail-header .site-container {
    margin-top: -4rem;
    padding: 3rem 3rem 2rem;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
}

@media screen and (max-width: 500px) {
  section.news-detail-header .site-container {
    margin-top: -4rem;
    padding: 3rem 2.5rem 2rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}

section.news-detail-header .site-container .news-title {
  font-size: 49px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 1440px) {
  section.news-detail-header .site-container .news-title {
    font-size: 45px;
  }
}

@media screen and (max-width: 1199px) {
  section.news-detail-header .site-container .news-title {
    font-size: 40px;
    margin-bottom: 3.25rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-detail-header .site-container .news-title {
    font-size: 35px;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-detail-header .site-container .news-title {
    font-size: 30px;
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 500px) {
  section.news-detail-header .site-container .news-title {
    font-size: 26px;
    margin-bottom: 2.25rem;
  }
}

section.news-detail-header .site-container .news-tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}

@media screen and (max-width: 1199px) {
  section.news-detail-header .site-container .news-tags {
    gap: 2.75rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-detail-header .site-container .news-tags {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-detail-header .site-container .news-tags {
    gap: 2.25rem;
  }
}

@media screen and (max-width: 500px) {
  section.news-detail-header .site-container .news-tags {
    gap: 2rem;
  }
}

section.news-detail-header .site-container .news-tags .tag {
  display: inline-flex;
  padding: 0.75rem 3rem;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: #e6e7ee;
  background-color: #5a5f8e;
  font-size: 1.5rem;
  line-height: normal;
  border-radius: 100px;
}

@media screen and (max-width: 1199px) {
  section.news-detail-header .site-container .news-tags .tag {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-detail-header .site-container .news-tags .tag {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-detail-header .site-container .news-tags .tag {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 500px) {
  section.news-detail-header .site-container .news-tags .tag {
    font-size: 1.1rem;
  }
}

section.news-detail-header .site-container .news-tags .time {
  color: #8e91b2;
  font-size: 1.25rem;
  line-height: normal;
}

@media screen and (max-width: 1199px) {
  section.news-detail-header .site-container .news-tags .time {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-detail-header .site-container .news-tags .time {
    font-size: 1.15rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-detail-header .site-container .news-tags .time {
    font-size: 1.1rem;
  }
}

/* * News Detail */
section.news-detail {
  padding: 5rem 12.5rem;
}

@media screen and (max-width: 1440px) {
  section.news-detail {
    padding: 4.5rem 10rem;
  }
}

@media screen and (max-width: 1199px) {
  section.news-detail {
    padding: 4rem 7.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-detail {
    padding: 3rem 5rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-detail {
    padding: 2rem 3rem;
  }
}

@media screen and (max-width: 500px) {
  section.news-detail {
    padding: 1rem 2.5rem;
  }
}

section.news-detail .description-content {
  position: relative;
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 140%;
}

@media screen and (max-width: 1440px) {
  section.news-detail .description-content {
    font-size: 1.65rem;
  }
}

@media screen and (max-width: 1199px) {
  section.news-detail .description-content {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-detail .description-content {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-detail .description-content {
    font-size: 1.35rem;
  }
}

@media screen and (max-width: 500px) {
  section.news-detail .description-content {
    font-size: 1.25rem;
  }
}

section.news-detail .description-content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -2.5rem;
  height: 100%;
  background-color: var(--color-secondary);
  width: 0.75rem;
}

@media screen and (max-width: 767px) {
  section.news-detail .description-content::before {
    width: 0.6rem;
  }
}

section.news-detail .editor-content p {
  color: #3a4079;
  font-size: 1.75rem;
  line-height: 150%;
  margin: 4rem 0;
}

@media screen and (max-width: 1440px) {
  section.news-detail .editor-content p {
    margin: 3.75rem 0;
    font-size: 1.65rem;
  }
}

@media screen and (max-width: 1199px) {
  section.news-detail .editor-content p {
    margin: 3.5rem 0;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.news-detail .editor-content p {
    margin: 3.25rem 0;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-detail .editor-content p {
    margin: 3rem 0;
    font-size: 1.35rem;
  }
}

@media screen and (max-width: 500px) {
  section.news-detail .editor-content p {
    margin: 2.75rem 0;
    font-size: 1.25rem;
  }
}

section.news-detail .editor-content img {
  width: 100%;
  border-radius: 1.25rem;
}

@media screen and (max-width: 991px) {
  section.news-detail .editor-content img {
    border-radius: 1rem;
  }
}

@media screen and (max-width: 767px) {
  section.news-detail .editor-content img {
    border-radius: 0.75rem;
  }
}

/* * Contact Detail */
section.contact-detail {
  padding-top: var(--header-height);
  background-color: var(--color-primary);
  height: 100vh;
  position: relative;
}

section.contact-detail .site-container {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

section.contact-detail .site-container .contact-map {
  position: fixed !important;
  top: var(--header-height);
  height: calc(100% - var(--header-height));
  left: 0;
  width: 100%;
  z-index: 1;
  transition: all 350ms ease;
}

section.contact-detail .site-container .contact-map.sticky {
  top: calc(var(--header-height) - 28px);
  height: calc(100% - (var(--header-height) - 28px));
}

section.contact-detail .site-container .contact-map::before {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: linear-gradient(
    to left,
    rgba(var(--rgb-color-primary), 0.25),
    rgba(var(--rgb-color-primary), 0.25)
  );
}

section.contact-detail .site-container .contact-map iframe {
  width: 100%;
  height: 100%;
}

section.contact-detail .site-container .contact-informations {
  position: absolute;
  padding: 3rem 7.5rem;
  z-index: 100;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 1300px;
  background-color: var(--color-primary);
  border-radius: 90px 0px 0px 0px;
}

@media screen and (max-width: 1440px) {
  section.contact-detail .site-container .contact-informations {
    max-width: 1100px;
    padding: 3rem 6.5rem;
    border-radius: 80px 0px 0px 0px;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-detail .site-container .contact-informations {
    max-width: 1000px;
    padding: 3rem 6rem;
    border-radius: 70px 0px 0px 0px;
  }
}

@media screen and (max-width: 991px) {
  section.contact-detail .site-container .contact-informations {
    padding: 3rem 5rem;
    border-radius: 60px 60px 0px 0px;
  }
}

@media screen and (max-width: 767px) {
  section.contact-detail .site-container .contact-informations {
    padding: 3rem 3rem;
    border-radius: 50px 50px 0px 0px;
  }
}

@media screen and (max-width: 600px) {
  section.contact-detail .site-container .contact-informations {
    padding: 3rem 2.5rem;
    border-radius: 50px 50px 0px 0px;
  }
}

section.contact-detail
  .site-container
  .contact-informations
  .contact-informations-title {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e6f6ec;
  color: transparent;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 3.25rem;
}

@media screen and (max-width: 1440px) {
  section.contact-detail
    .site-container
    .contact-informations
    .contact-informations-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-detail
    .site-container
    .contact-informations
    .contact-informations-title {
    font-size: 3.25rem;
    margin-bottom: 2.75rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-detail
    .site-container
    .contact-informations
    .contact-informations-title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-detail
    .site-container
    .contact-informations
    .contact-informations-title {
    font-size: 2.75rem;
    margin-bottom: 2.25rem;
  }
}

section.contact-detail .site-container .contact-informations .informations {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

@media screen and (max-width: 1440px) {
  section.contact-detail .site-container .contact-informations .informations {
    gap: 2.75rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-detail .site-container .contact-informations .informations {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-detail .site-container .contact-informations .informations {
    gap: 2.25rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-detail .site-container .contact-informations .informations {
    gap: 2rem;
  }
}

@media screen and (max-width: 600px) {
  section.contact-detail .site-container .contact-informations .informations {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
}

section.contact-detail
  .site-container
  .contact-informations
  .informations
  li
  span {
  display: block;
  color: white;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 1440px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    span {
    font-size: 1.65rem;
    margin-bottom: 1.4rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    span {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    span {
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    span {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

section.contact-detail
  .site-container
  .contact-informations
  .informations
  li
  a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: white;
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  transition: all 350ms ease;
}

@media screen and (max-width: 1440px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a {
    font-size: 1.85rem;
    gap: 1.8rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a {
    font-size: 1.75rem;
    gap: 1.6rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a {
    font-size: 1.35rem;
    gap: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a {
    font-size: 1.25rem;
    gap: 1.2rem;
  }
}

@media screen and (max-width: 1440px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a
    svg {
    width: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a
    svg {
    width: 2.75rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a
    svg {
    width: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a
    svg {
    width: 2rem;
  }
}

section.contact-detail
  .site-container
  .contact-informations
  .informations
  li
  a.btn-start-map {
  margin-top: 2rem;
  display: inline-flex;
  padding: 2rem 3.5rem;
  border: 1px solid #e6e7ee;
  border-radius: 1.75rem;
}

@media screen and (max-width: 1440px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a.btn-start-map {
    padding: 1.85rem 3.25rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a.btn-start-map {
    padding: 1.75rem 3rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a.btn-start-map {
    padding: 1.65rem 2.75rem;
    border-radius: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a.btn-start-map {
    padding: 1.5rem 2.5rem;
  }
}

@media screen and (max-width: 600px) {
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a.btn-start-map {
    margin-top: 0;
  }
}

/* * Contact Help Form */
section.contact-help-form .site-container {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  background-color: var(--color-primary);
  margin-bottom: -10rem;
  padding-bottom: 10rem;
}

@media screen and (max-width: 1199px) {
  section.contact-help-form .site-container {
    gap: 3rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container {
    gap: 0;
  }
}

section.contact-help-form .site-container .contact-form {
  flex: 1;
  padding: 5rem 8rem 7.5rem;
  background-color: #060b3e;
  border-radius: 0px 170px 0px 0px;
  height: 100%;
  max-width: 1380px;
}

@media screen and (max-width: 1440px) {
  section.contact-help-form .site-container .contact-form {
    padding: 4rem 7rem 6.5rem;
    border-radius: 0px 160px 0px 0px;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form .site-container .contact-form {
    padding: 4rem 6rem 6rem;
    border-radius: 0px 150px 0px 0px;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container .contact-form {
    padding: 4rem 2rem 5rem;
    border-radius: 0px 140px 0px 0px;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form .site-container .contact-form {
    padding: 3rem 3rem 4rem;
    border-radius: 0px 100px 0px 0px;
  }
}

@media screen and (max-width: 600px) {
  section.contact-help-form .site-container .contact-form {
    padding: 3rem 2.5rem 4rem;
    border-radius: 0px 100px 0px 0px;
  }
}

section.contact-help-form .site-container .contact-form form {
  max-width: 1000px;
  margin: auto;
}

section.contact-help-form .site-container .contact-form .form-title {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e6e7ee;
  color: transparent;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 4.75rem;
}

@media screen and (max-width: 1440px) {
  section.contact-help-form .site-container .contact-form .form-title {
    font-size: 3.5rem;
    margin-bottom: 4.5rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form .site-container .contact-form .form-title {
    font-size: 3.25rem;
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container .contact-form .form-title {
    font-size: 3rem;
    margin-bottom: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form .site-container .contact-form .form-title {
    font-size: 2.75rem;
    margin-bottom: 3rem;
  }
}

section.contact-help-form .site-container .contact-form .form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container .contact-form .form-flex {
    gap: 1rem;
  }
}

@media screen and (max-width: 600px) {
  section.contact-help-form .site-container .contact-form .form-flex {
    gap: 0;
    flex-direction: column;
  }
}

section.contact-help-form .site-container .contact-form .form-field {
  margin-bottom: 2rem;
  flex: 1;
}

@media screen and (max-width: 1440px) {
  section.contact-help-form .site-container .contact-form .form-field {
    margin-bottom: 1.85rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form .site-container .contact-form .form-field {
    margin-bottom: 1.75rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container .contact-form .form-field {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form .site-container .contact-form .form-field {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}

section.contact-help-form
  .site-container
  .contact-form
  .form-field
  input[type="text"],
section.contact-help-form
  .site-container
  .contact-form
  .form-field
  input[type="mail"],
section.contact-help-form .site-container .contact-form .form-field textarea {
  color: white;
  width: 100%;
  padding: 2.5rem 3.25rem;
  border-radius: 20px;
  border: 1px solid var(--Foundation-Primary-primary-400, #3a4079);
  background: var(--Foundation-Primary-primary-600, #080f4f);
  resize: none;
  font-size: 1.4rem;
  line-height: normal;
  transition: all 300ms ease;
}

section.contact-help-form
  .site-container
  .contact-form
  .form-field
  input[type="text"]:focus,
section.contact-help-form
  .site-container
  .contact-form
  .form-field
  input[type="mail"]:focus,
section.contact-help-form
  .site-container
  .contact-form
  .form-field
  textarea:focus {
  border-color: #00782b;
}

@media screen and (max-width: 1440px) {
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="text"],
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="mail"],
  section.contact-help-form .site-container .contact-form .form-field textarea {
    padding: 2.25rem 3rem;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="text"],
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="mail"],
  section.contact-help-form .site-container .contact-form .form-field textarea {
    padding: 2rem 2.75rem;
    font-size: 1.2rem;
    border-radius: 18px;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="text"],
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="mail"],
  section.contact-help-form .site-container .contact-form .form-field textarea {
    padding: 1.85rem 2.5rem;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="text"],
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="mail"],
  section.contact-help-form .site-container .contact-form .form-field textarea {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    border-radius: 16px;
  }
}

section.contact-help-form
  .site-container
  .contact-form
  .form-field
  input[type="text"]::placeholder,
section.contact-help-form
  .site-container
  .contact-form
  .form-field
  input[type="mail"]::placeholder,
section.contact-help-form
  .site-container
  .contact-form
  .form-field
  textarea::placeholder {
  color: #b3b5cb;
}

section.contact-help-form .site-container .contact-form .kvkk-text {
  color: white;
  font-size: 1.4rem;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.4rem;
  margin: 0;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1440px) {
  section.contact-help-form .site-container .contact-form .kvkk-text {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form .site-container .contact-form .kvkk-text {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container .contact-form .kvkk-text {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form .site-container .contact-form .kvkk-text {
    font-size: 1.1rem;
  }
}

section.contact-help-form .site-container .contact-form .kvkk-text input {
  margin: 0;
  min-width: 30px;
  min-height: 30px;
  border: 1.5px solid white;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 1440px) {
  section.contact-help-form .site-container .contact-form .kvkk-text input {
    min-width: 29px;
    min-height: 29px;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form .site-container .contact-form .kvkk-text input {
    min-width: 28px;
    min-height: 28px;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container .contact-form .kvkk-text input {
    min-width: 26px;
    min-height: 26px;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form .site-container .contact-form .kvkk-text input {
    min-width: 24px;
    min-height: 24px;
  }
}

section.contact-help-form
  .site-container
  .contact-form
  .kvkk-text
  input::before {
  content: "";
  background: var(--color-secondary);
  position: absolute;
  inset: 0.25rem;
  border-radius: 50%;
  transform: scale(0);
  transition: all 300ms ease;
}

section.contact-help-form
  .site-container
  .contact-form
  .kvkk-text
  input:checked::before {
  transform: scale(1);
}

section.contact-help-form .site-container .contact-form .kvkk-text label {
  margin-bottom: 0;
  font-size: inherit;
  line-height: normal;
  user-select: none;
  cursor: pointer;
}

section.contact-help-form .site-container .contact-form .captcha-field {
  display: flex;
  align-items: center;
  gap: 1rem;
}

section.contact-help-form .site-container .contact-form .kvkk-text label a {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  section.contact-help-form .site-container .contact-form .captcha-field {
    /* flex-direction: column;
     justify-content: space-between;
     align-items: stretch; */
    flex-wrap: wrap;
  }
}

section.contact-help-form .site-container .contact-form .captcha-field label {
  display: none;
}

section.contact-help-form .site-container .contact-form .captcha-field .col,
section.contact-help-form .site-container .contact-form .captcha-field button {
  padding: 0;
  flex: 1;
  height: 85px;
}

@media screen and (max-width: 1440px) {
  section.contact-help-form .site-container .contact-form .captcha-field .col,
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button {
    height: 80px;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form .site-container .contact-form .captcha-field .col,
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button {
    height: 75px;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container .contact-form .captcha-field .col,
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button {
    height: 70px;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form .site-container .contact-form .captcha-field .col,
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button {
    height: 65px;
    min-width: auto;
  }
}

section.contact-help-form .site-container .contact-form .captcha-field img {
  border: 1px solid #3a4079;
  border-radius: 100px;
  min-height: 100%;
}

section.contact-help-form .site-container .contact-form .captcha-field a {
  display: flex;
  right: 1.5rem;
  background: #fff;
  color: var(--color-primary);
}

section.contact-help-form .site-container .contact-form .captcha-field input {
  text-align: center;
  font-size: 1.6rem;
  line-height: normal;
  min-height: 100%;
  border-radius: 100px;
  box-shadow: unset !important;
  border: 1px solid #3a4079 !important;
  color: #e6f6ec !important;
  background-color: transparent !important;
  text-transform: uppercase;
  transition: all 300ms ease;
}

section.contact-help-form
  .site-container
  .contact-form
  .captcha-field
  input:focus {
  border-color: #00782b !important;
}

@media screen and (max-width: 1440px) {
  section.contact-help-form .site-container .contact-form .captcha-field input {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form .site-container .contact-form .captcha-field input {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container .contact-form .captcha-field input {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form .site-container .contact-form .captcha-field input {
    font-size: 1.2rem;
  }
}

section.contact-help-form
  .site-container
  .contact-form
  .captcha-field
  input::placeholder {
  color: #d5dfd9 !important;
  text-transform: capitalize;
}

section.contact-help-form .site-container .contact-form .captcha-field button {
  cursor: pointer;
  border: unset;
  border-radius: 100px;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  padding: 0 1rem;
  color: var(--color-light);
}

@media screen and (max-width: 1440px) {
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button {
    font-size: 1.5rem;
    gap: 1.85rem;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button {
    font-size: 1.4rem;
    gap: 1.75rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button {
    font-size: 1.3rem;
    gap: 1.65rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button {
    font-size: 1.2rem;
    gap: 1.5rem;
    width: 100%;
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button
    svg {
    width: 2.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button
    svg {
    width: 2rem;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    button
    svg {
    width: 1.75rem;
  }
}

section.contact-help-form .site-container .contact-form-text {
  margin: 5rem 0;
  color: rgba(var(--rgb-color-secondary), 0.2);
}

@media screen and (max-width: 991px) {
  section.contact-help-form .site-container .contact-form-text {
    margin: 0;
    max-width: 120px;
  }
}

@media screen and (max-width: 767px) {
  section.contact-help-form .site-container .contact-form-text {
    display: none;
  }
}

section.contact-help-form .site-container .contact-form-text svg {
  max-height: 100vh;
  width: 100%;
}

/* * Career */
section.career {
  position: relative;
  height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1440px) {
  section.career {
    height: 100vh;
  }
}

@media screen and (max-width: 1199px) {
  section.career {
    height: 100vh;
  }
}

@media screen and (max-width: 991px) {
  section.career {
    height: 100vh;
  }
}

@media screen and (max-width: 767px) {
  section.career {
    height: 100vh;
  }
}

@media screen and (max-width: 500px) {
  section.career {
    height: 100vh;
    overflow: hidden;
  }
}

section.career .career-bg {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

section.career .career-title {
  position: absolute;
  /* top: calc(10rem + var(--header-height)); */
  top: auto;
  bottom: 55vh;
  left: 24vw;
  padding-right: 80px;
  z-index: 2;
  color: var(--color-light);
  font-size: 76px;
  font-weight: 900;
  line-height: 130%;
  width: 100%;
  max-width: 63%;
}

@media screen and (max-width: 1440px) {
  section.career .career-title {
    /* top: calc(8rem + var(--header-height)); */
    font-size: 70px;
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-title {
    /* top: calc(8rem + var(--header-height)); */
    font-size: 60px;
    right: calc(-1 * 70px);
    padding-right: 70px;
    left: 15vw;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-title {
    font-size: 35px;
    right: calc(-1 * 60px);
    padding-right: 60px;
    transform: translateY(-90%);
  }
}

@media screen and (max-width: 767px) {
  section.career .career-title {
    font-size: 40px;
    right: calc(-1 * 50px);
    padding-right: 50px;
    left: 12vw;
  }
}

@media screen and (max-width: 500px) {
  section.career .career-title {
    font-size: 35px;
    bottom: 60vh;
    right: calc(-1 * 40px);
    padding-right: 40px;
    max-width: 100%;
  }
}

section.career .career-card {
  position: absolute;
  width: 100%;
  max-width: 1600px;
  z-index: 5;
  right: 0;
  bottom: -5rem;
  padding-bottom: 5rem;
  background-color: var(--color-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 80px 0px 0px 0px;
}

@media screen and (max-width: 1440px) {
  section.career .career-card {
    border-radius: 80px 0px 0px 0px;
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-card {
    border-radius: 75px 0px 0px 0px;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-card {
    border-radius: 70px 0px 0px 0px;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-card {
    flex-direction: column-reverse;
    border-radius: 65px 0px 0px 0px;
  }
}

@media screen and (max-width: 500px) {
  section.career .career-card {
    border-radius: 60px 0px 0px 0px;
  }
}

section.career .career-card .swiper-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  min-width: 200px;
}

@media screen and (max-width: 1440px) {
  section.career .career-card .swiper-navigation {
    min-width: 180px;
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-card .swiper-navigation {
    min-width: 150px;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-card .swiper-navigation {
    min-width: 140px;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-card .swiper-navigation {
    min-width: 120px;
    gap: 2rem;
    flex-direction: row;
    padding: 1rem 0;
  }
}

@media screen and (max-width: 500px) {
  section.career .career-card .swiper-navigation {
    min-width: 100px;
    gap: 1.5rem;
  }
}

section.career .career-card .swiper-navigation .btn-prev.disabled,
section.career .career-card .swiper-navigation .btn-next.disabled {
  cursor: no-drop;
  opacity: 0.5;
}

@media screen and (max-width: 1440px) {
  section.career .career-card .swiper-navigation .btn-prev svg,
  section.career .career-card .swiper-navigation .btn-next svg {
    width: 65px;
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-card .swiper-navigation .btn-prev svg,
  section.career .career-card .swiper-navigation .btn-next svg {
    width: 60px;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-card .swiper-navigation .btn-prev svg,
  section.career .career-card .swiper-navigation .btn-next svg {
    width: 55px;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-card .swiper-navigation .btn-prev svg,
  section.career .career-card .swiper-navigation .btn-next svg {
    width: 50px;
  }
}

@media screen and (max-width: 500px) {
  section.career .career-card .swiper-navigation .btn-prev svg,
  section.career .career-card .swiper-navigation .btn-next svg {
    width: 45px;
  }
}

section.career .career-card .seperator {
  min-width: 2px;
  height: 400px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(9, 16, 87, 0.3) 30%,
    rgba(9, 16, 87, 0.3) 50%,
    rgba(9, 16, 87, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media screen and (max-width: 1440px) {
  section.career .career-card .seperator {
    height: 380px;
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-card .seperator {
    height: 360px;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-card .seperator {
    height: 340px;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-card .seperator {
    /* height: 320px; */
    height: 2px;
    width: 100%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(9, 16, 87, 0.3) 30%,
      rgba(9, 16, 87, 0.3) 50%,
      rgba(9, 16, 87, 0.3) 70%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

@media screen and (max-width: 500px) {
  section.career .career-card .seperator {
    /* height: 300px; */
  }
}

section.career .career-card .career-content,
section.career .career-card .career-form {
  padding: 2.5rem 5rem;
  width: calc(100% - 200px - 2px);
}

@media screen and (max-width: 1440px) {
  section.career .career-card .career-content,
  section.career .career-card .career-form {
    padding: 2.5rem 4rem;
    width: calc(100% - 180px - 2px);
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-card .career-content,
  section.career .career-card .career-form {
    padding: 2.5rem 3.5rem;
    width: calc(100% - 150px - 2px);
  }
}

@media screen and (max-width: 991px) {
  section.career .career-card .career-content,
  section.career .career-card .career-form {
    padding: 2.5rem 3rem;
    width: calc(100% - 140px - 2px);
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-card .career-content,
  section.career .career-card .career-form {
    padding: 2.5rem 0rem;
    width: calc(100% - 55px - 2px);
  }
}

@media screen and (max-width: 500px) {
  section.career .career-card .career-content,
  section.career .career-card .career-form {
    padding: 2.5rem 0rem;
    width: calc(100% - 55px - 2px);
    margin: 0 auto;
  }
}

section.career .career-card .career-content-title {
  font-size: 2.25rem;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 1440px) {
  section.career .career-card .career-content-title {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-card .career-content-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-card .career-content-title {
    font-size: 1.85rem;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-card .career-content-title {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 500px) {
  section.career .career-card .career-content-title {
    font-size: 1.6rem;
  }
}

section.career .career-card .career-content-title strong {
  font-weight: 900;
}

section.career .career-card .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

section.career .career-card .swiper-slide a {
  width: 100%;
  display: block;
  padding: 1.6rem;
  border-radius: 30px;
  background-color: #e6e7ee;
  color: black;
  transition: all 350ms ease;
}

@media screen and (max-width: 1440px) {
  section.career .career-card .swiper-slide a {
    padding: 1.55rem;
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-card .swiper-slide a {
    padding: 1.5rem;
  }
}

section.career .career-card .swiper-slide a .icon {
  width: 60px;
  margin-bottom: 5rem;
  transition: all 300ms ease;
}

@media screen and (max-width: 1440px) {
  section.career .career-card .swiper-slide a .icon {
    width: 55px;
    margin-bottom: 4.5rem;
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-card .swiper-slide a .icon {
    width: 50px;
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-card .swiper-slide a .icon {
    width: 45px;
    margin-bottom: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-card .swiper-slide a .icon {
    width: 40px;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 500px) {
  section.career .career-card .swiper-slide a .icon {
    width: 38px;
    margin-bottom: 2.5rem;
  }
}

section.career .career-card .swiper-slide a .icon * {
  transition: all 350ms ease;
}

section.career .career-card .swiper-slide a .card-title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 1440px) {
  section.career .career-card .swiper-slide a .card-title {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 1199px) {
  section.career .career-card .swiper-slide a .card-title {
    font-size: 1.65rem;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-card .swiper-slide a .card-title {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-card .swiper-slide a .card-title {
    font-size: 1.5rem;
  }
}

section.career .career-form {
  max-width: 1250px;
  /* margin-left: auto; */
  margin-right: auto;
  max-width: 1460px;
  width: 90% !important;
}

section.career .career-form input[type="file"] {
  display: none;
}

section.career .career-form input[name="eposta"] {
  width: 100%;
  margin-bottom: 1.5rem;
}

section.career .career-form .file-input {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-right: 0.5rem !important;
}

section.career .career-form .file-input .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e6e7ee;
  border-radius: 100px;
  gap: 1.25rem;
  padding: 1.25rem 3rem;
  color: #40456a;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

@media screen and (max-width: 1440px) {
  section.career .career-form .file-input .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-form .file-input .btn {
    padding: 0.65rem 1.75rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-form .file-input .btn span {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-form .file-input .btn svg {
    width: 25px;
    height: 25px;
  }
}

section.career .career-form .file-input,
section.career .career-form input[type="text"] {
  border-radius: 100px;
  height: 85px;
  padding: 2.25rem 2.5rem;
  border: 2px solid #e6e7ee;
  color: #091057;
  font-size: 1.25rem;
  line-height: normal;
  appearance: none;
  box-shadow: unset;
}

@media screen and (max-width: 1440px) {
  section.career .career-form .file-input,
  section.career .career-form input[type="text"] {
    height: 75px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-form .file-input,
  section.career .career-form input[type="text"] {
    height: 55px;
    padding: 2rem 2rem;
    font-size: 1rem;
  }
}

section.career .career-form .file-input::placeholder,
section.career .career-form input[type="text"]::placeholder {
  color: #091057;
}

section.career .career-form .form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

@media screen and (max-width: 991px) {
  section.career .career-form .form-flex {
    flex-wrap: wrap;
    gap: 0 0.5rem;
  }

  section.career .career-form .file-input,
  section.career .career-form input[type="text"] {
    height: 50px;
    margin-bottom: 0.5rem;
  }

  section.career .career-form .form-flex .col input {
    margin: 0;
  }
}

section.career .career-form .form-flex .col {
  flex: 1;
  padding: 0;
}

@media screen and (max-width: 991px) {
  section.career .career-form .form-flex .col {
    min-width: unset;
  }
}

section.career .career-form .form-flex a {
  background: var(--color-primary);
}

section.career .career-form .form-flex .captcha_img {
  border-radius: 100px;
  width: 100%;
  height: 85px;
  max-height: 100%;
  border: 2px solid #e6e7ee;
  max-height: unset !important;
}

@media screen and (max-width: 1440px) {
  section.career .career-form .form-flex .captcha_img {
    height: 75px;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-form .form-flex .captcha_img {
    height: 60px;
  }
}

section.career .career-form .form-flex label {
  display: none;
}

section.career .career-form .full-name {
  flex: 1;
}

@media screen and (max-width: 1199px) {
  section.career .career-form .full-name {
    flex: 1.4;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-form .full-name {
    flex: 1;
    min-width: 100%;
  }
}

section.career .career-form .form-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  section.career .career-form .form-end {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 2rem;
  }
}

section.career .career-form .form-end .kvkk-text {
  color: #576c7c;
  font-size: 1.4rem;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.4rem;
  margin: 0;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1199px) {
  section.career .career-form .form-end .kvkk-text {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 991px) {
  section.career .career-form .form-end .kvkk-text {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-form .form-end .kvkk-text {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 500px) {
  section.career .career-form .form-end .kvkk-text {
    font-size: 1.1rem;
  }
}

section.career .career-form .form-end .kvkk-text input {
  margin: 0;
  min-width: 30px;
  min-height: 30px;
  background-color: #fafafa;
  border: 2px solid #9da1b5;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  section.career .career-form .form-end .kvkk-text input {
    min-width: 25px;
    min-height: 25px;
  }
}

@media screen and (max-width: 767px) {
  section.career .career-form .form-end .kvkk-text input {
    min-width: 20px;
    min-height: 20px;
  }
}

section.career .career-form .form-end .kvkk-text input::before {
  content: "";
  background: var(--color-secondary);
  position: absolute;
  inset: 0.25rem;
  border-radius: 50%;
  transform: scale(0);
  transition: all 300ms ease;
}

section.career .career-form .form-end .kvkk-text input:checked::before {
  transform: scale(1);
}

section.career .career-form .form-end .kvkk-text label {
  margin-bottom: 0;
  font-size: inherit;
  line-height: normal;
  user-select: none;
  cursor: pointer;
}

section.career .career-form .form-end .kvkk-text label a {
  color: #7893a7;
  text-decoration: underline;
}

section.career .career-form .form-end button {
  font-size: 1.25rem;
  border: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 3rem;
  border-radius: 100px;
  color: var(--color-light);
  background-color: var(--color-secondary);
  transition: all 350ms ease-in-out;
}

@media screen and (max-width: 767px) {
  section.career .career-form .form-end button {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

section.career .career-form .form-end button svg {
  width: 1.85rem;
}

/* * Certificates */
section.certificates-header {
  height: 450px;
  margin-top: var(--header-height);
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 1440px) {
  section.certificates-header {
    height: 350px;
  }
}

@media screen and (max-width: 1199px) {
  section.certificates-header {
    height: 300px;
  }
}

@media screen and (max-width: 991px) {
  section.certificates-header {
    height: 280px;
  }
}

@media screen and (max-width: 767px) {
  section.certificates-header {
    height: 200px;
  }
}

@media screen and (max-width: 450px) {
  section.certificates-header {
    height: 170px;
  }
}

section.certificates-header h1 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff4e9;
  color: transparent;
  text-align: center;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  position: relative;
  z-index: 10;
  margin-bottom: 100px;
}

@media screen and (max-width: 1440px) {
  section.certificates-header h1 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 1199px) {
  section.certificates-header h1 {
    font-size: 3.5rem;
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 991px) {
  section.certificates-header h1 {
    font-size: 3rem;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  section.certificates-header h1 {
    font-size: 2.5rem;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 450px) {
  section.certificates-header h1 {
    font-size: 2.25rem;
    margin-bottom: 60px;
  }
}

section.certificates-header .bgg {
  position: absolute;
  top: calc(var(--header-height) * -1);
  left: 0;
  right: 0;
  height: 325%;
  width: 100%;
}

/* * Certificates Title */
section.certificates-title .certificates-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 6rem;
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: normal;
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
  background-color: var(--color-light);
  position: relative;
  z-index: 10;
  margin-top: -110px;
}

@media screen and (max-width: 1440px) {
  section.certificates-title .certificates-title {
    margin-top: -100px;
    font-size: 2.25rem;
    padding: 3.5rem 5rem;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
}

@media screen and (max-width: 1199px) {
  section.certificates-title .certificates-title {
    margin-top: -90px;
    font-size: 2rem;
    padding: 3.25rem 4rem;
    border-top-left-radius: 75px;
    border-top-right-radius: 75px;
  }
}

@media screen and (max-width: 991px) {
  section.certificates-title .certificates-title {
    margin-top: -80px;
    font-size: 1.8rem;
    padding: 3rem 3.5rem;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
  }
}

@media screen and (max-width: 767px) {
  section.certificates-title .certificates-title {
    margin-top: -70px;
    font-size: 1.65rem;
    padding: 3rem 3rem;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
}

@media screen and (max-width: 450px) {
  section.certificates-title .certificates-title {
    margin-top: -60px;
    font-size: 1.5rem;
    padding: 2.5rem 2.75rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}

section.certificates-title .certificates-title h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

section.certificates-title .seperator {
  width: 100%;
  min-height: 2px;
  background: linear-gradient(
    to right,
    white,
    rgba(var(--rgb-color-primary)),
    white
  );
  margin-bottom: 6.5rem;
}

@media screen and (max-width: 1440px) {
  section.certificates-title .seperator {
    margin-bottom: 6rem;
  }
}

@media screen and (max-width: 1199px) {
  section.certificates-title .seperator {
    margin-bottom: 5.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.certificates-title .seperator {
    margin-bottom: 5rem;
  }
}

@media screen and (max-width: 767px) {
  section.certificates-title .seperator {
    margin-bottom: 4.5rem;
  }
}

@media screen and (max-width: 450px) {
  section.certificates-title .seperator {
    margin-bottom: 4rem;
  }
}

/* * Certificate List */
section.certificate-list {
  position: relative;
  z-index: 20;
  margin-bottom: 7.5rem;
}

@media screen and (max-width: 991px) {
  section.certificate-list {
    margin-bottom: 6.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.certificate-list {
    margin-bottom: 5rem;
  }
}

section.certificate-list .site-container {
  overflow-x: auto;
}

section.certificate-list table {
  width: 100%;
  color: var(--color-primary);
  border-collapse: separate;
  border-spacing: 0 1.25rem;
  overflow-x: auto;
}

section.certificate-list th {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: normal;
}

@media screen and (max-width: 1440px) {
  section.certificate-list th {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1199px) {
  section.certificate-list th {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 991px) {
  section.certificate-list th {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  section.certificate-list th {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 450px) {
  section.certificate-list th {
    font-size: 1.15rem;
  }
}

section.certificate-list tbody tr {
  height: 130px;
}

section.certificate-list td {
  text-align: center;
  border-top: 1px solid #b5b5b5;
  border-bottom: 1px solid #b5b5b5;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: normal;
  padding: 0 1.5rem;
}

@media screen and (max-width: 1440px) {
  section.certificate-list td {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1199px) {
  section.certificate-list td {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 991px) {
  section.certificate-list td {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  section.certificate-list td {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 450px) {
  section.certificate-list td {
    font-size: 1.15rem;
  }
}

section.certificate-list td:first-child {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  border-left: 1px solid #b5b5b5;
  padding-left: 2.5rem;
  text-align: left;
}

section.certificate-list td:last-child {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  border-right: 1px solid #b5b5b5;
  padding-right: 2.5rem;
  text-align: right;
}

section.certificate-list a {
  padding: 1rem 3.25rem;
  border-radius: 100px;
  border: 1px solid #8c8c8c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: #091057;
  font-size: 1.45rem;
  line-height: 105%;
  transition: all 300ms ease;
}

@media screen and (max-width: 1440px) {
  section.certificate-list a {
    font-size: 1.4rem;
    padding: 1rem 3.25rem;
  }
}

@media screen and (max-width: 1199px) {
  section.certificate-list a {
    font-size: 1.35rem;
    padding: 1rem 3rem;
  }
}

@media screen and (max-width: 991px) {
  section.certificate-list a {
    font-size: 1.3rem;
    padding: 1rem 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.certificate-list a {
    font-size: 1.2rem;
    padding: 0.75rem 2.25rem;
  }
}

@media screen and (max-width: 450px) {
  section.certificate-list a {
    font-size: 1.15rem;
    padding: 0.5rem 2rem;
  }
}

section.certificate-list a svg {
  width: 2.5rem;
}

@media screen and (max-width: 1440px) {
  section.certificate-list a svg {
    width: 2.4rem;
  }
}

@media screen and (max-width: 1199px) {
  section.certificate-list a svg {
    width: 2.3rem;
  }
}

@media screen and (max-width: 991px) {
  section.certificate-list a svg {
    width: 2.25rem;
  }
}

@media screen and (max-width: 767px) {
  section.certificate-list a svg {
    width: 2.2rem;
  }
}

@media screen and (max-width: 450px) {
  section.certificate-list a svg {
    width: 2.1rem;
  }
}

/* * Catalog */
section.catalog-header {
  height: 450px;
  margin-top: var(--header-height);
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 1440px) {
  section.catalog-header {
    height: 350px;
  }
}

@media screen and (max-width: 1199px) {
  section.catalog-header {
    height: 300px;
  }
}

@media screen and (max-width: 991px) {
  section.catalog-header {
    height: 280px;
  }
}

@media screen and (max-width: 767px) {
  section.catalog-header {
    height: 200px;
  }
}

@media screen and (max-width: 450px) {
  section.catalog-header {
    height: 170px;
  }
}

section.catalog-header h1 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff4e9;
  color: transparent;
  text-align: center;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  position: relative;
  z-index: 10;
  margin-bottom: 100px;
}

@media screen and (max-width: 1440px) {
  section.catalog-header h1 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 1199px) {
  section.catalog-header h1 {
    font-size: 3.5rem;
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 991px) {
  section.catalog-header h1 {
    font-size: 3rem;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  section.catalog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 450px) {
  section.catalog-header h1 {
    font-size: 2.25rem;
    margin-bottom: 60px;
  }
}

section.catalog-header .bgg {
  position: absolute;
  top: calc(var(--header-height) * -1);
  left: 0;
  right: 0;
  height: 325%;
  width: 100%;
}

/* * Catalog Title */
section.catalog-title .catalog-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 6rem;
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: normal;
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
  background-color: var(--color-light);
  position: relative;
  z-index: 10;
  margin-top: -110px;
}

@media screen and (max-width: 1440px) {
  section.catalog-title .catalog-title {
    margin-top: -100px;
    font-size: 2.25rem;
    padding: 3.5rem 5rem;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
}

@media screen and (max-width: 1199px) {
  section.catalog-title .catalog-title {
    margin-top: -90px;
    font-size: 2rem;
    padding: 3.25rem 4rem;
    border-top-left-radius: 75px;
    border-top-right-radius: 75px;
  }
}

@media screen and (max-width: 991px) {
  section.catalog-title .catalog-title {
    margin-top: -80px;
    font-size: 1.8rem;
    padding: 3rem 3.5rem;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
  }
}

@media screen and (max-width: 767px) {
  section.catalog-title .catalog-title {
    margin-top: -70px;
    font-size: 1.65rem;
    padding: 3rem 3rem;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
}

@media screen and (max-width: 450px) {
  section.catalog-title .catalog-title {
    margin-top: -60px;
    font-size: 1.5rem;
    padding: 2.5rem 2.75rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}

section.catalog-title .catalog-title h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

section.catalog-title .seperator {
  width: 100%;
  min-height: 2px;
  background: linear-gradient(
    to right,
    white,
    rgba(var(--rgb-color-primary)),
    white
  );
  /* margin-bottom: 6.5rem;
   @media screen and (max-width: 1440px) {
   margin-bottom: 6rem;
   }
   @media screen and (max-width: 1199px) {
   margin-bottom: 5.5rem;
   }
   @media screen and (max-width: 991px) {
   margin-bottom: 5rem;
   }
   @media screen and (max-width: 767px) {
   margin-bottom: 4.5rem;
   }
   @media screen and (max-width: 450px) {
   margin-bottom: 4rem;
   } */
}

/* * Catalog List */
section.catalog {
  color: var(--color-primary);
}

section.catalog .catalog-list {
  background-color: var(--color-light);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 2.5rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 1440px) {
  section.catalog .catalog-list {
    /* margin-top: -100px; */
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
}

@media screen and (max-width: 1199px) {
  section.catalog .catalog-list {
    /* margin-top: -90px; */
    border-top-left-radius: 75px;
    border-top-right-radius: 75px;
  }
}

@media screen and (max-width: 991px) {
  section.catalog .catalog-list {
    /* margin-top: -80px; */
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
  }
}

@media screen and (max-width: 767px) {
  section.catalog .catalog-list {
    /* margin-top: -70px; */
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
}

@media screen and (max-width: 450px) {
  section.catalog .catalog-list {
    /* margin-top: -60px; */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}

section.catalog .catalog-list li {
  margin: 4rem;
}

@media screen and (max-width: 1440px) {
  section.catalog .catalog-list li {
    margin: 3.75rem;
  }
}

@media screen and (max-width: 1199px) {
  section.catalog .catalog-list li {
    margin: 3.5rem;
  }
}

@media screen and (max-width: 991px) {
  section.catalog .catalog-list li {
    margin: 3rem;
  }
}

@media screen and (max-width: 767px) {
  section.catalog .catalog-list li {
    margin: 2.5rem;
  }
}

@media screen and (max-width: 450px) {
  section.catalog .catalog-list li {
    margin: 0;
  }
}

section.catalog .catalog-list li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 250px;
  height: 335px;
  padding: 80px 2rem 1.5rem;
  transition: all 350ms ease;
}

@media screen and (max-width: 1199px) {
  section.catalog .catalog-list li a {
    width: 240px;
    height: 315px;
  }
}

@media screen and (max-width: 991px) {
  section.catalog .catalog-list li a {
    width: 220px;
    height: 290px;
  }
}

@media screen and (max-width: 767px) {
  section.catalog .catalog-list li a {
    width: 200px;
    height: 265px;
  }

  section.catalog .catalog-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  section.catalog .catalog-list li a {
    width: 100%;
    height: 240px;
  }
}

section.catalog .catalog-list li a::before {
  content: attr(data-file-type);
  position: absolute;
  top: 1.4rem;
  left: 2rem;
  color: black;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  transition: all 350ms ease;
}

@media screen and (max-width: 1199px) {
  section.catalog .catalog-list li a::before {
    font-size: 0.95rem;
  }
}

section.catalog .catalog-list li a .pdf-file-name {
  color: black;
  font-size: 1rem;
  line-height: normal;
  margin-top: auto;
}

section.catalog .catalog-list li a .pdf-file-name-2 {
  color: black;
  font-size: 0.9rem;
  line-height: normal;
  margin-bottom: auto;
}

section.catalog .catalog-list li a .view {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  opacity: 0.5;
  color: black;
  font-size: 0.9rem;
  line-height: normal;
  transition: all 350ms ease;
}

section.catalog .catalog-list li a .file-svg {
  width: 100%;
  height: 100%;
  stroke-width: 0.5px;
  position: absolute;
  inset: 0;
  transition: all 350ms ease;
}

/* * History Header */
section.history-header {
  height: 450px;
  margin-top: var(--header-height);
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 1440px) {
  section.history-header {
    height: 350px;
  }
}

@media screen and (max-width: 1199px) {
  section.history-header {
    height: 300px;
  }
}

@media screen and (max-width: 991px) {
  section.history-header {
    height: 280px;
  }
}

@media screen and (max-width: 767px) {
  section.history-header {
    height: 200px;
  }
}

@media screen and (max-width: 450px) {
  section.history-header {
    height: 170px;
  }
}

section.history-header h1 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff4e9;
  color: transparent;
  text-align: center;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  position: relative;
  z-index: 10;
  margin-bottom: 100px;
}

@media screen and (max-width: 1440px) {
  section.history-header h1 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 1199px) {
  section.history-header h1 {
    font-size: 3.5rem;
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 991px) {
  section.history-header h1 {
    font-size: 3rem;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  section.history-header h1 {
    font-size: 2.5rem;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 450px) {
  section.history-header h1 {
    font-size: 2.25rem;
    margin-bottom: 60px;
  }
}

section.history-header .bgg {
  position: absolute;
  top: calc(var(--header-height) * -1);
  left: 0;
  right: 0;
  height: 325%;
  width: 100%;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  background-color: var(--color-secondary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1;
  transition: 0.4s;
}

.pdf-link i {
  font-size: 16px;
}

.documents {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  width: fit-content;
}

.show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 0;
}

.show-more a {
  border: 1px solid rgb(0 0 0 / 20%);
  padding: 12px 40px;
  border-radius: 12px;
  font-size: 20px;
  background: #0d144a;
  color: #fff;
  border-radius: 20px;
}

.map-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

section.contact-detail
  .site-container
  .contact-informations
  .informations
  li
  a.btn-start-map {
  font-size: 18.5px;
  padding: 24px;
  gap: 12px;
  border-radius: 12px;
}

@media (hover: hover) {
  section.home-hero
    .hero-swiper
    .swiper-slide
    .product-image
    .pins
    .pin
    .border::after:hover {
    background-color: red;
  }

  section.home-hero
    .hero-swiper
    .swiper-slide
    .product-image
    .pins
    .pin:hover
    .border::before {
    transform: translate(50%, -50%) scale(2.2);
    opacity: 1;
  }

  section.home-hero
    .hero-swiper
    .swiper-slide
    .product-image
    .pins
    .pin:hover
    .property-value {
    color: #1423bd;
  }

  section.home-hero
    .hero-swiper
    .swiper-slide
    .product-image
    .pins
    .pin:hover
    .property-value::before {
    transform: translate(0.14rem, 0.14rem);
    opacity: 1;
    opacity: 0.75;
  }

  section.home-hero
    .hero-swiper
    .swiper-slide
    .product-content:hover
    .highlight {
    background-position: left;
  }

  section.home-hero
    .hero-swiper
    .swiper-slide
    .product-content:hover
    .explore-link {
    color: var(--color-secondary);
  }

  section.home-hero
    .hero-swiper
    .swiper-slide
    .product-content:hover
    .explore-link
    svg {
    color: var(--color-secondary);
    transform: translateX(50%);
  }

  section.home-hero .hero-nav-card-swiper .swiper-navigation a:hover {
    color: rgba(var(--rgb-color-primary));
  }

  section.home-tab-view .tab-buttons ul a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  section.home-tab-view .tab-buttons ul a:hover::before,
  section.home-tab-view .tab-buttons ul a:hover::after,
  section.home-tab-view .tab-buttons ul a:hover .active-border {
    opacity: 1;
    transform: scaleX(1);
  }

  section.home-tab-view .tab-view[data-tab="about-us"] .btn-explore:hover {
    color: var(--color-secondary);
  }

  section.home-tab-view .tab-view[data-tab="about-us"] .btn-explore:hover svg {
    transform: translateX(50%);
  }
  section.home-tab-view
    .tab-view[data-tab="catalog"]
    .catalog-list
    a:hover::before {
    color: var(--color-secondary);
  }

  section.home-tab-view
    .tab-view[data-tab="catalog"]
    .catalog-list
    a:hover
    .file-svg {
    color: var(--color-secondary);
  }

  section.home-tab-view
    .tab-view[data-tab="catalog"]
    .catalog-list
    a:hover
    .view {
    opacity: 1;
    color: white;
  }
  section.home-solutions-card .product-content .product-info .view-all:hover {
    background-color: #3a4079;
  }
  section.home-products .categories a:hover {
    color: var(--color-secondary);
  }
  section.home-solutions-card .product-categories-nav .btn-all-products:hover {
    color: var(--color-secondary);
  }
  section.home-solutions-card
    .product-categories-nav
    .btn-all-products:hover::before {
    transform: scaleX(0.85);
  }

  section.help-form .help-form-card .content a:hover::after {
    transform: scaleX(0.5);
  }
  section.help-form .help-form-card .help-form .captcha-field a:hover {
    color: var(--color-light);
  }
  section.help-form .help-form-card .help-form input:hover + label {
    color: #5a5f8e;
  }
  section.help-form .help-form-card .help-form .btn-submit:hover {
    background-color: #2a316d;
  }
  header.product-list-header .order-title .order-dropdown a:hover {
    background-color: #e6e7ee;
  }
  section.product-list-main
    .product-filter-sidebar
    .brand-list
    li
    a:hover::before {
    opacity: 1;
    transform: translate(0, 0);
  }
  section.product-list-main
    .product-filter-sidebar
    .brand-list
    li
    a:hover::after {
    opacity: 1;
    transform: translate(0, -50%) scaleY(1);
    background-color: var(--color-secondary);
  }
  section.product-list-main
    .product-filter-sidebar
    .category-list
    li
    a:hover::before {
    opacity: 1;
    transform: translate(0, 0);
  }
  .product-detail .product-detail-content .swiper-thumbs a:hover {
    border-color: var(--color-secondary);
  }
  section.product-list-main
    .product-filter-sidebar
    .category-list
    li
    a:hover::after {
    opacity: 1;
    transform: translate(0, -50%) scaleY(1);
    background-color: var(--color-secondary);
  }
  section.product-list-main
    .product-filter-sidebar
    .category-list
    li
    a:hover
    .icon {
    color: var(--color-secondary);
    transform: translateX(25%);
  }
  .product-detail
    .product-detail-tab
    [data-tab="technical"]
    .download-button:hover {
    color: var(--color-primary);
    background-color: #e6e7ee;
  }
  .product-detail
    .product-detail-nav
    a:not(.swiper-button-disabledrefer):hover {
    background: #fff;
    color: var(--color-primary);
  }
  .product-detail .product-detail-nav .nav-card ul a.highlight:hover {
    background: #00782b;
  }
  section.news-list-cuff .news-list-cuff-swiper .swiper-slide .tag:hover {
    background-color: #5a5f8e;
  }
  section.news-list-banner .show-more-btn:hover {
    color: var(--color-primary);
    background-color: rgba(var(--rgb-color-secondary));
  }
  section.all-news-list
    .all-news-list-grid
    .news-card:first-child:hover
    .news-title {
    color: white !important;
    transform: scale(1.1);
  }
  section.all-news-list .show-more-btn:hover {
    color: var(--color-light);
    background-color: var(--color-primary);
  }
  section.contact-detail
    .site-container
    .contact-informations
    .informations
    li
    a:hover {
    color: var(--color-secondary);
  }
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="text"]:hover,
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    input[type="mail"]:hover,
  section.contact-help-form
    .site-container
    .contact-form
    .form-field
    textarea:hover {
    border-color: #00782b;
  }
  section.contact-help-form
    .site-container
    .contact-form
    .kvkk-text
    label
    a:hover {
    color: #01a93c;
  }
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    a:hover {
    color: var(--color-light);
  }
  section.contact-help-form
    .site-container
    .contact-form
    .captcha-field
    input:hover {
    border-color: #00782b !important;
  }
  section.career .career-card .swiper-slide a:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
  }
  section.career .career-card .swiper-slide a:hover .icon {
    --rect-color: var(--color-light);
    --brand-color: var(--color-primary);
  }
  section.career .career-form .form-flex a:hover {
    color: var(--color-light);
  }
  section.career .career-form .form-end button:hover {
    background-color: var(--color-primary);
  }
  section.certificate-list a:hover {
    color: var(--color-secondary);
    background-color: #f2fbf5;
  }
  section.catalog .catalog-list li a:hover::before {
    color: var(--color-primary);
  }
  section.catalog .catalog-list li a:hover .file-svg {
    color: var(--color-secondary);
  }
  section.catalog .catalog-list li a:hover .view {
    opacity: 1;
    color: var(--color-primary);
  }
  .pdf-link:hover {
    background: #00782b;
  }
  .show-more a:hover {
    opacity: 0.8;
  }
}

/* * OTHER */
section.site-search .product-item {
  width: 100% !important;
}
.show-all-results {
  margin-bottom: 1rem;
}
section.offer-form-container
  .offer-form
  .step-1
  .product-list
  li
  .product-image
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail .product-detail-nav .nav-card a.highlight.only-mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  .product-item .features img {
    max-height: 24px;
  }
  .product-item .slot-view {
    height: max-content;
    gap: 1.25rem;
  }
  .product-item .slot-view .btn-add-to-card {
    min-height: auto;
    padding: 0.75rem 1.25rem;
    transform: unset;
    opacity: 1;
  }
  section.offer-form-container
    .offer-form
    .step-3
    .offer-form-success
    .icon
    svg {
    width: 100px;
    height: 100px;
  }
  section.offer-form-container .offer-form .step-3 .offer-form-success p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.offer-form-container .offer-form {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow-y: auto;
  }
  section.offer-form-container .offer-form .step-1,
  section.offer-form-container .offer-form .step-2,
  section.offer-form-container .offer-form .step-3 {
    padding: 2.5rem;
  }
  section.offer-form-container .offer-form .step-1 .logo {
    max-width: 50%;
  }
  section.offer-form-container .offer-form .step-1 .offer-form-title {
    font-size: 1.9rem;
  }
  section.offer-form-container .offer-form .step-1 .offer-form-desc {
    font-size: 1.35rem;
    max-width: 300px;
  }
  section.offer-form-container .offer-form .step-1 .start-btn,
  section.offer-form-container .offer-form form .submit-btn {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 1.5rem;
    border-radius: 1.35rem !important;
  }

  section.offer-form-container .offer-form .prev-step-btn,
  section.offer-form-container .offer-form .close-btn {
    width: 3rem !important;
    height: 3rem !important;
    display: grid;
    place-items: center;
  }
  section.offer-form-container .offer-form .step-header .close-btn {
    margin-left: 1rem;
  }
  section.offer-form-container .offer-form .prev-step-btn svg {
    width: 80% !important;
    height: 80% !important;
  }
  section.offer-form-container .offer-form .close-btn svg {
    width: 100% !important;
    height: 100% !important;
  }
  section.offer-form-container .offer-form .step-1 .product-list li .quantity {
    padding: 0.5rem 1rem;
  }
  section.offer-form-container
    .offer-form
    .step-1
    .product-list
    li
    .quantity
    input {
    width: 26px;
    font-size: 1.25rem;
  }
  section.offer-form-container
    .offer-form
    .step-1
    .product-list
    li
    .quantity
    > span
    svg {
    width: 20px;
    height: 20px;
  }
  section.offer-form-container
    .offer-form
    .step-1
    .product-list
    li
    .product-image {
    width: 75px;
    height: 75px;
    margin-right: 1.25rem;
    border-color: #2a316d;
  }
  section.offer-form-container .offer-form .step-1 .offer-form-total {
    font-size: 1.45rem;
  }
  section.offer-form-container .offer-form .step-1 .product-list li > a {
    cursor: pointer;
  }
  section.offer-form-container .offer-form .step-1 .product-list li > a svg {
    width: 24px;
    height: 24px;
  }
  section.offer-form-container .offer-form form input,
  section.offer-form-container .offer-form form textarea {
    padding: 0.9rem 1.25rem;
    border-radius: 10px;
    font-size: 1.15rem;
  }
  section.home-solutions-card
    .site-container
    .solutions
    .product-categories-nav
    .category-list {
    justify-content: flex-start;
  }
  .show-more a {
    font-size: 1.25rem;
  }
  section.help-form .help-form-card .help-form .btn-submit {
    padding: 1rem 1.25rem;
  }
  .product-detail {
    height: auto !important;
  }
  .product-detail .product-detail-nav .nav-card a.highlight.only-desktop {
    display: none;
  }
  .product-detail .product-detail-nav .nav-card a.highlight.only-mobile {
    display: block;
    font-size: 1.15rem;
    margin: 1rem 1rem 0;
    text-align: center;
  }
  .product-detail-recommendeds {
    padding: 7.5rem 0;
  }
  section.offer-form-container
    .offer-form
    .step-3
    .offer-form-success
    .icon
    svg {
    width: 85px;
    height: 85px;
  }
  section.offer-form-container .offer-form .step-3 .offer-form-success p {
    font-size: 1.35rem;
  }
}
