/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Birthstone&family=Cormorant+Upright:wght@300;400;500;600;700&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;
  --th-gd: #d9851e;
  /* --th-gd: #DA840F; */
  --th-bn: #a64005;
  /* --th-bn: #9f4b02; */
  --th-dgn: #394f43;
  /* --th-dgn: #42594c; */
  /* --th-dgn: #2e5931; */
  --th-lgn: #728c58;
  /* --th-lgn: #63814f; */
  --th-lbn: #ffeabb;
  --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;
  --bir-font: "Birthstone", cursive;
  --cor-font: "Cormorant Upright", 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;
}

/*========== BASE SECTION ==========*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  /* -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; */
}

a,
button,
.nml,
.scrollup {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

html {
  scroll-behavior: smooth;
  overflow: scroll;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

/* Remove default margin */
body,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-family: var(--pri-font);
  font-size: var(--fs-1);
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--pri-font);
  padding: 0;
  color: var(--th-dgn);
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-color: var(--black);
  color-scheme: light dark;
}

.ia-ho__body {
  width: 100%;
  height: 100dvh;
  background-color: var(--black);
  background-image: url(../img/bckg/txt-6.jpg);
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

html.is-loading,
body.is-loading {
  height: 100%;
  overflow: hidden;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

li {
  display: inline;
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* section {
  width: 100%;
  padding: var(--mb-6) var(--mb-4);
} */

#shadow-host-companion {
  padding: 0;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

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

.emp {
  color: var(--th-gd);
  font-weight: 400;
  font-family: var(--cor-font);
  font-style: italic;
}

.wavy {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--th-gd);
}

button {
  width: auto;
  height: auto;
  background: transparent;
  font-weight: 500;
  font-family: var(--sec-font);
  color: var(--black);
  text-align: center;
  outline: none;
  border: none;
  padding: 0;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

button p {
  padding: var(--mb-1) var(--mb-1-5);
  border: 2px transparent solid;
  font-weight: 400;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

button span {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease-in-out;
}

button:hover span {
  rotate: 45deg;
}

.ir-btn {
  height: 50px;
  border-radius: 0px;
  align-items: flex-end;
}

.ir-btn p {
  height: 100%;
  padding: 0;
  color: #e5e5e5;
  border: 1px var(--soft-white) solid;
  border-radius: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--mb-1);
}

.ir-btn:hover p {
  background-color: var(--th-lgn);
  color: var(--white);
  border: 1px var(--th-lgn) solid;
}

.ir-btn span {
  height: 100%;
  border: 1px #e5e5e5 solid;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5e5e5;
}

.ir-btn:hover span {
  border-radius: 50%;
  background-color: var(--th-gd);
  border: 1px var(--th-gd) solid;
  color: var(--white);
}

.kgs-btn {
  border: 2px var(--soft-white) solid;
  border-radius: 90px;
  padding: var(--mb-0-5);
  padding-left: var(--mb-1);
  column-gap: var(--mb-0-75);
  background-color: var(--soft-white);
}

.kgp-btn {
  border: 2px var(--soft-white) solid;
  border-radius: 90px;
  padding: var(--mb-0-5);
  padding-left: var(--mb-1);
  column-gap: var(--mb-0-75);
}

.kgp-btn p,
.kgs-btn p {
  padding: 0;
  font-size: var(--fs-1);
  color: var(--soft-white);
}

.kgs-btn p {
  color: var(--soft-black);
}

.kgp-btn span,
.kgs-btn span {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  background-color: var(--th-lgn);
  color: var(--soft-white);
}

.kgs-btn span {
  background-color: var(--soft-black);
  color: var(--soft-white);
}

.kgp-btn span,
.kgs-btn span {
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
}

.kgp-btn:hover span {
  background-color: var(--th-gd);
}

.kgs-btn:hover span {
  background-color: var(--th-gd);
  color: var(--soft-white);
}

.kgp-btn:hover {
  background-color: var(--soft-white);
}

.kgp-btn:hover p {
  color: var(--white);
}

.kgp-btn:hover p {
  color: var(--soft-black);
}

.flb {
  position: fixed;
  bottom: var(--mb-1);
  right: var(--mb-1);
  z-index: 60;

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Visible State */
.flb.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Pulse Animation */
/* Glow pulse animation */
.flb.show .fl-btn.pulsing {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.fl-btn {
  flex: 0 0 auto;
  background: transparent;
}

.fl-btn p {
  flex: 0 0 auto;
  background-color: var(--th-lgn);
  border: 2px var(--th-lgn) solid;
  color: var(--white);
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
  animation: fadeX 0.3s ease-in-out;
  display: none;
}

.fl-btn p:hover {
  background-color: var(--th-gd);
  border: 2px var(--th-gd) solid;
}

.fl-btn:hover p {
  display: inline-block;
}

.fl-btn span {
  height: 50px;
  width: 50px;
  font-size: 1.6rem;
  border: 2px var(--th-bn) solid;
  background-color: var(--th-bn);
  border-radius: 50%;
  color: var(--white);
  padding: var(--mb-0-5);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.fl-btn:hover span {
  rotate: unset;
}

.nb {
  flex: 0 0 auto;
}

.nb p {
  flex: 0 0 auto;
  background-color: var(--th-gd);
  color: var(--white);
  transition: all 0.3s ease-in-out;
  font-size: 0.95rem;
}

.nb span {
  height: 48px;
  width: 48px;
  font-size: 1.4rem;
  border: 2px var(--th-gd) solid;
  border-radius: 50%;
  color: var(--white);
  padding: var(--mb-0-5);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.nb:hover p {
  background-color: var(--th-bn);
}

.nb:hover span {
  background-color: var(--th-dgn);
  border: 2px var(--th-dgn) solid;
  color: var(--white);
  rotate: unset;
}

.lp-btn p {
  flex: 0 0 auto;
  background: transparent;
  border: 2px var(--white) solid;
  color: #f5f5f5;
  transition: all 0.3s ease-in-out;
}

.lp-btn:hover p {
  background-color: var(--th-lgn);
  color: var(--soft-white);
  border: 2px var(--th-lgn) solid;
}

.lp-btn span {
  font-size: 1.6rem;
  border: 2px var(--th-gd) solid;
  border-radius: 50%;
  color: var(--white);
  padding: var(--mb-0-5);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.lp-btn:hover span {
  background-color: var(--th-gd);
}

.pri-btn p {
  flex: 0 0 auto;
  background-color: var(--th-gd);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.pri-btn:hover p {
  background-color: var(--th-bn);
}

.pri-btn span {
  font-size: 1.6rem;
  border: 2px var(--th-lgn) solid;
  border-radius: 50%;
  color: var(--th-gd);
  padding: var(--mb-0-5);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.pri-btn:hover span {
  background-color: var(--th-dgn);
  border: 2px var(--th-dgn) solid;
  color: var(--white);
}

.sec-btn p {
  flex: 0 0 auto;
  border: 2px var(--th-gd) solid;
  color: var(--th-dgn);
}

.sec-btn:hover p {
  border: 2px var(--th-bn) solid;
  background-color: var(--th-bn);
  color: var(--white);
}

.sec-btn span {
  font-size: 1.4rem;
  border: 2px var(--th-gd) solid;
  border-radius: 50%;
  color: var(--th-dgn);
  padding: var(--mb-0-5);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.sec-btn:hover span {
  background-color: var(--th-dgn);
  color: var(--white);
  border: 2px var(--th-dgn) solid;
}

/*========== MEDIA (ANIMATIONS, TRNASITIONS AND SMOOTH SCROLL) ==========*/
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.icon-light {
  font-variation-settings: "wght" 200;
}

.icon-regular {
  font-variation-settings: "wght" 400;
}

.icon-bold {
  font-variation-settings: "wght" 600;
}

.icon-fill {
  font-variation-settings:
    "FILL" 1,
    "wght" 400;
}

/*========== MEDIA (ANIMATIONS, TRNASITIONS AND SMOOTH SCROLL) ==========*/
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*========== ANIMATIONs (FADE, SCROLL) ==========*/
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeY {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeYrev {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeX {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* Keyframes for vertical scroll animation  */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%); /* Move up by full height of container */
  }
}

/* Keyframe animation to move the wrapper from right to left */
@keyframes nav-left {
  0% {
    transform: translateX(100%); /* Start from right outside the container */
  }
  100% {
    transform: translateX(-100%); /* Move to the left end of the wrapper */
  }
}

.kir-svg {
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  width: 50%;
  object-fit: cover;
  opacity: 0.2;
}

/* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
  /* border: 1px red solid; */
}

.ia-ho__body .header {
  display: none;
  animation: fadeY 0.3s ease-in-out;
}

.onload .ia-ho__body .header {
  display: flex;
}

/* DARKER STATE — ONLY WHEN REVEALED AFTER SCROLL */
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
  background-color: rgb(57, 79, 67, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 14px;
  border-bottom: 1px #747474 solid;
}

.kg-lp-body .header.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Menu open */
.header.active {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 14px;
}

/* Hidden state */
.header.is-hidden {
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
}

/* NAV */
.nav {
  width: 100%;
  height: 85.7px;
  padding: 0;
  justify-content: space-between;
  padding: var(--mb-1) var(--mb-2);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.kg-lp-body .nav {
  height: auto;
}

.nav-logo {
  flex: 0 0 33.3%;
  justify-content: flex-start;
}

.nl {
  flex: 0 0 auto;
  overflow: hidden;
}

.ia-ho__body .nl {
  font-size: var(--fs-1);
  text-align: left;
  text-transform: uppercase;
  color: var(--soft-white);
  font-weight: 400;
  /* font-family: var(--bir-font); */
}

.nl img {
  width: 90px;
  object-fit: cover;
  /* filter: brightness(0) invert(1); */
  transition: all 0.3s ease-in-out;
}

.kg-lp-body .nl img {
  width: 65px;
  /* filter: grayscale(100%); */
}

.nl:hover img {
  filter: none;
}

.kf-ho-body .nl img {
  width: 65px;
}

.nm-btn {
  flex: 0 0 auto;
  row-gap: 10px;
  cursor: pointer;
}

.nm-btn span {
  width: 100px;
  height: 4px;
  background-color: var(--white);
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
}

/* .kg-lp-body .nm-btn span {
  background-color: var(--th-dgn);
} */

.nm-btn:hover span {
  width: 110px;
  background-color: var(--th-bn);
}

.header.active .nm-btn span {
  width: 120px;
  background-color: var(--th-lgn);
}

.nm-btn p {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  color: var(--soft-white);
  text-transform: uppercase;
  line-height: 1.1;
  /* font-family: var(--bir-font); */
}

.kg-lp-body .nm-btn p {
  font-weight: 400;
}

.nav-menu {
  /* position: absolute;
  top: 85.7px; */
  width: 100%;
  /* backdrop-filter: blur(50px); */
  animation: fadeY 0.5s ease-in-out;
  padding: var(--mb-3) var(--mb-2);
  padding-bottom: var(--mb-1-5);
  row-gap: var(--mb-4);
  transition: background-color 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: none;
}

.kg-lp-body .nav-menu {
  padding: var(--mb-2);
  padding-bottom: var(--mb-1-5);
  border-radius: 0;
}

.header.active .nav-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nm-head,
#nm-open {
  display: none;
}

.nm-ul {
  flex-direction: column;
}

.nml {
  position: relative;
  flex: 0 0 auto;
}

.nml a {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  color: var(--white);
}

.kg-lp-body .nml a {
  font-size: var(--fs-3-5);
  text-transform: uppercase;
  line-height: 1.3;
}

/* .kg-lp-body .header.active .nml a {
  color: var(--soft-black);
} */

.nml span {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--th-bn);
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.nml:hover span {
  width: 100%;
}

.nm-footer {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  /* border: 1px red solid; */
}

.nm-contact {
  flex: 0 0 33.3%;
  justify-content: flex-end;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
}

.nc-socials {
  justify-content: flex-start;
  column-gap: var(--mb-0-75);
}

.nc-socials a {
  font-size: 0.9rem;
  font-weight: 300;
  text-align: left;
  color: var(--soft-white);
  line-height: 1.2;
}

/* .kg-lp-body .header.active .nc-socials a {
  color: var(--txt-grey);
  font-weight: 400;
} */

.nc-socials a:hover {
  text-decoration: underline;
  text-decoration-color: var(--th-gd);
  text-decoration-thickness: 1.5px;
}

.nc-email {
  display: flex;
  justify-content: flex-start;
  column-gap: var(--mb-0-5);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-white);
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-decoration-thickness: 1.5px;
  transition: all 0.3s ease-in-out;
}

/* .kg-lp-body .header.active .nc-email {
  color: var(--soft-black);
  text-decoration-color: var(--th-dgn);
} */

.nc-email span {
  width: 8px;
  height: 8px;
  background-color: var(--th-gd);
  border-radius: 50%;
}

.nc-email:hover {
  text-decoration-color: var(--th-gd);
  letter-spacing: 0.2px;
}

.nc-email:hover span {
  background-color: var(--th-lgn);
}

.nm-terms {
  flex: 0 0 33.3%;
  column-gap: var(--mb-0-75);
  align-items: flex-end;
}

.nm-terms a {
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
  color: var(--soft-white);
  line-height: 1.2;
}

/* .kg-lp-body .header.active .nm-terms a {
  color: var(--txt-grey);
  font-weight: 400;
} */

.nm-terms a:hover {
  text-decoration: underline;
  text-decoration-color: var(--th-gd);
  text-decoration-thickness: 1.5px;
}

.nm-rights {
  flex: 0 0 33.3%;
  justify-content: flex-end;
}

.nm-rights p {
  font-size: 0.9rem;
  font-weight: 300;
  text-align: right;
  color: var(--soft-white);
  line-height: 1.2;
}

/* .kg-lp-body .header.active .nm-rights p {
  color: var(--txt-grey);
  font-weight: 400;
} */

.nav-btn {
  flex: 0 0 33.3%;
  justify-content: flex-end;
}

.ia-ho__body .nav-btn button p {
  padding: var(--mb-0-75) var(--mb-1);
  font-size: 0.95rem;
}

.ia-ho__body .nav-btn button span {
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
}

.kg-lp-body .nav-btn button p {
  font-size: 0.95rem;
}

.kg-lp-body .nav-btn button span {
  width: 32.5px;
  height: 32.5px;
  font-size: 1.15rem;
}

/* ===== MOBILE FIXED DONATE ===== */
.mobile-donate {
  display: none;
}

/* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
.footer {
  width: 100%;
  z-index: 30;
  background: transparent;
  overflow: hidden;
  /* margin-top: -2rem; */
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-image: url(../img/bckg/txt-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ft-container {
  width: 100%;
  padding: var(--mb-4);
  background-color: rgba(250, 250, 250, 0.4);
  justify-content: flex-start;
  row-gap: var(--mb-3-5);
}

.ft-head {
  width: 100%;
  justify-content: space-between;
  z-index: 4;
}

.ft-links {
  flex: 0 0 auto;
  justify-content: flex-start;
  column-gap: var(--mb-0-25);
}

.ftl {
  position: relative;
  flex: 0 0 auto;
  padding: var(--mb-0-5) var(--mb-1);
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}

.ftl:hover {
  background-color: var(--th-dgn);
}

.ftl a {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
  opacity: 0.9;
}

.ftl:hover > a {
  opacity: 1;
  color: var(--white);
}

.ft-socials {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-1);
}

.fts {
  flex: 0 0 auto;
  overflow: hidden;
}

.fts i {
  padding: var(--mb-0-5);
  border: 2px var(--th-gd) solid;
  border-radius: 50%;
  color: var(--soft-black);
  font-size: 1.2rem;
  transition: all 0.2s ease-in-out;
}

.fts i:hover {
  background-color: var(--th-gd);
  color: var(--white);
}

.ft-main {
  width: 100%;
  /* column-gap: var(--mb-2); */
  z-index: 3;
  justify-content: space-between;
  /* border: 1px red solid; */
}

.ft-main p {
  /* flex: 1; */
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 24.5vw;
  /* border: 1px lime solid; */
  text-align: center;
  color: var(--white);
  color: var(--th-gd);
  font-weight: 400;
  line-height: 0.6;
  letter-spacing: 0;
  letter-spacing: -0.05em;
  text-transform: lowercase;
  font-family: var(--bir-font);
}

.ft-foot {
  width: 100%;
  justify-content: space-between;
  z-index: 4;
}

.ft-foot > p,
.ftf > a {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
  opacity: 0.7;
}

.ftf {
  flex: 0 0 auto;
  column-gap: var(--mb-0-5);
}

.ftf span {
  color: var(--th-lgn);
}

.ftf a {
  border-bottom: 2px transparent solid;
}

.ftf a:hover {
  opacity: 1;
  border-bottom: 2px var(--th-lgn) solid;
}

.ft-foot button p,
.ft-foot button span {
  color: var(--white);
}

.ft-foot button p {
  font-size: 0.95rem;
}

.ft-foot button:hover p {
  background-color: var(--th-dgn);
}

.ft-foot button span {
  height: 46px;
  width: 46px;
  font-size: 1.35rem;
  color: var(--th-gd);
}

.ft-foot button:hover span {
  background-color: var(--th-gd);
  border: 1px var(--th-gd);
  color: var(--white);
}

/* ------ >>>>>> ========== MODALS ========== <<<<<< ------ */

/* ------ ========== ABOUT-MODAL || GALLERY MODAL ========== ------ */
.abm,
.gm {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 70;
  padding: 0;
  animation: fadeY 0.3s ease-in-out;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}

.abm.active,
.gm.active {
  display: flex;
  opacity: 1;
}

.abm-container,
.gm-container {
  width: 100%;
  height: 100%;
  padding: var(--mb-2);
  row-gap: var(--mb-2);
  justify-content: space-between;
}

.abm-title,
.gm-title {
  width: 100%;
  justify-content: space-between;
  column-gap: var(--mb-2);
}

.abm-title h5,
.gm-title h5 {
  flex: 0 0 auto;
  font-size: var(--fs-1-5);
  font-weight: 300;
  text-align: left;
  color: var(--white);
}

.abm-span,
.gm-span {
  width: 100%;
  height: 2px;
  background-color: var(--th-gd);
}

.abm-close,
.gm-close {
  flex: 0 0 auto;
  cursor: pointer;
}

.abm-close > span,
.gm-close > span {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  /* background-color: var(--error); */
  border: 2px var(--error) solid;
  padding: var(--mb-0-25);
  transition: all 0.2s ease-in-out;
}

.abm-close:hover span,
.gm-close:hover span {
  background-color: var(--error);
}

.abm-main,
.gm-main {
  width: 100%;
  height: 100%;
  border: 1px var(--white) solid;
  overflow: hidden;
}

.abm-main iframe,
.abm-main img,
.gm-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.abm-nav,
.gm-nav {
  width: 100%;
  justify-content: space-between;
}

.abm-nav span,
.gm-nav span {
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.abmn,
.gmn {
  color: var(--white);
  border: 2px var(--white) solid;
}

.abm-nav span:hover,
.gm-nav span:hover {
  background-color: #e5e5e5;
  color: var(--th-dgn);
}

.abm-nav span:active,
.gm-nav span:active {
  background-color: var(--th-gd);
  color: var(--white);
}

/* ------ ========== GET INVOLVED MODAL ========== ------ */
.gi {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 70;
  padding: 0;
  animation: fade 0.3s ease-in-out;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: var(--mb-2) var(--mb-4);
  display: none;
}

.gi.active {
  display: flex;
  opacity: 1;
}

.gi-container {
  position: relative;
}

#gi-close {
  position: absolute;
  top: -0.25rem;
  right: -3.5rem;
  background-color: var(--error);
  color: var(--white);
  padding: var(--mb-0-5);
  font-size: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
}

.gi-card {
  width: 450px;
  background-color: var(--white);
  padding: var(--mb-1-5);
  justify-content: flex-start;
  row-gap: var(--mb-1);
  border-radius: 10px;
}

.gic-img {
  position: relative;
  width: 100%;
  height: 40vh;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--mb-0-25);
}

.gic-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.gici {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: flex-end;
  padding: var(--mb-1-5);
  padding-bottom: var(--mb-2);
  background-color: rgba(0, 0, 0, 0.6);
}

.gici h3 {
  font-size: 2.1rem;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  line-height: 1.2;
}

.gici h3 span {
  font-family: var(--bir-font);
  color: var(--th-gd);
  font-size: 4rem;
  line-height: 0.5;
}

.gic-title {
  width: 100%;
  justify-content: center;
  border-top: 1px var(--txt-grey) solid;
  padding-top: var(--mb-1);
}

.gic-title p {
  font-size: var(--fs-1);
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
}

.gic-token {
  width: 100%;
  justify-content: flex-start;
  border: 1px var(--th-dgn) solid;
  border-radius: 8px;
}

.gict {
  width: 100%;
  padding: var(--mb-0-75);
  justify-content: space-between;
  border-bottom: 1px var(--th-dgn) solid;
}

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

.gict span {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--th-dgn);
}

.gict p {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--th-gd);
}

.gic-note {
  width: 100%;
  justify-content: center;
}

.gic-note p {
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
}

.gic-note p strong {
  font-weight: 500;
}

.gic-note p i {
  text-decoration: underline;
  text-decoration-color: var(--th-gd);
  font-weight: 500;
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 500px */
@media screen and (max-width: 500px) {
  button p {
    padding: var(--mb-1) var(--mb-1-5);
    border: 2px transparent solid;
    font-weight: 400;
    font-size: 1rem;
  }

  button span {
    width: 46px;
    height: 46px;
    transition: all 0.3s ease-in-out;
  }

  .pri-btn span,
  .sec-btn span {
    font-size: 1.5rem;
  }

  .kgp-btn p,
  .kgs-btn p {
    font-size: 0.95rem;
  }

  .kgp-btn span,
  .kgs-btn span {
    height: 35px;
    width: 35px;
    line-height: 1;
    font-size: 1.25rem;
  }

  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
  .header {
    position: fixed;
    top: 0;
    padding: 0 var(--mb-1);
    padding-top: var(--mb-1);
  }

  .header.scrolled {
    padding: var(--mb-1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .header.active {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .kg-lp-body .header.scrolled,
  .kg-lp-body .header.active {
    border-radius: 0;
  }

  /* NAV */
  .nav {
    width: 100%;
    height: auto;
    padding: 0;
    /* border: 1px red solid; */
    justify-content: space-between;
    flex-direction: row;
    row-gap: var(--mb-0-75);
  }

  .nav-logo {
    flex: 0 0 auto;
    width: auto;
    justify-content: center;
  }

  .nl {
    flex: 0 0 auto;
    overflow: hidden;
  }

  .nl img {
    width: 65px;
    object-fit: cover;
  }

  .nl:hover img {
    filter: none;
  }

  .nav-logo {
    display: none;
    flex: 0 0 auto;
  }

  .kg-lp-body .nav-logo .nl img {
    width: 50px;
  }

  .kg-lp-body .nav-logo {
    display: flex;
  }

  .nm-btn {
    flex: 0 0 auto;
    row-gap: 10px;
    cursor: pointer;
    align-items: flex-start;
  }

  .kg-lp-body .nm-btn {
    align-items: flex-end;
    row-gap: 8px;
  }

  .nm-btn span {
    width: 70px;
    height: 2.5px;
    background-color: #e5e5e5;
  }

  .kg-lp-body .nm-btn span {
    width: 60px;
  }

  .nm-btn:hover span {
    width: 65px;
    background-color: var(--th-bn);
  }

  .header.active .nm-btn span {
    width: 80px;
    background-color: var(--th-lgn);
  }

  .kg-lp-body .header.active .nm-btn span {
    width: 68px;
  }

  .nm-btn p {
    font-size: 0.9rem;
    line-height: 1.1;
    margin-left: 0.2rem;
  }

  .kg-lp-body .nm-btn p {
    font-size: 0.85rem;
  }

  .kg-lp-body .nav-btn {
    display: none;
  }

  .nav-btn button p {
    font-size: 0.85rem;
    padding: var(--mb-0-75) var(--mb-1);
  }

  .nav-btn button span {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    display: none;
  }

  .nav-menu {
    animation: fadeY 0.5s ease-in-out;
    padding: var(--mb-3) var(--mb-2);
    padding-bottom: var(--mb-2);
    row-gap: var(--mb-3);
    overflow: hidden;
    display: none;
  }

  .kg-lp-body .header.active .nav-menu {
    padding-bottom: var(--mb-3);
  }

  .header.active .nav-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nm-head,
  #nm-open {
    display: none;
  }

  .nm-ul {
    flex-direction: column;
  }

  .nml {
    position: relative;
    flex: 0 0 auto;
  }

  .nml a {
    font-size: 2rem;
    line-height: 1.5;
  }

  .kg-lp-body .nml a {
    font-size: 2.2rem;
    line-height: 1.4;
  }

  .nml span {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 3px;
  }

  .nml:hover span {
    width: 100%;
  }

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

  .nm-contact {
    flex: 0 0 auto;
    width: auto;
    justify-content: center;
    align-items: center;
    row-gap: 0.35rem;
    margin-bottom: var(--mb-1-5);
  }

  .nc-socials {
    justify-content: center;
    column-gap: var(--mb-0-75);
  }

  .nc-socials a {
    font-size: 0.85rem;
    font-weight: 300;
    text-align: center;
  }

  .nc-email {
    display: flex;
    justify-content: center;
    column-gap: var(--mb-0-5);
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
  }

  .nc-email span {
    width: 8px;
    height: 8px;
    background-color: var(--th-gd);
    border-radius: 50%;
  }

  .nm-terms {
    flex: 0 0 auto;
    column-gap: var(--mb-0-75);
    align-items: center;
  }

  .nm-terms a {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .nm-rights {
    flex: 0 0 auto;
    justify-content: center;
  }

  .nm-rights p {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
  }

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

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

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

  .ftl {
    position: relative;
    flex: 0 0 auto;
  }

  .ftl a {
    font-size: 1rem;
    opacity: 0.8;
  }

  .ft-socials {
    flex: 0 0 auto;
    justify-content: flex-end;
    column-gap: var(--mb-0-75);
  }

  .fts {
    flex: 0 0 auto;
    overflow: hidden;
  }

  .fts i {
    padding: var(--mb-0-5);
    font-size: 1.25rem;
  }

  .ft-main {
    width: 100%;
    margin: 0;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: var(--mb-0-5);
  }

  .ft-main p {
    /* flex: 1; */
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 7rem;
    /* border: 1px lime solid; */
    text-align: center;
    line-height: 0.6;
  }

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

  .ft-foot p,
  .ftf a {
    line-height: 1.1;
    opacity: 0.8;
  }

  .ftf {
    flex: 0 0 auto;
    column-gap: var(--mb-0-5);
  }

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

  /* ------ ========== ABOUT-MODAL || GALLERY MODAL ========== ------ */
  .abm,
  .gm {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: none;
  }

  .abm.active,
  .gm.active {
    display: flex;
    opacity: 1;
  }

  .abm-container,
  .gm-container {
    width: 100%;
    height: 100%;
    padding: var(--mb-1-5);
    row-gap: var(--mb-1-5);
    justify-content: space-between;
  }

  .abm-title,
  .gm-title {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    column-gap: unset;
    row-gap: var(--mb-1-5);
  }

  .abm-title h5,
  .gm-title h5 {
    flex: 0 0 auto;
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    order: 2;
  }

  .abm-span,
  .gm-span {
    display: none;
  }

  .abm-close,
  .gm-close {
    flex: 0 0 auto;
    cursor: pointer;
  }

  .abm-close > span,
  .gm-close > span {
    font-size: 1.5rem;
    border: 1px var(--error) solid;
    padding: var(--mb-0-25);
    order: 1;
  }

  .abmn,
  .gmn {
    color: var(--white);
    border: 1px var(--white) solid;
  }

  .abm-nav span:hover,
  .gm-nav span:hover {
    background-color: #e5e5e5;
    color: var(--th-dgn);
  }

  /* ------ ========== GET INVOLVED MODAL ========== ------ */
  .gi {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: var(--mb-2) var(--mb-1-5);
    display: none;
  }

  .gi.active {
    display: flex;
    opacity: 1;
  }

  .gi-container {
    position: relative;
  }

  #gi-close {
    position: absolute;
    top: -1.5rem;
    right: unset;
    font-size: 1.15rem;
    border-radius: 50%;
  }

  .gi-card {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-1);
    justify-content: flex-start;
    row-gap: var(--mb-1);
    border-radius: 10px;
  }

  .gic-img {
    position: relative;
    width: 100%;
    height: 35vh;
    margin-bottom: var(--mb-0-25);
  }

  .gic-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 60%;
  }

  .gici {
    position: absolute;
    inset: 0;
    padding: var(--mb-1-5);
    background-color: rgba(0, 0, 0, 0.6);
  }

  .gici h3 {
    font-size: 1.8rem;
  }

  .gici h3 span {
    font-size: 3rem;
    line-height: 0.5;
  }

  .gic-title {
    width: 100%;
    padding-top: var(--mb-0-75);
  }

  .gic-title p {
    font-size: 0.9rem;
  }

  .gic-token {
    width: 100%;
    justify-content: flex-start;
    border: 1px var(--th-dgn) solid;
    border-radius: 8px;
  }
  .gict {
    width: 100%;
    padding: var(--mb-0-75);
    justify-content: space-between;
    border-bottom: 1px var(--th-dgn) solid;
  }

  .gict span {
    font-size: 0.85rem;
  }

  .gict p {
    font-size: 0.85rem;
  }

  .gic-note {
    width: 100%;
  }

  .gic-note p {
    font-size: 0.8rem;
  }

  .gic-note p strong {
    font-weight: 500;
  }

  .gic-note p i {
    text-decoration: underline;
    text-decoration-color: var(--th-gd);
    font-weight: 500;
  }
}

/* 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) {
}
