/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?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&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --t-yellow: #f0b501;
  --ty-light: #ffbf69;
  --t-green: #2ec4b6;
  --tg-light: #cbf3f0;
  --t-blue: #023047;
  --tb-dark: #1b263b;
  --tb-light: #1b263b;
  --t-black: #1c1d20;
  --the-grey: #f6f7f9;
  /* --light-white: #1c1d20; */
  --light-green: #f1faf1;
  --light-blue: #bebae8;
  --light-pink: #f9b5cd;
  --text-grey: #444950;
  --light-grey: #ebebeb;
  --success: #13ae8f;
  --error: #ff3333;

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

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

/* 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;
  padding: var(--mb-0-75) 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--body-font);
  color: var(--black);
  text-align: center;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sec-btn {
  background-color: transparent;
  color: var(--t-black);
  font-size: var(--fs-1);
  border-radius: 30px;
  border: 2px var(--t-black) solid;
}

.pri-btn {
  background-color: var(--t-black);
  color: var(--white);
  font-size: var(--fs-1);
  border: 2px var(--t-black) solid;
  border-radius: 30px;
}

.acc-btn {
  background-color: var(--t-yellow);
  color: var(--soft-black);
  font-size: var(--fs-1);
  border: 2px var(--t-yellow) solid;
  border-radius: 30px;
}

.sec-alt-btn {
  background-color: transparent;
  color: var(--white);
  font-size: var(--fs-1);
  border-radius: 30px;
  border: 2px var(--white) solid;
}

.sec-btn:hover {
  background-color: var(--t-green);
  opacity: 1;
}

.sec-alt-btn:hover {
  background-color: var(--t-green);
  border: 2px var(--t-green) solid;
  color: var(--t-black);
  opacity: 1;
}

.pri-btn:hover {
  background-color: var(--t-yellow);
  /* border: 2px var(--t-yellow) solid; */
  color: var(--t-black);
}

.acc-btn:hover {
  background-color: var(--t-black);
  color: var(--white);
  border: 2px var(--t-black) solid;
}

/*========== 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) ==========*/
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeY {
  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);
  }
}

/* animation: fade 0.5s ease-in-out; */

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 2rem;
  bottom: -5rem;
  background-color: var(--secondary-blue);
  opacity: 0.9;
  padding: var(--mb-0-5);
  border-radius: 0.4rem;
  z-index: 1.1;
  transition: 0.4s all ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollup:hover {
  opacity: 1;
  bottom: 2.35rem;
  /* background-color: var(--primary-pink); */
}

.scrollup__icon {
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .scrollup:hover .scrollup__icon {
  color: var(--primary-pink);
} */

/* Show scroll */
.show-scroll {
  bottom: 2rem;
}

/* .container {
overflow-x: auto;
-ms-overflow-style: none;
scrollbar-width: none;
}

.container::-webkit-scrollbar {
display: none;
} */

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

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

.nav.active {
  padding: var(--mb-1) var(--mb-1-5);
  border-radius: 60px;
  background-color: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

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

.nav-logo img {
  width: 100px;
  object-fit: cover;
  border-radius: 5px;
}

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

.nav-menu {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-1-5);
  /* border: 1px gold solid; */
}

.nm-header {
  display: none;
}

.nm-ul {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-0-75);
  padding-right: var(--mb-1);
  border-right: 1px var(--tb-dark) solid;
}

.nml,
.nml-sol {
  position: relative;
  flex: 0 0 auto;
  justify-content: flex-start;
  column-gap: 0.15rem;
}

.nml-a {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--tb-dark);
  cursor: pointer;
}

.nml:hover .nml-a,
.nml-sol:hover .nml-a {
  text-decoration: underline;
  text-decoration-color: var(--t-yellow);
  text-decoration-thickness: 2px;
}

.nml i,
.nml-sol i {
  font-size: 1.35rem;
  color: var(--text-grey);
  transform: translateY(1px);
}

.sol-drop {
  position: absolute;
  bottom: -10rem;
  left: 0;
  width: 220px;
  padding: var(--mb-0-5) var(--mb-0-75);
  border-radius: 8px;
  background-color: var(--white);
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  animation: fadeY 0.3s ease;
  display: none;
}

.sol-drop.active {
  display: flex;
}

.sol-drop a {
  width: 100%;
  padding: var(--mb-0-75) var(--mb-0-5);
  border-bottom: 1px #d4d4d4 solid;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  color: var(--tb-dark);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-75);
}

.sol-drop a i {
  color: var(--tb-dark);
  font-size: 1.1rem;
  /* transform: translateY(-1px); */
}

.sol-drop a:last-child {
  border: none;
}

.sol-drop a:hover {
  background-color: var(--tg-light);
  border-color: var(--tg-light);
  border-radius: 5px;
}

/* .nml.solutions:hover .sol-drop {
  display: flex;
} */

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

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

#nav-open {
  display: none;
}

/* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
.footer {
  width: 100%;
  padding: 0 var(--mb-2);
  align-items: flex-end;
}

.ft-container {
  width: 100%;
  background-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23e5e5e5' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: var(--mb-6) var(--mb-4);
  padding-bottom: var(--mb-2);
  row-gap: var(--mb-8);
}

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

.cf-page .ft-main {
  row-gap: var(--mb-3);
}

.ft-main h3 {
  width: 90%;
  font-size: var(--fs-4);
  font-weight: 600;
  text-align: center;
  color: var(--white);
  line-height: 1.3;
}

.ft-main p {
  width: 50%;
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  opacity: 0.8;
  margin-top: -0.5rem;
}

.cf-page .ft-main h3 {
  width: 70%;
}

.cf-page .ft-main p {
  width: 55%;
  font-size: 1.1rem;
}

.ftm-action {
  width: 100%;
  align-items: flex-start;
  margin-top: var(--mb-0-25);
  column-gap: var(--mb-1);
}

.ftm-action button {
  padding: var(--mb-1) var(--mb-1-5);
}

.ftm-action .acc-btn:hover {
  background-color: var(--white);
  border: 2px var(--white) solid;
  color: var(--t-black);
}

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

.fti-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-self: center;
  background-color: var(--white);
  padding: var(--mb-0-5);
  border-radius: 10px;
}

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

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

.fti > div {
  flex: 0 0 30%;
}

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

.fti-socials {
  justify-content: flex-end;
}

.fti-links a,
.fti-socials a,
.fti p {
  font-size: 0.85rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  opacity: 0.7;
  border-bottom: 1px transparent solid;
}

.fti-socials a {
  text-align: right;
}

.fti-links a:hover,
.fti-socials a:hover {
  border-bottom: 1px var(--t-yellow) solid;
  opacity: 1;
}

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

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

  .nav.active {
    border-radius: 30px;
  }

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

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

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

  .nav-menu {
    position: fixed;
    left: 50%;
    top: var(--mb-1);
    transform: translate(-50%);
    flex: 0 0 auto;
    width: 90%;
    height: auto;
    padding: var(--mb-2) var(--mb-1-5);
    border-radius: 10px;
    background-color: var(--soft-white);
    /* border: 1px red solid; */
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    column-gap: unset;
    row-gap: var(--mb-1-5);
    animation: fade 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: none;
  }

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

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

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

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

  #nav-close {
    font-size: 1.3rem;
    color: var(--t-black);
    font-weight: 600;
  }

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

  .nml {
    column-gap: 0.15rem;
  }

  .nml-a {
    font-size: 1rem;
    font-weight: 500;
  }

  .nml i {
    font-size: 1.3rem;
    color: var(--text-grey);
    transform: translateY(0.5px);
  }

  .sol-drop {
    position: absolute;
    bottom: -9.25rem;
    left: 0;
    width: 220px;
    padding: var(--mb-0-25) var(--mb-0-75);
    border-radius: 8px;
    background-color: var(--white);
    justify-content: flex-start;
    align-items: flex-start;
    display: none;
  }

  .sol-drop.active {
    display: flex;
  }

  .sol-drop a {
    width: 100%;
    padding: var(--mb-0-75) var(--mb-0-5);
    border-bottom: 1px #d4d4d4 solid;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: left;
    color: var(--tb-dark);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: var(--mb-0-75);
  }

  .sol-drop a i {
    color: var(--tb-dark);
    font-size: 1.1rem;
    /* transform: translateY(-1px); */
  }

  .sol-drop a:last-child {
    border: none;
  }

  .sol-drop a:hover {
    background-color: var(--tg-light);
    border-color: var(--tg-light);
    border-radius: 5px;
  }

  .nml.solutions:hover .sol-drop {
    display: flex;
  }

  .nm-actions {
    width: 100%;
    flex: 0 0 auto;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-0-75);
    column-gap: unset;
  }

  .nm-actions button {
    width: 100%;
    flex: 0 0 auto;
    font-size: 0.8rem;
  }

  #nav-open {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--t-black);
    font-weight: 600;
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    display: flex;
    padding: 0 var(--mb-1);
  }

  .ft-container {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: var(--mb-3) var(--mb-1-5);
    padding-bottom: var(--mb-2-5);
    row-gap: var(--mb-4);
  }

  .ft-main {
    width: 100%;
    row-gap: var(--mb-2);
  }

  .ft-main h3 {
    width: 100%;
    font-size: 1.8rem;
  }

  .ft-main p {
    width: 100%;
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: -0.25rem;
  }

  .ftm-action {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: var(--mb-0-25);
    column-gap: unset;
    row-gap: var(--mb-1);
  }

  .ftm-action button {
    width: 100%;
    font-size: 0.85rem;
  }

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

  .fti-logo {
    flex: 0 0 auto;
    padding: var(--mb-0-75) var(--mb-1-5);
    border-radius: 30px;
  }

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

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

  .fti > div {
    flex: 0 0 auto;
    width: 100%;
    row-gap: var(--mb-0-75);
    flex-direction: column;
  }

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

  .fti-socials {
    justify-content: flex-start;
  }

  .fti-links a,
  .fti-socials a,
  .fti p {
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.8;
  }

  .fti-socials a {
    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) {
  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
  .header {
    position: fixed;
    top: var(--mb-1-5);
    padding: 0 var(--mb-6);
    z-index: 50;
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    width: 100%;
    padding: 0 var(--mb-4);
    align-items: flex-end;
  }
}

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