* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  position: relative;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

body.fixed {
  height: 100%;
  overflow-y: hidden;
}

input,
button,
textarea {
  font-family: inherit;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1024px;
}

.hero-slide,
.hero-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 46rem;
}

.hero-slide {
  display: flex;
  align-items: center;
}

.hero-slide .wrapper {
  position: relative;
  z-index: 2;
}

.hero-slide-bg-mobile,
.hero-slide-bg {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-slide-bg-mobile {
  display: none;
}

.hero-home {
  background-image: url(images/home/slider/1.jpg);
  display: flex;
  align-items: center;
}

.hero-text-limit {
  max-width: 400px;
}

.hero-texts {
  overflow-anchor: none;
  z-index: 2;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

.hero-video {
  height: 50rem;
  position: relative;
}

.scroll-cta {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 16px 0;
  animation: updown 2s infinite;
}

@keyframes updown {
  0% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-6px);
  }
}

.scroll-cta img {
  height: 32px;
}

.scroll-cta span {
  font-weight: 300;
  margin-top: 6px;
  display: inline-block;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wrapper h2 {
  color: #f36907;
  font-size: 5.5rem;
  margin-bottom: 0.5rem;
}

.hero-wrapper p {
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  max-width: 85%;
}

header {
  background: linear-gradient(180deg, black, transparent);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 200;
}

.header-navigation {
  display: flex;
}

.header-navigation .pancake-menu {
  position: relative;
  width: 3.5rem;
  margin: 1.2rem 0;
  padding: 0 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  height: 3rem;
}

.header-navigation .pancake-menu span {
  width: 100%;
  height: 4px;
  background-color: #fff;
  display: block;
  border-radius: 4px;
  margin: 0.375rem 0;
  transition: all 0.2s;
}

.header-navigation .pancake-menu:hover span {
  background-color: #fff;
}

.header-navigation .pancake-menu:hover span:nth-child(1) {
  transform: translate3d(0, 3px, 0);
}

.header-navigation .pancake-menu:hover span:nth-child(3) {
  transform: translate3d(0, -3px, 0);
}

.logo {
  margin-left: 1rem;
  margin-top: 1.25rem;
}

.logo img {
  height: 3.5rem;
}

header nav {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 301;
  visibility: hidden;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav.active {
  visibility: visible;
}

header nav.active .nav-background-circle {
  transform: scale(1);
}

.nav-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav .wrapper {
  z-index: 12;
  position: relative;
}

.nav-background-circle {
  border-radius: 100%;
  background-color: rgba(243, 105, 7, 0.9);
  width: 350vh;
  height: 350vh;
  position: absolute;
  transform: scale(0);
  transition: all 0.5s;
  z-index: 12;
}

header nav.active .nav-background-circle {
  transition: all 1.5s;
}

header nav ul li {
  font-size: 1.75rem;
  font-weight: bold;
  list-style: none;
  line-height: 1.6;
  opacity: 0;
}

header nav ul li a {
  color: #fff;
  display: block;
  transition: all 0.2s;
}

header nav.active ul li {
  opacity: 1;
}

header nav ul li a:hover {
  transform: translate3d(1rem, 0, 0);
}

header nav ul li {
  transition: all 0.3s;
  transition-delay: 0s;
}

header nav.active ul li {
  transition: all 0.8s;
}

header nav.active ul li:nth-child(1) {
  transition-delay: 0.4s;
}

header nav.active ul li:nth-child(2) {
  transition-delay: 0.45s;
}

header nav.active ul li:nth-child(3) {
  transition-delay: 0.5s;
}

header nav.active ul li:nth-child(4) {
  transition-delay: 0.55s;
}

header nav.active ul li:nth-child(5) {
  transition-delay: 0.6s;
}

header nav.active ul li:nth-child(6) {
  transition-delay: 0.65s;
}

header nav.active ul li:nth-child(7) {
  transition-delay: 0.7s;
}

header nav.active ul li:nth-child(8) {
  transition-delay: 0.75s;
}

header nav.active ul li:nth-child(9) {
  transition-delay: 0.8s;
}

header nav.active ul li:nth-child(10) {
  transition-delay: 0.85s;
}

header nav.active ul li:nth-child(11) {
  transition-delay: 0.9s;
}

header nav.active ul li:nth-child(12) {
  transition-delay: 0.95s;
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  cursor: pointer;
  border: none;
  color: #fff;
  transform: scale(0);
  font-size: 1.5rem;
  z-index: 20;
  transition: all 0.2s;
  transition-delay: 0s;
}

.nav-close i {
  transition: all 0.2s;
}

header nav.active .nav-close {
  transition: all 0.4s;
  transition-delay: 0.5s;
  transform: scale(1);
}

header nav.active .nav-close:hover i {
  transform: scale(1.3);
}

.sucursales-details {
  display: flex;
  align-items: start;

  img {
    width: 16px;
    margin-right: 5px;
    margin-top: 5px;
  }
}

.client-container {
  overflow-x: hidden;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.client-button,
.client-item {
  width: 100%;
  height: 0;
  cursor: pointer;
  padding-bottom: 100%;
  position: relative;
  overflow-x: hidden;
}

.client-button {
  border: none;
  font-size: 8rem;
}

.client-button-container {
  display: flex;
  background-color: #f36907;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.client-button.next {
  color: #fff;
  background-color: #f36907;
}

.client-item-slider-title {
  background-color: red;
  color: #fff;
  position: absolute;
  z-index: 20;
  display: block;
}

.client-item-slider {
  overflow: hidden;
  width: 300%;
  height: 100%;
  position: absolute;
  left: 0;
  transition: all 0.4s;
  transform: translate3d(-33.3333333333333333%, 0, 0);
  display: flex;
}

.client-item-slider img {
  width: calc(100% / 3);
}

.client-item:nth-child(1) .client-item-slider {
  transition-delay: 50ms;
}
.client-item:nth-child(2) .client-item-slider {
  transition-delay: 150ms;
}
.client-item:nth-child(3) .client-item-slider {
  transition-delay: 250ms;
}
.client-item:nth-child(4) .client-item-slider {
  transition-delay: 350ms;
}
.client-item:nth-child(5) .client-item-slider {
  transition-delay: 450ms;
}
.client-item:nth-child(6) .client-item-slider {
  transition-delay: 550ms;
}
.client-item:nth-child(7) .client-item-slider {
  transition-delay: 650ms;
}

.services-container {
  display: flex;
  align-items: center;
  padding: 3rem 0 0 0;
}

.services-image {
  flex: 1.8;
}

.services-image img {
  display: block;
  height: 28rem;
  margin-left: -20%;
}

.services-slider {
  flex: 2;
}

.services-slide {
  align-items: center;
  display: flex;
  padding-left: 2.5rem;
}

.services-slide h2 {
  font-size: 3.8rem;
  line-height: 0.95;
  margin-bottom: 2.5rem;
}

.services-slide p {
  font-size: 1.125rem;
  color: #444;
  font-weight: 600;
  line-height: 1.5;
}

.services-list {
  padding: 4rem 0;
}

.services-list ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.services-list ul li {
  width: 100%;
  list-style: none;
  text-align: center;
}

.services-list ul li button {
  width: 100%;
  border: none;
  background: none;
  margin: 1rem 0;
  cursor: pointer;
}

.services-list ul li button h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.2s;
}

.services-list ul li button p {
  color: #444;
  font-weight: 600;
  transition: all 0.2s;
  transition-delay: 0.05s;
}

.services-list ul li button:hover h2 {
  transform: scale(1.05);
}

.services-list ul li button:hover p {
  transform: scale(1.05);
}

.contact-banner {
  background: url(images/contact-banner.jpg) no-repeat center;
  background-size: cover;
  height: 40rem;
  position: relative;
}

.contact-banner .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.contact-banner .col {
  margin-top: -12rem;
  max-width: 26rem;
}

.contact-banner h2 {
  color: #222;
  font-size: 3.5rem;
  font-weight: 300;
}

.contact-banner:after {
  content: "";
  background: linear-gradient(to left, #aaa, transparent);
  width: 70%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.contact-banner h2 span {
  font-weight: bold;
}

.contact-banner a {
  background-color: #fff;
  color: #666;
  padding: 10px 20px;
  margin: 1rem 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.contact-banner a span {
  font-size: 14px;
  margin-left: 10px;
  display: inline-block;
  color: #888;
}

.contact-banner a i {
  margin-right: 0.5rem;
}

.contact-banner p {
  color: #222;
  font-weight: 500;
}

.contact-banner p button {
  background-color: #f36907;
  cursor: pointer;
  color: #fff;
  border: none;
  padding: 2px 40px;
  margin-left: 10px;
}

.contact-banner p button:hover {
  background-color: #ac4800;
}

footer {
  z-index: 3;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  color: #fff;
}

footer .wrapper {
  position: relative;
  z-index: 2;
}

.footer-bg {
  z-index: 1;
  background: rgba(243, 105, 7, 0.95);
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

footer a {
  color: inherit;
}

footer .top-links {
  margin-bottom: 2rem;
}

footer .top-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

footer .middle-links {
  align-items: center;
  justify-content: center;
}

footer .social-networks {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .social-networks img {
  width: 30px;
}

footer .social-networks a {
  margin: 1rem;
}

footer .bottom-links a {
  display: inline-block;
  margin: 0 0.25rem;
}

.second-screen {
  overflow-y: auto;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200000;
  transform: translate3d(-100%, 0, 0);
  pointer-events: none;
  visibility: hidden;
  transition: all 0.5s;
  background: #fff;
}

.second-screen.active {
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: all;
}

.medios-de-pago .generic-screen-hero .wrapper {
  justify-content: center;
}

.medios-de-pago .generic-screen-hero-text {
  max-width: 50%;
}

.contenedor-envios-details {
  width: 100%; /* Hace que el contenedor ocupe el 100% del ancho disponible */
  height: auto; /* Ajusta la altura automáticamente en función del ancho */
  overflow: hidden; /* Evita que la imagen se desborde */
  position: relative; /* Para trabajar con posicionamiento si es necesario */
}

.envios-img-detail {
  width: 100%; /* Hace que la imagen ocupe el 100% del ancho del contenedor */
  height: auto; /* Mantiene la proporción original de la imagen */
  object-fit: cover; /* Ajusta la imagen para que cubra completamente el contenedor */
}

.envios-text {
  color: #000;
  margin-top: 160px;
}

.envios-text h2 {
  margin-bottom: 32px;
}

.medios-pago-highlight {
  background-color: #fff;
  border-radius: 4px;
  padding: 4px 10px;
}

.contact {
  background: url(images/contact.jpg) no-repeat center;
  background-size: cover;
}

.contact form {
  padding-top: 10rem;
  max-width: 40rem;
  padding-bottom: 5rem;
}

.contact h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.contact label {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.contact input,
.contact textarea {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 2.5rem;
  width: 100%;
}

.contact textarea {
  height: 5.5rem;
}

.contact form button {
  background-color: #f36907;
  color: #fff;
  padding: 10px 50px;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
}

.contact form button[disabled] {
  opacity: 0.5;
  cursor: default;
}

.contact form button[disabled]:hover {
  background-color: #f36907;
}

.contact form button:hover {
  background-color: #ac4800;
}

.close-screen {
  width: 4rem;
  height: 4rem;
  color: #f36907;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  top: 0;
  right: 0;
  font-size: 2rem;
  z-index: 3;
  background: transparent;
  position: absolute;
  cursor: pointer;
}

.close-screen.close-left {
  right: unset;
  left: 0;
}

.second-screen[data-light] .close-screen {
  color: #000;
}

.mapa .close-screen {
  top: 50px;
}

.second-screen[data-light] .close-screen:hover {
  color: rgba(0, 0, 0, 0.6);
}

.close-screen:hover {
  color: #ac4800;
}

.generic-screen-hero {
  background-size: cover;
  background-position: center;
  position: relative;
}

.generic-screen-hero.fullheight {
  min-height: 100vh;
}

.generic-screen-hero.fullcontent {
  height: 100%;
  width: 100%;
}

.generic-screen-hero.fullcontent img,
.generic-screen-hero.fullcontent video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.generic-screen-hero.fullcontent video.escuela-negocios-mobile {
  display: none;
}

.generic-screen-ending-bg,
.generic-screen-ending-bg-mobile,
.generic-screen-hero-bg,
.generic-screen-hero-bg-mobile {
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-position: center;
}

.generic-screen-ending-bg-mobile,
.generic-screen-hero-bg-mobile {
  display: none;
}

.generic-screen-hero .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  position: relative;
}

.generic-screen-hero-text {
  max-width: 40%;
  color: #222;
  padding: 4rem 0;
}

.generic-screen-hero-text.text-center {
  margin: 0 auto;
  text-align: center;
}

.generic-screen-hero-text h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 16px;
}

.generic-screen-hero-text p {
  font-size: 18px;
  line-height: 1.5;
}

.redes-sociales-precios {
  padding: 40px 0 60px;
  width: 100%;
  text-align: center;
  background-color: #f1f1f1;
}

.redes-sociales-precios h3 {
  background-color: #f36907;
  color: #fff;
  padding: 6px 36px;
  display: inline-block;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.redes-sociales-precios-bloques {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
}

.redes-sociales-precios-bloque {
  border-radius: 4px;
  background-color: #fff;
  z-index: 1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
}

.redes-sociales-precios-bloque.mas-vendido {
  transform: scale(1.1);
}

.redes-sociales-precios-bloque h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.redes-sociales-precios-bloque-subtitulo {
  color: #f36907;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.redes-sociales-precios-bloque-texto {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
}

.redes-sociales-precios-bloque-precio {
  color: #f36907;
  font-weight: 500;
}

.redes-sociales-precios-bloque-precio-valor {
  font-size: 40px;
}

.redes-sociales-precios-bloque-mes {
  font-size: 13px;
}

.generic-screen-ending {
  position: relative;
  height: 640px;
  background-size: cover;
  background-position: center;
}

.generic-screen-ending .wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.generic-screen-ending-block {
  width: 50%;
  color: #fff;
}

.generic-screen-ending-text {
  font-size: 36px;
  margin-bottom: 64px;
}

.generic-screen-ending-connect {
  font-size: 18px;
}

.generic-screen-ending-connect a {
  color: #888;
  font-weight: 500;
  text-decoration: none;
  background-color: #fff;
  border-radius: 5px;
  padding: 4px 16px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
}

.generic-screen-ending-connect a span {
  font-size: 13px;
  margin-left: 10px;
}

.generic-screen-slide {
  height: 400px;
  display: flex;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 90px;
}

.generic-screen-slide-text {
  padding: 64px;
  background-color: #fff;
  font-weight: 500;
  width: 40%;
  font-size: 18px;
  display: flex;
  line-height: 1.5;
  align-items: center;
}

.generic-screen-slide-image {
  width: 60%;
  background-size: cover;
  background-position: center;
}

.sucursales .columns {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.sucursales .column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sucursales-map iframe {
  width: 100%;
  display: block;
}

.sucursales-block {
  color: #fff;
  background-color: #000;
  padding: 16px;
  flex: 1;
  text-align: center;
}

.sucursales-block h2 {
  margin-bottom: 16px;
}

.folleto-ofertas iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.faq,
.politicas {
  padding: 64px 0;
}

.faq h3 {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.faq h3:hover {
  transform: translate3d(10px, 0, 0);
}

.faq h3 i {
  font-size: 14px;
}

.politicas p,
.faq p {
  margin-bottom: 32px;
  font-size: 18px;
  color: #444;
  font-weight: 500;
  line-height: 1.5;
}

.faq p {
  display: none;
}

.politicas h2,
.faq h2 {
  margin-bottom: 32px;
}

.tienda-online-precios {
  display: none;
}

.services {
  background-color: #fddd64;
}

.services .bx-wrapper {
  background: transparent;
}

.powered img {
  height: 40px;
  margin-top: 24px;
}

.whatsapp-opener {
  display: inline-block;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 200;
  background: #222;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  border-radius: 100rem;
  color: #fff;
  font-size: 0.875rem;
}

.whatsapp-opener i {
  margin-right: 0.5rem;
}

.whatsapp-container {
  width: 100%;
  z-index: 200;
  max-width: 20rem;
  position: fixed;
  bottom: 6rem;
  left: 2rem;
  display: none;
}

.whatsapp-container .top {
  color: #fff;
  background: #222;
  position: relative;
  padding: 1rem;
  border-radius: 5px 5px 0 0;
}

.whatsapp-container .top p {
  color: #fff;
  font-size: 0.875rem;
  max-width: 16rem;
  margin-bottom: 0;
}

.whatsapp-container .top i {
  opacity: 0.4;
  position: absolute;
  right: 0.625rem;
  cursor: pointer;
  top: 0.625rem;
}

.whatsapp-container .top i:hover {
  opacity: 0.7;
}

.whatsapp-container .bottom {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 1rem;
  color: inherit;
  background: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
}

.whatsapp-container .bottom i {
  font-size: 2.25rem;
  color: #49bd53;
  margin-right: 1rem;
}

.whatsapp-container .bottom span {
  font-size: 0.875rem;
  opacity: 0.6;
}

.whatsapp-container .bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: bold;
}

.quienes-somos-text {
  background: #f36907;
  padding: 4rem 0;
  text-align: center;
}

.quienes-somos-text h2 {
  color: #fff;
  font-size: 52px;
  text-shadow: 1px 1px rgb(0 0 0 / 20%), 2px 2px rgb(0 18 35 / 23%),
    3px 3px rgb(0 29 57 / 25%), 4px 4px rgb(1 38 73 / 28%),
    5px 5px rgb(1 44 85 / 31%), 6px 6px rgb(1 48 94 / 33%),
    7px 7px rgb(1 52 101 / 36%), 8px 8px rgb(1 55 107 / 39%),
    9px 9px rgb(1 57 112 / 41%), 10px 10px rgb(1 60 116 / 44%),
    11px 11px rgb(1 61 119 / 47%), 12px 12px rgb(1 63 122 / 49%),
    13px 13px rgb(1 64 125 / 52%), 14px 14px rgb(1 65 127 / 55%),
    15px 15px rgb(1 67 130 / 57%), 16px 16px rgb(1 68 131 / 60%),
    17px 17px rgb(1 68 133 / 63%), 18px 18px rgb(1 69 135 / 65%),
    19px 19px rgb(1 70 136 / 68%), 20px 20px rgb(1 70 137 / 71%),
    21px 21px rgb(1 71 138 / 73%), 22px 22px rgb(1 72 139 / 76%),
    23px 23px rgb(1 72 140 / 79%), 24px 24px rgb(1 73 141 / 81%),
    25px 25px rgb(1 73 142 / 84%), 26px 26px rgb(1 73 143 / 87%),
    27px 27px rgb(1 74 144 / 89%), 28px 28px rgb(1 74 144 / 92%),
    29px 29px rgb(1 74 145 / 95%), 30px 30px rgb(1 75 145 / 97%);
}

.quienes-somos-text h2.small {
  font-size: 34px;
  margin-top: 8px;
}

.whatsapp-opener-v2-pc {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
}

.whatsapp-opener-v2-pc button {
  background-color: #f36907;
  height: 3rem;
  width: 3rem;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  color: #fff;
}

.whatsapp-opener-v2-pc button:hover {
  background-color: #ac4800;
}

.whatsapp-opener-v2-texts {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(243, 105, 7, 0.9);
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
  text-align: right;
  transform: translate3d(0, -10rem, 0);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whatsapp-opener-v2-texts .close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: #fff;
}

.whastapp-opener-v2-cols {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  font-size: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.phone-separation {
  height: 3rem;
}

.whatsapp-opener-v2-texts p {
  text-align: center;
  border: 1px solid #000;
  max-width: 22rem;
  width: 100%;
  padding: 10px;
  margin: 0.5rem auto;
}

.whatsapp-opener-v2-texts p.sp-title {
  border: none;
  margin-top: 2rem;
  color: #000;
  height: 66px;
  margin-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.wsp-opener-wsp-text i {
  color: #a3ffab;
}

.whatsapp-opener-v2-texts a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.whatsapp-opener-v2-texts.active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.open-ctc-services {
  text-decoration: none;
  color: inherit;
}

.arrow-to-top {
  width: 3rem;
  height: 3rem;
  background-color: #222;
  border-radius: 100%;
  position: fixed;
  cursor: pointer;
  bottom: 2rem;
  right: 2rem;
  box-shadow: 0 5px 12px rgb(0 0 0 / 10%);
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}

.arrow-to-top.active {
  visibility: visible;
  opacity: 1;
}

.arrow-to-top i {
  position: absolute;
  color: #fff;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

/* Daily banner */

.daily-banner {
  position: relative;
}

.daily-banner img {
  width: 100%;
  display: block;
}

.daily-banner .fa-times {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem;
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.daily-banner img.img-2 {
  display: none;
}

.daily-banner .fa-times:hover,
.daily-banner .fa-times:focus {
  transform: scale(1.1);
}

.store-opener-pc {
  background-color: rgba(243, 105, 7, 0.7);
  position: fixed;
  height: 3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.7rem;
  top: 0px;
  right: 5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 5px;
  overflow: hidden;
}

.store-opener-pc:before {
  position: absolute;
  content: "";
  left: -32px;
  top: -25%;
  width: 20px;
  height: 150%;
  transform: skew(-25deg);
  background-color: #ff9f5c;
  transition: all 0.4s;
}

.store-opener-pc:hover:before {
  left: 200px;
}

.store-opener-pc i {
  margin-right: 6px;
}

.swal2-container {
  z-index: 200001 !important;
}

@media screen and (max-width: 64rem) {
  .daily-banner img.img-1 {
    display: none;
  }

  .daily-banner img.img-2 {
    display: block;
  }
}

/****************/

.footer-cols {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr) minmax(0, 1fr)
    minmax(0, 1fr);
}

.footer-col a {
  display: block;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
}

.slider-info-slide {
  padding: 3rem 0;
}

.slider-info-slide.slide-1 h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.slider-info-slide.slide-1 h3 p:nth-child(1) {
  font-weight: 300;
}

.slider-info-slide.slide-1 h3 p:nth-child(2) {
  font-weight: 500;
}

.slider-info-slide h3 p span {
  color: #f36907;
}

.slider-info-slide.center {
  text-align: center;
}

.slider-info-data-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.slider-info-data-col {
  padding: 0 20px;
}

.slider-info-data-col-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.slider-info-data-col-text {
  line-height: 1.5;
  color: #222;
}

.slider-info-data-col + .slider-info-data-col {
  border-left: 1px solid #444;
}

.slider-social-networks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.slider-social-network {
  color: #fff;
  font-size: 32px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 4px;
}

.slider-social-network a {
  padding: 1.5rem 0;
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.slider-social-network img {
  border-radius: 0 0 17px 17px;
}

.slider-social-network.fb {
  background-color: #3b5998;
}

.slider-social-network.ig {
  background: #d6249f;
  background: radial-gradient(
    circle at -4% 37%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.slide-image-fullwidth {
  width: 100%;
  height: 210px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(css/images/escuela-negocios.jpg);
}

.envios-banner-img {
  width: 100%;
}

.envios-banner-responsive {
  display: none;
  width: 100%;
}

.home-sponsors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-sponsors img {
  width: 100%;
}

.home-sponsors .duracell:before {
  content: "";
  background-color: #da8a46;
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
}

.home-sponsors .duracell {
  background-color: #222;
}

.home-sponsors .mondelez {
  background-color: #4f206f;
}

.whatsapp-opener-v2-mob {
  display: none;
}

.compra-online-place {
  background-color: #ac4800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compra-online-place img {
  width: 100%;
  height: auto;
}

.compra-online-content {
  text-align: center;
}

.compra-online-content img {
  border-radius: 10px;
  max-width: 90%;
  margin: 5rem auto;
  display: block;
}

.compra-online-content a {
  width: 200px;
  background-color: #f36907;
  color: #fff;
  padding: 11px;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
  text-decoration: none;
}

.slide-compra {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  height: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  transform: translate3d(-100%, 0, 0);
  justify-content: center;
  color: #444;
  font-size: 24px;
  transition: all 0.4s;
}

.slide-compra.active {
  transform: translate3d(0, 0, 0);
}

.mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(images/mask.png);
}

.sucursales .generic-screen-hero {
  padding: 100px 0;
  height: auto;
  display: flex;
  background-color: #f36907;
  align-items: center;
}

.payment-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #444;
  margin-top: 36px;
}

.medios-de-pago .mercadopago-logo {
  height: 22px;
  margin-left: 10px;
  transform: translateY(5px);
}

.payment-table-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  padding: 16px;
}

.payment-table-item div {
  text-align: center;
}

.payment-table-item p {
  color: rgba(0, 0, 0, 0.7);
  font-weight: bold;
  font-size: 13px;
  height: 40px;
  margin-bottom: 5px;
}

.payment-table-item img {
  height: 50px;
}

.folleto-ofertas .generic-screen-hero {
  padding: 100px 0;
  height: auto;
  display: flex;
  background-color: #f36907;
  align-items: center;
}

.whatsapp-opener-v2-texts p.wsp-opener-label {
  border: none;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
}

/* .initial-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
}

.initial-popup.removed {
  transform: translate3d(-100%, 0, 0);
}

.initial-popup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.footer-padding {
  height: 200px;
}

.newsletter {
  background-color: #f36907;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #fff;
  font-size: 18px;
}

.newsletter input {
  border: none;
  padding: 10px;
}

.newsletter form {
  display: flex;
  align-items: center;
  margin-left: 48px;
}

.newsletter button {
  padding: 10px 32px;
  border: none;
  background-color: #222;
  color: #fff;
  cursor: pointer;
}

.newsletter button[disabled] {
  opacity: 0.4;
  cursor: default;
}

/* trabaja con nosotros */

.wwu-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.wwu-col-2.big-text p {
  font-size: 20px;
}

.second-sc-form .generic-screen-hero {
  padding: 100px 0;
}

.second-sc-form .generic-screen-hero .wrapper {
  display: block;
  margin-top: 140px;
}

.second-sc-form h2 {
  margin-bottom: 32px;
}

.wwu-col label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}

.wwu-col input,
.wwu-col textarea {
  width: 100%;
  padding: 8px;
  border-radius: 1px;
  border: none;
  margin-bottom: 16px;
}

.wwu-col textarea {
  height: 100px;
}

.wwu-col p {
  margin-bottom: 20px;
}

.cv-upload {
  display: flex;
  align-items: center;
}

.wwu-col-2 {
  margin-top: 80px;
}

.wwu-col button {
  background-color: #f36907;
  color: #fff;
  padding: 10px 32px;
  border: none;
  cursor: pointer;
  margin-top: 24px;
}

.wwu-col button[disabled] {
  opacity: 0.5;
  cursor: default;
}

.two-block-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.nosotros-text {
  color: #fff;
  margin-top: 160px;
}

.nosotros-text h2 {
  margin-bottom: 32px;
}

.quienes-somos {
  background-color: #f36907;
}

/* UNIDADES NEGOCIO */

.unidades-negocio .wrapper {
  display: block;
}

.unidades-negocio h2 {
  margin-bottom: 24px;
}

.uneg .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.uneg .cols .col {
}

.uneg .cols .col .container {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.uneg .cols .col .container .front,
.uneg .cols .col .container .back {
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  backface-visibility: hidden;
  text-align: center;
  min-height: 480px;
  height: auto;
  border-radius: 10px;
  color: #fff;
}

.uneg .cols .col .container .front:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  opacity: 0.6;
  background-color: #000;
  backface-visibility: hidden;
  border-radius: 10px;
}

.uneg .cols .col .container .front img {
  width: 4rem;
  height: 4rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.uneg .cols .col .container .front p {
  font-size: 1.25rem;
  color: #fff;
}

.uneg .cols .col .container .back {
  background: #222;
}

.uneg .cols .col .container .back p {
  color: #fff;
  line-height: 1.3;
}

.uneg .cols .col .container:hover .front,
.uneg .cols .col .container:hover .back {
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.uneg .cols .col .container .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.uneg .cols .col .container .back .inner,
.uneg .cols .col .container .front .inner {
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  outline: 1px solid transparent;
  perspective: inherit;
  z-index: 2;
}

.uneg .cols .col .container .back {
  transform: rotateY(180deg);
  transform-style: preserve-3d;
}

.uneg .cols .col .container .front {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

.uneg .cols .col .container:hover .back {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

.uneg .cols .col .container:hover .front {
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
}

.unidades-negocio {
  background-color: #f36907;
  color: #fff;
}

.uneg-text {
  padding: 100px 0;
}

/* **************** */

.envios {
  background-color: #f36907;
}

.envios .two-block-cols button {
  background-color: #fff;
  color: #000;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

@media screen and (max-width: 1080px) {
  .footer-col a.hide-on-mobile {
    display: none;
  }

  footer .middle-links img {
    display: none;
  }

  .footer-cols {
    display: flex;
    flex-direction: column;
  }

  footer .middle-links {
    order: 1;
  }

  footer .social-networks {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .footer-col {
    order: 2;
  }

  .services-list ul li button {
    text-align: center;
  }
  .contact {
    background-image: url(images/contact-mobile.jpg);
  }

  .services-slider {
    display: none;
  }

  .services-list {
    width: 100%;
    padding-left: 0rem;
  }

  .generic-screen-slider {
    display: none;
  }

  .tienda-online-precios {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .second-sc-form .generic-screen-hero .wrapper {
    margin-top: 0;
  }

  .wwu-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wwu-col-2 {
    margin-top: 0;
  }

  .sucursales .columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .redes-sociales-precios-bloques {
    display: block;
  }

  .redes-sociales-precios h3 {
    display: none;
  }

  .redes-sociales-precios-bloque.mas-vendido {
    transform: none;
    margin: 34px 0 16px;
    position: relative;
    padding-top: 34px;
  }

  .redes-sociales-precios-bloque.mas-vendido:before {
    content: "Más vendido";
    background-color: #f36907;
    color: #fff;
    padding: 5px 12px;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 150px;
  }

  .generic-screen-ending-bg,
  .generic-screen-hero-bg {
    display: none;
  }

  .generic-screen-ending-bg-mobile,
  .generic-screen-hero-bg-mobile {
    display: block;
  }

  .generic-screen-hero-text h2,
  .generic-screen-ending-text {
    font-size: 26px;
  }

  .generic-screen-hero-text p {
    font-size: 15px;
  }

  .services-list ul li button h2 {
    font-size: 1.5rem;
  }

  .services-list ul li {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 10px;
  }

  .services-list ul li + li {
    margin-top: 16px;
  }

  .hero-slide-bg {
    display: none;
  }

  .hero-slide-bg-mobile {
    display: block;
  }

  .hero-slide,
  .hero-section {
    height: 30rem;
  }

  .hero-wrapper h2 {
    font-size: 3.5rem;
    margin-bottom: 0;
  }

  .client-button {
    font-size: 4rem;
  }

  .client-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact h2 {
    font-size: 2rem;
  }

  .contact label,
  .contact input,
  .contact textarea {
    font-size: 1.25rem;
  }

  .contact input,
  .contact textarea {
    padding: 8px;
  }

  .generic-screen-ending-block,
  .generic-screen-hero-text {
    width: 100%;
  }

  .generic-screen-hero {
    height: 400px;
  }

  .generic-screen-hero.fullheight {
    height: auto;
  }

  .envios .generic-screen-hero,
  .quienes-somos .generic-screen-hero {
    height: auto;
  }

  .generic-screen-ending {
    height: 480px;
  }

  .envios-text,
  .nosotros-text {
    margin-top: 80px;
  }

  .hero-texts {
    font-size: 32px;
  }
}

@media screen and (max-width: 740px) {
  .envios-banner-img {
    width: 100%;
    display: none;
  }

  .envios-banner-responsive {
    display: block;
    width: 100%;
  }
  .medios-de-pago .generic-screen-hero-text {
    max-width: 100%;
  }

  .hero-video {
    height: 35rem;
  }

  .newsletter {
    display: block;
    text-align: center;
  }

  .newsletter form {
    justify-content: center;
    margin-left: 0;
    margin-top: 20px;
  }

  .two-block-cols {
    grid-template-columns: 1fr;
  }

  .generic-screen-hero.fullcontent video.escuela-negocios-mobile {
    display: block;
  }

  .generic-screen-hero.fullcontent video.escuela-negocios-pc {
    display: none;
  }

  .whastapp-opener-v2-cols {
    font-size: 15px;
    width: 90%;
    display: block;
  }

  .whatsapp-opener-v2-texts p.sp-title {
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .payment-table-item img {
    height: 30px;
  }

  .home-sponsors {
    display: block;
  }

  .home-sponsors img {
    display: block;
  }

  .sucursales .columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }

  .store-opener-pc {
    display: none;
  }

  .whatsapp-opener-v2-mob {
    display: block;
  }

  .slider-info-data-cols {
    display: block;
  }

  .slider-info-data-col {
    padding: 20px 0;
  }

  .slider-social-networks {
    display: block;
  }

  .slide-image-fullwidth {
    height: 400px;
    background-image: url(css/images/escuela-negocios-movil.jpg);
  }

  .slider-social-network {
    margin-bottom: 1.5rem;
  }

  .slider-info-data-col + .slider-info-data-col {
    border-left: none;
    border-top: 1px solid #444;
  }
}

@media screen and (max-width: 500px) {
  .compra-online-place {
    display: block;
  }
  .whatsapp-opener-texts p {
    margin: 3rem auto;
    max-width: 18rem;
  }

  .contact label,
  .contact input,
  .contact textarea {
    font-size: 1.1rem;
  }

  .contact-banner .col {
    max-width: 100%;
    text-align: center;
    margin-top: -15rem;
  }

  .contact-banner:after {
    width: 100%;
  }

  .client-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slide,
  .hero-section {
    height: 25rem;
  }

  .hero-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }

  .logo img {
    height: 2.5rem;
    margin-top: 4px;
  }

  header nav ul li {
    font-size: 1.45rem;
    margin-left: 16px;
  }

  .contact-banner p button {
    display: block;
    margin: 16px auto 0;
    padding: 8px 40px;
  }

  .contact-banner p {
    margin-top: 2rem;
  }

  .contact-banner h2 {
    font-size: 2rem;
  }

  footer .top-links a {
    display: block;
  }

  footer .top-links span {
    display: none;
  }

  footer .middle-links {
    display: block;
  }

  footer .social-networks {
    margin-left: 0;
    margin-top: 0rem;
  }

  footer .middle-links img {
    height: 3.5rem;
  }
}
