/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --theme-dark: #1c1d20;
  --t-black: #1c1d20;
  --t-brown: #993232;
  --tl-brown: #a64c4c;
  --t-blue: rgb(2, 48, 71);
  --t-green: #008000;
  --tb-dark: #1b263b;
  --tb-light: #1b263b;
  --bg-grey: #f7f7f7;
  --bg-black: #1f242e;
  --text-grey: #444950;
  --light-grey: #ebebeb;
  --success: #13ae8f;
  --error: #ff3333;

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

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-6: 6rem;
  --fs-5-5: 5.5rem;
  --fs-5: 5rem;
  --fs-4-5: 4.5rem;
  --fs-4: 4rem;
  --fs-3-5: 3.5rem;
  --fs-3: 3rem;
  --fs-2-5: 2.5rem;
  --fs-2: 2rem;
  --fs-1-5: 1.5rem;
  --fs-1: 1rem;
  --fs-0-95: 0.95rem;
  --fs-0-85: 0.85rem;
  --fs-0-75: 0.75rem;
  --fs-0-65: 0.65rem;
  --fs-0-5: 0.5rem;
  --fs-0-25: 0.275rem;
  --fs-0-2: 0.2rem;
  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*===== Margenes Bottom =====*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-3-5: 3rem;
  --mb-4: 4rem;
  --mb-4-5: 4.5rem;
  --mb-5: 5rem;
  --mb-5-5: 5.5rem;
  --mb-6: 6rem;
  --mb-6-5: 6.5rem;
  --mb-7: 7rem;
  --mb-7-5: 7.5rem;
  --mb-8: 8rem;
}

/*========== 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-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--pop-font);
  font-size: var(--fs-1-5);
  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;
  text-rendering: optimizeLegibility;
  font-family: var(--sos-font);
}

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

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

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--mb-8);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

button {
  width: auto;
  height: auto;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--pop-font);
  color: var(--black);
  text-align: center;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pri-btn {
  width: auto;
  background: transparent;
  color: var(--t-blue);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* column-gap: var(--mb-0-5); */
}

.pri-btn p {
  width: auto;
  border: 2px var(--t-blue) solid;
  background-color: var(--t-blue);
  border-radius: 30px;
  color: var(--white);
  padding: var(--mb-0-75) var(--mb-1-5);
  font-size: 0.95rem;
  font-weight: 400;
}

.pri-btn span {
  border: 2px maroon solid;
  background-color: transparent;
  border-radius: 50%;
  color: var(--t-blue);
  padding: 0.65rem;
  font-size: 1.3rem;
  /* font-weight: 600; */
}

.pri-btn:hover span {
  rotate: 45deg;
  border: 2px maroon solid;
  background-color: maroon;
  color: var(--white);
}

.sec-btn {
  width: auto;
  background: transparent;
  color: var(--t-blue);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* column-gap: var(--mb-0-5); */
}

.sec-btn p {
  width: auto;
  border: 2px var(--tl-brown) solid;
  background-color: var(--tl-brown);
  border-radius: 30px;
  font-size: var(--fs-1);
  font-weight: 400;
  color: var(--white);
  padding: var(--mb-0-75) var(--mb-1-5);
}

.sec-btn span {
  border: 2px var(--tl-brown) solid;
  background: transparent;
  border-radius: 50%;
  color: var(--white);
  padding: 0.65rem;
  font-size: 1.3rem;
}

.sec-btn:hover p {
  background-color: var(--t-brown);
  border: 2px var(--t-brown) solid;
}

.sec-btn:hover span {
  rotate: 45deg;
  border: 2px var(--white) solid;
  background-color: var(--white);
  color: var(--t-blue);
}

.pri-alt-btn {
  width: auto;
  background: transparent;
  border: 1px var(--white) solid;
  border-radius: 30px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--mb-0-5);
}

.pri-alt-btn:hover {
  background-color: var(--white);
  color: var(--t-black);
}

.pri-alt-btn span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--t-yellow);
  animation: fade 0.3s ease-in-out;
}

.pri-alt-btn:hover span {
  background-color: mediumseagreen;
  width: 30px;
  border-radius: 20px;
}

.s-curve {
  font-style: italic;
  font-family: var(--cor-font);
}

.s-mn {
  color: maroon;
}

.s-org {
  color: orange;
}

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

/* ------------ ========== HEADER SECTION ========== ------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--mb-4);
  padding-top: var(--mb-2);
  z-index: 50;
  /* border: 1px lime solid; */
}

.nav {
  width: 100%;
  justify-content: space-between;
  /* border: 1px dodgerblue solid; */
}

.nav.active {
  background-color: rgb(140, 25, 25, 0.9);
  padding: var(--mb-1) var(--mb-1-5);
  border-radius: 40px;
  backdrop-filter: blur(5px);
}

.ab-body .nav.active {
  background-color: rgba(250, 250, 250, 0.9);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.nav-logo {
  flex: 0 0 auto;
  justify-content: flex-start;
  overflow: hidden;
}

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

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

.nav-open {
  flex: 0 0 auto;
  align-items: flex-end;
  row-gap: var(--mb-0-25);
  /* border: 1px maroon solid; */
  /* padding: var(--mb-0-5); */
  overflow: auto;
  cursor: pointer;
}

.nav-open span {
  flex: 0 0 auto;
  width: 30px;
  height: 2px;
  border-radius: 10px;
  background-color: #8c1919;
  background-color: var(--white);
}

.nav-open:hover span {
  background-color: maroon;
}

.nav.active .nav-open:hover span {
  background-color: var(--t-blue);
  opacity: 0.9;
}

.ab-body .nav-open span {
  background-color: var(--t-blue);
}

.ab-body .nav-open:hover span {
  background-color: maroon;
}

.nav-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100dvh;
  background-color: #a64c4c;
  background-color: #993232;
  background-color: #8c1919;
  padding: var(--mb-2);
  justify-content: space-between;
  animation: fadeXrev 0.3s ease-in-out;
  display: none;
}

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

.nm-svg {
  position: absolute;
  right: var(--mb-1);
  bottom: 0;
  width: 90%;
  object-fit: fill;
  opacity: 0.09;
  /* -webkit-transform: scaleX(-1);
  transform: scaleX(-1); */
  z-index: 2;
}

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

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

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

#nm-close {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  padding: var(--mb-0-5);
  border: 1px var(--light-grey) solid;
  cursor: pointer;
  border-radius: 50%;
}

#nm-close:hover {
  border: 1px var(--white) solid;
  background-color: var(--white);
  color: #993232;
}

.nm-ul {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 3;
}

.nml {
  position: relative;
}

.nml a {
  flex: 0 0 auto;
  font-size: var(--fs-3);
  font-weight: 200;
  text-align: right;
  color: var(--white);
  /* font-family: var(--bod-font); */
  opacity: 0.95;
}

.nml span {
  width: 0;
  height: 3px;
  background-color: var(--white);
  margin-right: var(--mb-1);
  border-radius: 15px;
}

.nml:hover a {
  opacity: 1;
}

.nml:hover span {
  width: 25px;
}

.nm-contact {
  width: 100%;
  padding-top: var(--mb-1-5);
  border-top: 1px var(--white) solid;
  justify-content: space-between;
  z-index: 3;
}

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

.nmc-socials a {
  flex: 0 0 auto;
}

.nmc-socials a i {
  padding: var(--mb-0-5);
  font-size: 1.25rem;
  color: var(--white);
  border: 1px var(--white) solid;
  border-radius: 50%;
}

.nmc-socials a i:hover {
  background-color: var(--t-blue);
  border: 1px var(--t-blue) solid;
}

.nmc-chat {
  flex: 0 0 auto;
  padding: var(--mb-0-5) var(--mb-1);
  border: 1px var(--white) solid;
  border-radius: 30px;
  cursor: pointer;
}

.nmc-chat p {
  color: var(--white);
  font-size: var(--fs-1);
  font-weight: 300;
  text-align: center;
  cursor: pointer;
}

.nmc-chat:hover {
  background-color: var(--t-blue);
  border: 1px var(--t-blue) solid;
}

/* ------------ ========== FOOTER SECTION ========== ------------*/
.footer {
  width: 100%;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ft-container {
  width: 100%;
  background-color: rgba(250, 250, 250, 0.9);
  padding: var(--mb-2) var(--mb-4);
}

.ft-wrapper {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-3);
  background-color: rgb(2, 48, 71, 0.98);
  border-radius: 30px;
  padding: var(--mb-4);
}

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

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

.ftt h4 {
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  line-height: 1.3;
}

.ftt h4 strong {
  font-weight: 500;
  color: var(--tl-brown);
}

.ftt button {
  flex: 0 0 auto;
}

.ftt-ul {
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: flex-end;
  row-gap: var(--mb-0-5);
}

.ftt-li {
  position: relative;
  justify-content: flex-end;
}

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

.ftt-li > span {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--t-brown);
  width: 0;
  height: 2px;
}

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

.ft-body {
  width: 100%;
  justify-content: space-between;
  padding-top: var(--mb-2);
  border-top: 2px var(--white) solid;
}

.ftb-logo {
  flex: 0 0 auto;
  justify-content: flex-start;
  overflow: hidden;
}

.ftb-logo img {
  width: 150px;
  object-fit: cover;
}

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

.ftb-li {
  position: relative;
  justify-content: flex-end;
}

.ftb-li a {
  font-size: 0.95rem;
  font-weight: 300;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
}

.ftb-li > span {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--t-brown);
  width: 0;
  height: 1.5px;
}

.ftb-li:hover a {
  opacity: 1;
}

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

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

/*--------------============= GALLERY MODAL =============--------------*/
.g-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  height: 100dvh;
  width: 100%;
  padding: 4rem 8rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
  display: none;
}

.g-modal.active {
  display: flex;
  animation: fade 0.3s ease;
}

#gm-close {
  position: absolute;
  top: var(--mb-4);
  right: var(--mb-2);
  font-size: var(--fs-2-5);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

#gm-close:hover {
  color: var(--error);
}

.gm-container {
  position: relative;
  width: 100%;
  height: 100%;
  /* border: 1px orange solid; */
  z-index: 55;
  overflow: hidden;
}

.gm-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
}

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

.gm-arrows {
  z-index: 60;
  position: absolute;
  bottom: var(--mb-4);
  right: var(--mb-2);
  /* border: 1px hotpink solid; */
}

.gma {
  font-size: var(--fs-2-5);
  color: var(--white);
  padding: var(--mb-0-25);
  border: 2px var(--soft-white) solid;
  cursor: pointer;
  transition: all 0.1s ease;
}

.gma-left {
  border-top: none;
}

.gma:hover {
  background-color: var(--black);
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 480px */
@media screen and (max-width: 500px) {
  /* ------------ ========== HEADER SECTION ========== ------------*/
  .header {
    position: fixed;
    padding: 0 var(--mb-1);
    padding-top: var(--mb-1);
  }

  .nav.active {
    background-color: rgb(140, 25, 25, 0.9);
    padding: var(--mb-0-75) var(--mb-1-5);
    border-radius: 40px;
    backdrop-filter: blur(5px);
  }

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

  .nav-open span {
    flex: 0 0 auto;
    width: 25px;
    height: 1.5px;
    border-radius: 10px;
    background-color: #8c1919;
    background-color: var(--white);
  }

  .nav-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    padding: var(--mb-1-5);
  }

  .nm-svg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 95%;
    object-fit: fill;
    opacity: 0.09;
  }

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

  #nm-close {
    font-size: 1.3rem;
  }

  .nml {
    position: relative;
  }

  .nml a {
    flex: 0 0 auto;
    font-size: var(--fs-3);
    opacity: 0.95;
  }

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

  .nml:hover a {
    opacity: 1;
  }

  .nml:hover span {
    width: 20px;
  }

  .nm-contact {
    width: 100%;
    padding-top: var(--mb-1-5);
  }

  .nmc-socials a i {
    padding: var(--mb-0-5);
    font-size: 1.2rem;
    color: var(--white);
    border: 1px var(--white) solid;
    border-radius: 50%;
  }

  .nmc-socials a i:hover {
    background-color: var(--t-blue);
    border: 1px var(--t-blue) solid;
  }

  .nmc-chat p {
    color: var(--white);
    font-size: 0.9rem;
  }

  /* ------------ ========== FOOTER SECTION ========== ------------*/
  .ft-container {
    width: 100%;
    padding: var(--mb-2) var(--mb-1);
  }

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

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

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

  .ftt h4 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
  }

  .ftt h4 strong {
    font-weight: 500;
    color: var(--tl-brown);
  }

  .ftt button {
    flex: 0 0 auto;
  }

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

  .ftt-li {
    position: relative;
    justify-content: center;
  }

  .ftt-li a {
    font-size: 0.9rem;
    text-align: center;
  }

  .ft-body {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    border-top: 1px var(--white) solid;
  }

  .ftb-logo {
    flex: 0 0 auto;
    justify-content: center;
    overflow: hidden;
  }

  .ftb-logo img {
    width: 150px;
    object-fit: cover;
  }

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

  .ftb-li a {
    font-size: 0.95rem;
    opacity: 0.8;
  }

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

  /*--------------============= GALLERY MODAL =============--------------*/
  .g-modal {
    position: fixed;
    padding: 2rem;
    display: none;
  }

  .g-modal.active {
    display: flex;
    animation: fade 0.3s ease;
  }

  #gm-close {
    position: absolute;
    top: var(--mb-1);
    right: var(--mb-1);
    font-size: var(--fs-1-5);
  }

  #gm-close:hover {
    color: var(--error);
  }

  .gm-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* border: 1px orange solid; */
    z-index: 55;
    overflow: hidden;
  }

  .gm-img {
    background-size: contain;
    background-position: center;
  }

  .gm-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .gm-arrows {
    z-index: 60;
    position: absolute;
    bottom: var(--mb-1);
    right: var(--mb-1);
    /* border: 1px hotpink solid; */
  }

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

  .gma-left {
    border-top: none;
  }

  .gma:hover {
    background-color: var(--black);
  }
}

/* Media query for screens with a minimum width of 1440px and a maximum width of 1600px */
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .header {
    position: fixed;
    padding: 0 var(--mb-6);
    padding-top: var(--mb-2);
    z-index: 50;
  }
  /* ------------ ========== FOOTER SECTION ========== ------------*/
  .ft-container {
    width: 100%;
    background-color: rgba(250, 250, 250, 0.9);
    padding: var(--mb-2) var(--mb-6);
  }
}
