/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&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-eg: #6b8e23;
  --th-brn: #8b4513;
  --th-bge: #d2b48c;
  --th-grn: #477035;
  --cannoli-cream: #f1f0e2;
  --the-grey: #f6f7f9;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  /* --laini-font: */
  --pri-font: "Lora", serif;
  --pop-font: "Poppins", sans-serif;
  --nun-font: "Nunito", sans-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;
}

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,
a,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-family: var(--pop-font);
  font-size: var(--fs-1);
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--pop-font);
  padding: 0;
}

/* 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(--white);
  color-scheme: light dark;
}

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

#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-brn);
  font-weight: 500;
  font-family: var(--cor-font);
  font-style: italic;
}

button {
  width: auto;
  height: auto;
  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;
}

button > p {
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: 30px;
  padding: var(--mb-0-75) var(--mb-1-5);
}

button > span {
  padding: 0.5rem;
  border-radius: 50%;
}

button:hover span {
  rotate: 45deg;
}

.pri-btn,
.alt-btn,
.sec-btn {
  background: transparent;
}

.pri-btn p {
  background-color: var(--th-grn);
  color: var(--white);
}

.pri-btn span {
  font-size: 1.6rem;
  border: 2px var(--th-brn) solid;
  color: var(--soft-black);
}

.pri-btn:hover span {
  background-color: var(--th-brn);
  color: var(--white);
}

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

.sec-btn:hover p {
  background-color: var(--th-eg);
  color: var(--white);
}

.sec-btn span {
  font-size: 1.6rem;
  border: 2px var(--th-eg) solid;
  color: var(--white);
}

.sec-btn:hover span {
  background-color: var(--th-brn);
  color: var(--white);
  border: 2px var(--th-brn) 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;
  }
}

/*========== ANIMATION (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 */
  }
}

.animated-bg {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at 30% 30%, #c88d6f 20%, transparent 60%),
    radial-gradient(circle at 70% 70%, #d7b7a2 20%, transparent 60%),
    radial-gradient(circle at 50% 50%, #ffffff 10%, transparent 60%);
  background-blend-mode: soft-light;
  animation: moveWaves 30s ease-in-out infinite;
  z-index: -1;
}

@keyframes moveWaves {
  0% {
    transform: scale(1.2) translate(0, 0);
  }
  50% {
    transform: scale(1.2) translate(10%, 10%);
  }
  100% {
    transform: scale(1.2) translate(0, 0);
  }
}

/* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
.header {
  position: fixed;
  top: var(--mb-1-5);
  left: 0;
  width: 100%;
  padding: 0 var(--mb-2);
  z-index: 30;
  /* border: 1px red solid; */
  justify-content: space-between;
}

.nav {
  flex: 0 0 auto;
  justify-content: flex-start;
  column-gap: var(--mb-2);
  border-radius: 5px;
}

.nav.active {
  padding: var(--mb-0-5) var(--mb-1);
  background-color: rgba(250, 250, 250, 0.95);
  background-color: #f5f5f5;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
}

.nav-header {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.nh-logo {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.nh-logo img {
  width: 50px;
  object-fit: cover;
  filter: invert();
}

.nav.active .nh-logo img {
  width: 35px;
}

.nav-contact {
  display: none;
}

.nav-menu {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.nm-svg {
  display: none;
}

.nm-ul {
  flex: 0 0 auto;
  justify-content: flex-start;
  column-gap: var(--mb-1);
}

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

.nml a {
  font-size: 0.95rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
}

.ab-page .nml a {
  color: var(--soft-black);
}

.nav.active .nml a {
  color: var(--soft-black);
}

.nml span {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--th-brn);
}

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

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

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

.header.active .nav-btn {
  display: none;
}

/* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
.footer {
  width: 100%;
  background-color: var(--black);
  background-image: url(/assets/img/patterns/pt-1-clr.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ft-container {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.88);
  padding: var(--mb-4);
  padding-bottom: var(--mb-2);
  row-gap: var(--mb-2);
}

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

.fth {
  flex: 0 0 60%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  /* border: 1px red solid; */
}

.fth img {
  width: 200px;
  object-fit: cover;
  filter: invert();
}

.fth h1 {
  font-size: 8.5vw;
  color: var(--white);
  text-align: left;
  font-weight: 300;
  line-height: 0.9;
  font-family: var(--pri-font);
}

.fth h1 span {
  color: var(--th-bge);
}

.fth p {
  font-size: 0.95rem;
  color: var(--white);
  text-align: left;
  font-weight: 300;
}

.fth-ul {
  flex: 0 0 25%;
  /* border: 1px teal solid; */
  justify-content: flex-end;
  align-items: flex-end;
  row-gap: var(--mb-1);
}

.fth-li {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
}

.fth-li a {
  font-size: 1.1rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
}

.fth-li span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--th-brn);
}

.fth-li:hover span {
  width: 100%;
}

.ft-tail {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: var(--mb-1-5);
  border-top: 1px var(--th-bge) solid;
}

.ft-tail p,
.ftts {
  font-size: 0.85rem;
  color: var(--white);
  text-align: left;
  font-weight: 300;
  opacity: 0.8;
}

.ft-tail p a {
  font-size: 0.85rem;
  color: var(--th-bge);
}

.ft-tail p a:hover {
  opacity: 1;
  color: var(--white);
  text-decoration: underline;
}

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

.ftts {
  flex: 0 0 auto;
}

.ftts:hover {
  opacity: 1;
  color: var(--th-bge);
}

/* ------ >>>>>> ========== MODALS ========== <<<<<< ------ */
/* ------ ========== GET INVOLVED MODAL ========== ------ */
.gi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  padding: var(--mb-2);
  animation: fade 0.2s ease-in-out;
  display: none;
}

.gi.active {
  display: flex;
}

.gi-container {
  width: 100%;
  height: 100%;
  /* border: 1px red solid; */
}

.gi-mode {
  position: relative;
  width: 700px;
  background-color: var(--white);
  padding: var(--mb-2);
  border-radius: 20px;
  justify-content: flex-start;
  row-gap: var(--mb-2);
  /* overflow: hidden; */
  background-image: url(/assets/img/patterns/pt-1-clr.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gi-mode::before {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  content: "";
  background-color: rgba(250, 250, 250, 0.925);
  z-index: 1;
  border-radius: 20px;
}

#gi-close {
  position: absolute;
  right: -2rem;
  top: -2rem;
  padding: var(--mb-0-5);
  font-size: var(--fs-1-5);
  color: var(--th-brn);
  background-color: var(--th-bge);
  border-radius: 50%;
  z-index: 4;
  cursor: pointer;
}

#gi-close:hover {
  rotate: 90deg;
  background-color: var(--th-brn);
  color: var(--cannoli-cream);
}

.gim-title {
  justify-content: flex-start;
  row-gap: var(--mb-0-75);
  z-index: 2;
}

.gim-title h3 {
  font-size: var(--fs-2-5);
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
  line-height: 1;
}

.gim-title h3 span {
  color: var(--th-brn);
  font-style: italic;
}

.gim-title p {
  width: 65%;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  color: var(--txt-grey);
}

.gim {
  animation: fade 0.3s ease-in-out;
  display: none;
}

.gim.active {
  display: flex;
}

.gim-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.gc {
  flex: 0 0 48%;
  padding: var(--mb-1-5) var(--mb-1);
  border: 1px var(--th-bge) solid;
  justify-content: flex-start;
  row-gap: var(--mb-1-5);
  border-radius: 20px;
  order: 1;
}

.gc.donate {
  position: relative;
  cursor: none;
  order: 2;
  /* display: none; */
}

/* .gc.donate::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(250, 250, 250, 0.925);
  border-radius: 20px;
} */

.gc:hover {
  border: 1px transparent solid;
  background-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gc-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

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

.gc-data {
  justify-content: flex-start;
  row-gap: var(--mb-0-75);
}

.gc-data h4 {
  font-size: 1.35rem;
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
  line-height: 1;
}

.gc-data > p {
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  color: var(--txt-grey);
}

.gc-data button {
  margin-top: var(--mb-0-5);
  display: none;
}

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

.gc-data button span {
  padding: var(--mb-0-5);
  font-size: 1.4rem;
}

.gi-details {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-2);
  z-index: 2;
}

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

.gidb-title,
.gidm-title {
  width: auto;
}

.gidb-title h5,
.gidm-title h5 {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  color: var(--soft-black);
  line-height: 1;
}

.gidb-list,
.gidm-list {
  width: 100%;
  padding: var(--mb-1-5);
  border: 1px #d4d4d4 solid;
  background-color: rgba(250, 250, 250, 0.7);
  border-radius: 15px;
  justify-content: flex-start;
  row-gap: var(--mb-0-75);
}

.gidbl,
.gidml {
  width: 100%;
  justify-content: space-between;
}

.gidbl span,
.gidml-span {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--th-brn);
}

.gidbl p,
.gidml p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
}

.gidml p {
  display: flex;
  justify-content: flex-end;
  column-gap: var(--mb-0-25);
}

.gidml p span {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
}

.gidml p span strong {
  font-weight: 400;
  color: var(--th-eg);
}

.gid-action {
  column-gap: var(--mb-0-5);
  border: 1px var(--th-bge) solid;
  padding: var(--mb-0-5) var(--mb-1);
  border-radius: 30px;
  cursor: pointer;
}

.gid-action span {
  color: var(--th-brn);
}

.gid-action p {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
}

.gid-action:hover {
  background-color: var(--th-bge);
  border: 1px transparent solid;
}

.gid-action:hover span {
  color: var(--white);
}

.gid-action:hover p {
  color: var(--th-brn);
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 500px */
@media screen and (max-width: 500px) {
  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
  .header {
    position: fixed;
    top: var(--mb-1-5);
    padding: 0 var(--mb-1);
    z-index: 30;
    /* border: 1px red solid; */
    justify-content: center;
  }

  .nav {
    position: relative;
    flex: 0 0 100%;
    justify-content: space-between;
    border-radius: 0;
  }

  .nav-header {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .nh-logo {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .nh-logo img {
    width: 40px;
    object-fit: cover;
    filter: invert();
  }

  .nav.active .nh-logo img {
    width: 35px;
  }

  .nav-menu {
    position: absolute;
    inset: 0;
    flex: 0 0 auto;
    width: 100%;
    height: fit-content;
    padding: var(--mb-1-5);
    background-color: var(--white);
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    animation: fadeY 0.3s ease-in-out;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nm-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    display: flex;
    z-index: 1;
  }

  .nm-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
  }

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

  .nmh-img img {
    width: 50px;
    object-fit: cover;
  }

  #nm-close {
    font-size: var(--fs-2);
    color: var(--txt-grey);
    border: 1px var(--th-brn) solid;
    padding: 0.25rem;
    border-radius: 50%;
  }

  .nm-ul {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    column-gap: unset;
    row-gap: var(--mb-0-75);
    padding: var(--mb-1) 0;
    border-top: 1px #d4d4d4 solid;
    border-bottom: 1px #d4d4d4 solid;
    z-index: 2;
  }

  .nml a {
    font-size: 1.3rem;
    /* font-weight: 400; */
    color: var(--txt-grey);
    line-height: 1.3;
    opacity: 0.9;
  }

  .nml:hover a {
    color: var(--soft-black);
    font-weight: 400;
  }

  .nml.active a {
    color: var(--soft-black);
    font-weight: 400;
  }

  .nav.active .nml a {
    color: var(--soft-black);
  }

  .nml span {
    left: 0;
    height: 1.5px;
  }

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

  #nm-open {
    display: inline-block;
    font-size: 2.2rem;
    color: var(--white);
  }

  .ab-page #nm-open {
    color: var(--soft-black);
  }

  .nav.active #nm-open {
    color: var(--soft-black);
  }

  .nav-contact {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-1);
    z-index: 2;
  }

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

  .nc-socials a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--txt-grey);
    line-height: 1.3;
    opacity: 0.9;
  }

  .nc-socials a:hover {
    color: var(--soft-black);
    text-decoration: underline;
    text-decoration-color: var(--th-brn);
    opacity: 1;
  }

  .nc-email {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--txt-grey);
    line-height: 1.3;
    text-align: left;
    opacity: 0.9;
    text-decoration: underline;
    text-decoration-color: var(--th-brn);
  }

  .nc-email:hover {
    opacity: 1;
  }

  .nav-btn {
    display: none;
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    width: 100%;
  }

  .ft-container {
    width: 100%;
    padding: var(--mb-4) var(--mb-2);
    padding-bottom: var(--mb-2);
    row-gap: var(--mb-2);
  }

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

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

  .fth img {
    width: 200px;
    object-fit: cover;
    filter: invert();
  }

  .fth h1 {
    font-size: 10vw;
    text-align: center;
    font-weight: 300;
    line-height: 0.9;
  }

  .fth p {
    width: 100%;
    font-size: 0.9rem;
    color: var(--white);
    text-align: center;
  }

  .fth-ul {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: unset;
    justify-content: space-between;
    align-items: flex-end;
    row-gap: unset;
    column-gap: var(--mb-1);
  }

  .fth-li {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
  }

  .fth-li a {
    font-size: 0.9rem;
    text-align: center;
    color: #fafafa;
    opacity: 0.9;
  }

  .fth-li:hover a {
    opacity: 1;
    color: var(--white);
  }

  .ft-tail {
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--mb-2);
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .ft-tail p,
  .ftts {
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.8;
  }

  .ft-tail p a {
    font-size: 0.85rem;
    color: var(--th-bge);
  }

  .ft-tail p a:hover {
    opacity: 1;
    color: var(--white);
    text-decoration: underline;
  }

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

  .ftts {
    flex: 0 0 auto;
  }

  .ftts:hover {
    opacity: 1;
    color: var(--th-bge);
  }

  /* ------ >>>>>> ========== MODALS ========== <<<<<< ------ */
  /* ------ ========== GET INVOLVED MODAL ========== ------ */
  .gi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    padding: var(--mb-1-5);
    align-items: flex-start;
    overflow-y: auto;
    animation: fade 0.2s ease-in-out;
    display: none;
  }

  .gi.active {
    display: flex;
  }

  .gi-container {
    width: 100%;
    height: auto;
    /* border: 1px red solid; */
  }

  .gi-mode {
    position: relative;
    width: 100%;
    padding: var(--mb-2) var(--mb-1-5);
    border-radius: 15px;
    justify-content: flex-start;
    row-gap: var(--mb-2);
  }

  #gi-close {
    position: absolute;
    right: -1rem;
    top: -1rem;
    padding: var(--mb-0-5);
    font-size: 1.35rem;
  }

  .gim-title {
    justify-content: flex-start;
    row-gap: var(--mb-1);
    z-index: 2;
  }

  .gim-title h3 {
    font-size: var(--fs-2);
  }

  .gim-title p {
    width: 95%;
    font-size: 0.95rem;
  }

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

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

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

  .gc-data {
    justify-content: flex-start;
    row-gap: var(--mb-0-75);
  }

  .gc-data h4 {
    font-size: 1.4rem;
    /* display: none; */
  }

  .gc-data > p {
    font-size: 0.85rem;
    /* display: none; */
  }

  .gc-data button {
    margin: 0;
    display: none;
  }

  .gi-details {
    width: 100%;
    z-index: 2;
  }

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

  .gidb-title h5,
  .gidm-title h5 {
    font-size: 1.1rem;
  }

  .gidb-list,
  .gidm-list {
    width: 100%;
    padding: var(--mb-1-5) var(--mb-1);
    row-gap: var(--mb-1-5);
  }

  .gidbl,
  .gidml {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-0-25);
  }

  .gidbl span,
  .gidml-span {
    font-size: 0.95rem;
    line-height: 1.3;
    text-align: center;
  }

  .gidbl p,
  .gidml p {
    font-size: 0.9rem;
    text-align: center;
  }

  .gidml p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    column-gap: unset;
    row-gap: 0;
    margin-top: var(--mb-0-5);
  }

  .gidml p span {
    font-size: 0.85rem;
    line-height: 1;
    text-align: center;
  }

  .gidml p span strong {
    font-weight: 400;
    color: var(--th-eg);
  }

  .gid-action {
    column-gap: var(--mb-0-5);
    padding: var(--mb-0-5) var(--mb-1);
  }

  .gid-action span {
    color: var(--th-brn);
  }

  .gid-action p {
    font-size: 0.9rem;
  }
}

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

/* Media query for screens with a minimum width of 1650px */
@media screen and (min-width: 1650px) {
}
