/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Space+Grotesk:wght@300..700&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --t-yellow: #fec715;
  --ty-light: #ffbf69;
  --t-green: #2ec4b6;
  --tg-light: #cbf3f0;
  --t-blue: #023047;
  --tb-dark: #1b263b;
  --tb-light: #1b263b;
  --t-black: #1c1d20;
  --the-grey: #f6f7f9;
  /* --light-white: #1c1d20; */
  --light-green: #f1faf1;
  --light-blue: #bebae8;
  --light-pink: #f9b5cd;
  --text-grey: #444950;
  --light-grey: #ebebeb;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --pri-font: "Inter Tight", sans-serif;
  --sos-font: "Source Sans 3", sans-serif;
  --pop-font: "Poppins", sans-serif;
  --cor-font: "Cormorant Upright", serif;
  --spa-font: "Space Grotesk", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-6: 6rem;
  --fs-5-5: 5.5rem;
  --fs-5: 5rem;
  --fs-4-5: 4.5rem;
  --fs-4: 4rem;
  --fs-3-5: 3.5rem;
  --fs-3: 3rem;
  --fs-2-5: 2.5rem;
  --fs-2: 2rem;
  --fs-1-5: 1.5rem;
  --fs-1: 1rem;
  --fs-0-95: 0.95rem;
  --fs-0-85: 0.85rem;
  --fs-0-75: 0.75rem;
  --fs-0-65: 0.65rem;
  --fs-0-5: 0.5rem;
  --fs-0-25: 0.275rem;
  --fs-0-2: 0.2rem;
  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*===== Margenes Bottom =====*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-3-5: 3rem;
  --mb-4: 4rem;
  --mb-4-5: 4.5rem;
  --mb-5: 5rem;
  --mb-5-5: 5.5rem;
  --mb-6: 6rem;
  --mb-6-5: 6.5rem;
  --mb-7: 7rem;
  --mb-7-5: 7.5rem;
  --mb-8: 8rem;
}

/* --------------- ========== LP-MAIN ========== ---------------*/
.lp-main {
  width: 100%;
  overflow: hidden;
}

/*========== HERO SECTION ==========*/
.hero {
  width: 100%;
  height: 100dvh;
  background-color: var(--white);
}

.h-container {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.h-media {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
  /* display: none; */
}

.hm-vid {
  width: 100%;
  height: 100%;
  background-color: thistle;
}

.hm-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 5%;
}

.h-content {
  position: relative;
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
  background-color: var(--white);
}

.hco-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 3;
  display: none;
}

.hc-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hcp-wrapper {
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  animation: scroll-up 150s linear infinite;
}

.hcp-wrapper img {
  width: 100%;
  object-fit: cover;
  border: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.hc {
  position: relative;
  width: 100%;
  height: 100%;
  padding: var(--mb-3);
  row-gap: var(--mb-2-5);
  z-index: 5;
  background-color: rgba(250, 250, 250, 0.98);
  /* border: 2px lime solid; */
}

.hc-img {
  position: absolute;
  top: var(--mb-3);
  width: 140px;
  overflow: hidden;
}

.hc-img img {
  width: 100%;
  object-fit: cover;
}

.hc h1 {
  width: 90%;
  font-size: var(--fs-5-5);
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  letter-spacing: -0.05em;
  line-height: 1;
  font-family: var(--spa-font);
  z-index: 5;
  /* text-transform: uppercase; */
}

.hc h1 strong {
  font-family: var(--cor-font);
  font-size: 7rem;
  color: var(--t-yellow);
  font-weight: 500;
  font-style: italic;
  line-height: 0.3 !important;
}

.hc p {
  width: 70%;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  color: var(--t-black);
  font-family: var(--spa-font);
  line-height: 1.4;
  opacity: 0.9;
}

.hc button {
  margin-top: var(--mb-0-5);
}

/* --------------- ========== AB-MAIN ========== ---------------*/
.ab-main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* .ab-main > section {
  position: sticky;
  top: 0;
} */

/*========== AERO SECTION ==========*/
.aero {
  width: 100%;
}

.ae-container {
  position: relative;
  width: 100%;
  padding: var(--mb-4) var(--mb-2);
  padding-top: var(--mb-8);
  row-gap: 10rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.ae-title {
  width: 80%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
  z-index: 2;
}

.ae-title h1 {
  width: 100%;
  font-size: var(--fs-3-5);
  font-weight: 400;
  text-align: left;
  color: var(--t-black);
  letter-spacing: -0.05em;
  line-height: 1.2;
  font-family: var(--spa-font);
}

.strong-curve {
  font-family: var(--cor-font);
  font-size: 4.8rem;
  color: var(--t-yellow);
  font-weight: 400;
  font-style: italic;
  margin-right: 0.2rem;
}

.cc-title .strong-curve {
  font-size: var(--fs-4);
  font-weight: 600;
}

.ae-title p {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--t-black);
  text-decoration-style: dashed;
  cursor: pointer;
  margin-left: var(--mb-0-5);
}

.ae-title p:hover {
  text-decoration-color: gold;
  text-decoration-style: solid;
}

.aet-btn {
  justify-content: flex-start;
}

.ae-title button {
  font-size: 1.1rem;
  column-gap: var(--mb-0-75);
}

.ae-title button span {
  width: 15px;
  height: 15px;
}

.ae-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  justify-content: flex-start;
  z-index: 2;
}

.ae-svg {
  position: absolute;
  bottom: 20rem;
  right: -14rem;
  width: 85%;
  object-fit: contain;
  z-index: 1;
}

/* Main media container with horizontal scrolling */
.ae-media {
  display: flex;
  justify-content: flex-start;
  column-gap: var(--mb-2);
  animation: aem-left 20s linear infinite;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

/* Animation for scrolling the container */
@keyframes aem-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.aem,
.aem-text {
  flex: 0 0 370px;
  height: 500px;
  background-color: #d4d4d4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

/* Ensure that the animation is paused during hover */
.ae-wrapper:hover .ae-media {
  animation-play-state: paused;
  cursor: grab;
}

/* Hide scrollbar */
.ae-media::-webkit-scrollbar {
  display: none;
}

.ae-media {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.aem-temp {
  flex: 0 0 100px;
  height: 500px;
}

.aem-text {
  position: relative;
  background-color: var(--white);
  background-image: url(/assets/img/brand/pat-out-blk.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* border: 1px #e5e5e5 solid; */
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  padding: var(--mb-2);
  justify-content: space-between;
  align-items: flex-start;
}

.aem-text::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 250, 250, 0.95);
  z-index: 2;
}

.aem-text h5 {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-5);
  z-index: 3;
}

.aem-text h5 span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--t-yellow);
  animation: fade 0.3s ease-in-out;
  z-index: 3;
}

.aem-text p {
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1.4;
  font-family: var(--spa-font);
  z-index: 3;
}

.aem img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aem:nth-child(2) img {
  object-position: 20% 50%;
}

.aem:nth-child(6) img {
  object-position: 60% 50%;
}

/* .aem:hover,
.aem-text:hover {
  transform: translateY(-15px);
} */

/*========== STATS SECTION ==========*/
.stats {
  position: relative;
  width: 100%;
  padding: var(--mb-6) var(--mb-8);
  overflow: hidden;
  /* border: 2px teal solid; */
  background-color: #fccb06;
}

.ss-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.ss-svg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
}

.ss-container {
  position: relative;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  /* padding: var(--mb-6) var(--mb-4); */
  row-gap: var(--mb-4);
  z-index: 3;
}

.ss-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  display: none;
}

.ss-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.01;
}

.ss-title {
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 2;
  display: none;
}

.ss-title p {
  font-size: var(--fs-3);
  font-weight: 400;
  text-align: left;
  color: var(--t-black);
  text-transform: uppercase;
  font-family: var(--spa-font);
  letter-spacing: -0.05em;
  z-index: 4;
}

.ss-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  row-gap: var(--mb-4);
  flex-wrap: wrap;
  z-index: 2;
  /* border: 1px tomato solid; */
}

.ssc {
  flex: 0 0 47%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--mb-2);
  border: 2px var(--black) solid;
  background-color: var(--black);
  row-gap: var(--mb-1);
}

.ssc-no {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  column-gap: var(--mb-0-5);
}

.ssc-no h4 {
  position: relative;
  font-size: var(--fs-5);
  font-weight: 500;
  text-align: left;
  color: gold;
  font-family: var(--spa-font);
  line-height: 1;
}

.ssc-no span {
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: left;
  font-family: var(--spa-font);
  color: gold;
  margin-bottom: var(--mb-0-25);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.ssc h4 span {
  position: absolute;
}

.ssc p {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  text-transform: uppercase;
  margin-left: var(--mb-0-5);
  font-family: var(--spa-font);
  /* font-family: var(--spa-font); */
}

.ssc:hover {
  background-color: var(--white);
  border: 2px var(--white) solid;
}

.ssc:hover p {
  color: var(--t-black);
  font-weight: 500;
}

/*========== SERVICES SECTION ==========*/
.services {
  width: 100%;
  background-color: var(--black);
}

.se-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  /* background-color: rgba(0, 0, 0, 0.95); */
  padding: var(--mb-8) var(--mb-4);
  padding-bottom: 10rem;
  row-gap: var(--mb-8);
}

.se-title {
  width: 90%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-3);
  padding: var(--mb-4) 0;
  border-top: 2px var(--soft-white) solid;
  border-bottom: 2px var(--soft-white) solid;
}

.se-title p {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-grey);
  text-transform: uppercase;
  font-family: var(--spa-font);
  z-index: 4;
  /* opacity: 0.8; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-75);
}

.se-title p span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: gold;
  animation: fade 0.3s ease-in-out;
}

.se-title h3 {
  width: 100%;
  font-size: var(--fs-2-5);
  font-weight: 400;
  text-align: center;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1.3;
  font-family: var(--spa-font);
}

.se-title .strong-curve {
  font-size: var(--fs-3);
}

.se-cards {
  position: relative;
  width: 100%;
  align-items: flex-start;
  flex-wrap: wrap;
  /* border: 1px lime solid; */
}

.sec-svg {
  position: absolute;
  width: 100%;
  opacity: 0.05;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.sec {
  flex: 0 0 50%;
  height: 365px;
  padding: var(--mb-5);
  row-gap: var(--mb-2);
  justify-content: flex-start;
  align-items: center;
  opacity: 1;
  z-index: 3;
}

.sec:first-child {
  border-right: 2px white solid;
}

.sec:nth-child(3) {
  border-top: 2px white solid;
  border-right: 2px white solid;
}

.sec:nth-child(4) {
  border-top: 2px white solid;
}

.sec:nth-child(5) {
  border-top: 2px white solid;
  border-right: 2px white solid;
}

.sec:nth-child(6) {
  border-top: 2px white solid;
}

.sec h4 {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  color: gold;
  text-transform: uppercase;
  font-family: var(--spa-font);
  line-height: 1;
}

.sec-ul {
  width: 100%;
  column-gap: var(--mb-0-5);
  flex-wrap: wrap;
  color: white;
}

.secl {
  flex: 0 0 auto;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-family: var(--spa-font);
  text-decoration: underline;
  text-decoration-color: white;
  text-decoration-style: solid;
  /* cursor: pointer; */
}

.secl:hover {
  text-decoration-color: gold;
  color: gold;
}

.sec-emblem {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--white);
  /* border: 1px tomato solid; */
  padding: var(--mb-2);
  z-index: 4;
  display: none;
}

.sec-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  border: 3px white solid;
}

/*========== TEAM SECTION ==========*/
.team {
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-8) 0;
  padding-bottom: var(--mb-4);
}

.te-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-8);
}

.te-media {
  position: relative;
  width: 90%;
  height: 700px;
  overflow: hidden;
  padding-bottom: var(--mb-4);
  /* border-top: 1px #262626 solid;
  border-bottom: 1px #262626 solid; */
}

.te-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
  z-index: 2;
  border: none;
  outline: none;
  /* border: 2px tomato solid; */
}

.tem {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 4;
  align-items: flex-end;
  padding: var(--mb-3);
}

.tem-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  padding: var(--mb-1-5);
  border: 6px var(--white) solid;
  border-radius: 50%;
  z-index: 4;
}

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

.tem .fr-menu {
  padding-top: var(--mb-2);
  border-top: 1px white solid;
  border-bottom: none;
  padding-bottom: 0;
}

.tem .fr-menu a {
  opacity: 0.85;
}

.te-title {
  width: 100%;
  align-items: flex-start;
}

.te-title h4 {
  width: 70%;
  font-size: var(--fs-3);
  font-weight: 400;
  text-align: center;
  color: var(--t-black);
  letter-spacing: -0.05em;
  line-height: 1.2;
  font-family: var(--spa-font);
}

.te-title .strong-curve {
  font-size: 3.5rem !important;
}

/* .te-plan {
  width: 80%;
  margin-bottom: var(--mb-3);
  padding: var(--mb-4) 0;
  border-top: 2px var(--t-black) solid;
  border-bottom: 2px var(--t-black) solid;
}

.te-plan img {
  width: 100%;
  height: 450px;
  object-fit: cover;
} */

.te-cards {
  position: relative;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  /* padding: 0 0.25rem; */
  padding-bottom: var(--mb-8);
  padding: 0 var(--mb-1);
}

.tec-svg {
  position: absolute;
  width: 100%;
  opacity: 0.15;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.tec-col {
  flex: 0 0 22.5%;
  row-gap: var(--mb-2-5);
  z-index: 2;
  /* border: 1px teal solid; */
}

.tec-col:nth-child(even) {
  margin-top: 10rem;
}

.tec {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-75);
}

.tec img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  background-color: #fafafa;
  border-radius: 15px;
}

.tec p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  /* row-gap: var(--mb-0-25); */
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  font-family: var(--spa-font);
  text-transform: uppercase;
  margin-left: var(--mb-0-5);
  line-height: 1.2;
}

.tec p span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-grey);
  text-transform: capitalize;
  font-family: var(--pri-font);
}

.tec-links {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-0-5);
  margin-left: var(--mb-0-5);
}

.tecl {
  flex: 0 0 auto;
  overflow: hidden;
  transition: unset;
}

.tecl i {
  font-size: 1rem;
  color: var(--t-black);
  border: 1px var(--t-black) solid;
  padding: var(--mb-0-25);
  border-radius: 4px;
  transition: unset;
}

.tecl i:hover {
  background-color: gold;
  color: var(--t-black);
}

/*========== TESTIMONIALS (REVIEWS) SECTION ==========*/
.review {
  position: relative;
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-8) var(--mb-4);
  overflow: hidden;
  /* border: 3px tomato solid; */
}

.re-svg {
  position: absolute;
  bottom: -4rem;
  width: 90%;
  object-fit: contain;
  z-index: 2;
  opacity: 0.01;
  overflow: hidden;
  /* border: 1px tomato solid; */
  /* animation: scroll-up 30s linear infinite; */
  border: none;
  outline: none;
}

.re-container {
  width: 100%;
  /* border: 1px hotpink solid; */
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-3-5);
  z-index: 3;
}

.re-title {
  flex: 0 0 45%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-3);
  display: none;
}

.re-title h3 {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  letter-spacing: -0.05em;
  line-height: 1.3;
  /* text-transform: uppercase; */
}

.re-title h3 strong {
  line-height: 0.5;
  margin: 0;
  padding: 0;
  font-family: var(--cor-font);
  font-size: 3.3rem;
  font-weight: 500;
}

.re-title p {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-black);
  font-family: var(--spa-font);
  display: none;
}

.re-wrapper {
  width: 90%;
  height: 420px;
}

.re-cards {
  width: 100%;
  position: relative;
}

.rec {
  position: absolute;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-2);
  opacity: 0; /* Initially hide all cards */
  transition: opacity 1s ease-in-out; /* Fade effect */
}

/* Active rec (visible) */
.rec.active {
  opacity: 1;
}

.rec i {
  /* position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0); */
  font-size: var(--fs-3);
  color: gold;
}

.rec h5 {
  width: 90%;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--t-black);
  line-height: 1.2;
  /* opacity: 0.8; */
}

.rec p {
  font-size: var(--fs-1);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  font-family: var(--pop-font);
  padding: var(--mb-0-5) var(--mb-1);
  border: 2px var(--t-black) solid;
  border-radius: 20px;
  margin-top: var(--mb-0-5);
}

/*========== CTA SECTION ==========*/
.cta {
  width: 100%;
  background-color: gold;
}

.cta-container {
  width: 100%;
  padding: var(--mb-8) var(--mb-4);
  justify-content: flex-start;
  row-gap: var(--mb-3);
}

.cta-container p {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  /* font-family: var(--cor-font); */
  /* font-style: italic; */
}

.cta-link {
  column-gap: var(--mb-3);
  border-bottom: 5px var(--t-black) solid;
  cursor: pointer;
}

.cta-link h3 {
  text-transform: uppercase;
  font-size: 6rem;
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  line-height: 1;
}

.cta-link i {
  font-size: var(--fs-3-5);
  color: var(--t-black);
}

.cta-link:hover {
  border-bottom: 10px var(--t-black) solid;
}

/* --------------- ========== WK-MAIN ========== ---------------*/
.wk-main {
  width: 100%;
  overflow: hidden;
  /* border: 3px lime solid; */
}

/*========== WERO SECTION ==========*/
.wero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background-color: var(--white);
  z-index: 3;
}

.we-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  /* border: 2px tomato solid; */
  overflow: hidden;
  z-index: 2;
}

.wem {
  width: 100%;
  animation: scroll-up 300s linear infinite; /* Continuous animation */
  justify-content: flex-start;
}

.wem img {
  width: 100%;
  object-fit: cover;
  /* filter: invert(99%) sepia(9%) saturate(43%) hue-rotate(246deg)
    brightness(117%) contrast(100%); */
  border: none;
  outline: none;
  opacity: 0.08;
}

.we-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
  z-index: 3;
}

.we-title {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 var(--mb-2);
  z-index: 4;
}

.wet {
  width: 100%;
  font-size: 15rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-family: var(--spa-font);
  text-align: center;
  text-transform: uppercase;
  column-gap: var(--mb-1);
}

/* .wet-second {
  font-style: italic;
} */

.wet.active {
  justify-content: center;
  padding: 0;
}

/*========== WORK SECTION ==========*/
.work {
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: auto;
  align-items: flex-start;
  /* display: none; */
}

.work-cards {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-6);
  padding: 0 var(--mb-6);
  padding-top: 85vh;
  padding-bottom: var(--mb-5);
  z-index: 4;
}

.wc {
  position: relative;
  width: 100%;
  height: 650px;
  background-color: #a3a3a3;
  overflow: hidden;
  cursor: pointer;
}

.wc-vid {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--black);
}

.wc-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
  border: none;
  /* display: none; */
}

.wc-data {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: space-between;
  padding: var(--mb-2);
  padding-top: var(--mb-3);
}

.wcd-logos {
  width: 100%;
  justify-content: center;
  /* align-items: flex-start; */
}

.wcd-logos a {
  flex: 0 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
}

.wcd-logos a img {
  width: 80px;
}

.wcd-logos a:first-child img {
  display: none;
}

/* .wc:nth-child(5) .wcd-logos a:nth-child(2) img {
  width: 100px;
} */

.wc:nth-child(3) .wcd-logos a:nth-child(2) img {
  width: 120px;
  background-color: var(--white);
  padding: var(--mb-0-5) var(--mb-0-5);
}

.wc:nth-child(4) .wcd-logos a:nth-child(2) img {
  width: 100px;
  background-color: var(--white);
  padding: var(--mb-0-25) var(--mb-0-5);
}

/* .wcd-action {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px var(--white) solid;
}

.wcd-action p {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  cursor: pointer;
} */

.wcd {
  width: 100%;
  justify-content: space-between;
  padding-top: var(--mb-1-5);
  border-top: 2px var(--white) solid;
  transition: unset;
}

.wcd h5 {
  flex: 0 0 auto;
  padding: var(--mb-0-5) var(--mb-1);
  border: 3px var(--white) solid;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.wcd P {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--mb-0-5);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.wcd p span {
  font-size: 1.3rem;
  transform: translateY(-1px);
  transition: unset;
}

.wcd p:hover {
  color: var(--t-yellow);
  transform: translateX(3px);
}

/* --------------- ========== CASE-STUDY MEDIA ========== ---------------*/
.cs-page {
  position: relative;
}

.ce-vid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  z-index: 1;
}

.cev-wrapper,
.ce-vid video {
  width: 100%;
  height: 100%;
}

.cev-wrapper {
  position: relative;
}

.ce-vid video {
  object-fit: cover;
}

.cev {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: flex-end;
  padding: var(--mb-2) var(--mb-4);
  z-index: 3;
}

.cev-data {
  width: 100%;
  padding-top: var(--mb-2);
  border-top: 2px var(--white) solid;
  justify-content: center;
}

.cev-data a {
  flex: 0 0 auto;
  overflow: hidden;
  display: none;
}

.cev-ul {
  flex: 0 0 100%;
  justify-content: space-between;
  column-gap: var(--mb-1);
}

.cev-li {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--spa-font);
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-decoration-style: solid;
  cursor: pointer;
}

.irembo .cev-li,
.viv .cev-li {
  font-size: 0.85rem;
}

/* --------------- ========== CS-MAIN ========== ---------------*/
.cs-main {
  width: 100%;
  overflow: hidden;
  z-index: 6;
}

.cs-main > section {
  position: relative;
  z-index: 5;
}

/*========== CERO SECTION ==========*/
.cero {
  width: 100%;
  height: 60dvh;
  background-color: var(--white);
  align-items: flex-start;
  overflow: hidden;
}

.ce-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ce-title {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  padding: 0 var(--mb-8);
  /* row-gap: var(--mb-4);
  padding-bottom: var(--mb-6); */
  justify-content: flex-end;
  overflow: hidden;
  z-index: 4;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.ce-title p {
  width: 60%;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: gold;
  font-family: var(--spa-font);
  line-height: 1.4;
  z-index: 3;
  display: none;
}

.cet-img {
  width: 200px;
  height: 50%;
  object-fit: contain;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.irembo .cet-img {
  width: 100px;
  border-radius: 15px;
}

.mak .cet-img {
  width: 100px;
}

.dala .cet-img {
  width: 130px;
}

.co-dev .cet-img {
  width: 150px;
}

.unicef .cet-img {
  width: 90px;
}

.viv .cet-img {
  width: 150px;
}

.ce-title p strong {
  font-size: 2.4rem;
  font-weight: 500;
}

.ce-title h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  font-size: var(--fs-4);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  text-transform: uppercase;
  line-height: 1.2;
  z-index: 3;
}

.mak .ce-title h1 {
  padding-bottom: var(--mb-0-25);
}

.cet {
  position: absolute;
  bottom: -45%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 2;
}

/* When fading out the ce-title */
.ce-title.fade-out {
  transform: translateY(-100px); /* Move up */
  opacity: 0; /* Fade out */
}

/* When fading in the ce-title */
.ce-title.fade-in {
  transform: translateY(0); /* Reset position */
  opacity: 1; /* Fully visible */
}

/*========== C-TEMP SECTION ==========*/
.cemp {
  width: 100%;
  height: 120dvh;
}

/*========== C-INFO SECTION ==========*/
.ci {
  width: 100%;
  background-color: var(--white);
  overflow: hidden;
  /* border: 1px tomato solid; */
}

.ci-container {
  position: relative;
  width: 100%;
  padding: var(--mb-6) var(--mb-8);
  justify-content: flex-start;
  row-gap: var(--mb-4);
}

.ci-container p {
  width: 90%;
  font-size: 1.9rem;
  font-weight: 400;
  text-align: center;
  color: var(--t-black);
  letter-spacing: -0.05em;
  line-height: 1.4;
  font-family: var(--spa-font);
  z-index: 7;
}

.ci-container .strong-curve {
  font-size: 2.3rem;
  margin-right: 0.25rem;
  font-weight: 500;
}

.dala .ci-container .strong-curve {
  margin: 0;
}

.ci-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 100%;
  object-fit: cover;
  opacity: 0.015;
  z-index: 6;
  /* rotate: 180deg; */
}

/*========== CATISTICS SECTION ==========*/
.ca {
  position: relative;
  width: 100%;
  background-color: var(--white);
  z-index: 5;
  display: none;
}

.ca-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.01;
  z-index: 6;
}

.ca-container {
  width: 100%;
  /* backdrop-filter: blur(3px); */
  z-index: 7;
  padding: var(--mb-8);
}

.ca-stats {
  width: 100%;
  flex-wrap: wrap;
}

.ca-stats div {
  flex: 0 0 33.3%;
  height: 250px;
}

.cas,
.cast {
  padding: var(--mb-3);
}

.ca-stats div:nth-child(2),
.ca-stats div:nth-child(5) {
  border-right: 1px var(--t-black) solid;
  border-left: 1px var(--t-black) solid;
}
.ca-stats div:nth-child(1),
.ca-stats div:nth-child(2),
.ca-stats div:nth-child(3) {
  border-bottom: 1px var(--t-black) solid;
}

.cast h3 {
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  line-height: 1.2;
  text-transform: uppercase;
}

.cas {
  row-gap: var(--mb-2);
  justify-content: flex-start;
  align-items: flex-start;
}

.cas h4 {
  font-size: var(--fs-3-5);
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  font-family: var(--spa-font);
  line-height: 1;
}

.cas p {
  width: 90%;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  text-transform: uppercase;
  margin-left: 0.25rem;
  /* font-family: var(--spa-font); */
}

.cas:hover {
  background-color: var(--t-black);
}

.cas:hover h4 {
  color: var(--white);
}

.cas:hover p {
  color: var(--light-grey);
}

.cas-btn {
  position: relative;
  overflow: hidden;
  row-gap: var(--mb-1-5);
  background-color: gold;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--mb-2-5);
  cursor: pointer;
}

.cas-btn h2 {
  width: 100%;
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  line-height: 1.3;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-color: var(--t-black);
}

.cas-btn span {
  width: 30px;
  height: 30px;
  background-color: var(--t-black);
  border-radius: 50%;
}

.cas-btn img {
  position: absolute;
  top: 0;
  right: -90%;
  object-fit: cover;
  opacity: 0.8;
}

.cas-btn:hover span {
  width: 25%;
  height: 30px;
  border-radius: 30px;
}

.cas-btn:hover img {
  right: -75%;
}

/* --------------- ========== CC-MAIN ========== ---------------*/
.cc-main {
  width: 100%;
  overflow: hidden;
}

/*========== CON SECTION ==========*/
.con {
  position: relative;
  width: 100%;
  height: 100dvh;
  background-color: var(--white);
}

.con-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.01;
  z-index: 2;
  display: none;
}

.con-con {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 3;
}

.cc-data {
  flex: 0 0 45%;
  justify-content: center;
  align-items: flex-start;
  row-gap: var(--mb-3);
  padding: var(--mb-4) 0;
  padding-left: var(--mb-4);
  background: transparent;
  /* border: 1px lime solid; */
}

.cc-title {
  width: 90%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
  padding-bottom: var(--mb-3);
  border-bottom: 1px #262626 solid;
}

.cc-title h3 {
  width: 100%;
  font-size: var(--fs-4);
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  letter-spacing: -0.05em;
  line-height: 1.1;
  font-family: var(--spa-font);
  /* text-transform: uppercase; */
}

.cc-title .strong-curve {
  margin-left: -0.2rem;
  font-size: 5rem;
  font-weight: 400;
}

.cc-title p {
  width: 90%;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  opacity: 0.9;
  margin-left: 0.3rem;
  margin-bottom: var(--mb-0-5);
}

.cc-title button {
  font-size: 1.1rem;
  column-gap: var(--mb-0-75);
}

.cc-img {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
  /* border: 1px tomato solid; */
}

.cc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 5%;
}

.cc-cards {
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.ccc {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
}

.ccc p {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  color: var(--t-black);
  text-transform: uppercase;
  font-family: var(--spa-font);
  line-height: 1.2;
}

.ccc a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-5);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  text-transform: uppercase;
  font-family: var(--spa-font);
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: var(--t-black);
  text-decoration-style: solid;
}

.ccc a span {
  width: 8px;
  height: 8px;
  background-color: gold;
  border-radius: 50%;
  animation: fadeX 0.2s ease-in-out;
  display: none;
}

.ccc:hover a:hover {
  text-decoration-color: var(--t-yellow);
}

.ccc:hover a span {
  display: inline-block;
}

.ccc-links {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-0-5);
  /* border: 1px dodgerblue solid; */
}

.ccc-links a {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-25);
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-black);
  text-transform: uppercase;
  font-family: var(--spa-font);
  text-decoration: none;
}

.ccc-links a span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  animation: fadeX 0.2s ease-in-out;
  display: inline-block;
}

.ccc-links a:hover span {
  background-color: gold;
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 480px */
@media screen and (max-width: 480px) {
  /* --------------- ========== LP-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== HERO SECTION ==========*/
  .hero {
    width: 100%;
    height: auto;
  }

  .h-container {
    position: relative;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .h-media {
    display: none;
  }

  .h-content {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 100dvh;
    order: 1;
    z-index: 3;
  }

  .hc {
    width: 100%;
    max-width: 100%;
    row-gap: var(--mb-1-5);
    padding: var(--mb-2-5) var(--mb-2);
    background-color: rgba(250, 250, 250, 0.97);
  }

  .hc-img {
    position: absolute;
    top: var(--mb-2);
    width: 100px;
    overflow: hidden;
  }

  .hc-img img {
    width: 100%;
    object-fit: cover;
  }

  .hc h1 {
    width: 100%;
    font-size: var(--fs-4-5);
    letter-spacing: -0.05em;
    line-height: 1;
  }

  .hc h1 strong {
    font-family: var(--cor-font);
    font-size: 5.5rem;
  }

  .hc p {
    width: 95%;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: var(--t-black);
    font-family: var(--spa-font);
    line-height: 1.4;
    opacity: 0.9;
  }

  /* --------------- ========== AB-MAIN ========== ---------------*/
  .ab-main {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* .ab-main > section {
  position: sticky;
  top: 0;
} */

  /*========== AERO SECTION ==========*/
  .aero {
    width: 100%;
  }
  .ae-container {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: var(--mb-8);
    row-gap: var(--mb-4);
    align-items: center;
  }

  .ae-title {
    width: 100%;
    row-gap: var(--mb-2);
    align-items: center;
    z-index: 2;
  }

  .ae-title h1 {
    font-size: var(--fs-2);
    letter-spacing: -0.05em;
    line-height: 1.2;
    font-family: var(--spa-font);
    text-align: center;
  }

  .strong-curve {
    font-size: 2.5rem;
    margin-right: 0.2rem;
  }

  .ae-title p {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-left: var(--mb-0-25);
  }

  .aet-btn {
    justify-content: flex-start;
  }

  .ae-title button {
    font-size: 1.1rem;
    column-gap: var(--mb-0-75);
  }

  .ae-title button span {
    width: 15px;
    height: 15px;
  }

  .ae-wrapper {
    /* border: 1px hotpink solid; */
    justify-content: flex-start;
    /* overflow: hidden; */
  }

  .aem-svg {
    position: absolute;
    top: -10rem;
    right: -9rem;
    width: 85%;
    object-fit: contain;
    z-index: 1;
  }

  /* Main media container with horizontal scrolling */
  .ae-media {
    column-gap: var(--mb-1-5);
    z-index: 2;
  }

  .aem,
  .aem-text {
    flex: 0 0 300px;
    height: 400px;
    background-color: #d4d4d4;
    border-radius: 20px;
    overflow: hidden;
  }

  .aem-temp {
    flex: 0 0 40px;
    height: 400px;
  }

  .aem-text {
    position: relative;
    padding: var(--mb-2);
    justify-content: space-between;
    align-items: flex-start;
  }

  .aem-text h5 {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    color: var(--t-black);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: var(--mb-0-5);
    z-index: 3;
  }

  .aem-text h5 span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--t-yellow);
    animation: fade 0.3s ease-in-out;
    z-index: 3;
  }

  .aem-text p {
    font-size: 1.3rem;
    z-index: 3;
  }

  .aem img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aem:nth-child(4) img {
    object-position: 10% 50%;
  }

  .aem:hover,
  .aem-text:hover {
    transform: translateY(-15px);
  }

  /*========== STATS SECTION ==========*/
  .stats {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    padding-bottom: 5rem;
    overflow: hidden;
    /* border: 1px teal solid; */
  }

  .ss-container {
    position: relative;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-4);
    /* border: 1px lime solid; */
  }

  .ss-img {
    position: absolute;
    /* display: none; */
  }

  .ss-img img {
    opacity: 0.1;
  }

  .ss-title {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .ss-title p {
    font-size: var(--fs-2-5);
    font-weight: 400;
    line-height: 1.2;
    z-index: 4;
  }

  .ss-cards {
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
    flex-wrap: unset;
    flex-direction: column;
    /* border: 1px tomato solid; */
  }

  .ssc {
    flex: 0 0 auto;
    width: 90%;
    justify-content: flex-start;
    align-items: center;
    padding: var(--mb-2);
    border: 2px var(--t-black) solid;
    row-gap: var(--mb-0-75);
  }

  .ssc-no {
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    column-gap: var(--mb-0-5);
  }

  .ssc-no h4 {
    position: relative;
    font-size: var(--fs-3-5);
    font-weight: 500;
    text-align: center;
    color: gold;
    font-family: var(--spa-font);
    line-height: 1;
  }

  .ssc-no span {
    font-size: var(--fs-1-5);
    font-weight: 500;
    text-align: left;
    font-family: var(--spa-font);
    color: gold;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .ssc h4 span {
    position: absolute;
  }

  .ssc p {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    /* font-family: var(--spa-font); */
  }

  /*========== SERVICES SECTION ==========*/
  .services {
    width: 100%;
  }

  .se-container {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
    row-gap: var(--mb-1);
  }

  .se-title {
    row-gap: var(--mb-2);
    padding: var(--mb-3) 0;
    border-top: 2px var(--soft-white) solid;
    border-bottom: 2px var(--soft-white) solid;
  }

  .se-title p {
    font-size: 1rem;
    column-gap: var(--mb-0-5);
  }

  .se-title p span {
    width: 8px;
    height: 8px;
    animation: fade 0.3s ease-in-out;
  }

  .se-title h3 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.3;
    font-family: var(--spa-font);
  }

  .se-title .strong-curve {
    font-size: 2.2rem;
  }

  .se-cards {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    /* border: 1px lime solid; */
  }

  .sec-svg {
    position: absolute;
    width: 80%;
    opacity: 0.05;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    display: none;
  }

  .sec {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    padding: var(--mb-3) var(--mb-2);
    row-gap: var(--mb-2);
    opacity: 1;
    border-bottom: 1px var(--soft-white) solid;
  }

  .sec:first-child {
    border-right: none;
    border-bottom: 1px var(--soft-white) solid;
  }

  .sec:nth-child(2) {
    border-left: unset;
  }

  .sec:nth-child(3) {
    border-right: unset;
    border-top: none;
  }

  .sec:nth-child(4) {
    border-top: unset;
  }

  .sec:nth-child(5) {
    border-top: none;
    border-right: none;
  }

  .sec:nth-child(6) {
    border-top: none;
  }

  .sec h4 {
    font-size: 1.8rem;
    line-height: 1;
  }

  .sec-ul {
    width: 100%;
    column-gap: var(--mb-0-5);
    flex-wrap: unset;
    flex-direction: column;
    color: var(--t-black);
  }

  .secl {
    flex: 0 0 auto;
    font-size: 1rem;
    cursor: pointer;
  }

  .sec-emblem {
    display: none;
  }

  .sec-emblem img {
    display: none;
  }

  /*========== TEAM SECTION ==========*/
  .team {
    width: 100%;
    background-color: var(--white);
    padding-bottom: var(--mb-4);
  }

  .te-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-4);
  }

  .te-media {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: var(--mb-2) 0;
    padding-top: var(--mb-6);
    border: none;
  }

  .te-media video {
    z-index: 2;
    object-fit: contain;
    /* border: 2px tomato solid; */
  }

  .tem {
    display: none;
  }

  .te-title {
    width: 100%;
    align-items: flex-start;
  }

  .te-title h4 {
    width: 90%;
    font-size: var(--fs-2);
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--spa-font);
  }

  .te-title .strong-curve {
    font-size: 2.5rem !important;
  }

  /* .te-plan {
    width: 80%;
    margin-bottom: var(--mb-3);
    padding: var(--mb-4) 0;
    border-top: 2px var(--t-black) solid;
    border-bottom: 2px var(--t-black) solid;
  }
  
  .te-plan img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  } */

  .te-cards {
    position: relative;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: var(--mb-3);
    /* padding: 0 0.25rem; */
    padding-bottom: var(--mb-8);
    padding: 0 var(--mb-1);
  }

  .tec-col {
    flex: 0 0 100%;
    row-gap: var(--mb-2-5);
    z-index: 2;
    /* border: 1px teal solid; */
  }

  .tec-col:nth-child(even) {
    margin: 0;
  }

  .tec {
    width: 90%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1);
  }

  .tec img {
    width: 100%;
    height: 420px;
  }

  .tec p {
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    row-gap: 0.25rem;
  }

  .tec p span {
    font-size: 0.9rem;
  }

  .tec-links {
    width: 100%;
    justify-content: center;
    column-gap: var(--mb-0-5);
    margin: 0;
    margin-top: -0.4rem;
  }

  .tecl {
    flex: 0 0 auto;
    overflow: hidden;
    transition: unset;
  }

  .tecl i {
    font-size: 1rem;
  }

  /*========== TESTIMONIALS (REVIEWS) SECTION ==========*/
  .review {
    padding: var(--mb-4) var(--mb-1-5);
    overflow: hidden;
    /* border: 1px tomato solid; */
  }

  .re-svg {
    position: absolute;
    bottom: 0;
    width: 90%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0.03;
    overflow: hidden;
  }

  .re-container {
    width: 100%;
    /* border: 1px hotpink solid; */
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-3-5);
    z-index: 3;
  }

  .re-title {
    display: none;
  }

  .re-wrapper {
    width: 100%;
    height: 600px;
    /* border: 1px tomato solid; */
    row-gap: var(--mb-2);
  }

  .re-cards {
    width: 100%;
    /* border: 1px lime solid; */
  }

  .rec {
    row-gap: var(--mb-1-5);
  }

  .rec i {
    font-size: var(--fs-2-5);
    color: gold;
  }

  .rec h5 {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.2;
    /* opacity: 0.8; */
  }

  .rec p {
    font-size: 0.9rem;
    border-radius: 30px;
    margin-top: var(--mb-0-25);
  }

  /* --------------- ========== WK-MAIN ========== ---------------*/
  .wk-main {
    width: 100%;
    overflow: hidden;
    /* border: 3px lime solid; */
  }

  /*========== WERO SECTION ==========*/
  .wero {
    position: relative;
    z-index: 3;
  }

  .we-media {
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .we-container {
    position: relative;
    z-index: 3;
  }

  .we-title {
    top: 40%;
    padding: 0 var(--mb-1-5);
    z-index: 4;
  }

  .wet {
    width: 100%;
    font-size: 5rem;
    column-gap: var(--mb-1);
  }

  /*========== WORK SECTION ==========*/
  .work {
    width: 100%;
    align-items: flex-start;
    /* display: none; */
  }

  .work-cards {
    row-gap: var(--mb-3);
    padding: 0 var(--mb-1);
    padding-top: 70vh;
    padding-bottom: var(--mb-5);
  }

  .wc {
    height: 600px;
  }

  .wc-data {
    position: absolute;
    justify-content: space-between;
    padding: var(--mb-2) var(--mb-1-5);
  }

  .wcd-logos {
    width: 100%;
  }

  .wcd-logos a {
    flex: 0 0 auto;
    border-radius: 5px;
    overflow: hidden;
  }

  .wcd-logos a img {
    width: 45px;
    object-fit: contain;
  }

  .wcd-logos a:first-child img {
    width: 35px;
  }

  .wc:nth-child(3) .wcd-logos a:nth-child(2) img {
    width: 60px;
  }

  .wcd {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .wcd h5 {
    flex: 0 0 auto;
    border: 2px var(--white) solid;
    border-radius: 30px;
    font-size: 0.9rem;
    padding: var(--mb-0-5) var(--mb-1);
  }

  .wcd P {
    font-size: 0.9rem;
  }

  .wcd p span {
    font-size: 1.1rem;
    transform: translateY(-0.5px);
  }

  /* --------------- ========== CASE-STUDY MEDIA ========== ---------------*/
  .cs-page {
    position: relative;
  }

  .ce-vid {
    position: fixed;
    inset: 0;
    width: 100%;
  }

  .cev {
    position: absolute;
    inset: 0;
    align-items: flex-end;
    padding: var(--mb-2);
    z-index: 3;
  }

  .cev-data {
    width: 100%;
    padding-top: var(--mb-1-5);
    border-top: 2px var(--white) solid;
  }

  .cev-data a {
    display: none;
  }

  .viv .cev-data a {
    display: none;
  }

  .cev-ul {
    flex: 0 0 100%;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1);
    column-gap: unset;
  }

  .cev-li {
    flex: 0 0 auto;
    font-size: 0.9rem;
  }

  .irembo .cev-li,
  .viv .cev-li {
    font-size: 0.9rem;
  }

  /* --------------- ========== CS-MAIN ========== ---------------*/
  .cs-main {
    width: 100%;
    overflow: hidden;
    z-index: 6;
  }

  .cs-main > section {
    position: relative;
    z-index: 5;
  }

  /*========== CERO SECTION ==========*/
  .cero {
    width: 100%;
    height: 60dvh;
    overflow: hidden;
  }

  .ce-container {
    overflow: hidden;
  }

  .ce-title {
    padding: 0 var(--mb-2);
    justify-content: flex-end;
  }

  .ce-title p {
    display: none;
  }

  .cet-img {
    width: 150px;
    height: 50%;
    object-fit: contain;
    border-radius: 10px;
  }

  .irembo .cet-img {
    width: 80px;
    border-radius: 15px;
  }

  .mak .cet-img {
    width: 80px;
  }

  .dala .cet-img {
    width: 100px;
  }

  .co-dev .cet-img {
    width: 120px;
  }

  .unicef .cet-img {
    width: 70px;
  }

  .viv .cet-img {
    width: 120px;
  }

  .ce-title h1 {
    height: 50%;
    font-size: 2.2rem;
    z-index: 3;
  }

  .mak .ce-title h1 {
    padding-bottom: var(--mb-0-25);
  }

  .cet {
    position: absolute;
    bottom: -50%;
    z-index: 2;
  }

  /*========== C-TEMP SECTION ==========*/
  .cemp {
    width: 100%;
    height: 120dvh;
  }

  /*========== C-INFO SECTION ==========*/
  .ci {
    width: 100%;
    /* border: 1px tomato solid; */
  }

  .ci-container {
    position: relative;
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-2);
  }

  .ci-container p {
    width: 95%;
    font-size: 1.3rem;
    z-index: 7;
  }

  .ci-container .strong-curve {
    font-size: 1.6rem;
    margin-right: 0.25rem;
  }

  .dala .ci-container .strong-curve {
    margin: 0;
  }

  .ci-svg {
    position: absolute;
    width: 100%;
    opacity: 0.015;
    z-index: 6;
    /* rotate: 180deg; */
  }

  /* --------------- ========== CC-MAIN ========== ---------------*/
  .cc-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== CON SECTION ==========*/
  .con {
    position: relative;
    background-color: var(--white);
  }

  .con-svg {
    display: flex;
  }

  .con-con {
    width: 100%;
    justify-content: center;
    padding: 0;
    z-index: 3;
    background: transparent;
    background-image: unset;
  }

  .cc-data {
    flex: 0 0 100%;
    justify-content: center;
    align-items: center;
    row-gap: 2.2rem;
    padding: var(--mb-2) 0;
    /* border: 1px lime solid; */
  }

  .cc-title {
    width: 90%;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1.25rem;
    padding-bottom: var(--mb-2);
  }

  .cc-title h3 {
    width: 100%;
    font-size: var(--fs-3);
    text-align: center;
    line-height: 1;
    font-family: var(--spa-font);
    /* text-transform: uppercase; */
  }

  .cc-title .strong-curve {
    margin: 0;
    font-size: 3.5rem;
  }

  .cc-title p {
    width: 70%;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin-left: 0;
    margin-bottom: var(--mb-0-25);
  }

  .cc-title button {
    font-size: 1rem;
    column-gap: var(--mb-0-75);
  }

  .cc-cards {
    align-items: center;
    row-gap: var(--mb-2);
  }

  .ccc {
    align-items: center;
    row-gap: var(--mb-0-75);
  }

  .ccc p {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
  }

  .ccc a {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1;
  }

  .ccc a span {
    width: 8px;
    height: 8px;
    display: none;
  }

  .ccc:hover a:hover {
    text-decoration-color: var(--t-yellow);
  }

  .ccc:hover a span {
    display: inline-block;
  }

  .ccc-links {
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-0-75);
    column-gap: unset;
    padding-left: 0;
    /* border: 1px dodgerblue solid; */
  }

  .ccc-links a {
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
    text-decoration: none;
  }

  .ccc-links a span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    animation: fadeX 0.2s ease-in-out;
    display: inline-block;
  }

  .ccc-links a:hover span {
    background-color: gold;
  }

  .cc-img {
    display: none;
  }
}

/* Media query for screens with a minimum width of 1440px and a maximum width of 1600px */
@media screen and (min-width: 1440px) and (max-width: 1600px) {
  /* --------------- ========== LP-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }

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

  .h-content {
    position: relative;
    flex: 0 0 50%;
    height: 100%;
  }

  .hco-svg {
    opacity: 0.6;
    z-index: 3;
  }

  .hc {
    width: 100%;
    height: 100%;
    padding: var(--mb-3) var(--mb-4);
    row-gap: var(--mb-2-5);
    z-index: 5;
    background-color: rgba(250, 250, 250, 0.98);
  }

  .hc h1 {
    width: 90%;
    font-size: 7rem;
    line-height: 1.1;
    /* text-transform: uppercase; */
  }

  .hc h1 strong {
    font-family: var(--cor-font);
    font-size: 8.5rem;
    line-height: 0.3 !important;
    margin-left: -0.6rem;
  }

  .hc p {
    width: 70%;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: var(--t-black);
    font-family: var(--spa-font);
    line-height: 1.4;
    opacity: 0.8;
  }

  .hc button {
    margin-top: var(--mb-0-25);
    font-size: 1rem;
  }

  /* --------------- ========== AB-MAIN ========== ---------------*/
  .ab-main {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* .ab-main > section {
  position: sticky;
  top: 0;
} */

  /*========== AERO SECTION ==========*/
  .aero {
    width: 100%;
  }

  .ae-container {
    width: 100%;
    padding: var(--mb-4);
    padding-top: var(--mb-8);
    row-gap: 10rem;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .ae-title {
    width: 70%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-2);
  }

  .ae-title h1 {
    font-size: var(--fs-3-5);
    line-height: 1.1;
    font-family: var(--spa-font);
  }

  .strong-curve {
    font-family: var(--cor-font);
    font-size: 4.4rem;
    margin-right: 0.2rem;
  }

  .se-title .strong-curve {
    font-size: 3.3rem;
  }

  .te-title .strong-curve {
    font-size: 3rem;
  }

  .re-title .strong-curve {
    font-size: 3.8rem;
  }

  .ae-title p {
    font-size: 1.1rem;
    margin-left: var(--mb-0-5);
  }

  .ae-title p:hover {
    text-decoration-color: gold;
    text-decoration-style: solid;
  }

  .aet-btn {
    justify-content: flex-start;
  }

  .ae-title button {
    font-size: 1.2rem;
    column-gap: var(--mb-0-75);
  }

  .ae-svg {
    position: absolute;
    bottom: 18rem;
    right: -14rem;
    width: 80%;
    object-fit: contain;
    z-index: 1;
  }

  /*========== STATS SECTION ==========*/
  .stats {
    position: sticky;
    padding: var(--mb-6) 10rem;
  }

  /*========== SERVICES SECTION ==========*/
  .services {
    width: 100%;
  }

  .se-container {
    padding: var(--mb-8);
    row-gap: var(--mb-6);
  }

  .se-title h3 {
    width: 85%;
    font-size: var(--fs-2-5);
  }

  /*========== TEAM SECTION ==========*/
  .tem {
    position: absolute;
    padding: var(--mb-3) var(--mb-5);
  }

  .te-plan img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    /* border: 1px tomato solid; */
  }

  .tec-col {
    flex: 0 0 22.5%;
    row-gap: var(--mb-2);
    /* border: 1px teal solid; */
  }

  .tec img {
    height: 400px;
  }

  /*========== TESTIMONIALS (REVIEWS) SECTION ==========*/
  .review {
    padding: var(--mb-8);
    overflow: hidden;
    /* border: 1px tomato solid; */
  }

  /*========== CTA SECTION ==========*/
  .cta-container {
    width: 100%;
    padding: var(--mb-8) var(--mb-6);
    row-gap: var(--mb-4);
  }

  .cta-link h3 {
    text-transform: uppercase;
    font-size: 8rem;
    line-height: 1;
  }

  /* --------------- ========== WK-MAIN ========== ---------------*/
  .wk-main {
    width: 100%;
    overflow: hidden;
    /* border: 3px lime solid; */
  }

  /*========== WERO SECTION ==========*/
  .wero {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    background-color: var(--white);
    z-index: 3;
  }

  .we-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    /* border: 2px tomato solid; */
    overflow: hidden;
    z-index: 2;
  }

  .wem {
    width: 100%;
    animation: scroll-up 250s linear infinite; /* Continuous animation */
    justify-content: flex-start;
  }

  .wem img {
    width: 100%;
    object-fit: cover;
    /* filter: invert(99%) sepia(9%) saturate(43%) hue-rotate(246deg)
    brightness(117%) contrast(100%); */
    border: none;
    outline: none;
    opacity: 0.02;
  }

  .we-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
    z-index: 3;
  }

  .we-title {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    padding: 0 var(--mb-4);
  }

  .wet {
    width: 100%;
    font-size: 15rem;
    font-weight: 500;
  }

  /* .wet-second {
  font-style: italic;
} */

  .wet.active {
    justify-content: center;
    padding: 0;
  }

  /*========== WORK SECTION ==========*/
  .work {
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: blur(3px);
    overflow: auto;
    align-items: flex-start;
    /* display: none; */
  }

  .work-cards {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-6);
    padding: 0 12rem;
    padding-top: 85vh;
    padding-bottom: var(--mb-5);
    z-index: 4;
  }

  .wc {
    position: relative;
    width: 100%;
    height: 700px;
    background-color: #a3a3a3;
    overflow: hidden;
    cursor: pointer;
  }

  .wc-vid {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .wc-vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: none;
    border: none;
  }

  .wc-data {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: space-between;
    padding: var(--mb-2);
  }

  .wcd-logos {
    width: 100%;
    justify-content: space-between;
  }

  .wcd-logos a {
    flex: 0 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wcd-logos a img {
    width: 90px;
  }

  .wcd-logos a:first-child img {
    width: 25px;
  }

  .wcd {
    width: 100%;
    justify-content: space-between;
    padding-top: var(--mb-1-5);
    border-top: 2px var(--white) solid;
  }

  .wcd h5 {
    flex: 0 0 auto;
    padding: var(--mb-0-5) var(--mb-0-75);
    border: 3px var(--white) solid;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    letter-spacing: -0.03em;
    text-transform: uppercase;
  }

  .wcd P {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    /* font-style: italic; */
  }

  /* --------------- ========== CASE-STUDY MEDIA ========== ---------------*/
  .cs-page {
    position: relative;
  }

  .ce-vid {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    z-index: 1;
  }

  .cev-wrapper,
  .ce-vid video {
    width: 100%;
    height: 100%;
  }

  .cev-wrapper {
    position: relative;
  }

  .ce-vid video {
    object-fit: cover;
  }

  .cev {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    align-items: flex-end;
    padding: var(--mb-2) var(--mb-4);
    z-index: 3;
  }

  .cev-data {
    width: 100%;
    padding-top: var(--mb-2);
    border-top: 2px var(--white) solid;
    justify-content: space-between;
  }

  .cev-data a {
    flex: 0 0 auto;
    overflow: hidden;
  }

  .cev-data a img {
    width: 150px;
    object-fit: cover;
  }

  .cev-ul {
    column-gap: var(--mb-1);
  }

  .cev-li {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--spa-font);
    text-decoration: underline;
    text-decoration-color: var(--white);
    text-decoration-style: solid;
    cursor: pointer;
  }

  /* --------------- ========== CS-MAIN ========== ---------------*/
  .cs-main {
    width: 100%;
    overflow: hidden;
    z-index: 6;
  }

  .cs-main > section {
    position: relative;
    z-index: 5;
  }

  /*========== CERO SECTION ==========*/
  .cero {
    width: 100%;
    height: 70dvh;
  }

  .ce-title {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    padding: 0 var(--mb-8);
    padding-bottom: var(--mb-6);
    justify-content: flex-end;
    overflow: hidden;
    z-index: 4;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }

  .ce-title {
    padding: 0 var(--mb-8);
    justify-content: flex-end;
    overflow: hidden;
    z-index: 4;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }

  .cet-img {
    width: 200px;
    height: auto;
  }

  .ce-title h1 {
    /* width: 50%; */
    font-size: var(--fs-5);
    line-height: 1.2;
    margin-top: var(--mb-4);
  }

  /*========== C-TEMP SECTION ==========*/
  .cemp {
    width: 100%;
    height: 100dvh;
  }

  /*========== C-INFO SECTION ==========*/
  .ci {
    width: 100%;
  }

  .ci-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: var(--mb-4) 12rem;
    row-gap: var(--mb-2);
  }

  .ci-container p {
    width: 80%;
    font-size: 2rem;
    font-weight: 400;
    z-index: 7;
  }

  /*========== CATISTICS SECTION ==========*/
  .ca {
    position: relative;
    width: 100%;
  }

  .ca-svg {
    position: absolute;
    opacity: 0.01;
    z-index: 6;
  }

  .ca-container {
    width: 100%;
    /* backdrop-filter: blur(3px); */
    z-index: 7;
    padding: var(--mb-8) 12rem;
  }

  /* --------------- ========== CC-MAIN ========== ---------------*/
  .cc-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== CON SECTION ==========*/
  .con {
    position: relative;
    width: 100%;
    height: 100dvh;
    background-color: var(--white);
  }

  .con-con {
    width: 100%;
    height: 100%;
    /* border: 1px tomato solid; */
    justify-content: space-between;
    padding: 0;
    background-color: rgba(250, 250, 250, 0.03);
    background-position: 50% 10%;
    z-index: 3;
  }

  .cc-data {
    flex: 0 0 50%;
    justify-content: center;
    align-items: flex-start;
    row-gap: var(--mb-2-5);
    padding: var(--mb-4) 0;
    padding-left: var(--mb-4);
    /* border: 1px lime solid; */
  }

  .cc-title {
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-1);
    padding-bottom: var(--mb-2-5);
  }

  .cc-title h3 {
    width: 100%;
    font-size: 4.3rem;
    font-weight: 500;
    text-align: left;
    color: var(--t-black);
    letter-spacing: -0.05em;
    line-height: 1.1;
    font-family: var(--spa-font);
    /* text-transform: uppercase; */
  }

  .cc-title .strong-curve {
    margin-left: -0.2rem;
    font-size: 5rem;
    font-weight: 500;
  }
}

/* Media query for screens with a minimum width of 1650px */
@media screen and (min-width: 1650px) {
  /* --------------- ========== LP-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== HERO SECTION ==========*/
  .hco-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 3;
    display: none;
  }

  .hc-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hcp-wrapper {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    animation: scroll-up 150s linear infinite;
  }

  .hcp-wrapper img {
    width: 100%;
    object-fit: cover;
    border: none;
    outline: none;
  }

  .hc {
    width: 100%;
    height: 100%;
    padding: var(--mb-6);
    row-gap: var(--mb-2-5);
    z-index: 5;
    background-color: rgba(250, 250, 250, 0.98);
  }

  .hc h1 {
    width: 80%;
    font-size: 7rem;
    font-weight: 500;
    text-align: center;
    color: var(--t-black);
    letter-spacing: -0.05em;
    line-height: 1;
    font-family: var(--spa-font);
    z-index: 5;
    /* text-transform: uppercase; */
  }

  .hc h1 strong {
    font-family: var(--cor-font);
    font-size: 9rem;
    color: var(--t-yellow);
    font-weight: 500;
    font-style: italic;
    line-height: 0.3 !important;
  }

  .hc p {
    width: 70%;
    font-size: 1.2rem;
    opacity: 0.8;
  }

  .hc button {
    margin-top: var(--mb-0-25);
    font-size: 1.1rem;
    column-gap: var(--mb-0-75);
  }

  /* --------------- ========== AB-MAIN ========== ---------------*/
  .ab-main {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* .ab-main > section {
  position: sticky;
  top: 0;
} */

  /*========== AERO SECTION ==========*/
  .aero {
    width: 100%;
  }

  .ae-container {
    position: relative;
    width: 100%;
    padding: var(--mb-4);
    padding-top: var(--mb-8);
    row-gap: 10rem;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .ae-title {
    width: 70%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-2);
    z-index: 2;
  }

  .ae-title h1 {
    width: 100%;
    font-size: var(--fs-5);
    line-height: 1.2;
    font-family: var(--spa-font);
  }

  .strong-curve {
    font-family: var(--cor-font);
    font-size: 7rem;
    color: var(--t-yellow);
    font-weight: 400;
    font-style: italic;
    margin-right: 0.2rem;
  }

  .cc-title .strong-curve {
    font-size: var(--fs-4);
    font-weight: 600;
  }

  .aet-btn {
    justify-content: flex-start;
  }

  .ae-title button {
    font-size: 1.2rem;
    column-gap: var(--mb-0-75);
  }

  .ae-title button span {
    width: 15px;
    height: 15px;
  }

  .ae-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    justify-content: flex-start;
    z-index: 2;
  }

  .ae-svg {
    position: absolute;
    bottom: 15rem;
    right: -17rem;
    width: 70%;
    object-fit: contain;
    z-index: 1;
  }

  .aem,
  .aem-text {
    flex: 0 0 470px;
    height: 600px;
    background-color: #d4d4d4;
    border-radius: 20px;
    overflow: hidden;
  }

  .aem-temp {
    flex: 0 0 200px;
    height: 600px;
  }

  .aem-text {
    padding: var(--mb-2);
    justify-content: space-between;
    align-items: flex-start;
  }

  .aem-text h5 {
    font-size: 1.3rem;
    column-gap: var(--mb-0-5);
    z-index: 3;
  }

  .aem-text h5 span {
    width: 8px;
    height: 8px;
    z-index: 3;
  }

  .aem-text p {
    font-size: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.4;
    font-family: var(--spa-font);
    z-index: 3;
  }

  /*========== STATS SECTION ==========*/
  .stats {
    width: 100%;
    padding: var(--mb-8) 16rem;
    overflow: hidden;
    /* border: 1px teal solid; */
  }

  .ss-container {
    position: relative;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    /* padding: var(--mb-6) var(--mb-4); */
    row-gap: var(--mb-4);
    /* border: 1px lime solid; */
  }

  .ss-cards {
    width: 100%;
    row-gap: var(--mb-4);
    flex-wrap: wrap;
    z-index: 2;
    /* border: 1px tomato solid; */
  }

  .ssc {
    flex: 0 0 47%;
    padding: var(--mb-3);
    row-gap: var(--mb-1);
  }

  .ssc-no {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    column-gap: var(--mb-0-5);
  }

  .ssc-no h4 {
    position: relative;
    font-size: var(--fs-6);
    line-height: 1;
  }

  .ssc-no span {
    font-size: var(--fs-3);
    font-weight: 500;
  }

  .ssc h4 span {
    position: absolute;
  }

  .ssc p {
    font-size: 2rem;
    font-weight: 500;
    margin-left: var(--mb-0-5);
    /* font-family: var(--spa-font); */
  }

  /*========== SERVICES SECTION ==========*/
  .services {
    width: 100%;
  }

  .se-container {
    width: 100%;
    padding: 10rem 16rem;
    padding-bottom: 10rem;
    row-gap: 10rem;
  }

  .se-title {
    width: 90%;
    row-gap: var(--mb-3);
    padding: var(--mb-4) 0;
  }

  .se-title p span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--t-yellow);
    animation: fade 0.3s ease-in-out;
  }

  .se-title h3 {
    width: 100%;
    font-size: var(--fs-3);
  }

  .se-title .strong-curve {
    font-size: var(--fs-3-5);
  }

  .sec {
    flex: 0 0 50%;
    height: 400px;
    padding: var(--mb-4);
    row-gap: var(--mb-2);
    z-index: 3;
  }

  .sec h4 {
    font-size: 3rem;
    line-height: 1;
  }

  .sec-ul {
    width: 100%;
    column-gap: var(--mb-0-5);
    flex-wrap: wrap;
    color: var(--t-black);
  }

  .secl {
    flex: 0 0 auto;
    font-size: 1.5rem;
  }

  .secl:hover {
    text-decoration-color: gold;
    color: gold;
  }

  /*========== TEAM SECTION ==========*/
  .team {
    width: 100%;
    background-color: var(--white);
    padding-bottom: 4rem;
  }

  .te-container {
    row-gap: 10rem;
  }

  .te-media {
    position: relative;
    width: 90%;
    height: 800px;
  }

  .tem {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 4;
    align-items: flex-end;
    padding: var(--mb-3);
  }

  .te-title {
    width: 100%;
    align-items: flex-start;
  }

  .te-title h4 {
    width: 70%;
    font-size: var(--fs-4);
    line-height: 1.2;
    font-family: var(--spa-font);
  }

  .te-title .strong-curve {
    font-size: 4.5rem !important;
  }

  .te-cards {
    padding-bottom: var(--mb-8);
    padding: 0 var(--mb-4);
  }

  .tec-col {
    flex: 0 0 22%;
    row-gap: var(--mb-2-5);
    z-index: 2;
    /* border: 1px teal solid; */
  }

  .tec-col:nth-child(even) {
    margin-top: 10rem;
  }

  .tec {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-0-75);
  }

  .tec img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    background-color: #fafafa;
    border-radius: 15px;
  }

  .tec p {
    font-size: 1.2rem;
    line-height: 1.2;
    row-gap: 0.15rem;
  }

  .tec p span {
    font-size: 1rem;
  }

  .tecl i {
    font-size: 1rem;
  }

  /*========== TESTIMONIALS (REVIEWS) SECTION ==========*/
  .review {
    position: relative;
    width: 100%;
    padding: var(--mb-8) 16rem;
  }

  .re-svg {
    position: absolute;
    bottom: -4rem;
    width: 90%;
  }

  .re-container {
    width: 100%;
    /* border: 1px hotpink solid; */
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-3-5);
    z-index: 3;
  }

  .re-wrapper {
    width: 90%;
    height: 650px;
  }

  .re-cards {
    width: 100%;
    position: relative;
  }

  .rec {
    row-gap: var(--mb-2);
  }

  /* Active rec (visible) */
  .rec.active {
    opacity: 1;
  }

  .rec i {
    font-size: var(--fs-4);
    color: gold;
  }

  .rec h5 {
    width: 90%;
    font-size: 3.5rem;
    /* opacity: 0.8; */
  }

  .rec p {
    font-size: 1.3rem;
    margin-top: var(--mb-0-5);
  }

  /* --------------- ========== WK-MAIN ========== ---------------*/
  .wk-main {
    width: 100%;
    overflow: hidden;
    /* border: 3px lime solid; */
  }

  /*========== WERO SECTION ==========*/
  .wero {
    position: relative;
    background-color: var(--white);
    z-index: 3;
  }

  .wem {
    width: 100%;
    animation: scroll-up 300s linear infinite; /* Continuous animation */
    justify-content: flex-start;
  }

  .wem img {
    width: 100%;
    opacity: 0.02;
  }

  .we-container {
    position: relative;
    width: 100%;
    z-index: 3;
  }

  .we-title {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 var(--mb-2);
    z-index: 4;
  }

  .wet {
    width: 100%;
    font-size: 18rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -0.05em;
    line-height: 0.9;
    font-family: var(--spa-font);
    text-align: center;
    text-transform: uppercase;
    column-gap: var(--mb-1);
  }

  /* .wet-second {
  font-style: italic;
} */

  .wet.active {
    justify-content: center;
    padding: 0;
  }

  /*========== WORK SECTION ==========*/
  .work {
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: auto;
    align-items: flex-start;
    /* display: none; */
  }

  .work-cards {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-8);
    padding: 0 18rem;
    padding-top: 85vh;
    padding-bottom: var(--mb-8);
    z-index: 4;
  }

  .wc {
    position: relative;
    width: 100%;
    height: 850px;
    background-color: #a3a3a3;
    overflow: hidden;
    cursor: pointer;
  }

  .wc-vid {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--black);
  }

  .wc-vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: none;
    border: none;
    /* display: none; */
  }

  .wc-data {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: space-between;
    padding: var(--mb-3);
    padding-top: var(--mb-3);
  }

  .wcd-logos a img {
    width: 100px;
  }

  .wcd-logos a:first-child img {
    display: none;
  }

  .wc:nth-child(3) .wcd-logos a:nth-child(2) img {
    width: 150px;
  }

  .wc:nth-child(4) .wcd-logos a:nth-child(2) img {
    width: 130px;
  }

  .wcd {
    width: 100%;
    justify-content: space-between;
    padding-top: var(--mb-1-5);
    border-top: 2px var(--white) solid;
    transition: unset;
  }

  .wcd h5 {
    font-size: 1.3rem;
  }

  .wcd P {
    font-size: 1.3rem;
  }

  .wcd p span {
    font-size: 1.3rem;
    transform: unset;
    transition: unset;
  }

  .wcd p:hover {
    color: var(--t-yellow);
    transform: translateX(3px);
  }

  /* --------------- ========== CASE-STUDY MEDIA ========== ---------------*/
  .cs-page {
    position: relative;
  }

  .ce-vid {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    z-index: 1;
  }

  .cev-wrapper {
    position: relative;
  }

  .ce-vid video {
    object-fit: cover;
  }

  .cev {
    position: absolute;
    inset: 0;
    padding: var(--mb-2) var(--mb-4);
    z-index: 3;
  }

  .cev-data {
    width: 100%;
    padding-top: var(--mb-2);
  }

  .cev-ul {
    flex: 0 0 100%;
    justify-content: space-between;
    column-gap: var(--mb-1);
  }

  .cev-li {
    flex: 0 0 auto;
    font-size: 1.1rem;
  }

  .irembo .cev-li,
  .viv .cev-li {
    font-size: 1.1rem;
  }

  /* --------------- ========== CS-MAIN ========== ---------------*/
  .cs-main {
    width: 100%;
    overflow: hidden;
    z-index: 6;
  }

  .cs-main > section {
    position: relative;
    z-index: 5;
  }

  /*========== CERO SECTION ==========*/
  .cero {
    width: 100%;
    height: 60dvh;
    background-color: var(--white);
    align-items: flex-start;
    overflow: hidden;
  }

  .ce-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .ce-title {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    padding: 0 var(--mb-8);
    /* row-gap: var(--mb-4);
  padding-bottom: var(--mb-6); */
    justify-content: flex-end;
    overflow: hidden;
    z-index: 4;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }

  .cet-img {
    width: 200px;
    height: 50%;
    object-fit: contain;
    overflow: hidden;
  }

  .irembo .cet-img {
    width: 150px;
    border-radius: 15px;
  }

  .mak .cet-img {
    width: 130px;
  }

  .dala .cet-img {
    width: 150px;
  }

  .co-dev .cet-img {
    width: 180px;
  }

  .unicef .cet-img {
    width: 150px;
  }

  .viv .cet-img {
    width: 180px;
  }

  .ce-title p strong {
    font-size: 2.4rem;
    font-weight: 500;
  }

  .ce-title h1 {
    height: 50%;
    font-size: var(--fs-6);
    z-index: 3;
  }

  .mak .ce-title h1 {
    padding-bottom: var(--mb-0-25);
  }

  .cet {
    position: absolute;
    bottom: -45%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 2;
  }

  /*========== C-TEMP SECTION ==========*/
  .cemp {
    width: 100%;
    height: 120dvh;
  }

  /*========== C-INFO SECTION ==========*/
  .ci {
    width: 100%;
  }

  .ci-container {
    position: relative;
    width: 100%;
    padding: var(--mb-8) 14rem;
    row-gap: var(--mb-6);
  }

  .ci-container p {
    width: 90%;
    font-size: 2.3rem;
    z-index: 7;
  }

  .ci-container .strong-curve {
    font-size: 3rem;
    margin-right: 0.25rem;
    font-weight: 500;
  }

  /* --------------- ========== CC-MAIN ========== ---------------*/
  .cc-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== CON SECTION ==========*/
  .con {
    position: relative;
    width: 100%;
  }

  .con-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.02;
    z-index: 2;
  }

  .con-con {
    width: 100%;
    height: 100%;
    padding: 0 10rem;
    background-color: rgba(250, 250, 250, 0.03);
    z-index: 3;
  }

  .cc-data {
    flex: 0 0 44%;
    row-gap: 2.5rem;
    padding: var(--mb-4) 0;
    /* border: 1px lime solid; */
  }

  .cc-title {
    row-gap: var(--mb-1);
    padding-bottom: var(--mb-2);
  }

  .cc-title h3 {
    font-size: var(--fs-4-5);
    line-height: 1;
    font-family: var(--spa-font);
    /* text-transform: uppercase; */
  }

  .cc-title .strong-curve {
    margin-left: -0.2rem;
    font-size: 6rem;
  }

  .cc-title p {
    width: 90%;
    font-size: 1.6rem;
    margin-bottom: var(--mb-0-5);
  }

  .cc-title button {
    display: none;
  }

  .cc-img {
    flex: 0 0 47%;
    height: 100%;
  }

  .cc-cards {
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-2);
  }

  .ccc {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-0-5);
  }

  .ccc p {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    color: var(--t-black);
    text-transform: uppercase;
    font-family: var(--spa-font);
    line-height: 1.2;
  }

  .ccc a {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .ccc a span {
    width: 10px;
    height: 10px;
    display: none;
  }

  .ccc-links {
    width: 100%;
    justify-content: flex-start;
    column-gap: var(--mb-0-75);
    /* border: 1px dodgerblue solid; */
  }

  .ccc-links a {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: var(--mb-0-5);
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
    color: var(--t-black);
    text-transform: uppercase;
    font-family: var(--spa-font);
    text-decoration: none;
  }

  .ccc-links a span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    animation: fadeX 0.2s ease-in-out;
    display: inline-block;
  }
}
