@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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Poppins", serif;
}

body {
  overflow-x: hidden;
}
img{
    max-width: 100%;
}
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  padding: 10px 20px;
  -webkit-box-shadow: 0px 9px 12px 0px rgba(93, 90, 136, 0.12);
          box-shadow: 0px 9px 12px 0px rgba(93, 90, 136, 0.12);
  z-index: 10; /* Para asegurarse de que esté encima de otros elementos */
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s; /* Transición suave para el efecto de aparecer/desaparecer */
}
.header .h__cont {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .h__cont .menu .menu__options {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .h__cont .menu .menu__options ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          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;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  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;
  -webkit-box-shadow: 0px 9px 12px 0px rgba(93, 90, 136, 0.12);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: left;
}
.header .h__cont .menu .menu__options ul li ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00365f;
  font-family: "Poppins", sans-serif;
  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;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .h__cont .menu .menu__options ul li:hover {
  color: #015ea6;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .h__cont .menu .menu__options ul li img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .h__cont .menu .menu__options ul .rotado {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header .h__cont .menu .menu_icons {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  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;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .search .bg:hover {
  background: -o-linear-gradient(left, #59c575 0%, #0176d0 68.63%);
  background: -webkit-gradient(linear, left top, right top, from(#59c575), color-stop(68.63%, #0176d0));
  background: linear-gradient(90deg, #59c575 0%, #0176d0 68.63%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .search .bg:hover .icon {
  background-image: url("../images/icons/lupa_white.svg");
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  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::-webkit-input-placeholder {
  color: #9d9d9d;
}
.header .h__cont .menu .menu_icons .search .search_form form input:-ms-input-placeholder {
  color: #9d9d9d;
}
.header .h__cont .menu .menu_icons .search .search_form form input::-ms-input-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  position: relative;
}
.cart__indicator{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff0000;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header .h__cont .menu .menu_icons .carrito .bg .icon {
  background-image: url("../images/icons/cart.svg");
  background-position: -3px -5px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .carrito .bg:hover {
  background: -o-linear-gradient(left, #59c575 0%, #0176d0 68.63%);
  background: -webkit-gradient(linear, left top, right top, from(#59c575), color-stop(68.63%, #0176d0));
  background: linear-gradient(90deg, #59c575 0%, #0176d0 68.63%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .carrito .bg:hover .icon {
  background-image: url("../images/icons/cart_white_m.svg");
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont {
  display: none;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 76px;
  width: 360px;
  right: 0;
  padding: 40px 20px;
  -webkit-box-shadow: 0px 9px 12px 0px rgba(93, 90, 136, 0.12);
          box-shadow: 0px 9px 12px 0px rgba(93, 90, 136, 0.12);
}

.header .h__cont .menu .menu_icons .carrito .carrito_cont:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 88%;
    width: 0;
    height: 0;
    margin-left: -10px;
    border-bottom: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .inner__list__cart {
  max-height: 320px;
  overflow-y: auto;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.25rem;
  background-color: #fff;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item:hover {
    background-color: #f5f5f5;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item .delete__item__cart {
    opacity: 0.7;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item:hover .delete__item__cart {
    background-color: #f5f5f5;
    opacity: 1;
}
.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__img img{
  max-height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
} 
.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 p {
  margin-bottom: 0.25rem;
}
.header .h__cont .menu .menu_icons .carrito .carrito_cont .curso_item .item__description .curso_nombre {
  color: #000;
  font-family: "Poppins", sans-serif;
  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", sans-serif;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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", sans-serif;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  margin: 0 auto;
  padding: 7px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  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;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  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: auto;
  position: relative;
}
.header .h__cont .menu .menu_icons .login .loginpage {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  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;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .h__cont .menu .menu_icons .login .loginpage:hover {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: -o-linear-gradient(left, #59c575 0%, #0176d0 68.63%);
  background: -webkit-gradient(linear, left top, right top, from(#59c575), color-stop(68.63%, #0176d0));
  background: linear-gradient(90deg, #59c575 0%, #0176d0 68.63%);
}
.header .h__cont .menu .menu_icons .login .profile__toggle {
  text-decoration: none;
  color: #fff;
  background-color: transparent;
  display: none;
  cursor: pointer;
}
.header .h__cont .menu .menu_icons .login .profile__toggle 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .f__cont .item {
  width: -moz-fit-content;
  width: -webkit-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -ms-flex-wrap: wrap;
      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::-webkit-input-placeholder {
  color: #fff;
}
.footer .f__cont .item .news form .mail:-ms-input-placeholder {
  color: #fff;
}
.footer .f__cont .item .news form .mail::-ms-input-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;
  top: 0;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .f__cont .item .legend__recaptcha {
    font-size: 0.75rem !important;
    font-weight: 400;
    color: #fff;
    margin-top: 1rem;
}
.footer .f__cont .item .legend__recaptcha a{
    font-size: 0.75rem !important;
    display: inline;
    margin-bottom: 0;
    width: auto !important;
}
.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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: -moz-fit-content;
  max-width: -webkit-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;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.graciasnews .g_cont .continuar:hover {
  color: #00365f;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: #EBF6FF;
}

.user-login-form{
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.user-login-form .form-submit{
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 7px 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
    border-radius: 20px;
    background-color: #015ea6;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border: none;
    margin-top: 2rem;   
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}
.user-login-form .form-text{
    height: 40px;
    font-size: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.tabs__forms__tabs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.tabs__forms__tabs{
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* new buttons */
:root {
    --blue-light: #1B72B8;
    --blue-extralight: #438cd8;
    --green-main: #13A538;
    --white: #fff;
    --gray-medium: #2C2B2B;
    --color-black: #000;
    --blue-light-hover: #EBF6FF;
}

.btn__site {
    min-height: 36px;
    border-radius: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
    background-color: transparent;
    font-family: 0.875rem;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.btn__filled {
    background-color: var(--blue-light);
    color: #fff;
    border: 1px solid var(--blue-light);
}
.btn__filled:hover {
    background-color: var(--blue-light-hover);
    color: var(--blue-light);
    border-color: var(--blue-light-hover);
}

.btn__outline {
    color: var(--blue-light);
    border: 1px solid var(--blue-light);
}
.btn__outline:hover {
    background-color: var(--blue-extralight);
    color: var(--white);
    border-color:var(--blue-extralight);
}

.modal__confirmation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.inner__modal__confirmation{
    max-width: 500px;
    border-radius: 1rem;
    background-color: var(--white);
    padding: 2rem;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    text-align: center;
}
.modal__confirmation__close{
    position: absolute;
    right: 1rem;
    top: 1rem;
    background-color: transparent;
    border: none;
}
form input.is__invalid {
    border-color: #ff0000 !important;
}

p.message__form {
    font-size: 0.875rem !important;
    font-weight: 400 !important;
}

.error__section{
  width: 100%;
  height: calc(100vh - 88px);
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.error_cont{
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.inner__notfound{
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; 
}
.inner__notfound h1{
  font-size: 10rem;
  font-weight: 600;
  color: var(--white);
}
.inner__notfound p{
  font-size: 1.25rem;
  color: var(--white);
  text-align: center;
}
.btn__site{
    text-decoration: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    padding: 7px 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.35;
    text-transform: uppercase;
    border-radius: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.btn__site > img{
    max-height: 24px;
}

.btn__primary{
    background-color: #015ea6;
    color: #fff;
}
.btn__full{
    width: 100%;
}
.delete__item__cart{
    cursor: pointer;
}

.modal__site .modal-header{
    border-bottom: none;
}

.legend__recaptcha__black,
.legend__recaptcha{
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
}
.legend__recaptcha__black{
    color: #000;
}

.legend__recaptcha__black a{
    color: #000;
}
.legend__recaptcha a{
    color: #fff;
}


.dudas__section {
  width: 100vw;
  background-color: #0176D0;
  padding: 70px 20px;
}
.dudas__section .ds_cont {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dudas__section .ds_cont .informacion {
  width: 60%;
  display: block;
}
.dudas__section .ds_cont .informacion h4 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  /* 43.2px */
  margin-bottom: 20px;
}
.dudas__section .ds_cont .informacion p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  /* 28px */
}
.dudas__section .ds_cont .formulario {
  width: 35%;
}
.dudas__section .ds_cont .formulario form {
  width: 100%;
  display: block;
}
.dudas__section .ds_cont .formulario form .input_form {
  width: 100%;
  display: block;
  padding: 10px;
  margin-bottom: 16px;
}
.dudas__section .ds_cont .formulario form .input_form input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 10px 50px 10px 2rem;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.dudas__section .ds_cont .formulario form .input_form input.user {
  background-image: url("../images/icons/user_white.svg");
  background-position: 10px center;
  background-repeat: no-repeat;
}
.dudas__section .ds_cont .formulario form .input_form input.mail {
  background-image: url("../images/icons/mail_white.svg");
  background-position: 10px center;
  background-repeat: no-repeat;
}
.dudas__section .ds_cont .formulario form .input_form input.cta {
  max-width: 220px;
  padding: 8px 30px;
  cursor: pointer;
  border-radius: 24px;
  border: none;
  background-color: #015ea6;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.dudas__section .ds_cont .formulario form .input_form input.cta:disabled {
  background-color: #015ea6;
  opacity: 0.5;
  color: #fff;
  cursor: not-allowed;
}
.dudas__section .ds_cont .formulario form .input_form input.cta:hover {
  color: #015ea6;
  background-color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.dudas__section .ds_cont .formulario form .input_form input::-moz-placeholder {
  color: #fff;
  opacity: 0.5;
}
.dudas__section .ds_cont .formulario form .input_form input::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.5;
}
.dudas__section .ds_cont .formulario form .input_form input:-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
}
.dudas__section .ds_cont .formulario form .input_form input::-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
}
.dudas__section .ds_cont .formulario form .input_form input::placeholder {
  color: #fff;
  opacity: 0.5;
}
.dudas__section .ds_cont .formulario form .input_form input:focus {
  outline: none;
}
.dudas__section .ds_cont .formulario form .input_form .error {
  color: #ff9f97;
  font-size: 12px;
}

.form__dudas__name,
.form__dudas__email{
    background-repeat: no-repeat;
    background-position: 0.25rem center;
    background-size: 20px auto;
}

.form__dudas__name{
    background-image: url('../images/icons/icon__user__white.svg');
}
.form__dudas__email{
    background-image: url('../images/icons/icon__email__white.svg');
}

.header .account__options{
  position: absolute;
  right: -1rem;
  top: 68px;
  background-color: #fff;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 200px;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.header .account__options.open{
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.header .account__options:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 88%;
    width: 0;
    height: 0;
    margin-left: -10px;
    border-bottom: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.header .account__options ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

.header .account__options li a{
  color: #000;
  text-decoration: none;
  padding: 0.25rem 0;
  display: inline-block;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}
.header .account__options li a:hover {
  color: #015ea6;
  text-decoration: underline;
}

.bradcrum .b_cont p{
  margin-bottom: 0;
}
.bradcrum .b_cont p a {
  background-color: #fff;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
  padding: 0.125rem 0.25rem;
  border-radius: 0.5rem;
  display: inline-block;
}
.bradcrum .b_cont p a:hover{
  background: var(--gradlight, linear-gradient(90deg, #59C575 0%, #0176D0 68.63%));
    color: #fff;
}
 /* dahsboard */
.user-login-form {
  max-width: 600px;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.newsletter__error{
    color: #e685b5 !important;
    font-size: 12px !important;
    font-weight: 400;
    line-height: 140%;
    margin-top: 0.125rem;
    display: block;
    padding-left: 1rem;
}

.grecaptcha-badge{
    display: none;
}


@media only screen and (max-width: 1060px) {
  .footer .f__cont {
    -ms-flex-wrap: wrap;
        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 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header .h__cont .menu .menu_icons {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header .h__cont .menu .menu_icons .menu_b {
    display: block;
    width: auto;
  }
  .header .h__cont .menu .menu_icons .carrito {
    margin-right: 20px;
  }
  .header .h__cont .menu .menu_icons .close{
    width: auto;
  }
}

@media only screen and (max-width: 860px) {
    .dudas__section .ds_cont .informacion {
    width: 100%;
    margin-bottom: 50px;
  }
  .dudas__section .ds_cont .formulario {
    width: 100%;
  }
}
@media only screen and (max-width: 680px) {
  .footer .f__cont .item {
    width: 100% !important;
  }
  .wa_static {
    bottom: 5%;
  }

  
}

@media only screen and (max-width: 640px) {
  .header.open__menu{
    overflow: hidden;
    height: 100vh;
  }
  .header .mobile_menu{
    padding-left: 0;
    padding-right: 2rem;
  }

  .header .h__cont .menu .menu_icons .carrito .carrito_cont {
    width: 100vw;
    position: fixed;
    left: 0;
    right: 0;
  }
}
@media only screen and (max-width: 520px) {
  .dudas__section .ds_cont .informacion h4 {
    font-size: 24px;
  }
}