/*! Normalise CSS !*/
@import url(normalize.css);
/*!Root Css!*/
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro: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=Vina+Sans&display=swap");
/*! Google Fonts !*/
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: #cccccc;
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 27px */
  background: #ffffff;
  overflow-x: hidden;
}
body:has(.cky-consent-container.cky-consent-bar-expand) {
  overflow: hidden;
}

p {
  color: #cccccc;
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 27px */
  margin-bottom: 20px;
}
p:last-child {
  margin: 0;
}

h1 {
  padding: 0;
  margin: 0;
  margin-bottom: 0;
  color: #fff;
  font-family: "Vina Sans";
  font-size: 140px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 140px */
  text-transform: uppercase;
  /* 65.984px */
}

h2 {
  padding: 0;
  margin: 0;
  color: var(--Brand-Black, #000);
  font-family: "Vina Sans";
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 99px */
  text-transform: uppercase;
  margin-bottom: 24px;
}

h3 {
  padding: 0;
  margin: 0;
  color: var(--White, #fff);
  font-family: "Vina Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

h4 {
  padding: 0;
  margin: 0;
  margin-bottom: 28px;
  color: #000;
  font-family: "Vina Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 103.1%;
  /* 32.992px */
}

h5 {
  padding: 0;
  margin: 0;
  color: var(--Black, #000);
  font-family: "Vina Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  /* 150% */
  margin-bottom: 16px;
}

h6 {
  color: var(--Blue, #0808ed);
  font-family: "Vina Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 150% */
  text-transform: uppercase;
  margin-bottom: 16px;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 13px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #000;
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}
.btn:before {
  content: attr(data-back);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1;
  border: 1px solid #000;
}
.btn .btn-text {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  background: black;
  color: white;
}
.btn:hover {
  border: 1px solid #000;
}
.btn:hover .btn-text {
  transform: translateY(-150%);
}
.btn:hover:before {
  transform: translateY(0);
  border: 1px solid #000;
}
.btn.blackbg {
  background-color: black;
  color: white;
}
.btn.blackbg:hover:before {
  background-color: white;
  color: black;
  border: none;
}

.fakebtn {
  position: relative;
}
.fakebtn input[type=submit] {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}

.scroll-lock {
  overflow: hidden;
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.5;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: 0.5;
}

input:not([type=submit]),
select {
  display: block;
  width: 100%;
  padding: 0.875rem 0.625rem;
  border-radius: 0px;
  background: #fff;
  color: #000;
  font-family: "Be Vietnam Pro";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 34px */
  border: none;
  border-bottom: 1px solid var(--Black-300, #666);
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  margin: 0 0 1.5rem;
}

select {
  background: #f1f1f1 url(../images/downarrow.svg) no-repeat right 10px center !important;
}

textarea {
  height: 201px;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0.875rem 0.625rem;
  border-radius: 0px;
  background: #fff;
  color: #000;
  font-family: "Be Vietnam Pro";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 34px */
  border: none;
  border-bottom: 1px solid var(--Black-300, #666);
  margin-bottom: 1.5rem;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--Black, #000);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: url(../images/downarrow.svg) no-repeat right center;
}

select:focus {
  border: 1px solid #cccccc;
  outline: none;
  background-color: #fff;
}

select option {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 400;
}

label {
  color: #0d0d0d;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
  display: block;
}

.checkbox {
  display: inline-block;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: #090914;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 8px;
  text-align: left;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #bbc4cd;
  padding: 11px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 4px;
  top: 0;
}
.checkbox label a {
  text-decoration: none;
  color: var(--accent-color-2, #ed7005);
}
.checkbox input:checked + label::before {
  background: #fff;
}
.checkbox input:checked + label:after {
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  left: 6px;
  font-size: 13px;
  top: 1px;
  color: #121212;
}

.form-group.file-upload-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.file-input {
  display: none !important;
}

.file-upload-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #75e2f0;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-bottom: 0;
  /* SASS syntax - compiles to .file-upload-button:hover */
  /* SASS syntax - compiles to .file-upload-button:active */
}
.file-upload-button:hover {
  background-color: #6ed3e0;
}
.file-upload-button:active {
  background-color: #66c6d3;
}

.file-display-area {
  /* New style for the wrapper */
  display: flex;
  align-items: center;
  gap: 8px;
  /* Space between file name and clear button */
  width: 100%;
  /* Allow it to take full width of its parent */
}

.file-name {
  font-size: 14px;
  color: #555;
  word-break: break-all;
  flex-grow: 1;
  /* Allow file name to take up available space */
}

.clear-file-button {
  /* New style for the clear button */
  background: none;
  border: none;
  color: #888;
  /* Color for the SVG icon */
  cursor: pointer;
  padding: 0;
  /* Remove default button padding */
  display: flex;
  /* To center the SVG */
  align-items: center;
  justify-content: center;
  width: 24px;
  /* Size of the button area */
  height: 24px;
}
.clear-file-button:hover {
  color: #d9534f;
  /* Reddish on hover for delete */
}
.clear-file-button svg {
  display: block;
  /* Ensure SVG is block level for easier centering */
}

.mainhd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
  padding: 34px 0;
}
.mainhd .headerrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mainhd .headerrow .logo {
  width: 166.912px;
  height: 70.426px;
  flex-shrink: 0;
  aspect-ratio: 166.91/70.43;
}
.mainhd .headerrow .logo img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.mainhd .headerrow .navigation .menuicon {
  background-color: transparent;
  border: none;
  width: 42px;
}
.mainhd .headerrow .navigation .menuicon img {
  transition: all 0.3s ease-in-out;
}
.mainhd.scrolled {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px 0px;
}
.mainhd.scrolled .headerrow .logo img {
  filter: brightness(1) invert(1);
}
.mainhd.scrolled .headerrow .navigation .menuicon img {
  filter: brightness(1) invert(1);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  max-width: 600px;
  width: 100%;
  padding: 28px 35px;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1001;
  pointer-events: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.menu.open ul li {
  opacity: 1;
  transform: translateX(0);
}
.menu.open ul li:nth-child(1) {
  transition-delay: calc(0.09s * 1 + 0.3s);
}
.menu.open ul li:nth-child(2) {
  transition-delay: calc(0.09s * 2 + 0.3s);
}
.menu.open ul li:nth-child(3) {
  transition-delay: calc(0.09s * 3 + 0.3s);
}
.menu.open ul li:nth-child(4) {
  transition-delay: calc(0.09s * 4 + 0.3s);
}
.menu.open ul li:nth-child(5) {
  transition-delay: calc(0.09s * 5 + 0.3s);
}
.menu.open ul li:nth-child(6) {
  transition-delay: calc(0.09s * 6 + 0.3s);
}
.menu.open .close {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}
.menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.menu ul li {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
.menu ul li a {
  display: flex;
  padding: 10px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--White, #fff);
  font-family: "Be Vietnam Pro";
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 72px */
  border-bottom: 2px solid transparent;
}
.menu ul li a:hover {
  border-bottom: 2px solid #00e2ff;
}
.menu ul li.active a {
  border-bottom: 2px solid #00e2ff;
}
.menu .close {
  background-color: transparent;
  width: 28px;
  height: 30px;
  border: none;
  position: absolute;
  right: 74px;
  top: 55px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.banner {
  position: relative;
  width: 100%;
  height: 900px;
}
.banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 8, 9, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .bannertext {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .bannertext .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.banner .mutebtn {
  width: 94px;
  height: 94px;
  overflow: hidden;
  padding: 23px 20px 23px 26px;
  border-radius: 154.098px;
  justify-content: flex-end;
  flex-shrink: 0;
  -webkit-backdrop-filter: blur(1.5409835577px);
          backdrop-filter: blur(1.5409835577px);
  position: absolute;
  right: 0;
  bottom: 147px;
  background: url(../images/yellowring.png) no-repeat 0 0;
  background-size: 100% 100%;
}
.banner .mutebtn button {
  border: none;
  background-color: transparent;
}
.banner .mutebtn button img {
  margin-left: -3px;
}
.banner .mutebtn button.unmuted img {
  margin-top: 3px;
}
.banner .mutebtn .unmute {
  display: block;
}
.banner .mutebtn .mute {
  display: none;
}
.banner .sp-headline {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0px;
}
.banner .sp-headline span {
  display: block;
}
.banner .sp-words-wrapper {
  height: 140px;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.banner .sp-words-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}
.banner .sp-words-inner b {
  height: 140px;
  line-height: 140px;
  display: block;
  white-space: nowrap;
  font-weight: 400;
  position: relative;
  top: -15px;
}

.blend {
  padding: 120px 0;
}
.blend h2 {
  color: var(--Brand-Black, #000);
}
.blend p {
  align-self: stretch;
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  margin-bottom: 40px;
}
.blend .hover-tabs ul {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.blend .hover-tabs ul li {
  width: 25%;
}
.blend .hover-tabs ul li a {
  width: 100%;
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  color: var(--Brand-Black, #000);
  font-family: "Vina Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.blend .hover-tabs ul li.active a {
  background: #ecfdff;
}
.blend .hover-tabs .hover-tab-text {
  opacity: 0;
  transform: translateY(10px);
}
.blend .hover-tabs .hover-tab-text.active-content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
.blend .hover-tabs .hover-tab-text p {
  margin-bottom: 50px;
}

.vision-activation {
  transition: all 0.5s ease-in-out;
  background-color: black;
  color: var(--White, #fff);
  padding: 100px 0 50px;
}
.vision-activation h4 {
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
}
.vision-activation.scrolled-in h4 {
  color: black;
}
.vision-activation.scrolled-in .vision-activation-inner h4,
.vision-activation.scrolled-in .vision-activation-inner h2,
.vision-activation.scrolled-in .vision-activation-inner p {
  color: black;
}
.vision-activation.scrolled-in .vision-activation-inner .text {
  background-color: white;
  transition: all 0.5s ease-in-out;
}
.vision-activation.scrolled-in .vision-activation-inner .imgsec {
  background-color: white;
}
.vision-activation.scrolled-in .vision-activation-inner .imgsec h5,
.vision-activation.scrolled-in .vision-activation-inner .imgsec p {
  color: black;
}
.vision-activation.scrolled-in .vision-activation-inner .imgsec p {
  color: var(--Black-400, #333);
}
.vision-activation.scrolled-in .vision-activation-inner .imgsec .text {
  transition: all 0.5s ease-in-out;
}
.vision-activation.scrolled-in .vision-activation-inner .imgsec .text .target span {
  color: var(--Black-400, #333);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 150%;
  /* 27px */
  text-transform: capitalize;
}
.vision-activation .vision-activation-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, auto);
  grid-column-gap: 74px;
  grid-row-gap: 140px;
}
.vision-activation .vision-activation-inner h4,
.vision-activation .vision-activation-inner h5,
.vision-activation .vision-activation-inner h2,
.vision-activation .vision-activation-inner p {
  color: white;
  transition: all 0.5s ease-in-out;
}
.vision-activation .vision-activation-inner h4 {
  margin-bottom: 10px;
}
.vision-activation .vision-activation-inner h2 {
  color: #fff;
  font-family: "Vina Sans";
  font-size: 84px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 86px */
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.vision-activation .div1 {
  grid-area: 1/1/2/2;
}
.vision-activation .div2 {
  grid-area: 1/2/3/3;
}
.vision-activation .div3 {
  grid-area: 2/1/4/2;
}
.vision-activation .div4 {
  grid-area: 3/2/5/3;
}
.vision-activation .div5 {
  grid-area: 4/1/6/2;
}
.vision-activation .div6 {
  grid-area: 5/2/6/3;
}
.vision-activation .imgsec {
  position: relative;
  height: 616px;
}
.vision-activation .imgsec img {
  width: 100%;
}
.vision-activation .imgsec .text {
  padding: 30px 16px;
  background: #000;
  position: absolute;
  right: 0;
  bottom: -1px;
  max-width: 400px;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.vision-activation .imgsec .text span {
  display: block;
  color: var(--Brand-Blue, #75e2f0);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 27px */
  margin-bottom: 16px;
  transition: all 0.5s ease-in-out;
}
.vision-activation .imgsec .text h5 {
  color: var(--White, #fff);
  font-family: "Vina Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.vision-activation .imgsec .text p {
  color: var(--Black-100, #ccc);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 27px */
}
.vision-activation .imgsec .text .target a img {
  width: 20px;
  height: 20px;
}
.vision-activation .imgsec .text .target span {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  color: var(--Black-100, #ccc);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 150%;
  /* 27px */
  text-transform: capitalize;
}
.vision-activation.aboutpg {
  padding: 100px 0 80px;
}
.vision-activation.aboutpg .vision-activation-inner {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 52px;
  grid-row-gap: 120px;
}
.vision-activation.aboutpg .div1 {
  grid-area: 1/1/2/2;
}
.vision-activation.aboutpg .div2 {
  grid-area: 1/2/3/3;
}
.vision-activation.aboutpg .div3 {
  grid-area: 2/1/4/2;
}
.vision-activation.aboutpg .div4 {
  grid-area: 3/2/5/3;
}
.vision-activation.aboutpg .div5 {
  grid-area: 4/1/6/2;
}
.vision-activation.aboutpg .div6 {
  grid-area: 5/2/7/3;
}
.vision-activation.aboutpg .imgsec {
  height: 600px;
}
.vision-activation.aboutpg .imgsec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.movement {
  position: relative;
  height: 597px;
}
.movement video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movement .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.movement .container h2 {
  color: white;
  font-family: "Vina Sans";
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.movement .container p {
  color: var(--White, #fff);
  text-align: center;
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  /* 28.8px */
  text-transform: capitalize;
  margin-bottom: 30px;
}
.movement .container .btn {
  border: none;
}

.marquee {
  display: flex;
  padding: 38px 0px;
  justify-content: center;
  align-items: center;
  background-color: black;
  overflow: hidden;
}
.marquee h4 {
  color: var(--White, #fff);
}
.marquee .splide__slide__container {
  color: var(--White, #fff);
  font-family: "Vina Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  width: auto !important;
  position: relative;
}
.marquee .splide__slide__container:before {
  content: "";
  position: absolute;
  left: -55px;
  top: 55%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 50%;
}
.marquee.whitebg {
  background-color: white;
}
.marquee.whitebg .splide__slide__container {
  color: black;
}
.marquee.whitebg .splide__slide__container:before {
  background-color: black;
}

.experience {
  padding: 120px 0;
}
.experience p {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-weight: 300;
  line-height: 170%;
  margin-bottom: 30px;
}
.experience h5 {
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  text-transform: capitalize;
  margin-bottom: 0;
}
.experience .pods {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: stretch;
}
.experience .pods .podsinner {
  display: flex;
  width: 240px;
  padding: 16px 20px;
  background: #fbfbfb;
  flex-direction: column;
  align-items: flex-end;
  gap: 70px;
  flex-shrink: 0;
  transition: all 0.5s ease-in-out;
}
.experience .pods .podsinner .icon-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.experience .pods .podsinner .icon {
  display: flex;
  width: 82px;
  height: 82px;
  overflow: hidden;
  padding: 18px;
  border-radius: 100px;
  background: #000;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.experience .pods .podsinner .icon img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.experience .pods .podsinner .podstext {
  width: 100%;
}
.experience .pods .podsinner .podstext h4 {
  color: var(--Brand-Black, #000);
  font-family: "Vina Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #75e2f0;
  transition: all 0.5s ease-in-out;
}
.experience .pods .podsinner .podstext p {
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 36px */
  text-transform: capitalize;
  transition: all 0.5s ease-in-out;
  margin-bottom: 0;
}
.experience .pods .podsinner:hover {
  background-color: black;
}
.experience .pods .podsinner:hover .icon {
  background-color: white;
}
.experience .pods .podsinner:hover .icon img {
  filter: brightness(1) invert(1);
}
.experience .pods .podsinner:hover .podstext h4,
.experience .pods .podsinner:hover .podstext p {
  color: white;
}

.delivery {
  display: flex;
  padding: 60px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  background: #000;
  /* Define keyframes for the marquee animation */
  /* Styles for pause on hover */
}
.delivery h2 {
  color: var(--White, #fff);
  text-align: center;
  text-transform: uppercase;
}
.delivery p {
  align-self: stretch;
  color: var(--White, #fff);
  text-align: center;
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 30px */
}
.delivery .marquee-container {
  width: 100%;
  /* Take full width of the parent */
  overflow: hidden;
  /* Hide content outside the container */
  white-space: nowrap;
  /* Keep all items on one line */
  position: relative;
  /* Needed for absolute positioning of items */
}
.delivery .marquee-content {
  display: inline-block;
  /* Essential for horizontal layout */
  animation: marquee-scroll linear infinite;
  /* CSS animation for continuous scroll */
  padding-right: 20px;
  /* Space to prevent last item from touching first on loop */
}
.delivery .marquee-item {
  display: inline-block;
  /* Allow items to sit next to each other */
  margin-right: 97px;
  /* Space between items */
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}
.delivery .marquee-item img {
  height: 50px;
  /* Fixed height for images */
  width: auto;
  /* Maintain aspect ratio */
  display: block;
  /* Remove extra space below image */
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
  /* Scrolls one full content width */
}
.delivery .marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@media (max-width: 767px) {
  .delivery .marquee-content {
    width: 100px;
    animation-duration: 5.02069s;
  }
}
.letstalk {
  position: relative;
  padding: 128px 0px 138px;
  border-top: 1px solid #aeaeae;
}
.letstalk .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.letstalk h3 {
  text-align: center;
  color: #000;
  font-family: "Vina Sans";
  font-size: 140px;
  font-style: normal;
  font-weight: 400;
  line-height: 89%;
  /* 154px */
  text-transform: uppercase;
  margin: 0;
  display: inline-block;
}
.letstalk .letstalk-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  perspective: 1000px;
  perspective-origin: center center;
  position: relative;
  /* Important for positioning the ::after pseudo-element */
}
.letstalk .letstalk-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  /* Adjust distance from text */
  left: 50%;
  /* Start from center */
  transform: translateX(-50%) scaleX(0);
  /* Hidden, scaled to 0 width */
  width: 100%;
  /* Max width of the underline will be the link's width */
  height: 4px;
  /* Thickness of the underline */
  background-color: currentColor;
  /* Inherit color from the link (black or white based on .bgblack) */
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Cubic bezier for smooth animation */
  transform-origin: center center;
  /* Ensure scaling is from the center */
}
.letstalk .letstalk-link:hover::after {
  transform: translateX(-50%) scaleX(1);
  /* Reveal underline on hover */
}
.letstalk .text-content {
  display: inline-flex;
  white-space: nowrap;
  transform-style: preserve-3d;
}
.letstalk .char {
  display: inline-block;
  opacity: 0;
  transform: rotateX(-90deg) translateY(50%) scale(0.8);
  transform-origin: center bottom;
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.letstalk .char.space {
  min-width: 0.2em;
  pointer-events: none;
  opacity: 1;
  transform: rotateX(0deg) translateY(0) scale(1);
}
.letstalk .arrow-img {
  width: 120px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-600px) rotate(-180deg);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  top: 12px;
}
.letstalk.step-1 .char {
  opacity: 1;
  transform: rotateX(0deg) translateY(0) scale(1);
}
.letstalk.step-2 .arrow-img {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
  transition-delay: 0.4s;
}
.letstalk.bgblack {
  background-color: black;
  border-bottom: 1px solid #fff;
}
.letstalk.bgblack h3 {
  color: white;
}
.letstalk.bgblack .letstalk-link {
  color: white;
  /* Ensure link color is white */
}
.letstalk.bgblack .letstalk-link::after {
  background-color: currentColor;
  /* Will be white now */
}
.letstalk.bgblack .arrow-img {
  filter: brightness(0) invert(1);
}

.mainft {
  background: #000;
  overflow: hidden;
}
.mainft .ftrow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px 0 40px;
}
.mainft .ftrow .ftlogo {
  width: 143.133px;
  height: 60.393px;
  aspect-ratio: 143.13/60.39;
}
.mainft .ftrow .ftlogo img {
  width: 100%;
}
.mainft .ftrow .ftmenu-email p {
  margin-bottom: 0;
  color: var(--White, #f1f1f1);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.mainft .ftrow .ftmenu-email p a {
  color: var(--White, #f1f1f1);
  font-family: "Be Vietnam Pro";
  text-decoration: underline;
}
.mainft .ftrow .ftmenu.mx124 {
  max-width: 124px;
}
.mainft .ftrow .ftmenu.mx124 ul li {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.mainft .ftrow .ftmenu.mx321 {
  max-width: 321px;
}
.mainft .ftrow .ftmenu ul {
  display: flex;
  align-items: flex-start;
  gap: 16px 30px;
  flex-wrap: wrap;
}
.mainft .ftrow .ftmenu ul li {
  max-width: 80px;
  width: 100%;
}
.mainft .ftrow .ftmenu ul li a {
  color: var(--White, #f1f1f1);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.mainft .copyright {
  display: flex;
  padding: 35px 0;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  background: #000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.mainft .copyright p {
  margin-bottom: 0;
  color: var(--White, #f1f1f1);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.mainft .copyright ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mainft .copyright ul li a {
  width: 50.207px;
  height: 50.207px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 25px;
  background-color: #333;
  border-radius: 50%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1000;
  pointer-events: none;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.banner.innerbanner {
  position: relative;
}
.banner.innerbanner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -22.01%, rgba(0, 8, 9, 0.8) 97.43%);
  z-index: 2;
}
.banner.innerbanner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 30%;
     object-position: 0 30%;
}
.banner.innerbanner .swiper {
  height: 100%;
}
.banner.innerbanner .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner.innerbanner .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  z-index: 2;
}
.banner.innerbanner .container p {
  color: var(--White, #fff);
  font-family: "Be Vietnam Pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  /* 54.4px */
  margin-bottom: 0;
}

.evolution {
  padding: 120px 0;
  /* Custom CSS to make fade-right start from "farther" left */
}
.evolution h2 + p {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 40.8px */
  margin-bottom: 50px;
}
.evolution .pods {
  display: flex;
  padding: 32px 12px;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  flex-shrink: 0;
  transition: all 0.5s ease-in-out;
  background: #fbfbfb;
  height: 100%;
}
.evolution .pods .icon-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 10px 0 0px;
}
.evolution .pods .icon-row .icon {
  display: flex;
  width: 82px;
  height: 82px;
  padding: 18px;
  border-radius: 100px;
  background: #000;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.evolution .pods .icon-row .icon:after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 120%;
  height: 120%;
  border: 1px solid transparent;
  border-radius: 50%;
  pointer-events: none;
  box-sizing: border-box;
  border-top-color: #00e2ff;
  /* border-right-color: #00E2FF; */
  transform: rotate(45deg);
}
.evolution .pods .icon-row .icon img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.evolution .pods .text {
  width: 100%;
}
.evolution .pods .text span {
  display: block;
  color: var(--Brand-Blue, #75e2f0);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
  transition: all 0.5s ease-in-out;
}
.evolution .pods .text h5 {
  font-family: "Be Vietnam Pro";
  transition: all 0.5s ease-in-out;
}
.evolution .pods .text p {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 34px */
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
}
.evolution .pods:hover {
  background-color: black;
}
.evolution .pods:hover .icon {
  background-color: white;
}
.evolution .pods:hover .icon img {
  filter: brightness(1) invert(1);
}
.evolution .pods:hover .text h5,
.evolution .pods:hover .text p {
  color: white;
}
.evolution .col-lg-3 {
  z-index: 4;
}
.evolution .col-lg-3:nth-child(2) {
  z-index: 3;
}
.evolution .col-lg-3:nth-child(2) .pods .icon-row .icon:after {
  border-right-color: #00e2ff;
}
.evolution .col-lg-3:nth-child(3) {
  z-index: 2;
}
.evolution .col-lg-3:nth-child(3) .pods .icon-row .icon:after {
  border-right-color: #00e2ff;
  border-bottom-color: #00e2ff;
}
.evolution .col-lg-3:nth-child(4) {
  z-index: 1;
}
.evolution .col-lg-3:nth-child(4) .pods .icon-row .icon:after {
  border-right-color: #00e2ff;
  border-bottom-color: #00e2ff;
  border-left-color: #00e2ff;
}
.evolution [data-aos=fade-right].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.evolution [data-aos=fade-right]:not(.aos-animate) {
  transform: translate3d(-200px, 0, 0);
  /* Increase this value (e.g., -200px, -300px) */
  opacity: 0;
}
.evolution.brandspg .row {
  gap: 30px 0;
}
.evolution.brandspg .pods .icon-row .icon:after {
  display: none;
}

.team {
  padding: 120px 0;
}
.team h2 + p {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 40.8px */
  margin-bottom: 60px;
}
.team .teampods {
  position: relative;
  overflow: hidden;
  /* Style for the hidden description div */
  /* Hover effect */
}
.team .teampods img {
  width: 100%;
}
.team .teampods h5 {
  top: 24px;
  left: 20px;
  max-width: 97px;
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  text-transform: capitalize;
  margin-bottom: 0;
  position: absolute;
}
.team .teampods .team-description {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* Set height to 100% of the parent (.teampods) */
  height: 100%;
  padding: 12px 16px;
  background-color: rgb(0, 0, 0);
  transform: translateY(101%);
  transition: transform 0.3s ease-out;
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.team .teampods .team-description p {
  color: var(--White, #fff);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  margin-bottom: 0;
}
.team .teampods .team-description span {
  display: block;
  color: var(--Black-100, #ccc);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 150%;
  /* 27px */
}
.team .teampods:hover .team-description {
  transform: translateY(0);
}
.team .swiper-pagination {
  position: static;
}
.team .swiper-pagination-clickable {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
.team .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  background-color: #d9d9d9;
  opacity: 1;
  transition: all 0.3s ease-out;
}
.team .swiper-pagination-bullet-active {
  background-color: #000;
}

.how-works {
  background-color: #000;
}
.how-works h2 {
  color: white;
}
.how-works h5 {
  font-family: "Be Vietnam Pro";
  color: white;
  margin-bottom: 0;
}
.how-works h5 + p {
  margin-bottom: 80px;
}
.how-works .row {
  margin-bottom: 50px;
}
.how-works .row + p {
  color: var(--Black-100, #ccc);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 27px */
}
.how-works .pods {
  border: 0.3px solid #e4fcff;
  padding: 24px 16px;
  background: var(--Brand-Black, #000);
  gap: 70px;
}
.how-works .pods:hover {
  background-color: white;
}
.how-works .pods:hover .icon-row .icon {
  background-color: black;
}
.how-works .pods:hover .text h3 {
  color: black;
}
.how-works .pods:hover .text h3 span {
  color: black;
}
.how-works .pods:hover .text p {
  color: black;
}
.how-works .pods .icon-row .icon {
  background-color: white;
}
.how-works .pods .text h3 {
  font-weight: 400;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding-bottom: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid #75e2f0;
  transition: all 0.5s ease-in-out;
}
.how-works .pods .text h3 span {
  margin-bottom: 0;
  color: var(--White, #fff);
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 30px */
}
.how-works .pods .text p {
  color: var(--White, #fff);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}
.how-works.vetpg h2 {
  margin-bottom: 80px;
}
.how-works.vetpg .pods .text h5 {
  margin-bottom: 16px;
}
.how-works.vetpg .pods:hover h5 {
  color: black;
}

.whatyouget {
  height: 597px;
  position: relative;
}
.whatyouget:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
}
.whatyouget video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.whatyouget .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.whatyouget .container h2 {
  color: #000;
  font-family: "Vina Sans";
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.whatyouget .container p {
  align-self: stretch;
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-weight: 300;
  line-height: 120%;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.whatyouget .container .btn {
  border: none !important;
}
.whatyouget .container .btn:before {
  border: none !important;
  width: 101%;
}

.wrapit {
  padding: 120px 0;
  background-color: black;
}
.wrapit h2 {
  color: white;
}
.wrapit h2 + p {
  color: var(--Black-50, #e6e6e6);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 36px */
  margin-bottom: 50px;
}
.wrapit .swiper-pagination {
  position: static;
}
.wrapit .swiper-pagination-clickable {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 40px;
}
.wrapit .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  background-color: #666;
  opacity: 1;
  transition: all 0.3s ease-out;
}
.wrapit .swiper-pagination-bullet-active {
  background-color: #fff;
}
.wrapit .mySingleSlideSwiper {
  position: relative;
}
.wrapit .mySingleSlideSwiper .SingleSlide {
  overflow: hidden;
}
.wrapit .mySingleSlideSwiper .SingleSlide img {
  transition: all 0.5s ease-in-out;
  transform-origin: top right;
  scale: 1;
}
.wrapit .mySingleSlideSwiper .SingleSlide:hover img {
  scale: 1.2;
}
.wrapit .mySingleSlideSwiper .SingleSlide:hover .tags {
  opacity: 1;
}
.wrapit .mySingleSlideSwiper .tags {
  position: absolute;
  bottom: 14px;
  left: 14px;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.wrapit .mySingleSlideSwiper .tags ul {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.wrapit .mySingleSlideSwiper .tags ul li span {
  display: flex;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #00e2ff;
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 34px */
  background: #000;
}
.wrapit .mySingleSlideSwiper .tags ul li:nth-child(2) span {
  background-color: #00e2ff;
  color: #000;
}

.veteran {
  padding: 120px 0;
}
.veteran h2 {
  color: var(--Brand-Black, #000);
}
.veteran h2 + p {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 40.8px */
  margin-bottom: 20px;
}
.veteran p {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 40.8px */
  margin-bottom: 30px;
}
.veteran h5 {
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 36px */
  margin-bottom: 50px;
  border-left: 1px solid #00e2ff;
  padding-left: 16px;
}
.veteran.vetpg h2 + p {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 40.8px */
  margin-bottom: 40px;
}
.veteran.vetpg h2 + p strong {
  font-weight: 600;
}
.veteran.vetpg h5 {
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  text-transform: capitalize;
  padding: 0;
  border: none;
  margin-bottom: 0;
}
.veteran.vetpg h5 + p {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 40.8px */
  margin-bottom: 40px;
}
.veteran.vetpg p {
  margin-bottom: 0;
}

.testimonials {
  padding: 120px 0;
  background-color: white;
}
.testimonials h2 {
  margin-bottom: 60px;
}
.testimonials .testimonial-image {
  max-width: 306px;
  flex: 1 0 306px;
  width: 100%;
}
.testimonials .testimonial-image img {
  width: 100%;
}
.testimonials .testimonial-text {
  background: #f5f5f5;
  padding: 22.5px 29px 22.5px 30px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.testimonials .testimonial-text p {
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  margin-bottom: 40px;
  padding-top: 43px;
  position: relative;
}
.testimonials .testimonial-text p .quote-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 31px;
}
.testimonials .testimonial-text p.author {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 150%;
  /* 24px */
  padding-top: 0;
  margin-bottom: 0;
}
.testimonials .testimonial-text p.author strong {
  display: block;
  margin-bottom: 4px;
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  text-transform: capitalize;
}
.testimonials .testimonial-content {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}
.testimonials .swiper-pagination {
  position: static;
}
.testimonials .swiper-pagination-clickable {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 40px;
}
.testimonials .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  background-color: #d9d9d9;
  opacity: 1;
  transition: all 0.3s ease-out;
}
.testimonials .swiper-pagination-bullet-active {
  background-color: #000;
}

section.banner.innerbanner .container .arrow_down_animate {
  position: absolute;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  bottom: 8rem;
  right: 0;
}
section.banner.innerbanner .container .arrow_down_animate a {
  display: block;
}

section.contactSec1 {
  padding: 7.5rem 0;
}
section.contactSec1 p {
  color: var(--Black-300, #666);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 40.8px */
}
section.contactSec1 .mt60 {
  margin-top: 3.75rem;
}
section.contactSec1 .eachGrp {
  max-width: 530px;
  width: 100%;
  margin-left: auto;
}
section.contactSec1 .ck_bx h3 {
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 0.5rem;
}
section.contactSec1 .ck_bx p {
  color: var(--Black-300, #666);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 34px */
}
section.contactSec1 ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  gap: 1.875rem 0;
  flex-direction: column;
}
section.contactSec1 ul.tabs li {
  margin: 0;
  cursor: pointer;
  padding: 0px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
section.contactSec1 ul.tabs li.active {
  border-radius: 12px;
  border: 1px solid var(--Brand-Blue, #75e2f0);
  background: #e3f9fc;
  display: block;
  padding: 24px 16px;
}
section.contactSec1 ul.tabs li.active .ck_bx span {
  border: 3px solid var(--Brand-Blue, #75e2f0);
}
section.contactSec1 ul.tabs li.active .ck_bx span::before {
  background: var(--Brand-Blue, #75e2f0);
  opacity: 1;
}
section.contactSec1 .ck_bx {
  display: grid;
  grid-template-columns: 1.875rem 1fr;
  gap: 0.75rem;
  transition: all 0.3s ease-in-out;
}
section.contactSec1 .ck_bx span {
  position: relative;
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
  border: 3px solid #000000;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
section.contactSec1 .ck_bx span::before {
  content: " ";
  position: absolute;
  width: 17px;
  height: 17px;
  background: #000000;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  border-radius: 50%;
  inset: 0;
  margin: auto;
}
section.contactSec1 .tab_container {
  border-top: none;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
section.contactSec1 .tab_content {
  padding: 0px;
  display: none;
}
section.contactSec1 .tab_drawer_heading {
  display: none;
  transition: all 0.3s ease-in-out;
}
section.contactSec1 .tab_drawer_heading.ck_bx.d_active {
  border-radius: 12px;
  border: 1px solid var(--Brand-Blue, #75e2f0);
  background: #e3f9fc;
  padding: 24px 16px;
}
section.contactSec1 .tab_drawer_heading.ck_bx.d_active span {
  border: 3px solid var(--Brand-Blue, #75e2f0);
}
section.contactSec1 .tab_drawer_heading.ck_bx.d_active span::before {
  background: var(--Brand-Blue, #75e2f0);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  section.contactSec1 .tabs {
    display: none !important;
  }
  section.contactSec1 .tab_drawer_heading {
    display: grid;
  }
}

section.contactSec2 {
  padding: 5.25rem 0;
  background: #000;
  border-bottom: 1px solid #fff;
}
section.contactSec2 h2 {
  color: var(--White, #fff);
  font-family: "Vina Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 52.8px */
  text-transform: uppercase;
}
section.contactSec2 address {
  color: var(--White, #fff);
  font-family: "Be Vietnam Pro";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  /* 28px */
  margin: 0;
  padding: 0;
}
section.contactSec2 a.linkLink {
  position: relative;
  display: inline-block;
  color: var(--White, #fff);
  font-family: "Be Vietnam Pro";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 40.8px */
}
section.contactSec2 a.linkLink::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 0;
}

.vision-activation.servicePg {
  padding: 6.25rem 0;
}
.vision-activation.servicePg .imgsec {
  height: 36.4375rem;
}
.vision-activation.servicePg .imgsec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vision-activation.servicePg .vision-activation-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(7, 1fr);
  grid-column-gap: 74px;
  grid-row-gap: 120px;
}
.vision-activation.servicePg .div1 {
  grid-area: 1/1/2/2;
}
.vision-activation.servicePg .div2 {
  grid-area: 1/2/3/3;
}
.vision-activation.servicePg .div3 {
  grid-area: 2/1/4/2;
}
.vision-activation.servicePg .div4 {
  grid-area: 3/2/5/3;
}
.vision-activation.servicePg .div5 {
  grid-area: 4/1/6/2;
}
.vision-activation.servicePg .div6 {
  grid-area: 5/2/7/3;
}
.vision-activation.servicePg .div7 {
  grid-area: 6/1/8/2;
}

section.evolution.servicePg {
  padding: 7.5rem 0;
}
section.evolution.servicePg h2 {
  margin: 0 0 3.125rem;
}
section.evolution.servicePg .pods {
  display: flex;
  padding: 1.5rem 1.25rem;
  flex-direction: column;
  gap: 4.375rem;
  justify-content: flex-start;
}
section.evolution.servicePg .pods .icon-row .icon:after {
  display: none;
}
section.evolution.servicePg .pods .text h5 {
  position: relative;
  margin: 0 0 0.75rem;
  padding: 0 0 1.25rem;
}
section.evolution.servicePg .pods .text h5::after {
  content: " ";
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: #75e2f0;
  left: 0;
  bottom: -1.25rem;
}
section.evolution.servicePg .pods .text p {
  color: var(--Black-400, #333);
  font-family: "Be Vietnam Pro";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 34px */
  max-width: 266px;
  width: 100%;
  margin: auto;
}
section.evolution.servicePg .pods:hover .text p {
  color: #fff;
}

.wrapit.servicePg .mySingleSlideSwiper .SingleSlide img {
  transform: none;
  scale: 1;
}
.wrapit.servicePg .mySingleSlideSwiper .SingleSlide:hover img {
  transform: none;
  scale: 1;
}

section.serviceSec3 {
  padding: 120px 0;
}
section.serviceSec3 h2 {
  margin: 0 0 1.875rem;
}
section.serviceSec3 p {
  color: var(--Black-300, #666);
  font-family: "Be Vietnam Pro";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 40.8px */
  margin: 0 0 3.75rem;
}
section.serviceSec3 .act_item {
  background: #fbfbfb;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 11.75rem 1fr;
  gap: 2rem;
  height: 100%;
}
section.serviceSec3 .act_item .act_img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
section.serviceSec3 .act_item .act_img img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
section.serviceSec3 .act_item .act_img .play_icon {
  position: absolute;
  width: 2.8125rem;
  height: 2.8125rem;
  z-index: 1;
  inset: 0;
  margin: auto;
}
section.serviceSec3 .act_item .act_txt {
  display: flex;
  flex-direction: column;
  gap: 2.875rem;
}
section.serviceSec3 .act_item .act_txt h3 {
  color: var(--Brand-Black, #000);
  font-family: "Be Vietnam Pro";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 16.625rem;
  width: 100%;
}
section.serviceSec3 .act_item .act_txt a {
  display: inline-flex;
  gap: 0.75rem;
  color: var(--Black-400, #333);
  font-family: "Be Vietnam Pro";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.banner.innerbanner.servicePg h3 {
  color: #fff;
  font-family: "Vina Sans";
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 60px */
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1921px) {
  section.banner {
    height: 80vh;
  }
  section.banner img {
    -o-object-position: top;
       object-position: top;
  }
}

.wpcf7-spinner {
  display: none !important;
}

/* Privacy Policy Specific Styles */
.evolution .privacy h2 + p {
  color: var(--Black-300, #666);
  font-family: unset;
  font-size: unset;
  font-style: unset;
  font-weight: unset;
  line-height: unset;
  margin-bottom: unset;
}

/* Privacy Policy Specific Styles */
.evolution.brandspg .privacy {
  font-family: "Be Vietnam Pro", sans-serif;
  color: #cccccc;
  /* $black-100 from your global CSS */
  line-height: 150%;
  /* 1.5 - from your body/p styles */
  /* Removed max-width and margin auto for flexibility, apply these globally or to a wrapper */
  padding: 20px;
  /* Default padding for mobile */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* Tablet/Smaller Desktop Adjustments */
  /* Desktop Adjustments */
  /* Main Page Title - h1 */
  /* "Effective Date" paragraph */
  /* General paragraph styling within privacy policy */
  /* h3 elements (if you used them, as per original general CSS) */
  /* Main Ordered List (for sections 1, 2, 3...) */
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy {
    padding: 25px 30px;
    /* Slightly more padding for tablets */
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy {
    padding: 30px 40px;
    /* Larger padding for desktop */
  }
}
.evolution.brandspg .privacy > h1 {
  font-family: "Vina Sans", sans-serif;
  font-size: 2.5em;
  /* Smaller on mobile for better fit */
  color: #000000;
  margin-bottom: 20px;
  /* Slightly less margin for mobile */
  line-height: 120%;
  /* Adjusted for better stacking on mobile */
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > h1 {
    font-size: 3em;
    /* Mid-size for tablets */
    margin-bottom: 22px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > h1 {
    font-size: 4.5em;
    /* Larger on desktop */
    margin-bottom: 24px;
    line-height: 110%;
    /* Back to original for desktop */
  }
}
.evolution.brandspg .privacy > p:nth-of-type(1) {
  font-size: 16px;
  /* Slightly smaller for mobile readability */
  color: #666666;
  margin-bottom: 25px;
  /* Adjust spacing */
  font-style: italic;
  font-weight: 300;
  line-height: 150%;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > p:nth-of-type(1) {
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > p:nth-of-type(1) {
    font-size: 18px;
    /* Original size for desktop */
    margin-bottom: 30px;
  }
}
.evolution.brandspg .privacy p {
  margin-bottom: 18px;
  /* Slightly less margin for mobile */
  color: #666666;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  /* Smaller base font size for mobile */
  font-weight: 300;
  line-height: 150%;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy p {
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy p {
    font-size: 18px;
    /* Original size for desktop */
    margin-bottom: 20px;
  }
}
.evolution.brandspg .privacy h3 {
  font-family: "Vina Sans", sans-serif;
  font-size: 26px;
  /* Adjusted for mobile */
  color: #000000;
  margin-top: 25px;
  /* Adjust spacing */
  margin-bottom: 15px;
  /* Adjust spacing */
  padding-bottom: 6px;
  /* Adjust padding */
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy h3 {
    font-size: 28px;
    margin-top: 28px;
    margin-bottom: 18px;
    padding-bottom: 7px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy h3 {
    font-size: 30px;
    /* Original size for desktop */
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
}
.evolution.brandspg .privacy > ol {
  list-style: decimal;
  padding-left: 20px;
  /* Smaller indent for mobile */
  margin-bottom: 25px;
  /* Adjust spacing */
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol {
    padding-left: 25px;
    margin-bottom: 28px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol {
    padding-left: 25px;
    /* Original indent for desktop */
    margin-bottom: 30px;
  }
}
.evolution.brandspg .privacy > ol > li {
  /* Each main policy section */
  margin-bottom: 25px;
  /* Adjust spacing for mobile */
  /* Marker for main ordered list item (1., 2., 3...) */
  /* Section Headings - h2 (e.g., "Information We Collect") */
  /* Sub-headings (strong tags within paragraphs like "Information You Provide") */
  /* *** ALPHABETICAL LISTS - FIRST LEVEL OF UL NESTED IN OL > LI *** */
  /* Specific style for ULs that are NOT .alphalist (e.g., if you have any regular bullet lists) */
  /* This targets any UL that is a direct child of the OL LI, but doesn't have the alphalist class */
  /* Assuming this is not extensively used for content beyond the contact section */
  /* General Link Styles */
  /* Styling for the Contact Us section's icons (last li in the main ol) */
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li {
    margin-bottom: 28px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li {
    margin-bottom: 30px;
    /* Original spacing for desktop */
  }
}
.evolution.brandspg .privacy > ol > li::marker {
  font-family: "Vina Sans", sans-serif;
  font-size: 32px;
  /* Smaller for mobile */
  color: #000000;
  font-weight: 400;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li::marker {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li::marker {
    font-size: 48px;
    /* Original size for desktop */
  }
}
.evolution.brandspg .privacy > ol > li:last-child {
  margin-bottom: 0;
}
.evolution.brandspg .privacy > ol > li h2 {
  font-family: "Vina Sans", sans-serif;
  font-size: 32px !important;
  /* Adjusted for mobile */
  color: #000000 !important;
  margin-top: 25px !important;
  margin-bottom: 15px !important;
  padding-bottom: 6px !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li h2 {
    font-size: 38px !important;
    margin-top: 28px !important;
    margin-bottom: 18px !important;
    padding-bottom: 7px !important;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li h2 {
    font-size: 48px !important;
    /* Original size for desktop */
    margin-top: 30px !important;
    margin-bottom: 20px !important;
    padding-bottom: 8px !important;
  }
}
.evolution.brandspg .privacy > ol > li p strong {
  font-family: "Vina Sans", sans-serif;
  font-size: 20px;
  /* Adjusted for mobile */
  color: #000000;
  margin-top: 12px;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
  display: block;
  text-decoration: underline;
  text-decoration-color: #75e2f0;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li p strong {
    font-size: 22px;
    margin-top: 14px;
    margin-bottom: 9px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li p strong {
    font-size: 24px;
    /* Original size for desktop */
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
.evolution.brandspg .privacy > ol > li > ul {
  list-style: none;
  padding-left: 0;
  counter-reset: alpha-counter;
  margin-top: 8px;
  /* Adjust spacing */
  margin-bottom: 12px;
  /* Adjust spacing */
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li > ul {
    margin-top: 10px;
    margin-bottom: 15px;
  }
}
.evolution.brandspg .privacy > ol > li > ul li {
  position: relative;
  margin-bottom: 12px;
  /* Adjust spacing */
  display: block;
  counter-increment: alpha-counter;
  line-height: 1.5;
  color: #666666;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  /* Smaller text for mobile list items */
  font-weight: 300;
  padding-left: 25px;
  /* Adjust space for bullet on mobile */
  /* *** NESTED ALPHABETICAL LISTS (UL INSIDE UL LI) *** */
}
.evolution.brandspg .privacy > ol > li > ul li:before {
  content: counter(alpha-counter, lower-alpha) ". ";
  font-weight: bold;
  color: #75e2f0;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-transform: none;
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  text-align: left;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li > ul li {
    font-size: 17px;
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li > ul li {
    margin-bottom: 15px;
    /* Original spacing */
    font-size: 18px;
    /* Original text size */
    padding-left: 20px;
    /* Original padding */
  }
}
.evolution.brandspg .privacy > ol > li > ul li::before {
  content: counter(alpha-counter, lower-alpha) ". ";
  font-weight: bold;
  color: #000000;
  font-family: "Vina Sans", sans-serif;
  font-size: 24px;
  /* Smaller for mobile */
  line-height: 1.2;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  /* Adjust width for mobile alignment */
  text-align: left;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li > ul li::before {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li > ul li::before {
    font-size: 30px;
    /* Original size */
  }
}
.evolution.brandspg .privacy > ol > li > ul li ul {
  list-style: none;
  padding-left: 0;
  /* Reset internal padding */
  margin-top: 5px;
  margin-bottom: 10px;
  /* Adjust spacing */
  counter-reset: alpha-counter;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li > ul li ul {
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li > ul li ul {
    margin-bottom: 40px;
    /* Original larger margin for desktop */
  }
}
.evolution.brandspg .privacy > ol > li > ul li ul li {
  position: relative;
  margin-bottom: 6px;
  /* Adjust spacing */
  line-height: 1.5;
  color: #666666;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  /* Smaller text for mobile nested list items */
  font-weight: 300;
  counter-increment: alpha-counter;
  padding-left: 25px;
  /* Adjust space for bullet on mobile */
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li > ul li ul li {
    font-size: 17px;
    padding-left: 28px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li > ul li ul li {
    margin-bottom: 8px;
    /* Original spacing */
    font-size: 18px;
    /* Original text size */
    padding-left: 30px;
    /* Original padding for desktop */
  }
}
.evolution.brandspg .privacy > ol > li ul:not(.alphalist) {
  list-style-type: disc;
  padding: 0 0 0 20px;
  margin: 10px 0 20px;
  /* Adjusted margin for mobile */
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li ul:not(.alphalist) {
    margin: 10px 0 22px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li ul:not(.alphalist) {
    margin: 10px 0 25px;
    /* Original desktop margin */
  }
}
.evolution.brandspg .privacy > ol > li ul:not(.alphalist) li {
  color: #666666;
  font-size: 16px;
  /* Adjusted for mobile */
  margin-bottom: 8px;
  /* Added margin for clarity */
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li ul:not(.alphalist) li {
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li ul:not(.alphalist) li {
    font-size: 18px;
    /* Original desktop size */
  }
}
.evolution.brandspg .privacy > ol > li ul:not(.alphalist) li::before {
  content: counter(alpha-counter, lower-alpha) ". ";
  font-weight: bold;
  color: #75e2f0;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-transform: none;
  position: absolute;
  left: 0;
  top: 2px;
  width: auto;
  text-align: left;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li ul:not(.alphalist) li::before {
    font-size: 18px;
    width: 22px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li ul:not(.alphalist) li::before {
    font-size: 19px;
    /* Original size */
    width: 25px;
    /* Original width */
  }
}
.evolution.brandspg .privacy > ol > li a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.evolution.brandspg .privacy > ol > li a:hover {
  text-decoration: underline;
}
.evolution.brandspg .privacy > ol > li:last-child > p:last-of-type {
  margin-bottom: 10px;
}
.evolution.brandspg .privacy > ol > li:last-child ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Stack on mobile */
  gap: 8px;
  /* Smaller gap for mobile */
  counter-reset: none;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li:last-child ul {
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li:last-child ul {
    flex-direction: row;
    /* Horizontal on desktop */
    gap: 10px;
    /* Original gap */
  }
}
.evolution.brandspg .privacy > ol > li:last-child ul li {
  padding: 0;
  color: #666;
  /* Ensure text content is also responsive */
  font-size: 16px;
}
@media (min-width: 576px) {
  .evolution.brandspg .privacy > ol > li:last-child ul li {
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .evolution.brandspg .privacy > ol > li:last-child ul li {
    font-size: 18px;
  }
}
.evolution.brandspg .privacy > ol > li:last-child ul li a {
  color: #666;
}
.evolution.brandspg .privacy > ol > li:last-child ul li a:hover {
  color: #000;
}
.evolution.brandspg .privacy > ol > li:last-child ul li::before {
  content: none;
  /* Explicitly remove any counter content */
}

.page-template-default header {
  background-color: black;
}

@media screen and (max-width: 767px) {
  .evolution.brandspg {
    text-align: left !important;
    padding-top: 120px;
  }
  .evolution.brandspg .privacy {
    padding: 0;
    box-shadow: none;
  }
  .evolution.brandspg .privacy > h1 {
    text-align: left;
  }
  .evolution.brandspg .privacy > ol {
    list-style-position: inside;
  }
  .evolution.brandspg .privacy > ol > li h2 {
    margin-top: 0 !important;
  }
  .evolution.brandspg .privacy > ol {
    padding-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cky-preference {
    max-height: 100lvh !important;
    max-height: 100svh !important;
    max-height: 100dvh !important;
  }
}
.cky-consent-container {
  background-color: white !important;
}

header .navigation {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
header .navigation nav ul {
  display: flex;
  gap: 3rem;
}
@media (width < 1199px) {
  header .navigation nav ul {
    gap: 2rem;
  }
}
header .navigation nav ul li a {
  color: var(--White, #fff);
  font-family: "Be Vietnam Pro";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  border-bottom: 2px solid transparent;
}
@media (width < 1199px) {
  header .navigation nav ul li a {
    font-size: 1.2rem;
  }
}
header .navigation nav ul li a:hover {
  border-bottom: 2px solid #00e2ff;
}
header .navigation nav ul li.current_page_item a {
  border-bottom: 2px solid #00e2ff;
}
@media (width < 991px) {
  header .navigation nav {
    display: none;
  }
}
header .navigation .menuicon {
  display: none;
}
@media (width < 991px) {
  header .navigation .menuicon {
    display: block;
  }
}
header .navigation .btn {
  border: none;
}
@media (width < 1199px) {
  header .navigation .btn {
    font-size: 1rem;
  }
}
@media (width < 991px) {
  header .navigation .btn {
    display: none;
  }
}
header.scrolled nav ul li a {
  color: black;
}
header.scrolled .btn {
  background-color: black;
  color: white;
}
header.scrolled .btn:hover:before {
  color: black;
  background-color: white;
  border: none;
}/*# sourceMappingURL=style.css.map */