@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@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");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

body {
  overflow-x: hidden;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0px 9px 12px 0px rgba(93, 90, 136, 0.12);
  z-index: 10; /* Para asegurarse de que esté encima de otros elementos */
  transition: top 0.3s; /* Transición suave para el efecto de aparecer/desaparecer */
}
.header .h__cont {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .h__cont .logo {
  display: block;
  width: 10%;
}
.header .h__cont .logo a {
  text-decoration: none;
}
.header .h__cont .logo a img {
  width: 60px;
}
.header .h__cont .menu {
  width: 85%;
  display: flex;
  align-items: center;
}
.header .h__cont .menu .menu__options {
  width: 70%;
  display: flex;
  align-items: center;
}
.header .h__cont .menu .menu__options ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.header .h__cont .menu .menu__options ul li {
  list-style: none;
  width: 25%;
  position: relative;
  color: #00365f;
  font-size: 16px;
  cursor: pointer;
  transition: 0.5s;
  text-align: center;
}
.header .h__cont .menu .menu__options ul li ul {
  display: none;
  width: 100%;
  overflow: hidden;
  position: absolute;
  background-color: #fff;
  list-style: none;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0px 9px 12px 0px rgba(93, 90, 136, 0.12);
}
.header .h__cont .menu .menu__options ul li ul.us {
  width: 130%;
  left: -10%;
}
.header .h__cont .menu .menu__options ul li ul.us li {
  text-align: center;
}
.header .h__cont .menu .menu__options ul li ul.us li a {
  text-align: center;
  display: block;
}
.header .h__cont .menu .menu__options ul li ul li {
  display: flex;
  padding: 10px 10px;
  align-items: center;
  width: 100%;
  text-align: left;
}
.header .h__cont .menu .menu__options ul li ul li a {
  display: flex;
  align-items: center;
  color: #00365f;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  width: 100%;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.header .h__cont .menu .menu__options ul li ul li a img {
  margin-right: 10px;
}
.header .h__cont .menu .menu__options ul li ul li:not(:last-child) {
  border-bottom: 1px solid #adadad;
}
.header .h__cont .menu .menu__options ul li a {
  color: #00365f;
  text-decoration: none;
}
.header .h__cont .menu .menu__options ul li a:hover {
  color: #015ea6;
  transition: 0.5s;
}
.header .h__cont .menu .menu__options ul li:hover {
  color: #015ea6;
  transition: 0.5s;
}
.header .h__cont .menu .menu__options ul li img {
  transition: transform 0.3s ease-in-out;
}
.header .h__cont .menu .menu__options ul .rotado {
  transform: rotate(180deg);
}
.header .h__cont .menu .menu_icons {
  width: 30%;
  display: flex;
  align-items: center;
}
.header .h__cont .menu .menu_icons .search {
  width: 20%;
  display: block;
  position: relative;
  text-align: center;
}
.header .h__cont .menu .menu_icons .search .bg {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.header .h__cont .menu .menu_icons .search .bg .icon {
  background-image: url("../images/icons/lupa_blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .search .bg:hover {
  background: linear-gradient(90deg, #59c575 0%, #0176d0 68.63%);
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .search .bg:hover .icon {
  background-image: url("../images/icons/lupa_white.svg");
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .search .search_form {
  display: none;
  position: absolute;
  bottom: -70px;
  width: 210px;
}
.header .h__cont .menu .menu_icons .search .search_form form {
  width: 100%;
  display: block;
  position: relative;
}
.header .h__cont .menu .menu_icons .search .search_form form input {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #9d9d9d;
  padding: 8px 10px 8px 40px;
  color: #000;
  font-size: 11px;
  background-image: url("../images/icons/lupa_blue.svg");
  background-repeat: no-repeat;
  background-position: 10px center;
}
.header .h__cont .menu .menu_icons .search .search_form form input::-moz-placeholder {
  color: #9d9d9d;
}
.header .h__cont .menu .menu_icons .search .search_form form input::placeholder {
  color: #9d9d9d;
}
.header .h__cont .menu .menu_icons .search .search_form form input:focus {
  outline: none;
  border: 1px solid #59c575;
}
.header .h__cont .menu .menu_icons .search .search_form form .cerrar {
  position: absolute;
  top: 7px;
  right: 10px;
  cursor: pointer;
}
.header .h__cont .menu .menu_icons .carrito {
  width: 20%;
  display: block;
  position: relative;
  text-align: center;
}
.header .h__cont .menu .menu_icons .carrito .bg {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.header .h__cont .menu .menu_icons .carrito .bg .icon {
  background-image: url("../images/icons/cart.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .carrito .bg:hover {
  background: linear-gradient(90deg, #59c575 0%, #0176d0 68.63%);
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .carrito .bg:hover .icon {
  background-image: url("../images/icons/cart_white_m.svg");
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont {
  display: none;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 70px;
  width: 360px;
  right: 0;
  padding: 40px 20px;
  box-shadow: 0px 9px 12px 0px rgba(93, 90, 136, 0.12);
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item .item__img {
  width: 64px;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item .item__description {
  width: 215px;
  text-align: left;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item .item__description .curso_nombre {
  color: #000;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item .item__description .precio {
  color: #000;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item .item__description .precio span {
  color: #015ea6;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item .item__description .item__close {
  width: 16px;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .subtotal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .subtotal p {
  color: #646363;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .subtotal p.total {
  color: #015ea6;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .opciones {
  width: 100%;
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: space-between;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .opciones .cta_btn {
  background-color: #015ea6;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  width: 45%;
  margin: 0 auto;
  padding: 7px 20px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  text-decoration: none;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .opciones .cta_btn img {
  margin-left: 5px;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .opciones .cta_btn.chk {
  background: var(--grad01, linear-gradient(90deg, #13a538 0%, #00365f 68.63%));
}
.header .h__cont .menu .menu_icons .menu_b {
  width: 20%;
  display: none;
  position: relative;
  text-align: center;
}
.header .h__cont .menu .menu_icons .menu_b .bg {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.header .h__cont .menu .menu_icons .menu_b .bg .icon {
  background-image: url("../images/icons/menu_b.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .close {
  width: 20%;
  display: none;
  position: relative;
  text-align: center;
}
.header .h__cont .menu .menu_icons .close .bg {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.header .h__cont .menu .menu_icons .close .bg .icon {
  background-image: url("../images/icons/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
.header .h__cont .menu .menu_icons .login {
  width: 60%;
}
.header .h__cont .menu .menu_icons .login .loginpage {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  padding: 7px 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  text-transform: uppercase;
  border-radius: 20px;
  background-color: #015ea6;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .login .loginpage:hover {
  transition: 0.5s;
  background: linear-gradient(90deg, #59c575 0%, #0176d0 68.63%);
}
.header .h__cont .menu .menu_icons .login .perfil {
  text-decoration: none;
  color: #fff;
  background-color: transparent;
  display: none;
}
.header .h__cont .menu .menu_icons .login .perfil img {
  width: 32px;
  border-radius: 100px;
}
.header .mobile_menu {
  width: 100vw;
  display: none;
  height: 90vh;
  position: relative;
  background-color: #fff;
  padding: 50px;
}
.header .mobile_menu .search {
  max-width: 420px;
  width: 100%;
  margin: 0 auto 40px;
  display: block;
}
.header .mobile_menu .search form {
  max-width: 380px;
  padding: 0 30px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}
.header .mobile_menu .search form input {
  display: block;
  width: 100%;
  display: block;
  background-color: #ebf6ff;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 40px;
}
.header .mobile_menu .search form button {
  background-color: transparent;
  position: absolute;
  right: 25px;
  border: none;
}
.header .mobile_menu .login {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.header .mobile_menu .login .cta_btn {
  background-color: #015ea6;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 40px;
  align-items: center;
  border-radius: 24px;
  text-decoration: none;
  justify-content: center;
}
.header .mobile_menu .menu {
  max-width: 320px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.header .mobile_menu .menu ul {
  width: 100%;
  display: block;
  list-style: none;
}
.header .mobile_menu .menu ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #00365f;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  margin-bottom: 24px;
}
.header .mobile_menu .menu ul li ul {
  width: 100%;
  display: none;
  padding: 20px 0;
}
.header .mobile_menu .menu ul li ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #00365f;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  margin-bottom: 2px;
}
.header .mobile_menu .menu ul li ul li img {
  margin-right: 10px;
}
.header .mobile_menu .menu ul li ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-wrap: wrap;
  color: #00365f;
  font-size: 20px;
  font-style: normal;
  padding: 5px;
  font-weight: 400;
  line-height: 140%; /* 28px */
}
.header .mobile_menu .menu ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-wrap: wrap;
  color: #00365f;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
}
.header .mobile_menu .sociales {
  max-width: 320px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}
.header .mobile_menu .sociales a {
  margin-right: 30px;
}

.footer {
  width: 100vw;
  background-color: #00365f;
  padding: 90px 20px 0;
}
.footer .f__cont {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer .f__cont .item {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  text-align: left;
}
.footer .f__cont .item.sub {
  width: 320px;
}
.footer .f__cont .item.sub p {
  font-size: 16px;
}
.footer .f__cont .item.tl {
  width: 280px;
}
.footer .f__cont .item .logo {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.footer .f__cont .item p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
  /* 28px */
}
.footer .f__cont .item a {
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
  text-decoration: none;
  /* 24px */
}
.footer .f__cont .item a img {
  margin-right: 10px;
}
.footer .f__cont .item a.link {
  font-size: 18px;
}
.footer .f__cont .item h6 {
  padding-top: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 10px;
  /* 28px */
}
.footer .f__cont .item hr {
  width: 40px;
  height: 2px;
  border: none;
  background-color: #13a538;
  margin-bottom: 16px;
}
.footer .f__cont .item .news {
  width: 100%;
  display: block;
  margin-bottom: 16px;
}
.footer .f__cont .item .news form {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
.footer .f__cont .item .news form .mail {
  border-radius: 40px 40px;
  padding: 16px 40px 16px 16px;
  background: #002541;
  border: none;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  width: 100%;
}
.footer .f__cont .item .news form .mail::-moz-placeholder {
  color: #fff;
}
.footer .f__cont .item .news form .mail::placeholder {
  color: #fff;
}
.footer .f__cont .item .news form .mail:focus {
  outline: none;
}
.footer .f__cont .item .news form .btn {
  width: 53px;
  height: 53px;
  border: none;
  padding: 25px;
  font-size: 0;
  border-radius: 62%;
  background-color: #13a538;
  background-image: url("../images/icons/send_white.svg");
  position: absolute;
  right: -6px;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .f__cont .item .news form .error {
  width: 100%;
  display: block;
  color: #ff9f97;
  font-size: 12px;
}
.footer .f__cont .item .redes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .fb_cont {
  max-width: 1200px;
  border-top: 1px solid #fff;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
}
.footer .fb_cont p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
}
.footer .fb_cont p a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.wa_static {
  display: block;
  position: fixed;
  right: 30px;
  bottom: 10%;
}
.wa_static a {
  text-decoration: none;
}
.wa_static a img {
  width: 60px;
}

.graciasnews {
  display: none;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 54, 95, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  justify-content: center;
}
.graciasnews .g_cont {
  max-width: 460px;
  background-color: #fff;
  width: 100%;
  padding: 30px;
  position: relative;
  border-radius: 20px;
  text-align: center;
}
.graciasnews .g_cont h5 {
  color: v #002541;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 33.6px */
  margin-bottom: 30px;
  margin-top: 30px;
}
.graciasnews .g_cont p {
  color: #646363;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin: 30px 0;
}
.graciasnews .g_cont .continuar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #1b72b8;
  margin: 0 auto 30px;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 30px;
  border-radius: 16px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  cursor: pointer;
  transition: 0.5s;
}
.graciasnews .g_cont .continuar:hover {
  color: #00365f;
  transition: 0.5s;
  background-color: #EBF6FF;
}

@media only screen and (max-width: 1060px) {
  .footer .f__cont {
    flex-wrap: wrap;
  }
  .footer .f__cont .item {
    width: 45% !important;
  }
  .wa_static {
    bottom: 5%;
  }
}
@media only screen and (max-width: 990px) {
  .header .h__cont .menu .menu__options {
    display: none;
  }
  .header .h__cont .menu .menu_icons .search {
    display: none;
  }
  .header .h__cont .menu .menu_icons .login {
    display: none;
  }
  .header .h__cont .menu {
    justify-content: flex-end;
  }
  .header .h__cont .menu .menu_icons {
    justify-content: flex-end;
  }
  .header .h__cont .menu .menu_icons .menu_b {
    display: block;
  }
  .header .h__cont .menu .menu_icons .carrito {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 680px) {
  .footer .f__cont .item {
    width: 100% !important;
  }
  .wa_static {
    bottom: 5%;
  }
}/*# sourceMappingURL=base.css.map */