* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.active {
  background-color: #f5b63e;
}

.hero .cta {
  background-color: #009FE3;
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  font-size: 22px;
  transition: 0.5s ease-out;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.hero .cta:hover {
  background-color: #f5b63e;
  color: #333333;
}
@media (320px <= width <= 768px) {
  .hero .cta {
    margin-top: 20px;
  }
}

nav {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
nav .hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
@media (320px <= width <= 768px) {
  nav .hamburger {
    display: flex;
    position: absolute;
    right: 5%;
    top: 25px;
    z-index: 9999999999;
  }
}
nav .hamburger span {
  width: 30px;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: 0.3s;
}
nav .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
nav .hamburger.open span:nth-child(2) {
  opacity: 0;
}
nav .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}
nav .nav-links {
  display: flex;
  gap: 13px;
  list-style: none;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
}
@media (320px <= width <= 768px) {
  nav .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    height: 100vh;
    background-color: #215D8C;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    z-index: 101;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }
}
@media (320px <= width <= 768px) {
  nav .nav-links.open {
    right: 0;
    display: flex;
    gap: 10px;
  }
}
@media (320px <= width <= 768px) {
  nav ul li {
    width: 100%;
  }
}
nav ul li a {
  background-color: #f5b63e;
  color: #333333;
}
nav .cta {
  justify-content: center;
}
@media (320px <= width <= 768px) {
  nav .cta {
    display: flex;
    justify-content: center;
    margin-left: 0;
    padding: 10px;
    width: 100%;
    margin-top: 0;
  }
}

.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999999;
  display: flex;
  gap: 10px;
  flex-flow: row-reverse;
  align-items: center;
}
@media (320px <= width <= 768px) {
  .whatsapp {
    bottom: 10px;
    right: 10px;
  }
}
.whatsapp:hover img {
  width: 60px;
}
.whatsapp:hover p {
  display: block;
}
.whatsapp a img {
  width: 50px;
  transition: 0.3s ease-out;
}
.whatsapp p {
  font-size: 14px;
  background-color: #f5b63e;
  color: #333333;
  padding: 10px;
  border-radius: 20px;
  display: none;
}

.swiper {
  margin: 40px 0;
}
.swiper .swiper-slide {
  margin: 20px 0;
}
.swiper .swiper-slide img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(1);
}

#marquee-internet {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  white-space: nowrap;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  margin-bottom: 40px;
}
#marquee-internet p {
  display: inline-block;
  font-size: 400px;
  color: transparent;
  background-color: #009FE3;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0;
  will-change: transform;
  animation: scrollLoop 10s linear infinite;
  height: 400px;
  font-family: "Bebas Neue", sans-serif;
}
@media (320px <= width <= 768px) {
  #marquee-internet p {
    font-size: 120px !important;
    height: 110px;
  }
}

#planes {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 20px;
  gap: 20px;
  flex-flow: column;
  align-items: center;
}
@media (320px <= width <= 768px) {
  #planes {
    flex-flow: column;
    gap: 20px;
    height: auto;
    margin-bottom: 40px;
  }
}
#planes .section-head {
  margin-bottom: 20px;
  justify-content: center;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#planes .planes-grid {
  display: flex;
  width: 100%;
  gap: 20px;
}
@media (320px <= width <= 768px) {
  #planes .planes-grid {
    flex-flow: column;
    gap: 20px;
  }
}
#planes .plan {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 500px;
  display: flex;
  flex-flow: column;
  transition: 0.5s ease-out;
  cursor: pointer;
}
@media (320px <= width <= 768px) {
  #planes .plan {
    padding: 20px 20px;
    background-color: #333333;
    width: 100%;
  }
}
#planes .plan:hover {
  background-color: #215D8C;
}
#planes .plan:hover .cta {
  background-color: #f5b63e;
  color: #333333;
  display: block !important;
}
#planes .plan:hover li {
  color: #FFFFFF;
}
#planes .plan img {
  filter: invert(1);
  margin-bottom: 20px;
  width: 80px;
}
#planes .plan h3 {
  font-size: 26px;
  color: #FFFFFF;
}
#planes .plan h4 {
  font-size: 60px;
  color: #F1B258;
  font-weight: 300;
}
#planes .plan ul li {
  font-size: 18px;
  text-align: center;
  list-style: none;
  line-height: 26px;
  font-family: "Roboto", sans-serif;
  color: darkgrey;
}
#planes .plan .cta {
  background-color: #009FE3;
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  font-size: 22px;
  transition: 0.5s ease-out;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
#planes .plan .cta:hover {
  background-color: #f5b63e;
  color: #333333;
}
@media (320px <= width <= 768px) {
  #planes .plan .cta {
    margin-top: 20px;
  }
}
#planes .plan .cta {
  margin-top: 20px;
}
#planes .plan p {
  font-size: 14px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
}

.faq-section .section-head {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  flex-flow: column;
}
.faq-section .faq-wrap .faq-item {
  transition: max-height 0.3s ease;
}
.faq-section .faq-wrap .faq-item .faq-a {
  overflow: hidden;
}
#channels {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  margin-bottom: 50px;
}
@media (320px <= width <= 768px) {
  #channels {
    flex-flow: column;
    height: auto;
    gap: 20px;
  }
}
#channels .channel {
  flex: 1;
  height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: flex 0.5s ease;
  cursor: pointer;
  flex-flow: column;
  gap: 5px;
}
@media (320px <= width <= 768px) {
  #channels .channel {
    min-height: 350px;
    margin: 0 5%;
  }
}
#channels .channel:hover {
  flex: 2;
}
#channels .channel p {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0px;
  color: #FFFFFF;
  font-size: 16px;
}
#channels .channel h3 {
  font-size: 32px;
  background: #009FE3;
  padding: 10px;
  z-index: 9;
  color: #FFFFFF;
}
#channels img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
#channels p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.6392156863);
  width: 90%;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}

#weDo .do {
  height: auto;
}
@media (320px <= width <= 768px) {
  #weDo .do {
    width: 100%;
  }
}/*# sourceMappingURL=css-chile.css.map */