/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&family=Inter+Tight:ital,wght@0,100..900;1,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&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Space+Grotesk:wght@300..700&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --th-blue: #023047;
  --th-green: #73bf5e;
  --txt-grey: #444950;
  --success: #13ae8f;
  --error: #ff3333;
  --light-green: #f1faf1;
  --light-blue: #bebae8;
  --light-pink: #f9b5cd;
  --text-grey: #444950;
  --light-grey: #ebebeb;

  /*===== Font and typography =====*/
  --pri-font: "Inter Tight", sans-serif;
  --sos-font: "Source Sans 3", sans-serif;
  --pop-font: "Poppins", sans-serif;
  --cor-font: "Cormorant Upright", serif;
  --spa-font: "Space Grotesk", sans-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; */
}

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

html {
  scrollbar-width: thin; /* auto | thin | none */
  scrollbar-color: #a3a3a3 #181a18;
}

/* For Chrome, Safari, Edge, and Opera */
::-webkit-scrollbar {
  width: 10px; /* width of the entire scrollbar */
}

::-webkit-scrollbar-track {
  background: #181a18; /* color of the track (background) */
}

::-webkit-scrollbar-thumb {
  background-color: #a3a3a3; /* color of the thumb (draggable part) */
  border-radius: 8px; /* round the thumb */
}

/* 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(--spa-font);
  padding: 0;
  color: var(--soft-black);
}

/* 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;
  width: 100%;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-color: var(--white);
  color-scheme: light dark;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  /* background-image: url(/assets/img/texture/txt-4.jpg);
  background-repeat: no-repeat;
  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;
}

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

.nav-btn p {
  padding: 0.65rem var(--mb-1-5);
  border: 1px var(--th-green) solid;
  font-size: var(--fs-1);
  font-weight: 400;
  text-align: center;
  color: var(--th-blue);
  /* color: var(--white); */
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}

.nav-btn:hover p {
  background-color: var(--th-blue);
  border: 1px var(--th-blue) solid;
  color: var(--white);
  /* font-weight: 500; */
}

.pri-btn p {
  padding: var(--mb-1) var(--mb-1-5);
  border: 2px var(--th-green) solid;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  color: var(--th-blue);
  border-radius: 30px;
}

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

/* ------ >>>>>> ========== SECTION-HEAD ========== <<<<<< ------ */
.section-head {
  width: 100%;
  justify-content: space-between;
}

.section-head p {
  flex: 0 0 auto;
  font-size: var(--fs-1);
  font-weight: 500;
  text-align: left;
  color: var(--th-blue);
}

.section-head #sh-line {
  width: 50%;
  height: 1px;
  background-color: #e5e5e5;
  /* background-color: sienna; */
}

.section-head p:last-child {
  /* font-weight: 500; */
  font-family: var(--spa-font);
  color: #a3a3a3;
}

/* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 1440px;
  padding: var(--mb-1-5) var(--mb-3);
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: var(--white);
  transition: all 0.3s ease;
  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
  overflow: hidden;
  /* background-color: rgba(250, 250, 250, 0.7); */
}

@media (hover: hover) and (pointer: fine) {
  .header:hover {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  }
}

.header.hide {
  transform: translate(-50%, -120%);
  opacity: 0;
}

.nav {
  position: relative;
  width: 100%;
  justify-content: space-between;
}

.nav-open {
  display: none;
}

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

.nav-logo a {
  display: flex;
  justify-content: flex-start;
  align-content: flex-end;
  overflow: hidden;
}

.nav-logo a span:not(:last-child) {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  color: var(--th-blue);
  line-height: 1;
  font-family: var(--spa-font);
}

.nav-logo a span:nth-child(2) {
  margin-left: -0.5rem;
}

.nav-logo a span:last-child {
  font-size: 3.5rem;
  line-height: 0.3;
  margin-top: -0.9rem;
  color: var(--th-green);
  /* color: #518c4f; */
  margin-left: -0.25rem;
  transition: all 0.3s ease;
}

.nav-logo a:hover span:last-child {
  color: sienna;
}

.nav-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nm-ul {
  width: auto;
  /* column-gap: var(--mb-1); */
}

.nml {
  flex: 0 0 100px;
  width: 100px;
  justify-content: flex-start;
  align-items: flex-end;
  /* border: 1px red solid; */
  /* margin-right: var(--mb-1); */
  padding-left: var(--mb-0-5);
}

.nml:last-child {
  margin: 0;
}

.nml span {
  width: 1.5px;
  height: 15px;
  background-color: #a3a3a3;
  margin-bottom: 0.1rem;
  margin-right: var(--mb-0-5);
  transform: skewX(15deg);
  transition: all 0.2s ease-in-out;
}

.nml a {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: var(--th-blue);
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.nml:hover span {
  transform: unset;
  background-color: sienna;
  margin-right: 0.4rem;
  width: 2px;
}

.nml:hover a {
  font-weight: 500;
}

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

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

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

.ft-title h3 {
  font-size: var(--fs-5);
  font-weight: 400;
  text-align: center;
  color: var(--th-blue);
  line-height: 1.1;
}

.ft-title h3 a {
  text-decoration: underline;
  text-decoration-color: var(--th-green);
  text-decoration-thickness: 6px;
  text-decoration-style: dashed;
  color: var(--th-blue);
  transition: all 0.3s ease;
  /* color: sienna; */
}

.ft-title h3 a:hover {
  text-decoration-color: sienna;
  text-decoration-style: solid;
  /* font-style: italic; */
}

.ftt-btn {
  column-gap: var(--mb-0-75);
  border: 2px var(--th-blue) solid;
  background-color: var(--th-blue);
  padding: var(--mb-1) var(--mb-1-5);
  border-radius: 40px;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  color: var(--th-blue);
  color: var(--white);
  transition: all 0.3s ease;
}

.ftt-btn span {
  color: sienna;
  color: var(--th-green);
}

.ftt-btn:hover {
  transform: translateY(-2.5px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

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

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

.ftl.social {
  column-gap: var(--mb-0-5);
}

.ftl-a {
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: flex-end;
  /* border: 1px red solid; */
  /* margin-right: var(--mb-1); */
  padding-left: var(--mb-0-5);
}

.ftl-a:last-child {
  margin: 0;
}

.ftl-a span {
  width: 1.5px;
  height: 12px;
  background-color: #a3a3a3;
  margin-bottom: 0.1rem;
  margin-right: 0.3rem;
  transform: skewX(15deg);
  transition: all 0.2s ease-in-out;
}

.ftl-a a {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--th-blue);
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.ftl-a:hover span {
  transform: unset;
  background-color: sienna;
  margin-right: 0.3rem;
  width: 2px;
}

.ftl-a:hover a {
  color: var(--soft-black);
}

.ftl p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--txt-grey);
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 500px */
@media screen and (max-width: 500px) {
  .nav-btn p {
    padding: 0.5rem 1rem;
    border: 1px var(--th-green) solid;
    font-size: 0.9rem;
  }

  /* ------ >>>>>> ========== SECTION-HEAD ========== <<<<<< ------ */
  .section-head {
    width: 100%;
    justify-content: space-between;
  }

  .section-head p {
    flex: 0 0 auto;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    color: var(--th-blue);
  }

  .section-head #sh-line {
    width: 15%;
    height: 1px;
    background-color: #e5e5e5;
    /* background-color: sienna; */
  }

  .section-head p:last-child {
    /* font-weight: 500; */
    font-family: var(--spa-font);
    color: #a3a3a3;
  }

  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
  .header {
    position: fixed;
    padding: var(--mb-1);
    /* background-color: rgba(250, 250, 250, 0.7); */
    border-bottom: 1px #e5e5e5 solid;
    overflow: visible;
  }

  .header.active {
    border: none;
    padding-bottom: 1.65rem;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  }

  .nav {
    position: relative;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1.25rem;
  }

  .nav-open {
    display: flex;
    position: absolute;
    top: 5px;
    right: 0;
    order: 1;
  }

  .nav-open > span {
    font-size: 1.8rem;
    color: var(--th-blue);
  }

  .nav-logo a {
    overflow: hidden;
  }

  .nav-logo a span:not(:last-child) {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 0.85;
  }

  .nav-logo a span:nth-child(2) {
    margin-left: -0.25rem;
  }

  .nav-logo a span:last-child {
    font-size: 3.5rem;
  }

  .nav-menu {
    position: unset;
    flex: 0 0 100%;
    width: 100%;
    /* background-color: #fafafa; */
    border-top: 1px #e5e5e5 solid;
    border-bottom: 1px #e5e5e5 solid;
    transform: unset;
    order: 2;
    /* padding: var(--mb-2); */
    display: none;
  }

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

  .nm-ul {
    width: 100%;
    justify-content: space-between;
    /* flex-direction: column; */
    /* column-gap: var(--mb-1); */
  }

  .nml {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: var(--mb-0-5);
  }

  .nml:nth-child(2) {
    margin: var(--mb-1-5) 0;
  }

  .nml:last-child {
    margin: 0;
  }

  .nml span {
    width: 1.5px;
    height: 15px;
    background-color: #a3a3a3;
    margin-bottom: 0.1rem;
    margin-right: var(--mb-0-5);
    transform: skewX(15deg);
    transition: all 0.2s ease-in-out;
  }

  .nml a {
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
    color: var(--th-blue);
    line-height: 1;
    transition: all 0.2s ease-in-out;
  }

  .nml:hover span {
    transform: unset;
    background-color: sienna;
    margin-right: 0.4rem;
    width: 2px;
  }

  .nml:hover a {
    font-weight: 500;
  }

  .nav-btn {
    margin-right: 35px;
    order: 3;
  }

  .header.active .nav-btn {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .header.active .nav-btn p {
    padding: 0.65rem var(--mb-1-5);
    border: 1px var(--th-green) solid;
    font-size: var(--fs-1);
  }

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

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

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

  .ft-title h3 {
    font-size: 2.35rem;
    line-height: 1.1;
  }

  .ft-title h3 a {
    text-decoration: underline;
    text-decoration-color: var(--th-green);
    text-decoration-thickness: 4px;
    text-decoration-style: dashed;
    color: var(--th-blue);
    transition: all 0.3s ease;
    margin-top: var(--mb-0-5);
  }

  .ft-title h3 a:hover {
    text-decoration-color: sienna;
    text-decoration-style: solid;
    /* font-style: italic; */
  }

  .ftt-btn {
    column-gap: var(--mb-0-75);
    padding: var(--mb-1) var(--mb-1-5);
    border-radius: 40px;
    font-size: 1.1rem;
  }

  .ftt-btn span {
    color: sienna;
    color: var(--th-green);
  }

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

  .ftl {
    justify-content: center;
  }

  .ftl.social {
    column-gap: var(--mb-0-5);
  }

  .ftl-a {
    flex: 0 0 auto;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
  }

  .ftl-a:last-child {
    margin: 0;
  }

  .ftl-a span {
    width: 1.5px;
    height: 12px;
    background-color: #a3a3a3;
    margin-bottom: 0.1rem;
    margin-right: 0.3rem;
  }

  .ftl-a a {
    font-size: 0.95rem;
    line-height: 1;
  }

  .ftl-a:hover span {
    transform: unset;
    background-color: sienna;
    margin-right: 0.3rem;
    width: 2px;
  }

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

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