/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,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&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --t-yellow: #f0b501;
  --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", sans-serif;
  --sos-font: "Source Sans 3", sans-serif;
  --pop-font: "Poppins", 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;
}

/* ------ >>>>>> ========== MAIN WRAPPER (LANDING PAGE) ========== <<<<<< ------ */
.lp-main {
  width: 100%;
  overflow: hidden;
}

/* ------ >>>>>> ========== HERO SECTION ========== <<<<<< ------ */
.hero {
  width: 100%;
  height: 100dvh;
  background-image: url(/assets/img/bckg/bg-1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.h-container {
  width: 100%;
  height: 100%;
  padding: var(--mb-3) var(--mb-4);
  padding-top: var(--mb-7);
  justify-content: space-between;
  background-color: rgba(250, 250, 250, 0.3);
}

.h-media {
  flex: 0 0 45%;
  height: 100%;
  overflow: hidden;
  /* border: 1px teal solid; */
}

.h-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
  /* border: 1px teal solid; */
}

.h-content {
  flex: 0 0 47%;
  row-gap: var(--mb-2-5);
  align-items: flex-start;
  /* border: 1px orangered solid; */
}

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

.hc-text h1 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  line-height: 1.2;
  font-family: var(--pop-font);
}

.hc-text p {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
}

.hc-actions {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-1);
}

.hc-actions button {
  font-size: 0.9rem;
}

.hc-facts {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: var(--mb-1);
  margin-top: var(--mb-1);
}

.hcf-img {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.hcfi {
  width: 35px;
  height: 35px;
  background-color: thistle;
  object-fit: cover;
  border-radius: 50%;
  border: 2px var(--white) solid;
  margin-left: -10px;
}

.hcfi:first-child {
  margin: 0;
}

.hcf-text {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-25);
  /* border: 1px dodgerblue solid; */
}

.hcf-text p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--t-black);
  text-align: left;
  line-height: 1.1;
  font-family: var(--pop-font);
}

.hcf-text span {
  width: 85%;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
  text-wrap: wrap;
  line-height: 1.4;
}

/* ------ >>>>>> ========== ABOUT SECTION ========== <<<<<< ------ */
.about {
  width: 100%;
  padding: var(--mb-6) var(--mb-8);
  background-color: var(--white);
}

.a-container {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: var(--mb-4);
}

.a-title {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-1);
}

.a-title span {
  padding: var(--mb-0-5) var(--mb-0-75);
  border-radius: 30px;
  border: 1px var(--t-yellow) solid;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-grey);
}

.a-title h3 {
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
}

.a-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-2);
}

.ac {
  flex: 0 0 31.5%;
  background-color: #f6f7f9;
  border-radius: 25px;
  padding: var(--mb-2);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.ac:last-child {
  flex: 0 0 100%;
}

.ac span {
  padding: var(--mb-0-75);
  border-radius: 50%;
  background-color: var(--t-yellow);
  font-size: 1.5rem;
  margin-top: var(--mb-0-25);
}

.ac h4 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  font-family: var(--pri-font);
  line-height: 1.1;
}

.ac p {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
}

.ac-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.acc {
  flex: 0 0 31%;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23e5e5e5' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  border-radius: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-75);
  padding: var(--mb-1-5);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.acc h5 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  font-family: var(--pri-font);
  line-height: 1.1;
}

.acc p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
}

/* ------ >>>>>> ========== PARTNERSHIP SECTION ========== <<<<<< ------ */
.partnership {
  width: 100%;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/bg-1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pat-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-3);
  padding: var(--mb-6) var(--mb-8);
  background-color: rgba(250, 250, 250, 0.7);
}

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

.pat-title span {
  width: auto;
  padding: var(--mb-0-5) var(--mb-0-75);
  border-radius: 30px;
  border: 1px var(--t-yellow) solid;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-grey);
}

.pat-title h3 {
  font-size: var(--fs-2-5);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.2;
  margin-top: 0.15rem;
}

.pat-title p {
  width: 50%;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: var(--text-grey);
  opacity: 0.8;
}

.pat-wrapper {
  width: 100%;
  /* border: 1px dodgerblue solid; */
  overflow: hidden;
}

/* Keyframes for infinite scroll animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); /* Move left by full width of container */
  }
}

.pat-cards {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-2);
  /* width: 2600px; */
  animation: scroll-left 30s linear infinite; /* Continuous animation */
  /* border: 1px tomato solid; */
}

.patc {
  flex: 0 0 200px;
  height: 100px;
  background-color: #f6f7f9;
  background-color: var(--white);
  border-radius: 10px;
  padding: var(--mb-1-5);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.patc img {
  height: 100%;
  object-fit: contain;
  /* filter: grayscale(20); */
  opacity: 1;
}

/* ------ >>>>>> ========== SOLUTIONS SECTION ========== <<<<<< ------ */
.sl {
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-6) var(--mb-8);
}

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

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

.sl-title span {
  width: auto;
  padding: var(--mb-0-5) var(--mb-0-75);
  border-radius: 30px;
  border: 1px var(--t-yellow) solid;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-grey);
}

.sl-title h3 {
  width: 80%;
  font-size: var(--fs-2-5);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.3;
}

.sl-tags {
  column-gap: var(--mb-1);
  align-items: flex-start;
  margin-top: var(--mb-0-25);
}

.slt {
  flex: 0 0 auto;
  padding: var(--mb-0-5) var(--mb-1);
  border-radius: 30px;
  border: 1px #d4d4d4 solid;
  cursor: pointer;
}

.slt p {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  opacity: 0.8;
}

.slt:hover {
  border: 1px var(--tb-light) solid;
}

.slt.active {
  background-color: var(--t-yellow);
  border: 1px var(--t-yellow) solid;
}

.slt.active p {
  opacity: 1;
  /* color: var(--white); */
}

.sl-cards {
  width: 100%;
  align-items: flex-start;
}

.slc {
  width: 100%;
  justify-content: space-between;
  height: 635px;
  background-color: var(--t-black);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23e5e5e5' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
  border: 1px #a3a3a3 solid;
  border-radius: 30px;
  animation: fadeX 0.6s ease;
  overflow: hidden;
  display: none;
}

.slc:nth-child(2) {
  height: 400px;
}

.slc:nth-child(3) {
  height: 370px;
}

.slc.active {
  display: flex;
}

.slc-data {
  position: relative;
  flex: 0 0 50%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
  padding: var(--mb-2-5);
}

.slc-data span {
  padding: var(--mb-0-5) var(--mb-1-5);
  border-radius: 30px;
  border: 2px var(--t-yellow) solid;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--light-grey);
}

.slc-data h5 {
  font-size: var(--fs-1-5);
  font-weight: 600;
  text-align: left;
  color: var(--white);
  line-height: 1.1;
  margin-top: var(--mb-0-25);
  display: none;
}

.slc-data p {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-white);
  opacity: 0.8;
}

.slc-data button {
  position: absolute;
  bottom: var(--mb-2);
  left: var(--mb-2);
  font-size: 0.9rem;
  padding: var(--mb-0-5) var(--mb-1);
  opacity: 0.8;
}

.slc-img {
  width: 100%;
  height: 100%;
  background-color: var(--the-grey);
  padding: var(--mb-2);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-left: 1px #d4d4d4 solid;
}

.slc-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: var(--the-grey);
  object-fit: cover;
}

.sl-stats {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.sls {
  flex: 0 0 31%;
  border: 1px #a3a3a3 solid;
  padding: var(--mb-1-5);
  border-radius: 20px;
  row-gap: var(--mb-0-25);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23e5e5e5' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.sls > span {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  font-family: var(--pop-font);
  opacity: 0.9;
}

.sls p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  color: var(--t-black);
  opacity: 0.8;
  line-height: 1.4;
}

.sls:hover span {
  opacity: 1;
}

/* ------ >>>>>> ========== TEAM SECTION ========== <<<<<< ------ */
.team {
  width: 100%;
  background-image: url(/assets/img/bckg/bg-1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tm-container {
  width: 100%;
  background-color: rgba(250, 250, 250, 0.5);
  padding: var(--mb-6) var(--mb-8);
  row-gap: var(--mb-4);
}

.tm-title {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-1);
}

.tm-title span {
  padding: var(--mb-0-5) var(--mb-0-75);
  border-radius: 30px;
  border: 1px var(--t-yellow) solid;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-grey);
}

.tm-title h3 {
  width: 80%;
  font-size: var(--fs-2-5);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.3;
  margin-top: var(--mb-0-5);
}

.tm-title p {
  width: 70%;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  /* line-height: 1.3; */
  opacity: 0.8;
}

.tm-cards {
  width: 85%;
  justify-content: space-between;
  align-items: flex-start;
  /* border: 1px red solid; */
}

.tmc {
  flex: 0 0 47%;
  justify-content: flex-start;
  row-gap: var(--mb-2);
  padding: var(--mb-1-5);
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.tmc img {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  object-fit: cover;
}

.tmc:first-child img {
  object-position: 50% 5%;
}

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

.tmc-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  line-height: 1.1;
}

.tmc-text h5 strong {
  font-size: 0.9rem;
  font-weight: 500;
}

.tmc-text p {
  font-size: 0.95rem;
  font-weight: 400;
  font-family: var(--sos-font);
  text-align: left;
}

.tmct {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-0-25);
  margin-top: var(--mb-0-25);
}

.tmct a {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tmct a i {
  font-size: 1.2rem;
  padding: var(--mb-0-5);
  border: 1px #e5e5e5 solid;
  border-radius: 5px;
}

.tmct a i:active {
  border: 1px var(--tb-light) solid;
  background-color: var(--t-black);
  color: var(--white);
}

.tmct a i:hover {
  border: 1px var(--t-yellow) solid;
}

.tm-stats {
  width: 85%;
  justify-content: flex-start;
  row-gap: var(--mb-1-5);
}

.tms-title {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-1);
}

.tms-title span {
  padding: var(--mb-0-5) var(--mb-0-75);
  border-radius: 30px;
  border: 1px var(--t-yellow) solid;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-grey);
}

.tms-title h4 {
  width: 80%;
  font-size: var(--fs-1-5);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.3;
}

/* ------ >>>>>> ========== STATS SECTION ========== <<<<<< ------ */
.stats {
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-6) var(--mb-8);
}

.st-container {
  width: 100%;
  row-gap: var(--mb-4);
}

.st-title {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-1);
}

.st-title span {
  padding: var(--mb-0-5) var(--mb-0-75);
  border-radius: 30px;
  border: 1px var(--t-yellow) solid;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-grey);
}

.st-title h3 {
  width: 80%;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.3;
  margin-top: var(--mb-0-5);
}

.st-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.stc {
  flex: 0 0 31%;
  background-color: var(--the-grey);
  border-radius: 15px;
  padding: var(--mb-1-5);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.stc p {
  font-size: var(--fs-2);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
}

.stc span {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  opacity: 0.7;
  color: var(--text-grey);
}

.st-container .sec-btn {
  font-size: var(--fs-1);
}

/* ------ >>>>>> ========== DOWNLOAD SECTION ========== <<<<<< ------ */
.dl {
  width: 100%;
  /* background-image: url(/assets/img/bckg/bg-1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  background-color: var(--t-black);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23e5e5e5' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.dl-container {
  width: 100%;
  /* background-color: rgba(250, 250, 250, 0.5); */
  padding: var(--mb-8);
}

.dl-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-6) var(--mb-2);
  border-radius: 30px;
  justify-content: flex-start;
  row-gap: 1.3rem;
  overflow: hidden;
}

.dl-wrapper h3 {
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.3;
}

.dl-wrapper p {
  width: 60%;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  color: var(--text-grey);
  opacity: 0.9;
  line-height: 1.4;
}

.dl-actions {
  width: 100%;
  column-gap: var(--mb-1);
  margin-top: var(--mb-0-75);
}

.dl-actions button {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--mb-0-5);
}

.dl-actions button i {
  font-size: 1.3rem;
  transform: translateY(1px);
}

.dl-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  /* border: 1px red solid; */
  align-items: flex-end;
}

.dl-img img {
  width: 100%;
  height: 435px;
  object-fit: contain;
}

/* ------ >>>>>> ========== FAQ SECTION ========== <<<<<< ------ */
.faq {
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-8);
}

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

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

.fq-title span {
  padding: var(--mb-0-5) var(--mb-1);
  border-radius: 30px;
  border: 1px var(--t-yellow) solid;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-grey);
}

.fq-title h3 {
  font-size: var(--fs-2-5);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.3;
}

.fq-title p {
  width: 50%;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  /* line-height: 1.3; */
  opacity: 0.8;
  margin-top: -0.5rem;
}

.fq-cards {
  width: 80%;
  /* border: 1px teal solid; */
  padding: var(--mb-0-5) var(--mb-2);
  border-radius: 20px;
  justify-content: flex-start;
  background-color: var(--the-grey);
}

.fqc {
  width: 100%;
  padding: 1.25rem 0;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
  border-top: 1px #e5e5e5 solid;
  cursor: pointer;
}

.fqc:first-child {
  border-top: unset;
}

/* .fqc:last-child {
  border-bottom: unset;
} */

.fqc-que {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  /* border: 1px dodgerblue solid; */
}

.fqc-que h5 {
  flex: 0 0 80%;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  /* font-family: var(--sos-font); */
  /* opacity: 0.8; */
}

.fqc-que span {
  font-size: 1.3rem;
  color: var(--t-green);
  font-weight: 600;
  opacity: 0.8;
}

.fqc:hover .fqc-que span {
  rotate: 45deg;
  color: var(--t-yellow);
  opacity: 1;
}

.fqc-ans {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
  animation: fadeY 0.3s ease-in-out;
  display: none;
}

.fqc-ans p {
  width: 85%;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
}

.fqc:hover .fqc-ans {
  display: flex;
}

.fq-info {
  width: 50%;
  row-gap: var(--mb-0-75);
  /* border: 1px dodgerblue solid; */
}

.fq-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.1;
}

.fq-info p {
  width: 60%;
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  color: var(--text-grey);
  opacity: 0.8;
}

.fqi {
  width: 60%;
  justify-content: space-between;
  background-color: var(--the-grey);
  border-radius: 8px;
  padding: var(--mb-0-5) var(--mb-0-75);
  cursor: pointer;
}

.fqi span {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
}

.fqi-copy {
  flex: 0 0 auto;
  padding: var(--mb-0-5);
  background-color: var(--white);
  column-gap: var(--mb-0-5);
  border-radius: 8px;
}

.fqi-copy p {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
}

.fqi-copy span {
  font-size: 0.8rem;
  color: var(--t-black);
}

.fqi-copy:hover {
  background-color: var(--ty-light);
}

.fqi-copy:active {
  background-color: var(--t-black);
}

.fqi-copy:active p {
  color: var(--white);
}

.fqi-copy:active span {
  color: var(--t-yellow);
}

/* ------ >>>>>> ========== MAIN WRAPPER (Conseil FINANCIER PAGE) ========== <<<<<< ------ */
.cf-main {
  width: 100%;
  overflow: hidden;
}

/* ------ >>>>>> ========== FERO SECTION ========== <<<<<< ------ */
.fero {
  width: 100%;
  height: 100dvh;
  background-image: url(/assets/img/bckg/bg-1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fe-container {
  width: 100%;
  height: 100%;
  padding: var(--mb-2) var(--mb-4);
  padding-top: var(--mb-6-5);
  background-color: rgba(250, 250, 250, 0.3);
  justify-content: space-between;
  /* border: 1px lime solid; */
}

.fe-media {
  position: relative;
  width: 100%;
  height: 68%;
  /* border: 3px var(--t-black) solid; */
  overflow: hidden;
  border-radius: 30px;
}

.fe-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
}

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

.fem span {
  padding: 0 var(--mb-0-75);
  background-color: var(--t-yellow);
  color: var(--t-black);
  font-weight: 2.8rem;
  line-height: 1.2;
  border-radius: 10px;
}

.fem h1 {
  width: 70%;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.3;
  color: var(--white);
  /* color: var(--t-black); */
}

.fe-content {
  width: 100%;
  height: 28%;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23e5e5e5' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: var(--mb-2);
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 20px;
}

.fe-content p {
  flex: 0 0 58%;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  opacity: 0.9;
}

/* ------ >>>>>> ========== FIO SECTION (F-BIO) ========== <<<<<< ------ */
.fio {
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-6) var(--mb-4);
}

.fi-container {
  width: 100%;
  background-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23e5e5e5' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--mb-3);
  row-gap: var(--mb-6);
}

.fi-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.fi-title h3 {
  flex: 0 0 50%;
  font-size: var(--fs-1-5);
  font-weight: 500;
  text-align: left;
  color: var(--white);
  line-height: 1.2;
}

.fit {
  flex: 0 0 42%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.fit p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--light-grey);
  opacity: 0.9;
}

.fit button {
  font-weight: 500;
  opacity: 0.9;
}

.fit button:hover {
  opacity: 1;
}

.fi-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  /* border: 1px gold solid; */
  overflow: hidden;
}

.fic {
  flex: 0 0 38%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1.25rem;
  padding: var(--mb-1-5);
  padding-right: var(--mb-6);
  /* border: 1px dodgerblue solid; */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.fic:first-child {
  height: 325px;
  background-color: #525252;
}

.fic:nth-child(2) {
  height: 450px;
  margin-left: -6rem;
  background-color: var(--white);
}

.fic:nth-child(3) {
  flex: 0 0 35%;
  height: 250px;
  margin-left: -6rem;
  padding-right: var(--mb-4);
  background-color: #e5e5e5;
}

.fic p {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  opacity: 0.9;
}

.fic span {
  width: 20%;
  height: 4px;
  border-radius: 20px;
  background-color: var(--t-black);
}

.fic h4 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  line-height: 1.3;
}

.fic:first-child p {
  color: var(--light-grey);
}

.fic:first-child span {
  background-color: var(--white);
}

.fic:first-child h4 {
  color: var(--white);
}

.fic:nth-child(3) > * {
  opacity: 0.75;
}

/* ------ >>>>>> ========== SERVICES SECTION ========== <<<<<< ------ */
.services {
  width: 100%;
  background-image: url(/assets/img/bckg/bg-1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ser-container {
  width: 100%;
  padding: var(--mb-6);
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-4);
  background-color: rgba(250, 250, 250, 0.5);
  overflow: hidden;
}

.ser-title {
  width: 100%;
  flex: 0 0 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
  /* border: 1px teal solid; */
}

.ser-title h3 {
  width: 65%;
  font-size: var(--fs-2-5);
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  line-height: 1.2;
}

.ser-title p {
  width: 55%;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
}

.ser-title button {
  font-size: 0.9rem;
}

.ser-list {
  flex: 0 0 47%;
  height: 554px;
  background-color: var(--white);
  border-radius: 20px;
  padding: var(--mb-2);
  row-gap: var(--mb-2);
  justify-content: flex-start;
  align-items: flex-start;
}

.serl {
  width: 100%;
  padding-left: var(--mb-1-5);
  row-gap: var(--mb-0-5);
  align-items: flex-start;
  border-left: 3px var(--t-yellow) solid;
}

.serl h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  line-height: 1.2;
}

.serl p {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.9;
}

.ser-img {
  flex: 0 0 47%;
  height: 554px;
  overflow: hidden;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 20px;
}

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

/* ------ >>>>>> ========== TESTIMONIALS SECTION ========== <<<<<< ------ */
.testimonials {
  width: 100%;
  background-color: var(--white);
}

.te-container {
  width: 100%;
  align-items: flex-start;
  padding: var(--mb-8);
}

.te-wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-4);
  background-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23e5e5e5' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  /* border: 1px gold solid; */
  overflow: hidden;
  border-radius: 30px;
}

.te-content {
  flex: 0 0 50%;
  height: 624px;
  padding: var(--mb-3);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-3);
  background: transparent;
  /* border: 1px dodgerblue solid; */
  overflow: hidden;
}

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

.tec h3 {
  font-size: var(--fs-2);
  font-weight: 600;
  text-align: left;
  color: var(--white);
  line-height: 1.3;
  opacity: 0.95;
}

.tec p {
  width: 90%;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--light-grey);
  opacity: 0.8;
}

.te-content img {
  width: 100%;
  height: 250px;
  background-color: var(--white);
  overflow: hidden;
  object-fit: cover;
  border-radius: 15px;
}

.tec-actions {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  /* border: 1px teal solid; */
  padding-bottom: var(--mb-1);
  border-bottom: 1px #e5e5e5 solid;
}

.tec-actions p {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-5);
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  opacity: 0.9;
}

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

.tec-tags {
  flex: 0 0 auto;
  justify-content: flex-start;
  column-gap: var(--mb-0-75);
}

.tect {
  width: 20px;
  height: 20px;
  border: 2px var(--white) solid;
  border-radius: 50%;
  transition: all 0.2s ease-in-out !important;
  cursor: pointer;
}

.tect:hover {
  border: 2px var(--t-yellow) solid;
}

.tect.active {
  background-color: var(--t-yellow);
  border: 2px var(--t-yellow) solid;
  width: 40px;
  border-radius: 30px;
}

.tect.active:hover {
  border: 2px var(--t-yellow) solid;
}

.te-data {
  flex: 0 0 50%;
  height: 624px;
  padding: var(--mb-4);
  background-color: var(--the-grey);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.ted {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  /* border: 1px teal solid; */
  animation: fadeX 0.3s ease-in-out;
  display: none;
}

.ted.active {
  display: flex;
}

.ted h5 {
  width: 100%;
  padding: var(--mb-1-5);
  background-color: var(--white);
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.ted p {
  padding: var(--mb-0-5) var(--mb-1);
  border-radius: 30px;
  border: 2px var(--t-yellow) solid;
  font-size: var(--fs-1);
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
}

/* ------ >>>>>> ========== PRICING SECTION ========== <<<<<< ------ */
.pricing {
  width: 100%;
  background-image: url(/assets/img/bckg/bg-1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pr-container {
  width: 100%;
  background-color: rgba(250, 250, 250, 0.5);
  overflow: hidden;
  row-gap: var(--mb-4);
  padding: var(--mb-6);
  justify-content: flex-start;
  align-items: flex-start;
}

.pr-title {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  /* border: 1px teal solid; */
}

.pr-title h3 {
  width: 70%;
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  line-height: 1.4;
}

.pr-title h3 span {
  padding: 0.15rem var(--mb-0-75);
  background-color: var(--t-yellow);
  color: var(--t-black);
  font-size: 2.8rem;
  line-height: 1.2;
  border-radius: 10px;
}

.pr-title p {
  width: 50%;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
}

.pr-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-2);
  /* border: 1px teal solid; */
  overflow: hidden;
}

.prc {
  flex: 0 0 31%;
  border: 2px #a3a3a3 solid;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--white);
  overflow: hidden;
}

.prc-head,
.prc-body {
  width: 100%;
  padding: var(--mb-1-5);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
  border-bottom: 2px #e5e5e5 solid;
  background: transparent;
}

.prc-head {
  position: relative;
  row-gap: var(--mb-0-5);
}

.prc-head strong {
  position: absolute;
  top: var(--mb-1-5);
  right: var(--mb-1-5);
  padding: var(--mb-0-25) var(--mb-0-5);
  border-radius: 5px;
  background-color: var(--t-black);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  opacity: 0.9;
}

.prc-head label {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  color: var(--t-black);
  opacity: 0.9;
  padding: var(--mb-0-25) var(--mb-0-5);
  border: 2px var(--t-green) solid;
  border-radius: 5px;
  margin-bottom: var(--mb-1);
}

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

.prch h4 {
  font-size: 1.35rem;
  font-weight: 700;
  text-align: left;
  color: var(--t-black);
  line-height: 1.2;
}

.prch span {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
  transform: translateY(-1px);
}

.prc-head p {
  font-size: 0.85rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
  line-height: 1.3;
  margin-top: var(--mb-0-5);
}

.prc-head button {
  width: 100%;
  margin-top: var(--mb-0-5);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
}

.prc-body {
  row-gap: unset;
  border: none;
}

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

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

.pb-li span {
  font-size: 0.9rem;
  color: var(--t-yellow);
  transform: translateY(1px);
}

.pb-li p {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
  line-height: 1.2;
}

.prc.active .prc-head {
  background-color: var(--the-grey);
}

/* ------ >>>>>> ========== MAIN WRAPPER (DRASSY APP PAGE) ========== <<<<<< ------ */
.da-main {
  width: 100%;
  overflow: hidden;
}

/* ------ >>>>>> ========== DERO SECTION ========== <<<<<< ------ */
.dero {
  width: 100%;
  height: 100dvh;
  background-image: url(/assets/img/bckg/bg-1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.de-container {
  width: 100%;
  height: 100%;
  padding: var(--mb-3) var(--mb-4);
  padding-top: var(--mb-7);
  justify-content: space-between;
  background-color: rgba(250, 250, 250, 0.3);
}

.de-container > div {
  flex: 0 0 48%;
  border-radius: 20px;
}

.de-content {
  /* flex: 0 0 47%; */
  height: 100%;
  /* border: 1px hotpink solid; */
  padding: var(--mb-3) var(--mb-2);
  background-color: var(--white);
  justify-content: space-between;
  align-items: flex-start;
}

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

.dec h1 {
  font-size: var(--fs-2);
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  line-height: 1.35;
}

.dec h1 strong {
  font-weight: 600;
  color: var(--t-yellow);
}

.dec p {
  width: 90%;
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.9;
}

.dec button {
  margin-top: var(--mb-0-5);
  padding: var(--mb-0-75) var(--mb-1-5);
  font-size: 0.9rem;
  font-weight: 500;
}

.dec-stats {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-2);
}

.decs {
  flex: 0 0 28%;
  justify-content: flex-start;
  align-items: flex-start;
  /* border: 1px teal solid; */
}

.decs p {
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
}

.decs span {
  font-size: 0.7rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
  line-height: 1.4;
}

.de-media {
  /* flex: 0 0 47%; */
  height: 100%;
  /* border: 1px teal solid; */
  overflow: hidden;
}

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

/* ------ >>>>>> ========== DIO SECTION ========== <<<<<< ------ */
.dio {
  width: 100%;
  background-color: var(--white);
}

.di-container {
  width: 100%;
  padding: var(--mb-6);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-4);
}

.di-title,
.di-why {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.di-title span {
  padding: var(--mb-0-5) var(--mb-1);
  border-radius: 30px;
  border: 1px var(--t-yellow) solid;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-grey);
}

.di-title h3 {
  width: 100%;
  /* margin: 0 var(--mb-2); */
  font-size: var(--fs-2);
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  line-height: 1.4;
}

.di-why {
  padding: var(--mb-3);
  background-color: var(--the-grey);
  border-radius: 20px;
  row-gap: var(--mb-3);
}

.di-why h4 {
  width: 100%;
  font-size: var(--fs-2);
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  padding-bottom: var(--mb-2);
  border-bottom: 1px #e5e5e5 solid;
}

.diw-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-2);
}

.diwc {
  flex: 0 0 47%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  padding: var(--mb-2);
  border-radius: 15px;
  background-color: var(--white);
}

.diw-cards span {
  padding: var(--mb-0-75);
  border-radius: 50%;
  background-color: var(--t-yellow);
  font-size: 1.5rem;
  margin-top: var(--mb-0-25);
}

.diwc h5 {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  opacity: 0.9;
  line-height: 1.3;
}

.diwc p {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.9;
}

.da-main .partnership {
  background: unset;
  background-color: var(--the-grey);
}

/* ------ >>>>>> ========== DEY SECTION (KEY FEATURES) ========== <<<<<< ------ */
.dey {
  width: 100%;
  background-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%232ec4b6' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.dy-container {
  width: 100%;
  padding: var(--mb-6);
  justify-content: flex-start;
  /* align-items: flex-start; */
  row-gap: var(--mb-6);
}

.dy-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  /* border: 1px teal solid; */
}

.dy-title h3 {
  flex: 0 0 35%;
  font-size: var(--fs-2-5);
  text-align: left;
  color: var(--white);
  line-height: 1.3;
}

.dy-title p {
  flex: 0 0 30%;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--light-grey);
  margin-top: var(--mb-0-25);
}

.dy-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-4);
  /* padding: var(--mb-4) 0;
  border-top: 1px #e5e5e5 solid; */
  /* border-bottom: 1px #f4f4f4 solid; */
}

.dyc {
  flex: 0 0 31%;
  height: 245px;
  padding: var(--mb-2);
  justify-content: space-between;
  align-items: flex-start;
  /* row-gap: var(--mb-2); */
  border: 1px #e5e5e5 solid;
  border-radius: 15px;
}

.dyc h5 {
  width: 60%;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: left;
  color: var(--white);
  line-height: 1.5;
}

.dyc p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--light-grey);
  opacity: 0.9;
}

.dy-actions {
  width: 100%;
  justify-content: space-between;
  padding: var(--mb-0-75) var(--mb-1);
  padding-left: var(--mb-1-5);
  border: 1px #e5e5e5 solid;
  border-radius: 40px;
}

.dy-actions p {
  flex: 0 0 60%;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--light-grey);
}

/* ------ >>>>>> ========== MAIN WRAPPER (Drassy PAGE) ========== <<<<<< ------ */
.dg-main {
  width: 100%;
  overflow: hidden;
}

/* ------ >>>>>> ========== GERO SECTION ========== <<<<<< ------ */
.gero {
  width: 100%;
  height: 100dvh;
  padding: var(--mb-2) var(--mb-4);
  padding-top: var(--mb-6-5);
}

.ge-container {
  position: relative;
  width: 100%;
  height: 100%;
  /* border: 1px dodgerblue solid; */
  border-radius: 30px;
  overflow: hidden;
}

.ge-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ge-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ge-data {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: var(--mb-4);
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.7);
}

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

.ged h1 {
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: left;
  color: var(--white);
  line-height: 1.3;
}

.ge-data p {
  width: 50%;
  font-size: var(--fs-1);
  font-weight: 500;
  text-align: left;
  color: var(--light-grey);
}

/* ------ >>>>>> ========== GIO SECTION ========== <<<<<< ------ */
.gio {
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-6);
}

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

.gi-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--mb-4) 0;
  border-top: 1px #e5e5e5 solid;
  border-bottom: 1px #e5e5e5 solid;
}

.gi-title h3 {
  flex: 0 0 70%;
  font-size: var(--fs-2);
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  line-height: 1.4;
}

/* .gi-title button {
} */

.gi-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: var(--mb-4);
  flex-wrap: wrap;
}

.gic-title {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}

.gic-title h4 {
  padding: var(--mb-0-5) var(--mb-1);
  border-radius: 30px;
  border: 1px var(--t-yellow) solid;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-grey);
}

.gic {
  flex: 0 0 31%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  padding: var(--mb-2);
  border-radius: 20px;
  background-color: var(--the-grey);
}

.gic img {
  width: 60px;
  height: 60px;
  padding: var(--mb-0-75);
  background-color: var(--white);
  border-radius: 10px;
  object-fit: cover;
}

.gic h5 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  line-height: 1.1;
  margin-top: var(--mb-0-5);
}

.gic p {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
}

/* ------ >>>>>> ========== GOW SECTION ========== <<<<<< ------ */
.gow {
  width: 100%;
  background-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23e5e5e5' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: var(--mb-6);
}

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

.go-title {
  position: relative;
  flex: 0 0 45%;
  height: 600px;
  /* border: 1px dodgerblue solid; */
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 20px;
  overflow: hidden;
}

.got-img {
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  /* border: 1px tomato solid; */
}

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

.got-content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: var(--mb-2);
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.65);
}

.got-content h3 {
  font-size: var(--fs-2);
  font-weight: 500;
  text-align: left;
  color: var(--white);
}

.go-list {
  position: relative;
  flex: 0 0 47%;
  height: 600px;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-4);
  padding: var(--mb-1) 0;
}

.gol {
  width: 100%;
  padding-left: var(--mb-1-5);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-75);
  border-left: 3px var(--t-yellow) solid;
}

.gol h5 {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  line-height: 1.1;
}

.gol p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--light-grey);
}

.gol-action {
  position: absolute;
  bottom: var(--mb-1);
  left: 0;
  width: 100%;
  justify-content: space-between;
  border: 1px var(--white) solid;
  border-radius: 40px;
  padding: var(--mb-1) var(--mb-1-5);
}

.gol-action p {
  flex: 0 0 70%;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
}

.gol-action button {
  flex: 0 0 auto;
  width: auto;
  font-size: 0.8rem;
  font-weight: 500;
}

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

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

  .h-container {
    width: 100%;
    height: auto;
    padding: var(--mb-3) var(--mb-1-5);
    padding-top: var(--mb-4);
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-2);
    background-color: rgba(250, 250, 250, 0.3);
  }

  .h-media {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    /* border: 1px teal solid; */
  }

  .h-media img {
    width: 100%;
    height: 400px;
    object-fit: contain;
  }

  .h-content {
    flex: 0 0 auto;
    width: 100%;
    row-gap: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    /* border: 1px orangered solid; */
  }

  .hc-text {
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .hc-text h1 {
    font-size: 2rem;
    text-align: center;
    font-family: var(--pop-font);
    line-height: 1.3;
  }

  .hc-text p {
    font-size: 1rem;
    text-align: center;
    opacity: 0.8;
  }

  .hc-actions {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    column-gap: unset;
    row-gap: var(--mb-0-75);
  }

  .hc-actions button {
    font-size: 0.9rem;
  }

  .hc-facts {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    column-gap: unset;
    row-gap: var(--mb-1);
    margin-top: var(--mb-1);
  }

  .hcf-img {
    flex: 0 0 auto;
    justify-content: center;
  }

  .hcfi {
    width: 40px;
    height: 40px;
    margin-left: -10px;
  }

  .hcfi:first-child {
    margin: 0;
  }

  .hcf-text {
    align-items: center;
    row-gap: var(--mb-0-25);
    /* border: 1px dodgerblue solid; */
  }

  .hcf-text p {
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.1;
  }

  .hcf-text span {
    width: 90%;
    font-size: 0.75rem;
    text-align: center;
    text-wrap: wrap;
    line-height: 1.4;
  }

  /* ------ >>>>>> ========== ABOUT SECTION ========== <<<<<< ------ */
  .about {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
  }

  .a-container {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: var(--mb-3);
  }

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

  .a-title span {
    padding: var(--mb-0-5) var(--mb-0-75);
    font-size: 0.8rem;
  }

  .a-title h3 {
    width: 90%;
    font-size: var(--fs-2);
    font-weight: 600;
    line-height: 1.2;
  }

  .a-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .ac {
    flex: 0 0 auto;
    width: 85%;
    border-radius: 20px;
    padding: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .ac:last-child {
    flex: 0 0 100%;
  }

  .ac span {
    padding: var(--mb-0-75);
    font-size: 1.3rem;
    margin-top: var(--mb-0-25);
  }

  .ac h4 {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
  }

  .ac p {
    font-size: 0.95rem;
    text-align: center;
  }

  .ac-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .acc {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 15px;
    align-items: center;
    row-gap: var(--mb-0-5);
    padding: var(--mb-1-5);
  }

  .acc h5 {
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.1;
  }

  .acc p {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.8;
  }

  /* ------ >>>>>> ========== PARTNERSHIP SECTION ========== <<<<<< ------ */
  .partnership {
    width: 100%;
    background-color: var(--white);
  }

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

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

  .pat-title span {
    font-size: 0.8rem;
  }

  .pat-title h3 {
    font-size: var(--fs-2);
    text-align: center;
    margin-top: 0.15rem;
  }

  .pat-title p {
    width: 90%;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    color: var(--text-grey);
    opacity: 0.8;
    margin-top: -0.25rem;
  }

  .pat-wrapper {
    width: 100%;
    /* border: 1px dodgerblue solid; */
    overflow: hidden;
  }

  .pat-cards {
    width: auto;
    row-gap: var(--mb-2);
    animation: scroll-left 20s linear infinite;
    /* border: 1px teal solid; */
  }

  .patc {
    flex: 0 0 150px;
    padding: var(--mb-0-75);
  }

  /* ------ >>>>>> ========== SOLUTIONS SECTION ========== <<<<<< ------ */
  .sl {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-4) var(--mb-1-5);
  }

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

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

  .sl-title span {
    padding: var(--mb-0-5) var(--mb-0-75);
    font-size: 0.8rem;
  }

  .sl-title h3 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .sl-tags {
    column-gap: unset;
    row-gap: var(--mb-0-75);
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: var(--mb-0-25);
  }

  .slt {
    flex: 0 0 auto;
    padding: var(--mb-0-5) var(--mb-1);
  }

  .slt p {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
  }

  .slt.active p {
    opacity: 1;
    /* color: var(--white); */
  }

  .sl-cards {
    width: 100%;
    align-items: flex-start;
  }

  .slc {
    width: 100%;
    justify-content: space-between;
    height: auto;
    animation: fadeX 0.6s ease;
    overflow: hidden;
    display: none;
  }

  .slc.active {
    display: flex;
  }

  .slc-data {
    position: relative;
    flex: 0 0 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
    padding: var(--mb-2);
  }

  .slc-data span {
    padding: var(--mb-0-5) var(--mb-0-75);
    font-size: 0.75rem;
  }

  .slc-data h5 {
    font-size: 1.3rem;
    text-align: center;
    margin-top: var(--mb-0-25);
  }

  .slc-data p {
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.8;
  }

  .slc-data button {
    position: unset;
    bottom: unset;
    left: unset;
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .slc-img {
    display: none;
  }

  .sl-stats {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .sls {
    flex: 0 0 auto;
    width: 80%;
    border: 1px #a3a3a3 solid;
    padding: var(--mb-1-5);
    border-radius: 20px;
    row-gap: var(--mb-0-25);
  }

  .sls > span {
    font-size: 1.3rem;
    opacity: 0.9;
  }

  .sls p {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.4;
  }

  /* ------ >>>>>> ========== TEAM SECTION ========== <<<<<< ------ */
  .team {
    width: 100%;
  }

  .tm-container {
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-4);
  }

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

  .tm-title span {
    font-size: 0.8rem;
  }

  .tm-title h3 {
    width: 100%;
    font-size: var(--fs-2);
    margin-top: var(--mb-0-5);
  }

  .tm-title p {
    width: 90%;
    font-size: 0.9rem;
    /* line-height: 1.3; */
    opacity: 0.8;
  }

  .tm-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    /* border: 1px red solid; */
  }

  .tmc {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-2);
    padding: var(--mb-1-5);
  }

  .tmc img {
    width: 100%;
    height: 250px;
  }

  .tmc:first-child img {
    object-position: 50% 5%;
  }

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

  .tmc-text h5 {
    font-size: 1.1rem;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-0-25);
  }

  .tmc-text h5 strong {
    font-size: 0.8rem;
    font-weight: 500;
  }

  .tmc-text p {
    font-size: 0.85rem;
    font-weight: 400;
    font-family: var(--sos-font);
    text-align: center;
  }

  .tmct {
    width: 100%;
    justify-content: center;
    column-gap: var(--mb-0-5);
    margin-top: var(--mb-0-25);
  }

  .tmct a {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tmct a i {
    font-size: 1rem;
    border-radius: 5px;
  }

  /* ------ >>>>>> ========== STATS SECTION ========== <<<<<< ------ */
  .stats {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
  }

  .st-container {
    width: 100%;
    row-gap: var(--mb-3);
  }

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

  .st-title span {
    font-size: 0.8rem;
  }

  .st-title h3 {
    width: 100%;
    font-size: 1.5rem;
    margin-top: var(--mb-0-5);
    line-height: 1.5;
  }

  .st-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .stc {
    flex: 0 0 auto;
    width: 80%;
    padding: 1.75rem;
  }

  .stc p {
    font-size: var(--fs-1-5);
  }

  .stc span {
    font-size: 0.9rem;
  }

  .st-container button {
    font-size: 0.95rem;
    padding: var(--mb-1) var(--mb-1-5);
  }

  /* ------ >>>>>> ========== DOWNLOAD SECTION ========== <<<<<< ------ */
  .dl {
    width: 100%;
  }

  .dl-container {
    width: 100%;
    padding: var(--mb-3) var(--mb-1-5);
  }

  .dl-wrapper {
    position: relative;
    padding: var(--mb-3) var(--mb-2);
    row-gap: 1.3rem;
    overflow: hidden;
  }

  .dl-wrapper h3 {
    font-size: var(--fs-2);
    line-height: 1.2;
  }

  .dl-wrapper p {
    width: 100%;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
  }

  .dl-actions {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    column-gap: unset;
    row-gap: var(--mb-1);
    margin-top: var(--mb-0-75);
  }

  .dl-actions button {
    font-size: 0.9rem;
  }

  .dl-actions button i {
    font-size: 1.2rem;
    transform: translateY(1px);
  }

  .dl-img {
    align-items: flex-end;
  }

  .dl-img img {
    width: 100%;
    height: 135px;
    object-fit: contain;
  }

  /* ------ >>>>>> ========== FAQ SECTION ========== <<<<<< ------ */
  .faq {
    padding: var(--mb-4) var(--mb-1-5);
  }

  .fq-container {
    row-gap: var(--mb-3);
  }

  .fq-title {
    width: 100%;
    row-gap: var(--mb-1-5);
  }

  .fq-title span {
    padding: var(--mb-0-5) var(--mb-1);
    font-size: 0.8rem;
  }

  .fq-title h3 {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .fq-title p {
    width: 90%;
    font-size: 0.85rem;
    /* line-height: 1.3; */
    opacity: 0.8;
    margin-top: -0.25rem;
  }

  .fq-cards {
    width: 100%;
    padding: var(--mb-0-5) var(--mb-1-5);
    border-radius: 20px;
  }

  .fqc {
    padding: 1.25rem 0;
    row-gap: var(--mb-0-5);
    cursor: pointer;
  }

  .fqc:first-child {
    border-top: unset;
  }

  /* .fqc:last-child {
  border-bottom: unset;
} */

  .fqc-que {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
  }

  .fqc-que h5 {
    flex: 0 0 85%;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .fqc-que span {
    font-size: 1.1rem;
    transform: translateY(2px);
  }

  .fqc:hover .fqc-que span {
    rotate: 45deg;
    color: var(--t-yellow);
    opacity: 1;
  }

  .fqc-ans {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-0-5);
    animation: fadeY 0.3s ease-in-out;
    display: none;
  }

  .fqc-ans p {
    width: 95%;
    font-size: 0.8rem;
  }

  .fq-info {
    width: 100%;
    row-gap: var(--mb-0-75);
    /* border: 1px dodgerblue solid; */
  }

  .fq-info h4 {
    font-size: 0.9rem;
    line-height: 1;
  }

  .fq-info p {
    width: 75%;
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.3;
    margin-top: -0.15rem;
  }

  .fqi {
    width: 80%;
    justify-content: space-between;
    background-color: var(--the-grey);
    border-radius: 8px;
    padding: var(--mb-0-5) var(--mb-0-75);
  }

  .fqi span {
    font-size: 0.75rem;
    text-align: left;
  }

  .fqi-copy {
    flex: 0 0 auto;
  }

  .fqi-copy p {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    color: var(--t-black);
  }

  .fqi-copy span {
    font-size: 0.7rem;
    color: var(--t-black);
  }

  /* ------ >>>>>> ========== MAIN WRAPPER (Conseil FINANCIER PAGE) ========== <<<<<< ------ */
  .cf-main {
    width: 100%;
    overflow: hidden;
  }

  /* ------ >>>>>> ========== FERO SECTION ========== <<<<<< ------ */
  .fero {
    width: 100%;
    height: auto;
  }

  .fe-container {
    width: 100%;
    height: auto;
    padding: var(--mb-2) var(--mb-1-5);
    padding-top: var(--mb-4-5);
    row-gap: var(--mb-2);
  }

  .fe-media {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
  }

  .fe-media video {
    object-position: 20% 80%;
  }

  .fem {
    position: absolute;
    padding: var(--mb-1-5);
    z-index: 2;
  }

  .fem span {
    padding: 0 var(--mb-0-75);
    font-weight: 1.8rem;
    line-height: 1.2;
    border-radius: 10px;
  }

  .fem h1 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .fe-content {
    height: auto;
    padding: var(--mb-1-5);
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .fe-content p {
    flex: 0 0 auto;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
  }

  .fe-content button {
    width: 100%;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  /* ------ >>>>>> ========== FIO SECTION (F-BIO) ========== <<<<<< ------ */
  .fio {
    padding: var(--mb-4) var(--mb-1-5);
  }

  .fi-container {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--mb-2-5) var(--mb-2);
    row-gap: var(--mb-3);
  }

  .fi-title {
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1);
  }

  .fi-title h3 {
    flex: 0 0 auto;
    width: 100%;
    font-size: var(--fs-1-5);
    line-height: 1.4;
  }

  .fit {
    flex: 0 0 auto;
    width: 100%;
    row-gap: var(--mb-1-5);
  }

  .fit p {
    width: 100%;
    font-size: 0.85rem;
    opacity: 0.9;
  }

  .fit button {
    width: 100%;
    font-weight: 500;
    opacity: 0.9;
    font-size: 0.85rem;
    padding: var(--mb-0-75) var(--mb-1);
  }

  .fit button:hover {
    opacity: 1;
  }

  .fi-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    /* border: 1px gold solid; */
    overflow: hidden;
  }

  .fic {
    flex: 0 0 auto;
    width: 100%;
    row-gap: 1.5rem;
    padding: 0;
    padding: var(--mb-1-5);
    /* border: 1px dodgerblue solid; */
    border-top-left-radius: unset;
    border-top-right-radius: unset;
    border-radius: 10px;
  }

  .fic:first-child {
    height: auto;
    background-color: #525252;
  }

  .fic:nth-child(2) {
    height: auto;
    margin: 0;
    background-color: var(--white);
  }

  .fic:nth-child(3) {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    padding: var(--mb-1-5);
    background-color: #e5e5e5;
  }

  .fic p {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
  }

  .fic span {
    width: 20%;
    height: 4px;
    border-radius: 20px;
    background-color: var(--t-black);
  }

  .fic h4 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

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

  .ser-container {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    row-gap: var(--mb-3);
  }

  .ser-title {
    width: 100%;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-1-5);
    /* border: 1px teal solid; */
    order: 1;
  }

  .ser-title h3 {
    width: 100%;
    font-size: var(--fs-1-5);
    line-height: 1.3;
  }

  .ser-title p {
    width: 100%;
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .ser-title button {
    /* width: 100%; */
    font-size: 0.85rem;
    font-weight: 500;
  }

  .ser-list {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    border-spacing: 15px;
    order: 3;
  }

  .serl {
    width: 100%;
    padding-left: var(--mb-1-5);
  }

  .serl h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .serl p {
    font-size: 0.85rem;
    opacity: 0.8;
  }

  .ser-img {
    flex: 0 0 auto;
    width: 100%;
    height: 400px;
    overflow: hidden;
    order: 2;
    border-radius: 15px;
  }

  /* ------ >>>>>> ========== TESTIMONIALS SECTION ========== <<<<<< ------ */
  .testimonials {
    width: 100%;
    background-color: var(--white);
  }

  .te-container {
    width: 100%;
    align-items: flex-start;
    padding: var(--mb-4) var(--mb-1-5);
  }

  .te-wrapper {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: unset;
    border-radius: 20px;
  }

  .te-content {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    padding: var(--mb-2);
    row-gap: var(--mb-2);
  }

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

  .tec h3 {
    font-size: 1.6rem;
    line-height: 1.3;
    opacity: 0.95;
  }

  .tec p {
    width: 100%;
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .te-content img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
  }

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

  .tec-actions p {
    flex: 0 0 auto;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    color: var(--white);
    opacity: 0.9;
  }

  .tec-actions p span {
    display: none;
  }

  .tec-tags {
    flex: 0 0 auto;
    justify-content: flex-start;
    column-gap: var(--mb-0-5);
  }

  .tect {
    width: 18px;
    height: 18px;
  }

  .tect.active {
    width: 35px;
  }

  .te-data {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    padding: var(--mb-2);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: unset;
  }

  .ted {
    width: 100%;
    row-gap: var(--mb-1-5);
    animation: fadeY 0.3s ease-in-out;

    display: none;
  }

  .ted.active {
    display: flex;
  }

  .ted h5 {
    width: 100%;
    padding: var(--mb-1-5);
    background-color: var(--white);
    border-radius: 15px;
    font-size: 1.1rem;
  }

  .ted p {
    padding: var(--mb-0-25) var(--mb-0-75);
    border-radius: 30px;
    border: 2px var(--t-yellow) solid;
    font-size: 0.9rem;
  }

  /* ------ >>>>>> ========== PRICING SECTION ========== <<<<<< ------ */
  .pricing {
    width: 100%;
  }

  .pr-container {
    width: 100%;
    row-gap: var(--mb-3);
    padding: var(--mb-4) var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
  }

  .pr-title {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 1.25rem;
    /* border: 1px teal solid; */
  }

  .pr-title h3 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
  }

  .pr-title h3 span {
    padding: 0.15rem var(--mb-0-5);
    font-size: 1.6rem;
    line-height: 1.2;
    border-radius: 10px;
  }

  .pr-title p {
    width: 100%;
    font-size: 1rem;
    opacity: 0.8;
    text-align: center;
  }

  .pr-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-2-5);
  }

  .prc {
    flex: 0 0 auto;
    width: 100%;
    background: var(--white);
    overflow: hidden;
  }

  .prc-head,
  .prc-body {
    width: 100%;
    align-items: center;
    padding: var(--mb-1-5);
    row-gap: var(--mb-1);
    border-bottom: 2px #e5e5e5 solid;
    background: transparent;
  }

  .prc-head {
    position: relative;
    row-gap: var(--mb-0-5);
  }

  .prc:nth-child(2) .prc-head {
    padding-top: var(--mb-4-5);
  }

  .prc-head strong {
    position: absolute;
    top: var(--mb-1-5);
    right: unset;
    padding: var(--mb-0-25) var(--mb-0-5);
    font-size: 0.7rem;
    opacity: 0.9;
  }

  .prc-head label {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.9;
  }

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

  .prch h4 {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    color: var(--t-black);
    line-height: 1.1;
  }

  .prch span {
    font-size: 0.8rem;
    opacity: 0.8;
    text-align: center;
    transform: unset;
  }

  .prc-head p {
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: var(--mb-0-5);
  }

  .prc-head button {
    margin-top: var(--mb-0-25);
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .prc-body {
    row-gap: unset;
    border: none;
  }

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

  .pb-li {
    column-gap: var(--mb-0-25);
    justify-content: center;
  }

  .pb-li span {
    font-size: 0.85rem;
    color: var(--t-yellow);
  }

  .pb-li p {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  /* ------ >>>>>> ========== MAIN WRAPPER (DRASSY APP PAGE) ========== <<<<<< ------ */
  .da-main {
    width: 100%;
    overflow: hidden;
  }

  /* ------ >>>>>> ========== DERO SECTION ========== <<<<<< ------ */
  .dero {
    width: 100%;
    height: auto;
  }

  .de-container {
    width: 100%;
    height: auto;
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: var(--mb-4-5);
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-2-5);
    background-color: rgba(250, 250, 250, 0.3);
  }

  .de-container > div {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 15px;
  }

  .de-content {
    height: 100%;
    padding: var(--mb-1-5);
    background-color: var(--white);
    justify-content: flex-start;
    row-gap: var(--mb-3);
    align-items: flex-start;
  }

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

  .dec h1 {
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .dec h1 strong {
    font-weight: 600;
    color: var(--t-yellow);
  }

  .dec p {
    width: 100%;
    font-size: 0.85rem;
    opacity: 0.9;
  }

  .dec button {
    width: 100%;
    margin-top: var(--mb-0-5);
    padding: var(--mb-0-75) var(--mb-1-5);
    font-size: 0.9rem;
    font-weight: 500;
  }

  .dec-stats {
    width: 100%;
    justify-content: space-between;
    column-gap: unset;
  }

  .decs {
    flex: 0 0 45%;
  }

  .decs p {
    font-size: 1.65rem;
  }

  .decs span {
    font-size: 0.65rem;
    line-height: 1.3;
  }

  .de-media {
    height: 300px;
    overflow: hidden;
  }

  /* ------ >>>>>> ========== DIO SECTION ========== <<<<<< ------ */
  .dio {
    width: 100%;
    background-color: var(--white);
  }

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

  .di-title,
  .di-why {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-2);
  }

  .di-title span {
    padding: var(--mb-0-5) var(--mb-1);
    font-size: 0.7rem;
  }

  .di-title h3 {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.45;
  }

  .di-why {
    padding: var(--mb-1-5);
    row-gap: var(--mb-2);
    align-items: center;
  }

  .di-why h4 {
    width: 100%;
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: var(--mb-1);
    border-bottom: 1px #e5e5e5 solid;
  }

  .diw-cards {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-2);
  }

  .diwc {
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    row-gap: var(--mb-1-5);
    padding: var(--mb-1-5);
  }

  .diw-cards span {
    padding: var(--mb-0-75);
    border-radius: 50%;
    background-color: var(--t-yellow);
    font-size: 1.5rem;
    margin-top: var(--mb-0-25);
  }

  .diwc h5 {
    width: 70%;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.3;
  }

  .diwc p {
    font-size: 0.8rem;
    text-align: center;
    margin-top: -0.75rem;
  }

  .da-main .partnership {
    background: unset;
    background-color: var(--the-grey);
  }

  /* ------ >>>>>> ========== DEY SECTION (KEY FEATURES) ========== <<<<<< ------ */
  .dey {
    width: 100%;
  }

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

  .dy-title {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1);
    /* border: 1px teal solid; */
  }

  .dy-title h3 {
    flex: 0 0 auto;
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .dy-title p {
    flex: 0 0 auto;
    width: 100%;
    font-size: 0.8rem;
    margin: 0;
  }

  .dy-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-2);
  }

  .dyc {
    flex: 0 0 auto;
    height: auto;
    padding: var(--mb-1-5);
    justify-content: flex-start;
    row-gap: var(--mb-1-5);
    border: 1px #e5e5e5 solid;
    border-radius: 15px;
  }

  .dyc h5 {
    width: 60%;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .dyc p {
    font-size: 0.8rem;
    opacity: 0.9;
  }

  .dy-actions {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    padding: 0;
    padding: var(--mb-1-5);
    border: 1px #e5e5e5 solid;
    border-radius: 20px;
  }

  .dy-actions p {
    flex: 0 0 60%;
    font-size: var(--fs-1);
    line-height: 1.4;
  }

  .dy-actions button {
    flex: 0 0 auto;
    width: 100%;
  }

  /* ------ >>>>>> ========== MAIN WRAPPER (Drassy PAGE) ========== <<<<<< ------ */
  .dg-main {
    width: 100%;
    overflow: hidden;
  }

  /* ------ >>>>>> ========== GERO SECTION ========== <<<<<< ------ */
  .gero {
    width: 100%;
    height: 100dvh;
    padding: var(--mb-2) var(--mb-1-5);
    padding-top: var(--mb-4);
  }

  .ge-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .ge-data {
    padding: var(--mb-3) var(--mb-2);
    background-color: rgba(0, 0, 0, 0.7);
  }

  .ged {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .ged h1 {
    font-size: var(--fs-2);
    line-height: 1.3;
    text-align: center;
  }

  .ge-data p {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
  }

  /* ------ >>>>>> ========== GIO SECTION ========== <<<<<< ------ */
  .gio {
    padding: var(--mb-4) var(--mb-1-5);
  }

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

  .gi-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    padding: var(--mb-3) 0;
  }

  .gi-title h3 {
    flex: 0 0 auto;
    width: 100%;
    font-size: var(--fs-1-5);
    font-weight: 500;
    text-align: center;
  }

  /* .gi-title button {
} */

  .gi-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
    flex-wrap: unset;
  }

  .gic-title {
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }

  .gic-title h4 {
    padding: var(--mb-0-5) var(--mb-1);
    font-size: 0.9rem;
    text-align: center;
  }

  .gic {
    flex: 0 0 auto;
    width: 90%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
    padding: var(--mb-2);
    border-radius: 30px;
  }

  .gic img {
    width: 50px;
    height: 50px;
    padding: var(--mb-0-75);
  }

  .gic h5 {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    margin-top: var(--mb-0-5);
  }

  .gic p {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
  }

  /* ------ >>>>>> ========== GOW SECTION ========== <<<<<< ------ */

  .gow {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
  }

  .go-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-4);
  }

  .go-title {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 300px;
  }

  .got-content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: var(--mb-2);
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.65);
  }

  .got-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
  }

  .go-list {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    row-gap: var(--mb-3);
    padding: var(--mb-1) 0;
  }

  .gol {
    width: 100%;
    padding-left: var(--mb-1-5);
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-0-75);
    border-left: 3px var(--t-yellow) solid;
  }

  .gol h5 {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: left;
    color: var(--white);
    line-height: 1.1;
  }

  .gol p {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: left;
    color: var(--light-grey);
  }

  .gol-action {
    position: unset;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    border-radius: 15px;
    padding: var(--mb-1-5);
    margin-top: var(--mb-1-5);
  }

  .gol-action p {
    flex: 0 0 auto;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
  }

  .gol-action button {
    flex: 0 0 auto;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 500;
  }
}

/* Media query for screens with a minimum width of 1500px and a maximum width of 1700px */
@media screen and (min-width: 1500px) and (max-width: 1700px) {
  /* ------ >>>>>> ========== MAIN WRAPPER (LANDING PAGE) ========== <<<<<< ------ */
  .lp-main {
    width: 100%;
    overflow: hidden;
  }
  /* ------ >>>>>> ========== ABOUT SECTION ========== <<<<<< ------ */
  .about {
    width: 100%;
    padding: var(--mb-6) 12rem;
    background-color: var(--white);
  }

  .a-container {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: var(--mb-6);
  }

  .a-cards {
    width: 100%;
    row-gap: var(--mb-2-5);
  }

  /* ------ >>>>>> ========== PARTNERSHIP SECTION ========== <<<<<< ------ */
  .partnership {
    width: 100%;
  }

  .pat-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-4);
    padding: var(--mb-6) 10rem;
  }

  /* ------ >>>>>> ========== SOLUTIONS SECTION ========== <<<<<< ------ */
  .sl {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-6) 14rem;
  }

  /* ------ >>>>>> ========== TEAM SECTION ========== <<<<<< ------ */
  .team {
    width: 100%;
  }

  .tm-container {
    padding: var(--mb-6) 14rem;
    row-gap: var(--mb-4);
  }

  /* ------ >>>>>> ========== STATS SECTION ========== <<<<<< ------ */
  .stats {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-6) 10rem;
  }

  /* ------ >>>>>> ========== DOWNLOAD SECTION ========== <<<<<< ------ */
  .dl-container {
    width: 100%;
    /* background-color: rgba(250, 250, 250, 0.5); */
    padding: var(--mb-8) 12rem;
  }

  /* ------ >>>>>> ========== FAQ SECTION ========== <<<<<< ------ */
  .faq {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-8) 14rem;
  }

  /* ------ >>>>>> ========== MAIN WRAPPER (Conseil FINANCIER PAGE) ========== <<<<<< ------ */
  .cf-main {
    width: 100%;
    overflow: hidden;
  }

  /* ------ >>>>>> ========== FERO SECTION ========== <<<<<< ------ */
  .fe-container {
    width: 100%;
    height: 100%;
    padding: var(--mb-2) var(--mb-8);
    padding-top: var(--mb-6-5);
  }

  .fem h1 {
    width: 75%;
    font-size: 3rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
    color: var(--white);
    /* color: var(--t-black); */
  }

  /* ------ >>>>>> ========== FIO SECTION (F-BIO) ========== <<<<<< ------ */
  .fio {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-6) 10rem;
  }

  /* ------ >>>>>> ========== SERVICES SECTION ========== <<<<<< ------ */
  .ser-container {
    padding: var(--mb-6) 10rem;
  }

  .ser-title p {
    width: 50%;
  }

  /* ------ >>>>>> ========== TESTIMONIALS SECTION ========== <<<<<< ------ */
  .te-container {
    width: 100%;
    align-items: flex-start;
    padding: var(--mb-6) 10rem;
  }

  /* ------ >>>>>> ========== PRICING SECTION ========== <<<<<< ------ */
  .pr-container {
    width: 100%;
    background-color: rgba(250, 250, 250, 0.5);
    overflow: hidden;
    row-gap: var(--mb-4);
    padding: var(--mb-6) 10rem;
  }

  /* ------ >>>>>> ========== MAIN WRAPPER (DRASSY APP PAGE) ========== <<<<<< ------ */
  .da-main {
    width: 100%;
    overflow: hidden;
  }

  .de-container {
    width: 100%;
    height: 100%;
    padding: var(--mb-3) var(--mb-6);
    padding-top: var(--mb-7);
  }

  /* ------ >>>>>> ========== DIO SECTION ========== <<<<<< ------ */
  .dio {
    width: 100%;
    background-color: var(--white);
  }

  .di-container {
    width: 100%;
    padding: var(--mb-6) 10rem;
  }

  /* ------ >>>>>> ========== DEY SECTION (KEY FEATURES) ========== <<<<<< ------ */
  .dey {
    width: 100%;
    background-color: var(--black);
  }

  .dy-container {
    width: 100%;
    padding: var(--mb-6) 10rem;
  }

  /* ------ >>>>>> ========== MAIN WRAPPER (Drassy PAGE) ========== <<<<<< ------ */
  .dg-main {
    width: 100%;
    overflow: hidden;
  }

  /* ------ >>>>>> ========== GERO SECTION ========== <<<<<< ------ */
  .gero {
    width: 100%;
    height: 100dvh;
    padding: var(--mb-2) var(--mb-6);
    padding-top: var(--mb-6-5);
  }

  .ge-data {
    padding: var(--mb-5);
  }

  .ged {
    width: 80%;
    row-gap: var(--mb-2);
  }

  .ged h1 {
    font-size: var(--fs-4);
    line-height: 1.3;
  }

  .ge-data p {
    width: 60%;
    font-size: 1.2rem;
  }

  /* ------ >>>>>> ========== GIO SECTION ========== <<<<<< ------ */
  .gio {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-6) 10rem;
  }

  .gic p {
    font-size: 0.95rem;
  }

  /* ------ >>>>>> ========== GOW SECTION ========== <<<<<< ------ */
  .gow {
    width: 100%;
    padding: var(--mb-6) 10rem;
  }
}

/* Media query for screens with a minimum width of 1700px and a maximum width of 1900px */
@media screen and (min-width: 1700px) and (max-width: 1900px) {
  /* ------ >>>>>> ========== ABOUT SECTION ========== <<<<<< ------ */
  .about {
    width: 100%;
    padding: var(--mb-6) 14rem;
    background-color: var(--white);
  }

  .a-container {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: var(--mb-6);
  }

  .a-cards {
    width: 100%;
    row-gap: var(--mb-2-5);
  }

  /* ------ >>>>>> ========== PARTNERSHIP SECTION ========== <<<<<< ------ */
  .partnership {
    width: 100%;
  }

  .pat-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-4);
    padding: var(--mb-6) 14rem;
  }

  /* ------ >>>>>> ========== SOLUTIONS SECTION ========== <<<<<< ------ */
  .sl {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-6) 14rem;
  }

  /* ------ >>>>>> ========== TEAM SECTION ========== <<<<<< ------ */
  .team {
    width: 100%;
  }

  .tm-container {
    padding: var(--mb-6) 14rem;
    row-gap: var(--mb-4);
  }

  /* ------ >>>>>> ========== STATS SECTION ========== <<<<<< ------ */
  .stats {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-6) 14rem;
  }

  /* ------ >>>>>> ========== DOWNLOAD SECTION ========== <<<<<< ------ */
  .dl-container {
    width: 100%;
    /* background-color: rgba(250, 250, 250, 0.5); */
    padding: var(--mb-8) 14rem;
  }

  /* ------ >>>>>> ========== FAQ SECTION ========== <<<<<< ------ */
  .faq {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-8) 14rem;
  }

  /* ------ >>>>>> ========== MAIN WRAPPER (Conseil FINANCIER PAGE) ========== <<<<<< ------ */
  .cf-main {
    width: 100%;
    overflow: hidden;
  }

  /* ------ >>>>>> ========== FERO SECTION ========== <<<<<< ------ */
  .fe-container {
    width: 100%;
    height: 100%;
    padding: var(--mb-2) 10rem;
    padding-top: var(--mb-6-5);
  }

  .fem h1 {
    width: 75%;
    font-size: 3rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
    color: var(--white);
    /* color: var(--t-black); */
  }

  /* ------ >>>>>> ========== FIO SECTION (F-BIO) ========== <<<<<< ------ */
  .fio {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-6) 12rem;
  }

  /* ------ >>>>>> ========== SERVICES SECTION ========== <<<<<< ------ */
  .ser-container {
    padding: var(--mb-6) 12rem;
  }

  .ser-title p {
    width: 50%;
  }

  /* ------ >>>>>> ========== TESTIMONIALS SECTION ========== <<<<<< ------ */
  .te-container {
    width: 100%;
    align-items: flex-start;
    padding: var(--mb-6) 14rem;
  }

  /* ------ >>>>>> ========== PRICING SECTION ========== <<<<<< ------ */
  .pr-container {
    width: 100%;
    background-color: rgba(250, 250, 250, 0.5);
    overflow: hidden;
    row-gap: var(--mb-4);
    padding: var(--mb-6) 14rem;
  }
}
