/*
@include displays.fullDesktop {

}*/
/*test*/
/* -------------------- FONTS -------------------- */
@font-face {
  font-family: "Archivo Thin";
  src: url("../fonts/Archivo-VariableFont_wdthwght.ttf") format("truetype"), url("../fonts/Archivo-VariableFontwdthwght.woff") format("woff"), url("../fonts/Archivo-VariableFontwdthwght.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Myriad Pro Light";
  src: url("../fonts/Myriad Pro Semibold.ttf") format("truetype"), url("../fonts/myriad-pro-8.woff") format("woff"), url("../fonts/myriad-pro-8.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Bold.otf") format("opentype"), url("../fonts/MyriadPro-Bold.woff") format("woff"), url("../fonts/MyriadPro-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Myriad Pro Bold";
  src: url("../fonts/Myriad-Pro-Semibold.ttf") format("truetype"), url("../fonts/Myriad-Pro-Semibold.woff") format("woff"), url("../fonts/Myriad-Pro-Semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
}
/* -------------------- VARIABLES -------------------- */
/* -------------------- RESET -------------------- */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  color: unset;
}

@media only screen and (max-width: 640px) {
  body {
    text-align: center;
  }
}

img {
  display: block;
}

/* -------------------- LAYOUT -------------------- */
.container {
  width: calc(100% - 500px);
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 1520px) {
  .container {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 1280px) {
  .container {
    width: calc(100% - 140px);
  }
}
@media only screen and (max-width: 1024px) {
  .container {
    width: calc(100% - 80px);
  }
}
@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 40px;
  }
}
@media only screen and (max-width: 640px) {
  .container {
    width: calc(100% - 20px);
    padding: 0;
  }
}

.dis_flex {
  display: flex;
  flex-wrap: wrap;
}

.jc_sb {
  justify-content: space-between;
}

/* -------------------- TEXTS -------------------- */
.title {
  font-size: 75px;
  color: #172D52;
  font-family: "Myriad Pro Bold";
}
@media only screen and (max-width: 640px) {
  .title {
    font-size: 45px;
  }
}

.subtitle {
  font-size: 23px;
  color: #9460F9;
  font-family: "Archivo Thin";
}

p, ul, li, a {
  font-family: "Archivo Thin";
}

h2 {
  font-size: 50px;
  color: #172D52;
  font-family: "Myriad Pro Bold";
}
@media only screen and (max-width: 640px) {
  h2 {
    font-size: 16px;
  }
}

h3 {
  font-size: 50px;
  color: #172D52;
  font-family: "Myriad Pro Bold";
}
@media only screen and (max-width: 640px) {
  h3 {
    font-size: 30px;
  }
}

p {
  font-size: 20px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* -------------------- BUTTON -------------------- */
.btn {
  background-color: #D6DDFA;
  height: 50px;
  width: 178px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  color: #132A4F;
  border-radius: 30px;
  margin-right: 30px;
}
.btn:hover {
  background-color: #9460F9;
  color: white;
  transition: all 0.5s;
}

/* -------------------- HAMBURGER -------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 40px;
  top: 40px;
}
.hamburger div {
  background-color: #000;
  width: 35px;
  height: 5px;
  margin: 5px 0;
}

@media (max-width: 1024px) {
  nav ul.nav_primary {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    right: 0;
    width: 50%;
    padding: 20px 0;
    height: auto;
    top: 130px;
    width: 100%;
    height: calc(100dvh - 130px);
  }
  nav ul.nav_primary.desktop {
    display: none;
  }
  nav ul.nav_primary li {
    cursor: pointer;
  }
  nav.active-nav ul.nav_primary {
    display: flex;
    flex-direction: column;
  }
  nav.active-nav ul.nav_primary.mobile li:hover .hov_dropnav {
    width: 100%;
    position: relative;
    box-shadow: none;
  }
  .hamburger {
    display: flex;
  }
}
/* -------------------- MEGA MENU -------------------- */
/* --- Desktop --- */
@media (min-width: 1025px) {
  .mega-menu-parent:hover > ul {
    display: flex; /* hover solo en desktop */
  }
  .submenu-toggle {
    display: none; /* ocultamos flecha en desktop */
  }
}
/* --- Mobile & Tablet --- */
@media (max-width: 1024px) {
  /* Desactivamos hover */
  .mega-menu-parent:hover > ul {
    display: none;
    pointer-events: none;
  }
  .mega-menu-parent > ul {
    display: none;
  }
  .mega-menu-parent.active > ul {
    display: block;
  }
  .submenu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 6px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9460F9;
    transition: transform 0.3s ease;
    position: absolute;
    right: 0;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 768px) {
  .submenu-toggle {
    right: 100px;
  }
}
@media (max-width: 1024px) {
  .mega-menu-parent.active .submenu-toggle {
    transform: rotate(180deg);
  }
}
.container.paginacion {
  justify-content: center;
  margin: 20px 0;
  display: block;
  padding: 30px 0;
}

.page-numbers {
  background: #E4E4E4;
  height: 35px;
  width: 35px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  color: black;
  font-weight: bold;
}

.page-numbers.current {
  background: #9460F9;
  color: white;
}

.next.page-numbers, .prev.page-numbers {
  display: none;
}

/*# sourceMappingURL=global.css.map */
