/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&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&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --txt-grey: #444950;
  --tg-1: #acdaa0;
  --tg-2: #73bf5e;
  --tg-3: #518c4f;
  --tg-4: #2e5931;
  --tg-5: #133840;
  --tg-6: #215140;
  --th-gd: #d9851e;
  --th-lgn: #728c58;
  --th-white: #f2f2f2;
  --cannoli-cream: #f1f0e2;
  --t-black: #1c1d20;
  --t-blue: #023047;
  --tb-dark: #1b263b;
  --grey: #f6f7f9;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --pri-font: "Poppins", sans-serif;
  --int-font: "Inter", sans-serif;
  --dms-font: "DM Sans", sans-serif;
  --cor-font: "Cormorant Infant", serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-9: 9rem;
  --fs-8-5: 8.5rem;
  --fs-8: 8rem;
  --fs-7-5: 7.5rem;
  --fs-7: 7rem;
  --fs-6-5: 6.5rem;
  --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;
  --mb-8-5: 8.5rem;
  --mb-9: 9rem;
  --mb-9-5: 9.5rem;
  --mb-10: 10rem;
}

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

/*========== >>>>> LP - HERO SECTION <<<<< ==========*/
.hero {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.h-container {
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: flex-end;
  /* border-radius: 10px; */
  overflow: hidden;
  /* border: 3px blue solid; */
}

.hc-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
}

.hc-cards,
.hcc,
.hcc-img {
  width: 100%;
  height: 100%;
}

.hcc-cards {
  position: relative;
}

.hcc {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
  pointer-events: none;
}

.hcc.active {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;
  z-index: 2;
}

.hcc:first-child {
  display: flex;
}

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

.hcc:nth-child(10) .hcc-img img,
.hcc:nth-child(11) .hcc-img img,
.hcc:nth-child(12) .hcc-img img {
  object-position: 50% 10%;
}

.hcc-data {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  padding: var(--mb-3) var(--mb-4);
  justify-content: center;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.hccd-img {
  display: none;
}

.hcc-data h1 {
  width: 80%;
  font-size: var(--fs-5);
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
  color: var(--white);
  line-height: 1.1;
}

.hcc-data p {
  width: 60%;
  color: var(--soft-black);
  color: #fbfaf5;
  font-size: 1.05rem;
}

.hc-nav {
  position: absolute;
  bottom: var(--mb-3);
  right: var(--mb-4);
  justify-content: flex-end;
  column-gap: var(--mb-0-75);
  z-index: 5;
}

.hcn {
  flex: 0 0 auto;
  padding: var(--mb-0-25);
  border: 1px var(--white) solid;
  color: var(--white);
  font-size: var(--fs-1-5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hcn:hover {
  background-color: var(--white);
  color: var(--t-blue);
}

.hc-review {
  position: absolute;
  bottom: var(--mb-3);
  left: var(--mb-4);
  width: 25%;
  z-index: 5;
  align-items: flex-start;
}

.hcr-img {
  justify-content: flex-end;
}

.hcri {
  border: 1.5px var(--white) solid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

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

.hcri:not(:last-child) {
  margin-right: -1rem;
}

.hcr-text {
  justify-content: flex-end;
  margin-top: var(--mb-0-75);
  margin-bottom: 0.15rem;
}

.hcr-text p,
.hcr-stars p {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  color: #bfc7d4;
  color: #e5e5e5;
  text-transform: uppercase;
}

.hcr-text p > span {
  /* color: var(--white); */
  color: var(--tg-1);
}

.hcr-stars {
  justify-content: flex-end;
  column-gap: var(--mb-0-25);
}

.hcrs {
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: center;
}

.hcrs > span {
  color: #e5e5e5;
  color: gold;
  color: var(--th-gd);
  font-size: 1rem;
}

.hcr-stars p {
  color: #e5e5e5;
  font-size: 0.7rem;
}

/*========== >>>>> LP - CONTACT BANNER STRIP <<<<< ==========*/
.bs {
  width: 100%;
}

.h-info {
  width: 100%;
  padding: var(--mb-1) var(--mb-2);
  background-color: var(--tg-1);
  /* background-color: bisque; */
  overflow: hidden;
  position: relative;
}

.hi-tags {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-1);
  animation: scrollContinuous 30s linear infinite; /* Continuous scrolling animation */
  will-change: transform;
  /* border: 1px red solid; */
}

.h-info:hover .hi-tags {
  animation-play-state: paused; /* Pause animation on hover */
}

.hi-tags span {
  color: var(--t-blue);
  font-size: 1.5rem;
}

.hit-img {
  flex: 0 0 20px;
  object-fit: cover;
  overflow: hidden;
}

.hit {
  flex: 0 0 auto;
  padding: var(--mb-0-5) var(--mb-1);
  border: 1px var(--t-blue) solid;
  border-radius: 30px;
  display: flex;
  align-items: center;
  column-gap: var(--mb-0-5);
  font-family: var(--pri-font);
}

/* Continuous scrolling keyframes */
@keyframes scrollContinuous {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(
      -50%
    ); /* Scroll half the width (for duplicated content) */
  }
}

/* Responsive settings for small screens */
@media (max-width: 500px) {
  .hi-tags {
    column-gap: var(--mb-1);
    animation-duration: 40s; /* Adjust speed for smaller screens */
  }
}

.hit i {
  font-size: 1.1rem;
  color: var(--t-blue);
  transition: all 0.1s ease;
}

.hit p {
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  color: var(--t-blue);
}

/* .hc-text button p {
   width: 100%;
} */

.hit:hover {
  background-color: var(--t-blue);
}

.hit:hover i,
.hit:hover p {
  color: var(--white);
}

/*========== >>>>> LP - ABOUT SECTION <<<<< ==========*/
.about {
  width: 100%;
  /* height: 100dvh; */
  padding: var(--mb-0-75);
}

.ab-container {
  position: relative;
  width: 100%;
  /* height: 100%; */
  justify-content: center;
  align-items: flex-start;
}

.ab-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--mb-5) var(--mb-4);
  padding-bottom: 0;
  justify-content: space-between;
  align-items: flex-end;
}

.abt-head {
  flex: 0 0 40%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.abt-head h3 {
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: left;
  color: var(--tg-6);
  line-height: 1.1;
}

.abt-body {
  flex: 0 0 40%;
  justify-content: flex-end;
}

.abt-body p {
  color: #444950;
  text-align: right;
}

.ab-cards {
  width: 100%;
  height: 850px;
  justify-content: center;
  align-items: flex-end;
  padding: 0 var(--mb-2);
  padding-top: var(--mb-6);
  background-color: rgba(250, 250, 250, 0.95);
  overflow: hidden;
}

.abc {
  position: relative;
  flex: 0 0 34%;
  padding: var(--mb-2);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  /* border: 1px limegreen solid; */
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.abc:first-child {
  flex: 0 0 33%;
  margin-right: -5%;
  height: 300px;
  background-color: var(--tg-5);
}

.abc:nth-child(2) {
  flex: 0 0 40%;
  height: 470px;
  background-color: #acdaa0;
  z-index: 3;
}

.abc:nth-child(3) {
  height: 225px;
  margin-left: -10%;
  z-index: 4;
  background-color: var(--white);
}

.abc-head {
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-25);
}

.abc-head p {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-blue);
  line-height: 1.2;
  text-transform: uppercase;
}

.abc:first-child .abc-head p {
  color: var(--white);
}

.abch {
  justify-content: flex-start;
  /* column-gap: var(--mb-0-25); */
}

.abch h3 {
  font-size: var(--fs-4);
  text-align: left;
  color: var(--t-blue);
  font-weight: 500;
  line-height: 1.1;
}

.abc:first-child .abch h3 {
  color: var(--white);
}

.abch span {
  color: var(--tb-dark);
  font-size: var(--fs-3);
  text-align: left;
}

.abc:first-child .abch span {
  color: var(--white);
}

.abc-svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  object-fit: cover;
  opacity: 0.4;
}

.abc:first-child .abc-svg {
  right: 0;
  bottom: -9rem;
  width: 300px;
}

.abc:nth-child(2) .abc-svg {
  right: 3.75rem;
  bottom: -10rem;
  width: 325px;
}

.abc:nth-child(3) .abc-svg {
  bottom: -7.5rem;
  right: -1rem;
  width: 200px;
  opacity: 0.2;
}

/*========== >>>>> LP - METHOD SECTION <<<<< ==========*/
.md {
  width: 100%;
  padding: var(--mb-6) var(--mb-0-75);
  padding-top: var(--mb-4);
}

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

.md-title {
  position: relative;
  width: 100%;
  height: 650px;
  /* border: 1px red solid; */
}

.mdt-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.mdt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: flex-start;
  row-gap: var(--mb-2);
  padding-top: var(--mb-6);
}

.mdtt-img {
  width: 40px;
  object-fit: cover;
}

.md-title h3 {
  width: 60%;
  font-size: 3.5rem;
  text-align: center;
  color: var(--white);
  font-weight: 500;
  line-height: 1.1;
}

.md-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-1);
  padding: 0 var(--mb-2);
  margin-top: -8rem;
}

.mdc {
  position: relative;
  flex: 0 0 32.5%;
  height: 450px;
  /* padding: var(--mb-2); */
  background-color: #f0f1f5;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 10px;
  overflow: hidden;
}

.mdc > span {
  position: absolute;
  top: var(--mb-2);
  left: var(--mb-2);
  font-size: var(--fs-5);
  color: var(--tg-6);
  z-index: 2;
  /* color: var(--tg-2); */
}

.mdc-data {
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  row-gap: var(--mb-1);
  padding: var(--mb-2);
  z-index: 3;
}

.mdc-data > span {
  /* background-color: var(--white); */
  background-color: var(--tg-2);
  /* border: 2px var(--tg-2) solid; */
  border-radius: 30px;
  padding: 0.45rem var(--mb-1);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--tg-6);
  color: var(--white);
  text-transform: uppercase;
}

.mdc-data h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  color: var(--tg-6);
  line-height: 1.3;
}

.mdc-data p {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: #444950;
}

/*========== >>>>> LP - INDUSTRIES SECTION <<<<< ==========*/
.is {
  width: 100%;
  padding: var(--mb-6) var(--mb-3);
  /* padding-bottom: 8rem; */
  background-color: var(--white);
  background-color: #f0f1f5;
  align-items: flex-start;
  overflow: hidden;
}

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

.is-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: var(--mb-3);
  border-bottom: 1px #bfc7d4 solid;
}

.ist {
  flex: 0 0 50%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.ist h3 {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-blue);
  line-height: 1.1;
}

.is-title p {
  flex: 0 0 40%;
  color: #444950;
  text-align: right;
  margin-bottom: var(--mb-1);
  font-size: 1.1rem;
}

.is-title p span {
  color: var(--tg-2);
}

/*========== >>>>> LP - INDUSTRIES SECTION <<<<< ==========*/

.is-cards {
  position: relative;

  width: 100%;
  height: 85dvh;

  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}

/*------------------------------------------------*/

.isc {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 85dvh;

  background-color: var(--white);

  border-radius: 20px;

  padding: var(--mb-0-75);

  display: flex;

  justify-content: space-between;

  overflow: hidden;

  will-change: transform;

  backface-visibility: hidden;

  transform-style: preserve-3d;
}

/*------------------------------------------------*/

.isc:first-child {
  transform: translateY(0%);
}

.isc:not(:first-child) {
  transform: translateY(102%);
}

.isc-data {
  flex: 0 0 49.5%;
  height: 100%;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 20px;
  overflow: hidden;
}

.iscd {
  width: 100%;
  flex: 0 0 89%;
  background-color: #f0f1f5;
  border-radius: 20px;
  padding: var(--mb-2-5);
}

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

.iscdh-span {
  padding: 0.4rem var(--mb-1);
  background-color: var(--white);
  justify-content: flex-start;
  column-gap: var(--mb-0-5);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: left;
  color: var(--tg-6);
  line-height: 1;
  /* text-transform: uppercase; */
}

.iscdh-span > span {
  color: var(--tg-2);
  font-size: 1.5rem;
}

.iscd-head h3 {
  font-size: 2.25rem;
  font-weight: 500;
  text-align: left;
  color: var(--tg-6);
  line-height: 1.1;
}

.isc:nth-child(4) .iscd-head h3,
.isc:nth-child(5) .iscd-head h3 {
  font-size: var(--fs-2);
}

.iscd-head p {
  width: 90%;
  font-size: 0.9rem;
  color: #657084;
  font-weight: 500;
}

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

.iscd-foot h4 {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--tg-6);
  line-height: 1.1;
  /* text-decoration: underline;
  text-decoration-color: var(--t-blue); */
}

.iscdf-tabs {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-0-5);
  flex-wrap: wrap;
  row-gap: var(--mb-0-5);
}

.iscdf-tabs p {
  padding: 0.45rem var(--mb-0-75);
  background-color: var(--white);
  font-size: 0.85rem;
  color: #657084;
  font-weight: 500;
  border-radius: 30px;
  line-height: 1.1;
}

.iscd-action {
  width: 100%;
  flex: 0 0 9.5%;
}

.iscd-action button {
  width: 100%;
  height: 100%;
  justify-content: center;
  /* border: 1px tomato solid; */
  border-radius: 60px;
  background-color: var(--tg-6);
}

.iscd-action button p {
  font-size: 1.1rem;
  color: var(--white);
}

.isc-img {
  position: relative;
  flex: 0 0 49.5%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--tg-2);
}

.isci-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

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

.isci-info {
  position: absolute;
  bottom: var(--mb-1);
  right: var(--mb-1);
  width: 350px;
  row-gap: var(--mb-2);
  /* height: 170px; */
  justify-content: space-between;
  backdrop-filter: blur(10px);
  /* background-color: var(
    --token-840a7e20-a2d4-4188-8aaf-d9fed4a9b33f,
    #f5f5f5a6
  ); */
  background-color: rgb(2, 48, 71, 0.8);
  box-shadow: 0px 0px 0px 1px
    var(--token-04e12bd5-b9f7-42f3-8c39-b9853141c1bd, #ffffff80);
  border-radius: 20px;
  padding: 1.25rem;
  z-index: 3;
  display: none;
}

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

.iscii-data > p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-25);
}

.iscii-data p > span {
  width: 8px;
  height: 8px;
  background-color: var(--tg-2);
  border-radius: 50%;
}

.iscii-data h5 {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  line-height: 1.2;
}

.iscii-info {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-0-5);
}

.iscii-info img {
  width: 35px;
  flex: 0 0 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px var(--white) solid;
}

.iscii-info p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 0.15rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.1;
}

.iscii-info p > span {
  font-weight: 500;
  font-size: 0.85rem;
  color: #f0f1f5;
}

/*========== >>>>> LP - SUSTAINABILITY SECTION <<<<< ==========*/
.su {
  position: relative;
  width: 100%;
  background-color: var(--tg-5);
}

.su-svg {
  position: absolute;
  width: 800px;
  bottom: -25rem;
  right: -15rem;
  z-index: 2;
  opacity: 0.3;
}

.su-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-4);
  padding: var(--mb-6) var(--mb-4);
  z-index: 3;
}

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

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

.sut .sec-span {
  border: 1px var(--tg-2) solid;
  color: var(--tg-2);
}

.sut .sec-span > span {
  color: var(--white);
  background-color: var(--cannoli-cream);
}

.sut h3 {
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: left;
  color: var(--white);
  color: var(--cannoli-cream);
  line-height: 1.1;
}

.su-title p {
  width: 70%;
  color: #f0f1f5;
}

.su-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  border: 1px var(--cannoli-cream) solid;
  border-radius: 30px;
  overflow: hidden;
}

.suc {
  position: relative;
  flex: 0 0 25%;
  height: 370px;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--mb-2);
  border-right: 1px var(--cannoli-cream) solid;
  transition: all 0.3s ease;
}

.suc:last-child {
  border: none;
}

.suc:hover {
  background-color: rgb(115, 191, 94, 0.2);
}

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

.suc-head p {
  font-size: 1.2rem;
  color: var(--tg-2);
  line-height: 1;
}

.suc-head > span {
  color: var(--tg-2);
  transition: all 0.3s ease;
}

.suc:hover .suc-head > span {
  transform: translate(3px, -3px);
}

.suc-span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--tg-2);
  transition: all 0.8s ease;
}

.suc:hover .suc-span {
  width: 100%;
}

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

.suc-data h4 {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
  color: var(--cannoli-cream);
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
}

.suc-data p {
  font-size: 0.9rem;
}

/*========== >>>>> LP - NEWS SECTION <<<<< ==========*/
.nw {
  position: relative;
  width: 100%;
  background-color: #f0f1f5;

  padding: var(--mb-6) var(--mb-3);
}

.nw-container {
  width: 100%;
  justify-content: flex-start;
  /* flex-wrap: wrap; */
  row-gap: var(--mb-3);
  padding-top: 8rem;
  /* border-radius: 45px; */
}

.nm-svg {
  position: absolute;
  top: var(--mb-4);
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}

.nm-svg h2 {
  font-size: 13vw;
  font-weight: 700;
  text-align: center;
  color: #657084;
  line-height: 1;
  opacity: 0.05;
  margin-left: -0.3rem;
}

.nw-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -3.5rem;
  border-bottom: 1px #d4d4d4 solid;
  padding-bottom: var(--mb-2-5);
}

.nwt {
  flex: 0 0 60%;
  justify-content: flex-start;
}

.nwt h3 {
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: left;
  color: var(--tg-6);
  line-height: 1.1;
}

.nwt-info {
  flex: 0 0 30%;
  align-items: flex-end;
  row-gap: var(--mb-1);
}

.nwt-info > p {
  display: none;
}

.nwt-info > a {
  padding: var(--mb-0-75) 1.25rem;
}

.nw-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  /* padding: var(--mb-2-5) 0;
  border-top: 1px #e5e5e5 solid;
  border-bottom: 1px #e5e5e5 solid; */
}

.nwc {
  position: relative;
  flex: 0 0 32.5%;
  height: 470px;
  border-radius: 25px;
  overflow: hidden;
}

.nwc-img,
.nwc-img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.nwc-img img {
  object-fit: cover;
}

.nwc-data {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: var(--mb-2);
  justify-content: flex-end;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.nwc-data h3 {
  font-size: var(--fs-1-5);
  font-weight: 400;
  text-align: left;
  color: var(--white);
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
}

.nwcd {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
  animation: fadeY 0.3s ease;
  display: none;
}

.nwcd > p {
  color: #f0f1f5;
  font-size: 0.9rem;
  text-align: left;
}

.nwc:hover .nwc-data {
  justify-content: space-between;
}

.nwc:hover .nwcd {
  display: flex;
}

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

.cr-container {
  width: 100%;
  height: 90svh;
  background-color: #f0f1f5;
  background-color: var(--white);
  justify-content: space-between;
  align-items: flex-start;
}

.cr-title {
  position: relative;
  flex: 0 0 37.5%;
  height: 100%;
  justify-content: space-between;
  align-items: flex-end;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
  border-radius: 45px;
  overflow: hidden;
  background-image: url(/assets/img/bckg/career-section.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.crt,
.crt-info {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1.5rem;
}

.crt h3 {
  font-size: var(--fs-3);
  font-weight: 400;
  text-align: left;
  color: var(--tg-6);
  color: var(--tg-2);
  color: var(--white);
  line-height: 1;
}

.crt h3 > span {
  color: var(--tg-2);
}

.crt-info {
  row-gap: 1.25rem;
}

.crt-info > p {
  width: 90%;
  color: #f0f1f0;
}

.cr-lists {
  flex: 0 0 60%;
  height: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-1);
  /* border: 1px #d4d4d4 solid; */
  /* border: 1px tomato solid; */
}

.crl {
  flex: 0 0 49%;
  height: 49%;
  padding: var(--mb-2);
  padding-bottom: var(--mb-2);
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  /* border-top: 1px #657084 solid;
  border-top: 1px #d4d4d4 solid; */
  background-color: var(--white);
  border-radius: 40px;
  border: 1px #d4d4d4 solid;
  transition: all 0.3s ease;
}

.crl:hover {
  border: 1px var(--cannoli-cream) solid;
  background-color: var(--cannoli-cream);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

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

.crl-info h4 {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  color: var(--tg-6);
  line-height: 1.1;
  text-decoration: underline;
}

.crl-info > p {
  width: 100%;
  color: #444950;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.crli-tags {
  justify-content: flex-start;
  column-gap: var(--mb-0-5);
  flex-wrap: wrap;
  row-gap: var(--mb-0-75);
}

.crilt {
  flex: 0 0 auto;
  padding: var(--mb-0-5) var(--mb-0-75);
  border: 1px var(--tg-6) solid;
  border-radius: 30px;
  column-gap: var(--mb-0-25);
}

.crilt > span {
  font-size: 0.8rem;
  color: var(--tg-6);
  color: #444950;
  opacity: 0.8;
}

.crilt > p {
  font-size: 0.75rem;
  font-weight: 600;
  color: #444950;
  opacity: 0.8;
  line-height: 1.1;
}

.crl-action {
  width: 100%;
  justify-content: flex-start;
}

.crl-action > .pri-link {
  padding: var(--mb-0-75) var(--mb-1-5);
  /* column-gap: var(--mb-0-5); */
}

.crl-action > .pri-link p {
  font-size: 0.95rem;
}

/* .crl-action > .pri-link > span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
} */

/*========== >>>>> LP - FAQ SECTION <<<<< ==========*/
.fq {
  width: 100%;
  /* height: 100svh; */
  padding: var(--mb-0-5);
  background-color: var(--white);
}

.fq-container {
  position: relative;
  width: 100%;
  /* height: 100%; */
  padding: var(--mb-5) var(--mb-4);
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f0f1f5;
  background-color: var(--cannoli-cream);
  overflow: hidden;
  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px;
  border-radius: 40px;
}

.fq-svg {
  position: absolute;
  bottom: -16.5rem;
  left: 4rem;
  width: 420px;
  overflow: hidden;
}

.fq-svg img {
  width: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.fq-title {
  flex: 0 0 40%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.fqt-head,
.fqt-data {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}

.fqt-head h3,
.fqt-head h4 {
  font-size: var(--fs-3-5);
  font-weight: 400;
  text-align: left;
  color: var(--tg-6);
  line-height: 1.1;
}

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

.fqt-data > p {
  width: 85%;
  color: var(--tg-6);
  color: #444950;
}

.fqt-data > .nma {
  background-color: var(--tg-6);
}

.fqt-data > .nma p {
  color: var(--white);
}

.fq-cards {
  flex: 0 0 50%;
  /* height: 100%; */
  justify-content: flex-start;
  /* border: 1px tomato solid; */
  row-gap: var(--mb-1);
  padding-top: var(--mb-0-5);
}

.fqc {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px var(--tg-6) solid;
  border-radius: 10px;
  /* background-color: var(--white); */
  cursor: pointer;
}

.fqc-q,
.fqc-a {
  width: 100%;
  padding: var(--mb-1-5);
  justify-content: space-between;
  align-items: flex-start;
}

.fqc.active .fqc-q {
  padding-bottom: var(--mb-0-5);
}

.fqc-q h4 {
  flex: 0 0 85%;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--tg-6);
  color: #444950;
  line-height: 1.2;
}

.fqc-q #fqcq-icon {
  /* padding: var(--mb-0-25); */
  border: 1px var(--tg-6) solid;
  border-radius: 50%;
  color: var(--tg-6);
  font-size: var(--fs-1-5);
  transition: all 0.2s ease;
}

.fqc:hover .fqc-q #fqcq-icon {
  background-color: var(--tg-6);
  color: var(--white);
}

.fqc.active .fqc-q #fqcq-icon {
  rotate: 45deg;
}

.fqc-a {
  justify-content: flex-start;
  row-gap: var(--mb-0-75);
  padding-top: 0;
  animation: fadeY 0.3s ease;
  display: none;
}

.fqc.active .fqc-a {
  display: flex;
}

.fqc-a p {
  width: 90%;
  font-size: 0.9rem;
  color: var(--tg-6);
}

/* --------------- ========== ABOUT PAGE - MAIN ========== ---------------*/
.ap-main {
  width: 100%;
  overflow: hidden;
}

/*========== >>>>> AP - HERO SECTION <<<<< ==========*/
.aero {
  width: 100%;
  height: 100svh;
}

.ae-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.ae-media,
.aem,
.aem img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.aem img {
  object-fit: cover;
}

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

.aed-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: var(--mb-1-5);
  border-bottom: 1px rgba(250, 250, 250, 0.6) solid;
}

.aed-title h1 {
  flex: 0 0 55%;
  font-size: var(--fs-4-5);
  font-weight: 400;
  text-align: left;
  color: var(--white);
  line-height: 1.1;
}

.aedt-down {
  flex: 0 0 auto;
  overflow: hidden;
}

.aedt-down span {
  font-size: var(--fs-2-5);
  padding: var(--mb-0-5);
  border: 1px rgba(250, 250, 250, 0.7) solid;
  color: rgba(250, 250, 250, 0.7);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.aedt-down:hover span {
  border: 1px var(--white) solid;
  background-color: var(--white);
  color: var(--tg-5);
}

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

.aedc {
  flex: 0 0 33.3%;
  padding: var(--mb-2);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.aedc:first-child {
  padding-left: 0;
}

.aedc:last-child {
  padding-right: 0;
}

.aedc h3 {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  color: #f0f1f5;
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
}

.aedc p {
  width: 90%;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: #f0f1f5;
}

/*========== >>>>> AP - VALUES SECTION <<<<< ==========*/
.av {
  position: relative;
  width: 100%;
  padding: 0;
  background-color: var(--tg-5);
}

.av-svg {
  position: absolute;
  bottom: -20rem;
  right: -10rem;
  width: 700px;
  object-fit: cover;
  z-index: 3;
  opacity: 0.3;
}

.av-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-6);
  padding: var(--mb-6) 0;
  padding-bottom: var(--mb-7);
  z-index: 4;
}

.av-title {
  width: 92.5%;
  justify-content: space-between;
  align-items: flex-end;
  /* padding: 0 var(--mb-2); */
  padding-bottom: var(--mb-3);
  border-bottom: 1px rgba(250, 250, 250, 0.6) solid;
}

.avt {
  flex: 0 0 55%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.avt h3 {
  font-size: var(--fs-3-5);
  font-weight: 400;
  text-align: left;
  color: var(--cannoli-cream);
  line-height: 1.1;
}

.avt h3 span {
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
}

.av-title > p {
  flex: 0 0 35%;
  color: #e5e5e5;
  font-size: 1.1rem;
}

.av-cards {
  width: 100%;
  padding: 0 var(--mb-2);
  justify-content: center;
  flex-wrap: wrap;
  /* row-gap: var(--mb-3); */
}

.avc {
  flex: 0 0 425px;
  height: 425px;
  border-radius: 50%;
  padding: var(--mb-2) var(--mb-3);
  border: 1px var(--cannoli-cream) solid;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.avc:hover {
  background-color: rgb(115, 191, 94, 0.2);
}

.avc > span {
  left: var(--mb-2);
  font-size: var(--fs-4);
  color: var(--cannoli-cream);
  z-index: 2;
  /* color: var(--tg-2); */
}

.avc-data {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  row-gap: var(--mb-1);
  z-index: 3;
}

.avc-data > span {
  /* background-color: var(--white); */
  background-color: var(--tg-2);
  /* border: 2px var(--tg-2) solid; */
  border-radius: 30px;
  padding: 0.45rem var(--mb-1);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-blue);
  color: var(--white);
  text-transform: uppercase;
}

.avc-data h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--cannoli-cream);
  line-height: 1.3;
}

.avc-data p {
  width: 90%;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: #f0f1f5;
}

/*========== >>>>> AP - WHY SECTION <<<<< ==========*/
.aw {
  width: 100%;
  padding: var(--mb-4) var(--mb-0-75);
  padding-bottom: var(--mb-1);
}

.aw-container {
  position: relative;
  width: 100%;
  height: 90svh;
  background-color: var(--tg-1);
  border-radius: 40px;
  overflow: hidden;
}

.aw-media {
  width: 100%;
  height: 100%;
  background-color: #657084;
  overflow: hidden;
}

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

.aw-data {
  position: absolute;
  top: 50%;
  left: var(--mb-2);
  transform: translate(0, -50%);
  width: 600px;
  height: 85%;
  padding: var(--mb-2-5);
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 20px;
  /* border: 1px tomato solid; */
  backdrop-filter: blur(10px);
  background: linear-gradient(#ffffff40 0%, #ffffff0d 100%);
}

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

.awd-title h3 {
  font-size: var(--fs-3);
  font-weight: 400;
  text-align: left;
  color: var(--white);
  line-height: 1.1;
}

.awd-title h3 span {
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
}

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

.awd-data p {
  color: #f0f1f5;
}

/* --------------- ========== SECTORS PAGE - MAIN ========== ---------------*/
.ss-main {
  width: 100%;
  overflow: hidden;
  z-index: 200;
}

/*========== >>>>> SS - HERO SECTION <<<<< ==========*/
.sero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background-color: var(--white);
  z-index: 3;
}

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

.sem {
  width: 100%;
  height: 100%;
  animation: scroll-up 100s linear infinite; /* Continuous animation */
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f1f5' fill-opacity='0.2'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.se-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
  justify-content: center;
  align-items: flex-start;
  z-index: 3;
}

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

.set {
  width: 100%;
  font-size: 12rem;
  font-weight: 500;
  color: var(--tg-5);
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--dms-font);
  column-gap: var(--mb-1);
}

.set-second {
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
}

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

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

/*========== SECTORS SECTION ==========*/
.sectors {
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: auto;
  justify-content: flex-start;
  align-items: center;
  /* display: none; */
}

.se-list {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-6);
  padding: 0 var(--mb-3-5);
  padding-top: 85svh;
  padding-bottom: var(--mb-5);
  z-index: 4;
  /* border: 4px red solid; */
}

.sel {
  flex: 0 0 48%;
  background-color: var(--cannoli-cream);
  border-radius: 40px;
  padding: var(--mb-0-75);
  justify-content: flex-start;
  row-gap: var(--mb-0-5);
}

.sel-img {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
}

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

.seli {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: var(--mb-3);
  background-color: rgba(0, 0, 0, 0.4);
}

.seli span {
  font-size: var(--fs-2-5);
  font-weight: 400;
  color: #f0f1f5;
  text-align: center;
  line-height: 1.2;
}

.sel-data {
  width: 100%;
  justify-content: flex-start;
  background-color: var(--white);
  border-radius: 30px;
}

.seld-info,
.seld-tags {
  width: 100%;
  padding: var(--mb-2);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
  border-bottom: 1px #e5e5e5 solid;
}

.seld-info h3 {
  font-size: 1.7rem;
  font-weight: 500;
  text-align: left;
  color: var(--tg-5);
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
}

.seld-info p {
  color: #444950;
  text-align: left;
  font-size: 0.95rem;
}

.seld-tags {
  border: none;
}

.seld-tags h4 {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  color: var(--tg-5);
  line-height: 1.1;
}

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

.seldt p {
  flex: 0 0 auto;
  padding: var(--mb-0-5) var(--mb-1);
  border: 1px #d4d4d4 solid;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  color: #444950;
  border-radius: 30px;
}

.sel-action {
  width: 100%;
}
.sel-action a {
  width: 100%;
}

/* --------------- ========== CAREERS PAGE - MAIN ========== ---------------*/
.ca-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/tw-7.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*========== >>>>> CA - HERO SECTION <<<<< ==========*/
.caro {
  position: relative;
  width: 100%;
  height: 100svh;
}

.ca-container {
  width: 100%;
  height: 100%;
  /* background-color: var(--white); */
  justify-content: flex-start;
  /* border: 1px dodgerblue solid; */
}

.ca-title {
  /* position: relative; */
  width: 100%;
  height: 100%;
  justify-content: space-between;
  /* row-gap: var(--mb-5); */
  padding: var(--mb-5) var(--mb-4);
  padding-top: 13rem;
  background-color: rgba(250, 250, 250, 0.6);
}

.cat-svg {
  position: absolute;
  top: 50%;
  right: -19.5rem;
  transform: translate(0, -50%);
  width: 600px;
  object-fit: cover;
  opacity: 0.3;
}

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

.cat h1 {
  flex: 0 0 52.5%;
  font-size: var(--fs-5-5);
  font-weight: 500;
  text-align: left;
  color: var(--tg-6);
  color: var(--tg-5);
  line-height: 1;
}

.cat h1 span {
  color: var(--tg-2);
}

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

.cat-sub p {
  width: 68%;
  font-size: var(--fs-2);
  font-weight: 400;
  text-align: left;
  color: var(--tg-5);
  line-height: 1.3;
}

.cat-sub span {
  font-size: var(--fs-1);
  color: #444950;
}

/*========== >>>>> CAREERS PAGE - GALLERY SECTION <<<<< ==========*/
.ga {
  width: 100%;
  padding: var(--mb-6) var(--mb-4);
  padding-top: 0;
  background-color: rgba(250, 250, 250, 0.6);
}

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

.ga-col {
  flex: 0 0 32%;
  justify-content: flex-start;
  row-gap: var(--mb-1);
  /* border: 1px limegreen solid; */
}

.gac {
  width: 100%;
  /* border: 1px dodgerblue solid; */
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.gac img {
  width: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.gac:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transform: translateY(-5px);
}

.gac:hover img {
  scale: 1.1;
}

/*========== >>>>> CAREERS PAGE - LISTING SECTION <<<<< ==========*/
.cl {
  position: relative;
  width: 100%;
  background-color: var(--tg-5);
  padding: var(--mb-6) var(--mb-4);
  overflow: hidden;
}

.cl-svg {
  position: absolute;
  bottom: -18rem;
  right: 0;
  width: 600px;
  opacity: 0.15;
}

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

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

.clt {
  flex: 0 0 50%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
}

.clt h3 {
  font-size: var(--fs-3-5);
  color: var(--cannoli-cream);
  font-weight: 400;
  text-align: left;
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
}

.cl-title p {
  flex: 0 0 40%;
  color: #f0f1f5;
}

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

.cll {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px var(--tg-2) solid;
  padding: var(--mb-1-5) 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cll:hover {
  padding: var(--mb-1-5);
  border-top: 1px var(--tg-1) solid;
}

.cll-head {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.cll-head h4 {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  color: var(--cannoli-cream);
  line-height: 1.1;
}

.cllh {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-2);
}

.cllh p {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  column-gap: var(--mb-0-25);
  color: #f0f1f5;
  line-height: 1.1;
}

.cllh p > span {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: #f0f1f5;
  line-height: 1.1;
}

#cllh-icon {
  font-size: var(--fs-1-5);
  color: var(--cannoli-cream);
  transition: all 0.3s ease;
}

.cll:hover #cllh-icon {
  rotate: 45deg;
}

.cll-body {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  animation: fadeY 0.3s ease;
  padding-top: var(--mb-2);
  display: none;
}

.cll:hover .cll-body {
  display: flex;
}

.cll-body > p {
  max-width: 600px;
  color: #f0f1f5;
  text-align: left;
}

/*========== >>>>> CAREERS PAGE - WHY SECTION <<<<< ==========*/
.why {
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-6) var(--mb-4);
}

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

.wh-title {
  width: 100%;
  justify-content: flex-start;
}

.wh-title h3 {
  font-size: var(--fs-3-5);
  font-weight: 400;
  text-align: left;
  color: var(--tg-5);
  line-height: 1.1;
}

.wh-title h3 span {
  /* text-decoration: underline;
  text-decoration-color: var(--tg-2); */
  color: var(--tg-2);
}

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

.whc {
  position: relative;
  flex: 0 0 31%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
  padding-top: var(--mb-2-5);
  border-top: 1px #e5e5e5 solid;
  transition: all 0.3s ease;
}

.whc:hover {
  padding: var(--mb-2-5) var(--mb-2);
  background-color: #f0f1f5;
}

.whc h4 {
  font-size: var(--fs-2);
  font-weight: 400;
  text-align: left;
  color: var(--tg-5);
  line-height: 1.1;
}

.whc p {
  color: #444950;
}

#whc-span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--tg-2);
  transition: all 0.8s ease;
}

.whc:hover #whc-span {
  width: 100%;
}

/* --------------- ========== CONTACT PAGE - MAIN ========== ---------------*/
.co-main {
  width: 100%;
  overflow: hidden;
  /* background-color: #d4d4d4; */
}

/*========== >>>>> CONTACT - HERO SECTION <<<<< ==========*/
.cero {
  width: 100%;
  height: 100svh;
  background-color: var(--white);
}

.ce-container {
  width: 100%;
  height: 100%;
  padding: var(--mb-2);
  justify-content: space-between;
  padding-top: 5.8rem;
}

.ce-title {
  width: 100%;
  height: 21%;
  justify-content: space-between;
  align-items: flex-end;
  /* border: 2px dodgerblue solid; */
}

.ce-title h1 {
  flex: 0 0 50%;
  font-size: var(--fs-7-5);
  font-weight: 500;
  text-align: left;
  color: var(--tg-5);
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
}

.ce-title p {
  flex: 0 0 35%;
  color: #444950;
  font-size: 1.3rem;
}

.ce-cards {
  width: 100%;
  height: 75%;
  /* border: 1px limegreen solid; */
  justify-content: space-between;
}

.cec {
  position: relative;
  flex: 0 0 24%;
  height: 100%;
  background-color: #f0f1f5;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.cec-img,
.cec-map,
.cec-img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cec-img img {
  object-fit: cover;
  transition: all 0.8s ease;
}

.cec:hover .cec-img img {
  scale: 1.1;
}

.cec:nth-child(1) .cec-img img,
.cec:nth-child(2) .cec-img img {
  object-position: 50% 5%;
}

.cec-body {
  position: absolute;
  bottom: var(--mb-1);
  left: 50%;
  transform: translate(-50%, 0);
  padding: var(--mb-1-5) var(--mb-1);
  background-color: var(--white);
  width: 90%;
  border-radius: 10px;
  justify-content: flex-start;
  row-gap: 0.35rem;
  transition: all 0.3s ease;
}

.cec:hover .cec-body {
  background-color: var(--tg-5);
}

.cec-body > span {
  font-size: var(--fs-3);
  color: var(--tg-2);
}

.cec-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--tg-5);
  line-height: 1.1;
  margin-bottom: var(--mb-1);
}

.cec:hover .cec-body h4 {
  color: var(--cannoli-cream);
}

.cec-body p {
  width: 100%;
  color: #444950;
  text-align: center;
  font-size: 0.9rem;
}

.cec:hover .cec-body p {
  color: #f0f1f5;
}

.cec-body a {
  max-width: 100%;
  overflow-wrap: break-word;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tg-5);
  line-height: 1.2;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--tg-2);
  text-decoration-thickness: 1.5px;
  transition: all 0.3s ease;
}

.cec:hover .cec-body a {
  color: var(--cannoli-cream);
}

.cec-body a:hover {
  text-decoration-thickness: 2px;
  text-decoration-color: var(--th-gd);
}

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

  /*========== >>>>> LP - HERO SECTION <<<<< ==========*/
  .hero {
    width: 100%;
    height: 100dvh;
    overflow: hidden;
  }

  .h-container {
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }

  .hc-content {
    width: 100%;
    height: auto;
  }

  .hc-cards,
  .hcc,
  .hcc-img {
    width: 100%;
    height: 100%;
  }

  .hcc-cards {
    position: relative;
  }

  .hcc {
    position: absolute;
    inset: 0;
  }

  .hcc.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
  }

  .hcc:first-child {
    display: flex;
  }

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

  .hcc:nth-child(10) .hcc-img img,
  .hcc:nth-child(11) .hcc-img img,
  .hcc:nth-child(12) .hcc-img img {
    object-position: 50% 10%;
  }

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

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

  .hcc:nth-child(1) .hcc-img img {
    object-position: 90% 50%;
  }

  .hcc:nth-child(3) .hcc-img img {
    object-position: 95% 50%;
  }

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

  .hcc:nth-child(6) .hcc-img img,
  .hcc:nth-child(7) .hcc-img img {
    object-position: 65% 50%;
  }

  .hcc:nth-child(8) .hcc-img img {
    object-position: 75% 50%;
  }

  .hcc-data {
    position: absolute;
    inset: 0;
    padding: var(--mb-2) var(--mb-1-5);
    padding-bottom: var(--mb-6);
    justify-content: flex-end;
    align-items: center;
    row-gap: var(--mb-1-5);
    background-color: rgba(0, 0, 0, 0.6);
  }

  .hccd-img {
    display: flex;
    width: 55px;
    object-fit: cover;
  }

  .hcc-data h1 {
    width: 100%;
    font-size: var(--fs-2-5);
    font-weight: 500;
    text-align: center;
  }

  .hcc-data p {
    width: 95%;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.3;
  }

  .hc-nav {
    position: absolute;
    bottom: var(--mb-1);
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    column-gap: var(--mb-0-5);
    z-index: 5;
  }

  .hcn {
    flex: 0 0 auto;
    font-size: var(--fs-1-5);
  }
  .hc-review {
    display: none;
  }

  /*========== >>>>> LP - CONTACT BANNER STRIP <<<<< ==========*/
  .bs {
    width: 100%;
  }

  .h-info {
    width: 100%;
    padding: var(--mb-1);
  }

  .hi-tags {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: var(--mb-1);
    animation: scrollContinuous 30s linear infinite; /* Continuous scrolling animation */
    will-change: transform;
    /* border: 1px red solid; */
  }

  .h-info:hover .hi-tags {
    animation-play-state: paused; /* Pause animation on hover */
  }

  .hi-tags span {
    color: var(--t-blue);
    font-size: 1.5rem;
  }

  .hit-img {
    flex: 0 0 20px;
    object-fit: cover;
    overflow: hidden;
  }

  .hit {
    padding: 0.4rem var(--mb-0-75);
  }

  .hit i {
    font-size: 0.9rem;
  }

  .hit p {
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    color: var(--t-blue);
  }

  /*========== >>>>> LP - ABOUT SECTION <<<<< ==========*/
  .about {
    width: 100%;
    /* height: 100dvh; */
    padding: var(--mb-0-5);
  }

  .ab-container {
    position: relative;
    width: 100%;
    /* height: 100%; */
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
    padding: var(--mb-4) var(--mb-1);
    background-color: rgba(250, 250, 250, 0.95);
  }

  .ab-title {
    position: unset;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .abt-head {
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .abt-head h3 {
    font-size: var(--fs-2);
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
  }

  .abt-body {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }

  .abt-body p {
    width: 90%;
    color: #444950;
    text-align: center;
  }

  .ab-cards {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    padding: 0;
    background: transparent;
  }

  .abc {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 180px;
    padding: var(--mb-2) var(--mb-1-5);
    border-radius: 10px;
    /* border: 1px limegreen solid; */
    justify-content: center;
    align-items: flex-start;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    overflow: hidden;
  }

  .abc:first-child {
    flex: 0 0 auto;
    margin: 0;
    height: 150px;
  }

  .abc:nth-child(2) {
    flex: 0 0 auto;
    height: 150px;
    z-index: 3;
  }

  .abc:nth-child(3) {
    height: 150px;
    margin: 0;
    z-index: 4;
  }

  .abc-head {
    justify-content: center;
    align-items: center;
    row-gap: var(--mb-0-5);
  }

  .abc-head p {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
  }

  .abc:first-child .abc-head p {
    color: var(--white);
  }

  .abch {
    justify-content: center;
    /* column-gap: var(--mb-0-25); */
  }

  .abch h3 {
    font-size: var(--fs-3-5);
    text-align: center;
    line-height: 1.1;
  }

  .abch span {
    color: var(--tb-dark);
    font-size: var(--fs-3);
    text-align: left;
    line-height: 1.1;
  }

  .abc:first-child .abch span {
    color: var(--white);
  }

  .abc-svg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    object-fit: cover;
    opacity: 0.4;
    /* display: none; */
  }

  .abc:first-child .abc-svg {
    right: -4rem;
    bottom: -6rem;
    width: 180px;
  }

  .abc:nth-child(2) .abc-svg {
    right: -4rem;
    bottom: -6rem;
    width: 180px;
  }

  .abc:nth-child(3) .abc-svg {
    right: -3rem;
    bottom: -6rem;
    width: 130px;
    opacity: 0.2;
  }

  /*========== >>>>> LP - METHOD SECTION <<<<< ==========*/
  .md {
    width: 100%;
    padding: var(--mb-4-5) var(--mb-0-75);
    padding-top: var(--mb-4);
  }

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

  .md-title {
    position: relative;
    width: 100%;
    height: 650px;
    /* border: 1px red solid; */
  }

  .mdt-img img {
    object-position: 65% 20%;
  }

  .mdt {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    row-gap: var(--mb-2);
    padding: 0;
    padding-bottom: var(--mb-4);
  }

  .mdtt-img {
    width: 40px;
    object-fit: cover;
  }

  .md-title h3 {
    width: 90%;
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .md-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    row-gap: var(--mb-2);
    padding: 0 var(--mb-1);
    margin-top: -8rem;
  }

  .mdc {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    padding: var(--mb-2);
    row-gap: var(--mb-2);
  }

  .mdc > span {
    position: unset;
    font-size: var(--fs-4-5);
    color: var(--tg-6);
    z-index: 2;
    /* color: var(--tg-2); */
  }

  .mdc-data {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1);
    padding: 0;
    z-index: 3;
  }

  .mdc-data > span {
    background-color: var(--tg-2);
    padding: 0.45rem var(--mb-1);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
  }

  .mdc-data h3 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
  }

  .mdc-data p {
    font-size: 0.95rem;
    text-align: center;
    color: #444950;
  }

  .mdc-overlay {
    display: none;
  }

  /*========== >>>>> LP - INDUSTRIES SECTION <<<<< ==========*/
  .is {
    width: 100%;
    padding: var(--mb-4-5) var(--mb-1);
    /* padding-bottom: 8rem; */
    background-color: var(--white);
    background-color: #f0f1f5;
    align-items: flex-start;
    overflow: hidden;
  }

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

  .is-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-bottom: var(--mb-2);
    border-bottom: 1px #bfc7d4 solid;
    row-gap: var(--mb-1-5);
  }

  .ist {
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .ist h3 {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
  }

  .is-title p {
    flex: 0 0 auto;
    width: 90%;
    text-align: center;
    margin: 0;
    font-size: 1rem;
  }

  .is-title p span {
    color: var(--tg-2);
  }

  /*========== >>>>> LP - INDUSTRIES SECTION <<<<< ==========*/

  .is-cards {
    position: relative;
    width: 100%;
    height: 85dvh;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  /*------------------------------------------------*/

  .isc {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 85dvh;

    background-color: var(--white);

    border-radius: 20px;

    padding: var(--mb-0-75);

    display: flex;

    justify-content: flex-start;
    flex-direction: column;
  }

  /*------------------------------------------------*/

  .isc:first-child {
    transform: translateY(0%);
  }

  .isc:not(:first-child) {
    transform: translateY(102%);
  }

  .isc-data {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    row-gap: var(--mb-0-5);
  }

  .iscd {
    width: 100%;
    flex: 0 0 auto;
    height: auto;
    border-radius: 20px;
    padding: var(--mb-1-5) var(--mb-1);
    row-gap: var(--mb-2);
  }

  .iscd-head {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1);
  }

  .iscdh-span {
    padding: 0.4rem var(--mb-1);
    background-color: var(--white);
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
  }

  .iscdh-span > span {
    color: var(--tg-2);
    font-size: 1.5rem;
  }

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

  .isc:nth-child(4) .iscd-head h3,
  .isc:nth-child(5) .iscd-head h3 {
    font-size: var(--fs-2);
  }

  .iscd-head p {
    width: 90%;
    font-size: 0.9rem;
    color: #657084;
    font-weight: 500;
    text-align: center;
  }

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

  .iscd-foot h4 {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }

  .iscdf-tabs {
    width: 100%;
    justify-content: center;
    column-gap: var(--mb-0-5);
    flex-wrap: wrap;
    row-gap: var(--mb-0-5);
  }

  .iscdf-tabs p {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    color: #657084;
    border-radius: 30px;
    line-height: 1.1;
  }

  .iscd-action {
    width: 100%;
    flex: 0 0 auto;
    height: auto;
  }

  .iscd-action button {
    width: 100%;
    border-radius: 40px;
  }

  .iscd-action button p {
    font-size: 1rem;
    color: var(--white);
  }

  .isc-img {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 400px;
  }

  .isci-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
  }

  .isci-info {
    display: none;
  }

  /*========== >>>>> LP - SUSTAINABILITY SECTION <<<<< ==========*/
  .su {
    position: relative;
    width: 100%;
    background-color: var(--tg-5);
  }

  .su-svg {
    position: absolute;
    width: 500px;
    bottom: -10rem;
    right: -10rem;
    z-index: 2;
    opacity: 0.3;
  }

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

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

  .sut {
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .sut h3 {
    font-size: var(--fs-2-5);
    font-weight: 500;
    text-align: center;
  }

  .su-title p {
    width: 90%;
    color: #f0f1f5;
    text-align: center;
  }

  .su-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    row-gap: var(--mb-2);
    border: 1px var(--cannoli-cream) solid;
    border-radius: 30px;
    overflow: hidden;
  }

  .suc {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
    padding: var(--mb-2);
    border: none;
    border-bottom: 1px var(--cannoli-cream) solid;
    transition: all 0.3s ease;
  }

  .suc:last-child {
    border: none;
  }

  .suc:hover {
    background-color: rgb(115, 191, 94, 0.2);
  }

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

  .suc-head p {
    font-size: 1.2rem;
    color: var(--tg-2);
    line-height: 1;
  }

  .suc-head > span {
    color: var(--tg-2);
    transition: all 0.3s ease;
  }

  .suc:hover .suc-head > span {
    transform: translate(3px, -3px);
  }

  .suc-span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--tg-2);
    transition: all 0.8s ease;
  }

  .suc:hover .suc-span {
    width: 100%;
  }

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

  .suc-data h4 {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
  }

  .suc-data p {
    font-size: 0.9rem;
    text-align: center;
  }

  /*========== >>>>> LP - NEWS SECTION <<<<< ==========*/
  .nw {
    position: relative;
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
  }

  .nw-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-3);
    padding: 0;
    /* border-radius: 45px; */
  }

  .nm-svg {
    position: absolute;
    top: var(--mb-4);
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    display: none;
  }

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

  .nwt {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }

  .nwt h3 {
    font-size: var(--fs-3);
    font-weight: 500;
    text-align: center;
  }

  .nwt-info {
    flex: 0 0 30%;
    align-items: flex-end;
    row-gap: var(--mb-1);
  }

  .nwt-info > p {
    display: none;
  }

  .nwt-info > a {
    padding: var(--mb-0-75) 1.25rem;
  }

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

  .nwc {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
  }

  .nwc-data {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .nwc-data h3 {
    font-size: var(--fs-1-5);
    font-weight: 400;
    text-align: center;
  }

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

  .nwcd > p {
    color: #f0f1f5;
    font-size: 0.9rem;
    text-align: center;
  }

  .nwc:hover .nwc-data {
    justify-content: space-between;
  }

  .nwc:hover .nwcd {
    display: flex;
  }

  /*========== >>>>> LP - CAREER SECTION <<<<< ==========*/
  .cr {
    width: 100%;
    padding: var(--mb-4) var(--mb-1);
    padding-bottom: var(--mb-2);
    background-color: var(--white);
  }

  .cr-container {
    width: 100%;
    height: auto;
    background-color: #f0f1f5;
    background-color: var(--white);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
  }

  .cr-title {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 600px;
    justify-content: space-between;
    align-items: flex-end;
    border-radius: 30px;
  }

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

  .crt,
  .crt-info {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1.5rem;
  }

  .crt h3 {
    font-size: var(--fs-2-5);
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
  }

  .crt h3 > span {
    color: var(--tg-2);
  }

  .crt-info {
    row-gap: 1.25rem;
  }

  .crt-info > p {
    width: 100%;
    color: #f0f1f0;
    text-align: center;
  }

  .cr-lists {
    flex: 0 0 60%;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: var(--mb-1-5);
    /* border: 1px #d4d4d4 solid; */
    /* border: 1px tomato solid; */
  }

  .crl {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    padding: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    background-color: var(--white);
    border-radius: 20px;
  }

  .crl:hover {
    border: 1px var(--cannoli-cream) solid;
    background-color: var(--cannoli-cream);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }

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

  .crl-info h4 {
    width: 100%;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
  }

  .crl-info > p {
    width: 100%;
    color: #444950;
    text-align: center;
    opacity: 0.8;
  }

  .crli-tags {
    width: 100%;
    justify-content: center;
    column-gap: var(--mb-0-5);
    flex-wrap: wrap;
    row-gap: var(--mb-0-75);
  }

  .crilt {
    flex: 0 0 auto;
    padding: var(--mb-0-5) var(--mb-0-75);
    border: 1px var(--tg-6) solid;
    border-radius: 30px;
    column-gap: var(--mb-0-25);
  }

  .crilt > span {
    font-size: 0.8rem;
    color: var(--tg-6);
    color: #444950;
    opacity: 0.8;
  }

  .crilt > p {
    font-size: 0.75rem;
    font-weight: 600;
    color: #444950;
    opacity: 0.8;
    line-height: 1.1;
  }

  .crl-action {
    width: 100%;
    justify-content: center;
  }

  /*========== >>>>> LP - FAQ SECTION <<<<< ==========*/
  .fq {
    width: 100%;
    /* height: 100svh; */
    padding: var(--mb-0-5);
    background-color: var(--white);
  }

  .fq-container {
    position: relative;
    width: 100%;
    padding: var(--mb-4) var(--mb-1);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    overflow: hidden;
    border-radius: 30px;
  }

  .fq-svg {
    position: absolute;
    bottom: -14rem;
    left: unset;
    right: -10rem;
    width: 350px;
    overflow: hidden;
  }

  .fq-svg img {
    opacity: 0.1;
  }

  .fq-title {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1.25rem;
  }

  .fqt-head,
  .fqt-data {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .fqt-head h3,
  .fqt-head h4 {
    font-size: var(--fs-2-5);
    font-weight: 400;
    text-align: center;
  }

  .fqt-data {
    row-gap: 1.25rem;
  }

  .fqt-data > p {
    width: 95%;
    color: var(--tg-6);
    color: #444950;
    text-align: center;
  }

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

  .fqc {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    border: 1px var(--tg-6) solid;
    border-radius: 10px;
    /* background-color: var(--white); */
    cursor: pointer;
  }

  .fqc-q,
  .fqc-a {
    width: 100%;
    padding: var(--mb-1);
    justify-content: space-between;
    align-items: flex-start;
  }

  .fqc.active .fqc-q {
    padding-bottom: var(--mb-0-5);
  }

  .fqc-q h4 {
    flex: 0 0 85%;
    font-size: 1rem;
    font-weight: 500;
  }

  .fqc-q #fqcq-icon {
    font-size: 1.35rem;
  }

  .fqc-a {
    row-gap: var(--mb-0-75);
    padding-top: 0;
    display: none;
  }

  .fqc.active .fqc-a {
    display: flex;
  }

  .fqc-a p {
    width: 95%;
    font-size: 0.9rem;
    color: var(--tg-5);
  }

  /* --------------- ========== ABOUT PAGE - MAIN ========== ---------------*/
  .ap-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> AP - HERO SECTION <<<<< ==========*/
  .aero {
    width: 100%;
    height: 100svh;
  }

  .ae-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .ae-media,
  .aem,
  .aem img {
    width: 100%;
  }

  .aem img {
    object-fit: cover;
  }

  .ae-data {
    position: absolute;
    padding: var(--mb-4) var(--mb-1);
    justify-content: center;
  }

  .aed-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    padding: 0;
    padding-top: var(--mb-2);
    border: none;
  }

  .aed-title h1 {
    flex: 0 0 auto;
    width: 100%;
    font-size: var(--fs-3-5);
    font-weight: 400;
    text-align: center;
  }

  .aedt-down span {
    font-size: var(--fs-2-5);
    padding: var(--mb-0-5);
  }

  .aed-cards {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    display: none;
  }

  .aedc {
    flex: 0 0 auto;
    width: 100%;
    padding: var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
    border: 1px var(--white) solid;
  }

  .aedc:first-child {
    padding-left: var(--mb-1-5);
  }

  .aedc:last-child {
    padding-right: var(--mb-1-5);
  }

  .aedc h3 {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
  }

  .aedc p {
    width: 100%;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
  }

  /*========== >>>>> AP - VALUES SECTION <<<<< ==========*/
  .av {
    position: relative;
    width: 100%;
    padding: 0;
  }

  .av-svg {
    position: absolute;
    bottom: -12rem;
    right: -12rem;
    width: 700px;
    object-fit: cover;
    z-index: 3;
    opacity: 0.3;
  }

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

  .av-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    /* padding: 0 var(--mb-2); */
    padding-bottom: var(--mb-3);
    border-bottom: 1px rgba(250, 250, 250, 0.6) solid;
  }

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

  .avt h3 {
    font-size: var(--fs-2-5);
    font-weight: 400;
    text-align: center;
  }

  .av-title > p {
    flex: 0 0 auto;
    width: 90%;
    color: #e5e5e5;
    font-size: 1rem;
    text-align: center;
  }

  .av-cards {
    width: 100%;
    padding: 0 var(--mb-2);
    justify-content: center;
    flex-wrap: wrap;
    /* row-gap: var(--mb-3); */
  }

  .avc {
    flex: 0 0 425px;
    height: 425px;
    border-radius: 50%;
    padding: var(--mb-2) var(--mb-3);
    border: 1px var(--cannoli-cream) solid;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

  .avc:hover {
    background-color: rgb(115, 191, 94, 0.2);
  }

  .avc > span {
    left: var(--mb-2);
    font-size: var(--fs-4);
    color: var(--cannoli-cream);
    z-index: 2;
    /* color: var(--tg-2); */
  }

  .avc-data {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    row-gap: var(--mb-1);
    z-index: 3;
  }

  .avc-data > span {
    /* background-color: var(--white); */
    background-color: var(--tg-2);
    /* border: 2px var(--tg-2) solid; */
    border-radius: 30px;
    padding: 0.45rem var(--mb-1);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--t-blue);
    color: var(--white);
    text-transform: uppercase;
  }

  .avc-data h3 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    color: var(--cannoli-cream);
    line-height: 1.3;
  }

  .avc-data p {
    width: 90%;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: #f0f1f5;
  }

  /*========== >>>>> AP - WHY SECTION <<<<< ==========*/
  .aw {
    width: 100%;
    padding: var(--mb-1) var(--mb-0-5);
  }

  .aw-container {
    position: relative;
    width: 100%;
    height: 100svh;
    background-color: var(--tg-1);
    border-radius: 30px;
    overflow: hidden;
  }

  .aw-media {
    width: 100%;
    height: 100%;
    background-color: #657084;
    overflow: hidden;
  }

  .aw-data {
    position: absolute;
    top: unset;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: auto;
    padding: var(--mb-2-5) var(--mb-1-5);
    row-gap: var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
    border-radius: 20px;
  }

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

  .awd-title h3 {
    font-size: var(--fs-2-5);
    font-weight: 400;
    text-align: center;
  }

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

  .awd-data p {
    color: #f0f1f5;
    text-align: center;
  }

  .awd-data p:last-child {
    display: none;
  }

  /* --------------- ========== SECTORS PAGE - MAIN ========== ---------------*/
  .ss-main {
    width: 100%;
    overflow: hidden;
    z-index: 200;
  }

  /*========== >>>>> SS - HERO SECTION <<<<< ==========*/
  .sero {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    background-color: var(--white);
    z-index: 3;
  }

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

  .sem {
    width: 100%;
    height: 100%;
    animation: scroll-up 100s linear infinite; /* Continuous animation */
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f1f5' fill-opacity='0.2'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

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

  .se-title {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 50%;
    padding: 0 var(--mb-2);
    z-index: 4;
    /* border: 1px red solid; */
  }

  .set {
    width: 100%;
    font-size: 4rem;
    font-weight: 500;
    color: var(--tg-5);
  }

  /*========== SECTORS SECTION ==========*/
  .sectors {
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: auto;
    justify-content: flex-start;
    align-items: center;
    /* display: none; */
  }

  .se-list {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-4);
    padding: 0 var(--mb-1);
    padding-top: 55svh;
    padding-bottom: var(--mb-4);
    z-index: 4;
    /* border: 4px red solid; */
  }

  .sel {
    flex: 0 0 auto;
    width: 100%;
    background-color: var(--cannoli-cream);
    border-radius: 20px;
    padding: var(--mb-0-75);
    justify-content: flex-start;
    row-gap: var(--mb-0-5);
  }

  .sel-img {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
  }

  .seli {
    position: absolute;
    padding: var(--mb-2);
    background-color: rgba(0, 0, 0, 0.4);
  }

  .seli span {
    font-size: var(--fs-2);
    font-weight: 500;
    color: #f0f1f5;
    text-align: center;
    line-height: 1.2;
  }

  .sel-data {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
  }

  .seld-info,
  .seld-tags {
    width: 100%;
    padding: var(--mb-2) var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1);
    border-bottom: 1px #e5e5e5 solid;
  }

  .seld-info h3 {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
  }

  .seld-info p {
    color: #444950;
    text-align: center;
    font-size: 0.95rem;
  }

  .seld-tags {
    border: none;
  }

  .seld-tags h4 {
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
  }

  .seldt {
    width: 100%;
    justify-content: center;
    column-gap: var(--mb-0-5);
    row-gap: var(--mb-0-75);
  }

  .seldt p {
    flex: 0 0 auto;
    padding: var(--mb-0-5) var(--mb-0-75);
    border: 1px #d4d4d4 solid;
    font-size: 0.8rem;
    border-radius: 30px;
  }

  .sel-action {
    width: 100%;
  }
  .sel-action a {
    width: 100%;
  }

  /* --------------- ========== CAREERS PAGE - MAIN ========== ---------------*/
  .ca-main {
    width: 100%;
    overflow: hidden;
    background-color: var(--white);
    background-image: url(/assets/img/bckg/tw-7.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  /*========== >>>>> CA - HERO SECTION <<<<< ==========*/
  .caro {
    position: relative;
    width: 100%;
    height: 80svh;
  }

  .ca-container {
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
  }

  .ca-title {
    /* position: relative; */
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    row-gap: var(--mb-1-5);
    padding: var(--mb-5) var(--mb-1-5);
    padding-bottom: var(--mb-4);
  }

  .cat-svg {
    position: absolute;
    top: 50%;
    right: -12rem;
    transform: translate(0, -50%);
    width: 400px;
    object-fit: cover;
    opacity: 0.2;
  }

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

  .cat h1 {
    flex: 0 0 auto;
    width: 100%;
    font-size: var(--fs-3);
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
  }

  .cat h1 span {
    color: var(--tg-2);
  }

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

  .cat-sub p {
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.3;
    text-align: center;
  }

  .cat-sub span {
    width: 90%;
    font-size: 0.95rem;
    color: #444950;
    text-align: center;
  }

  /*========== >>>>> CAREERS PAGE - GALLERY SECTION <<<<< ==========*/
  .ga {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: 0;
    background-color: rgba(250, 250, 250, 0.6);
  }

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

  .ga-col {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-2);
    /* border: 1px limegreen solid; */
  }

  .gac {
    width: 100%;
    /* border: 1px dodgerblue solid; */
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  /*========== >>>>> CAREERS PAGE - LISTING SECTION <<<<< ==========*/
  .cl {
    position: relative;
    width: 100%;
    background-color: var(--tg-5);
    padding: var(--mb-4) var(--mb-1-5);
    overflow: hidden;
  }

  .cl-svg {
    position: absolute;
    bottom: -18rem;
    right: 0;
    width: 600px;
    opacity: 0.15;
  }

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

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

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

  .clt h3 {
    font-size: var(--fs-2-5);
    color: var(--cannoli-cream);
    font-weight: 400;
    text-align: center;
  }

  .cl-title p {
    flex: 0 0 auto;
    width: 90%;
    color: #f0f1f5;
    text-align: center;
  }

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

  .cll {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px var(--tg-2) solid;
    padding: var(--mb-1-5) 0;
  }

  .cll:hover {
    padding: var(--mb-1-5) 0;
    border-top: 1px var(--tg-1) solid;
  }

  .cll-head {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: 1.25rem;
  }

  .cll-head h4 {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    order: 2;
  }

  .cllh {
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-0-5);
    column-gap: var(--mb-2);
    order: 1;
  }

  .cllh p {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    order: 2;
  }

  .cllh p > span {
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
  }

  #cllh-icon {
    font-size: var(--fs-1-5);
    order: 1;
  }

  .cll:hover #cllh-icon {
    rotate: 45deg;
  }

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

  .cll:hover .cll-body {
    display: flex;
  }

  .cll-body > p {
    max-width: 600px;
    color: #f0f1f5;
    text-align: center;
  }

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

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

  .wh-title {
    width: 100%;
    justify-content: flex-start;
  }

  .wh-title h3 {
    font-size: var(--fs-3);
    font-weight: 400;
    text-align: center;
  }

  .wh-title h3 span {
    color: var(--tg-2);
  }

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

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

  .whc:hover {
    padding: var(--mb-2-5) var(--mb-2);
    background-color: #f0f1f5;
  }

  .whc h4 {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
  }

  .whc p {
    color: #444950;
    text-align: center;
    font-size: 0.95rem;
  }

  #whc-span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--tg-2);
    transition: all 0.8s ease;
  }

  .whc:hover #whc-span {
    width: 100%;
  }

  /* --------------- ========== CONTACT PAGE - MAIN ========== ---------------*/
  .co-main {
    width: 100%;
    overflow: hidden;
    /* background-color: #d4d4d4; */
  }

  /*========== >>>>> CONTACT - HERO SECTION <<<<< ==========*/
  .cero {
    width: 100%;
    height: auto;
    background-color: var(--white);
  }

  .ce-container {
    width: 100%;
    height: auto;
    padding: var(--mb-4) var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
    padding-top: 6rem;
  }

  .ce-title {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    /* border: 2px dodgerblue solid; */
  }

  .ce-title h1 {
    flex: 0 0 auto;
    width: auto;
    font-size: var(--fs-4);
    font-weight: 500;
    text-align: left;
    color: var(--tg-5);
    line-height: 1.1;
    text-decoration: underline;
    text-decoration-color: var(--tg-2);
  }

  .ce-title p {
    flex: 0 0 auto;
    width: 100%;
    color: #444950;
    font-size: 1.1rem;
    text-align: center;
  }

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

    padding: var(--mb-2) 0;
    border-top: 1px #e5e5e5 solid;
    border-bottom: 1px #e5e5e5 solid;
  }

  .cec {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 450px;
    background-color: #f0f1f5;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
  }

  .cec-body {
    position: absolute;
    padding: var(--mb-1-5) var(--mb-1);
    width: 90%;
    border-radius: 10px;
    row-gap: 0.35rem;
    transition: all 0.3s ease;
  }

  .cec:hover .cec-body {
    background-color: var(--tg-5);
  }

  .cec-body > span {
    font-size: var(--fs-2-5);
    color: var(--tg-2);
  }

  .cec-body h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--mb-0-5);
  }

  .cec:hover .cec-body h4 {
    color: var(--cannoli-cream);
  }

  .cec-body p {
    width: 100%;
    font-size: 0.9rem;
  }

  .cec:hover .cec-body p {
    color: #f0f1f5;
  }

  .cec-body a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tg-5);
    line-height: 1.2;
  }
}

/* Media query for iPads-Tablets */
@media screen and (min-width: 700px) and (max-width: 900px) {
}

/* Media query for screens with a minimum width of 1440px and a maximum width of 1600px */
@media screen and (min-width: 1440px) and (max-width: 1600px) {
  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
}

/* Media query for screens with a minimum width of 1650px */
@media screen and (min-width: 1650px) {
  .hcc-data {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    padding: var(--mb-4);
    justify-content: center;
    align-items: flex-start;
    row-gap: var(--mb-1-5);
  }

  .hccd-img {
    display: none;
  }

  .hcc-data h1 {
    width: 65%;
    font-size: var(--fs-7);
    font-weight: 400;
    text-align: left;
    color: var(--soft-black);
    color: var(--white);
    line-height: 1.1;
  }

  .hcc-data p {
    width: 40%;
    color: var(--soft-black);
    color: #fbfaf5;
    font-size: var(--fs-1-5);
  }

  /*========== >>>>> LP - ABOUT SECTION <<<<< ==========*/
}
