/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?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;
  --t-black: #1c1d20;
  --tg-1: #acdaa0;
  --tg-2: #73bf5e;
  --tg-3: #518c4f;
  --tg-4: #2e5931;
  --tg-5: #133840;
  --t-orange: #d9753b;
  --t-blue: #023047;
  --tb-dark: #1b263b;
  --tb-light: #1b263b;
  --the-grey: #f6f7f9;
  --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;

  /* .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,
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(--pri-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;
}

.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(--body-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);
}

.pri-btn span {
  border: 2px var(--tg-1) solid;
  background-color: var(--tg-1);
  border-radius: 50%;
  color: var(--t-blue);
  padding: 0.5rem;
  font-size: 1.5rem;
  /* font-weight: 600; */
}

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

.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(--tg-1) solid;
  border-radius: 30px;
  color: var(--white);
  padding: var(--mb-0-5) var(--mb-1);
}

.sec-btn span {
  border: 2px var(--tg-1) solid;
  border-radius: 50%;
  color: var(--white);
  padding: 0.5rem;
  font-size: 1.2rem;
}

.sec-btn:hover p {
  background-color: var(--tg-1);
  color: var(--t-blue);
}

.sec-btn:hover span {
  rotate: 45deg;
  border: 2px orange solid;
}

.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-grn {
  color: limegreen;
}

.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 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 CAROUSEL ] ======= */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* Hide Fallback content first */
  .fallback {
    display: none;
  }

  .carousel {
    display: block !important;
    max-height: none !important;
    position: relative;
    overflow: hidden;
    /* border: 4px red solid; */
    width: 100%;
    /* height: 100%; */
  }

  /* 
      Selective blocking for clients.
      - Samsung (#MessageViewBody) - no absolute positioning
      - Comcast/Zimbra (body.MsgBody) - inconsistent CSS support
      */
  #MessageViewBody .fallback,
  body.MsgBody .fallback {
    display: block;
  }
  #MessageViewBody .carousel,
  body.MsgBody .carousel {
    display: none !important;
  }

  .carousel a {
    width: 100%;
    height: 100% !important;
    display: block;
  }

  .carousel img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .carousel.responsive {
    width: 100% !important;
    height: 100%;
  }

  .carousel.responsive .car-cont {
    width: 100% !important;
    height: 100% !important;
  }

  /* Fade  */
  .carousel.fade a {
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-animation: car-anim 9s linear infinite;
  }

  .carousel.fade a:nth-child(1) {
    position: relative;
    -webkit-animation-delay: -12s;
  }
  .carousel.fade a:nth-child(2) {
    -webkit-animation-delay: -9s;
  }
  .carousel.fade a:nth-child(3) {
    -webkit-animation-delay: -6s;
  }

  @-webkit-keyframes car-anim {
    /* start fade in */
    0% {
      z-index: 2;
      opacity: 0;
    }
    /* end fade in */
    5% {
      opacity: 1;
    }
    33% {
      z-index: 2;
    }
    /* lower z-index - allow next image to fade in */
    33.1% {
      z-index: 1;
    }
    /* already obscured */
    38% {
      opacity: 1;
    }
    /* hide */
    38.1% {
      opacity: 0;
    }
    100% {
      z-index: 1;
      opacity: 0;
    }
  }
}

/* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
.header {
  position: fixed;
  top: var(--mb-1-5);
  left: 0;
  width: 100%;
  /* border: 1px tomato solid; */
  padding: 0 var(--mb-2);
  z-index: 50;
  /* overflow: hidden; */
}

.ab-page .header {
  top: var(--mb-2-5);
  padding: 0 var(--mb-3);
}

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

.nav.active {
  padding: var(--mb-1) var(--mb-1-5);
  border-radius: 60px;
  background-color: rgba(2, 48, 71, 0.9);
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
}

.se-page .nav.active {
  background-color: rgba(250, 250, 250, 0.9);
}

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

.nav-logo a {
  flex: 0 0 90px;
  height: 33px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image: url(/assets/img/brand/logo-wht-clr.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.se-page .nav-logo a {
  background-image: url(/assets/img/brand/logo-col-clr.png);
}

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

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

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

.nml {
  position: relative;
}

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

.se-page .nml a {
  color: var(--t-blue);
  font-weight: 500;
}

.nml span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.8px;
  background-color: orange;
  animation: fadeX 0.2s ease-in-out;
}

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

.nm-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.nm-actions button p {
  font-size: 0.9rem;
}

.se-page .nm-actions button p {
  padding: var(--mb-0-5) var(--mb-1);
}

.se-page .nm-actions button span {
  font-size: 1.3rem;
  padding: var(--mb-0-5);
}

/* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
.footer {
  width: 100%;
  background-color: var(--t-blue);
  padding: var(--mb-4);
  overflow: hidden;
}

.fr-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-4);
  /* border: 1px hotpink solid; */
}

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

.frh-bio {
  flex: 0 0 60%;
  justify-self: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.frh-bio img {
  width: 130px;
  object-fit: cover;
}

.frh-bio p {
  width: 60%;
  font-size: 0.85rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
  margin-top: var(--mb-0-5);
}

.frh-bio button p {
  width: auto;
  margin: 0;
}

.frh-links {
  flex: 0 0 15%;
  /* justify-self: flex-end; */
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
  /* border: 1px tomato solid; */
}

.frh-links h5 {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
}

.frh-links ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: var(--mb-0-5);
}

.frh-links ul li {
  position: relative;
}

.frh-links ul li a {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
}

.frh-links ul li span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.8px;
  background-color: orange;
  animation: fadeX 0.2s ease-in-out;
}

.frh-links ul li:hover a {
  opacity: 1;
}

.frh-links ul li:hover span {
  width: 100%;
}

.fr-body {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-1);
}

.fr-body h2 {
  font-size: 6.9rem;
  font-weight: 500;
  text-align: justify;
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
  /* border: 1px dodgerblue solid; */
}

.frb-links {
  width: 100%;
  justify-content: space-between;
  column-gap: var(--mb-1);
}

#frb-span {
  width: 100%;
  height: 1px;
  background-color: var(--tg-1);
}

.frb-links p,
.frb-links a {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
  opacity: 0.8;
}

.frb-links a:hover {
  opacity: 1;
  border-bottom: 1px var(--tg-1) solid;
}

/*===== 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);
    left: 0;
    padding: 0 var(--mb-1);
  }

  .ab-page .header.active {
    top: var(--mb-2-5);
    padding: 0 var(--mb-1);
  }

  .nav.active {
    padding: var(--mb-1) var(--mb-1-5);
    border-radius: 40px;
  }

  .se-page .nav.active {
    background-color: rgba(250, 250, 250, 0.9);
  }

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

  .nav-logo a {
    flex: 0 0 75px;
    height: 27px;
  }

  .nav.active .nav-logo a {
    flex: 0 0 60px;
    height: 22px;
  }

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

  .se-page #nm-open {
    color: var(--t-blue);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--t-blue);
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-2);
    padding: var(--mb-2);
    column-gap: unset;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    animation: fadeY 0.3s ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: none;
  }

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

  .nav.active .nav-menu {
    border-radius: 15px;
  }

  .se-page .nav-menu {
    background-color: #fafafa;
  }

  .nm-logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .nm-logo a {
    flex: 0 0 60px;
    height: 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-image: url(/assets/img/brand/logo-wht-clr.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .se-page .nm-logo a {
    background-image: url(/assets/img/brand/logo-col-clr.png);
  }

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

  .se-page #nm-close {
    color: var(--t-blue);
  }

  #nm-close:hover,
  #nm-close:active,
  #nm-close:focus {
    color: var(--error);
  }

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

  .nml {
    position: relative;
  }

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

  .se-page .nml a {
    color: var(--t-blue);
    font-weight: 400;
  }

  .nml span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.8px;
    background-color: orange;
    animation: fadeX 0.2s ease-in-out;
  }

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

  .nm-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .nm-actions button p {
    font-size: 0.85rem;
  }

  .se-page .nm-actions button p {
    padding: var(--mb-0-5) var(--mb-1);
  }

  .se-page .nm-actions button span {
    font-size: 1.1rem;
    padding: var(--mb-0-5);
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    padding: var(--mb-4) var(--mb-2);
  }

  .fr-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-4);
    /* border: 1px hotpink solid; */
  }

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

  .frh-bio {
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .frh-bio img {
    width: 150px;
    object-fit: cover;
  }

  .frh-bio p {
    width: 85%;
    font-size: 0.85rem;
    font-weight: 300;
    text-align: center;
    margin-top: var(--mb-0-5);
  }

  .frh-bio button p {
    width: auto;
    margin: 0;
  }

  .frh-links {
    flex: 0 0 auto;
    width: auto;
    align-items: center;
    row-gap: var(--mb-1);
    /* border: 1px tomato solid; */
  }

  .frh-links h5 {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px var(--tg-1) solid;
  }

  .frh-links ul {
    width: 100%;
    list-style: none;
    align-items: center;
    row-gap: var(--mb-0-25);
  }

  .frh-links ul li {
    position: relative;
  }

  .frh-links ul li a {
    font-size: 0.85rem;
  }

  .fr-body {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-1-5);
  }

  .fr-body h2 {
    font-size: 3.8rem;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    line-height: 1.1;
    white-space: unset;
    /* border: 1px dodgerblue solid; */
  }

  .frb-links {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    column-gap: unset;
    border-top: 1px var(--tg-1) solid;
    padding-top: var(--mb-1-5);
    row-gap: var(--mb-0-5);
  }

  #frb-span {
    display: none;
  }

  .frb-links p,
  .frb-links a {
    flex: 0 0 auto;
    text-align: center;
  }
}

/* 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) {
  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    width: 100%;
    background-color: var(--t-blue);
    padding: var(--mb-4);
  }

  .frh-bio img {
    width: 150px;
    object-fit: cover;
  }

  .fr-body h2 {
    font-size: 8rem;
    font-weight: 500;
    text-align: justify;
    color: var(--tg-1);
    line-height: 1.1;
    white-space: nowrap;
    /* border: 1px dodgerblue solid; */
  }
}

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