/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100..900&display=swap');

:root {
  --black: #000;
  --white: #fff;
  --pink: #EE33FF;
  --lightpurple: #7692FF;
  --mediumpurple: #8143D6;
  --purple: #31306B;
  --violent: #6B3DDA;
  --blueburry: #7792FF;
  --green: #6CFFB1;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Urbanist", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* header */
.header {
  background: url('/img/stars.svg'), var(--purple);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
}
.astro-header-img {
  background: var(--white);
  width: 100%;
  height: 700px;
  border-radius: 50px;
  box-shadow: 0px 0px 50px 0px rgba(108, 255, 177, 0.50);
  padding: 30px 20px;
  text-align: center;
  position: relative;
}
.logo {
  height: 80px;
}
.astro1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-45%);
  width: 550px;
  animation: float 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes float {
  0% {
    transform: translateX(-50%) translateY(-45%) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) translateY(-40%) rotate(2deg);
  }
  100% {
    transform: translateX(-50%) translateY(-45%) rotate(0deg);
  }
}
.header-txt {
  padding: 0 60px;
}
.header-txt h1 {
  color: var(--green);
  font-size: 130px;
  font-weight: 900;
  text-transform: uppercase;
  background: url('/img/under_green.svg');
  background-position: 20% bottom;
  background-size: 450px;
  background-repeat: no-repeat;
  transform: rotate(-4deg);
  animation: zoomFly 1.3s ease-out;
  display: inline-block;
}
@keyframes zoomFly {
  0% {
    transform: translateX(-200px) skewX(-10deg) rotate(-8deg);
    opacity: 0;
  }
  60% {
    opacity: 1;
    transform: translateX(20px) skewX(3deg) rotate(-3deg);
  }
  100% {
    transform: translateX(0) skewX(0deg) rotate(-4deg);
  }
}
.header-txt h6 {
  transform: rotate(-4deg);
  font-size: 45px;  
  font-weight: 500;
  color: var(--white);
}
/* form */
#contactform {
  margin-top: 60px;
  width: 100%;
  min-height: 320px;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 50px;
  box-shadow: 0px 0px 50px 0px rgba(108, 255, 177, 0.50);
  text-align: center;
  position: relative;
}
#contactform:after {
  content: '';
  background: url('/img/phone.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  width: 150px;
  height: 220px;
  position: absolute;
  top: -175px;
  right: 35px;
  animation: float2 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes float2 {
  0% {
    transform: translateY(0%) rotate(0deg);
  }
  50% {
    transform: translateY(-8%) rotate(4deg);
  }
  100% {
    transform: translateY(0%) rotate(0deg);
  }
}
.form-header {
  margin-bottom: 20px;
}
.form-title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-title h5 {
  color: var(--purple);
  font-size: 26px;
  font-weight: 800;
  margin: 0 20px 0 0;
}
.form-title img {
  height: 30px;
}
.under_purple {
  width: 400px;
}
.form-input .dropdown-toggle {
  background: var(--white);
  width: 100%;
  height: 60px;
  border-radius: 20px;
  border: 2px solid var(--lightpurple);
  color: var(--purple);
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto 0 auto;
  transition: all 0.4s ease;
}
.form-input .dropdown-toggle img {
  transform: rotate(90deg);
  height: 35px;
}
.dropdown-toggle::after {
  display: none;
}
.form-input .dropdown-toggle:hover, .form-input .dropdown-toggle:active {
  background: var(--lightpurple) !important;
  color: var(--white) !important;
}
.form-input .dropdown-toggle:hover img {
  filter: brightness(0) invert(1);
}
.form-input .dropdown-toggle:focus-visible, .form-input .dropdown-toggle:focus {
  box-shadow: none;
  background: var(--white);
  color: var(--purple);
}
.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
  border-radius: 20px;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid var(--lightpurple);
}
.tarifa-dropdown.off {
  display: none !important;
}
.tarifa-dropdown .form-option:nth-child(3) {
  display: none;
}
.form-option {
  padding: 10px 20px;
}
.form-option:hover {
  background: var(--lightpurple);
  color: var(--white);
}
.form-button {
  width: 300px;
  height: 65px;
  background: var(--lightpurple);
  border: none;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin: 30px auto 0 auto;
  transition: all 0.4s ease;
}
.form-button img {
  height: 35px;
  filter: brightness(0) invert(1);
  margin: 0 0 0 20px;
}
.form-button:hover {
  background: var(--purple);
  color: var(--white);
}
.error {
  font-size: 11px;
  color: var(--pink);
  font-weight: 300;
}
/* multi step version */
/* form steps */
.form-step {
  display: none;
  opacity: 0;
}
.form-step.active {
  display: block;
  opacity: 1;
  animation-name: fadeInUp;
  animation-duration: 1s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.form-button {
  display: block;
  margin: 10px auto 0 auto;
}
.form-step h2 {
  color: var(--purple);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}
.form-step h6 {
  color: var(--violent);
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0 20px 0;
  transform: none;
}
#province_name {
  color: var(--lightpurple);
  display: inline-block;
}
.provinceactive {
  animation: growAnimation 1s ease-out;
}
@keyframes growAnimation {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  border: 1px solid var(--purple);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 50px;
  padding: 0 30px;
  margin: 7px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--purple);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
}
.radio-buton label p {
  margin: 0;
}
.radio-buton label p span {
  font-size: 14px;
  font-weight: 300;
}
.radio-buton label img {
  height: 30px;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--lightpurple);
  border: 1px solid var(--lightpurple);
  color: var(--white);
}
.radio-buton label:hover img, .radio-buton input[type="radio"]:checked + label img {
  filter: brightness(0) invert(1);
}
.radio-buton label.active {
  background: var(--lightpurple) !important;
  border: 1px solid var(--lightpurple) !important;
  color: var(--white) !important;
}
.radio-buton label.active img {
  filter: brightness(0) invert(1) !important;
}
.fibramovel, .fibra, .movel {
  display: none;
}
label.error {
  display: none;
}
/* section1 */
.section1 {
  padding: 40px 0 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--purple) 0%, var(--lightpurple) 100%);
}
.sec1-txt h3 {
  color: var(--white);
  font-size: 45px;
  font-weight: 800;
}
.sec1-txt h6 {
  color: #FFF;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
}
.sec1-txt h6 span {
  font-weight: 800;
}
#green {
  color: var(--green);
}
.sec1-txt hr {
  width: 80%;
  height: 1px;
  opacity: 1;
  border: none;
  background: var(--white);
  opacity: 1;
  margin: 0 auto;
}
.cta-row {
  margin: 30px auto 50px auto;
}
.tarifa-opt {
  min-width: 115px;
  height: 60px;
  padding: 0 20px;
  background: var(--white);
  color: var(--purple);
  font-size: 20px;
  font-weight: 800;
  border: none;
  border-radius: 100px;
  opacity: 0.5;
  transition: all 0.4s ease;
}
.tarifa-opt:nth-child(2) {
  margin: 0 15px;
}
.tarifa-opt.active, .tarifa-opt:hover {
  opacity: 1;
}
/* cards */
.offer-slider .slick-track {
  padding: 40px 0;
}
.offer-card {
  margin: 0 auto;
  width: 370px;
  min-height: 455px;
  border-radius: 40px;
  background: var(--white);
  color: var(--purple);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
}
.offer-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 0px 25px 0px rgba(108, 255, 177, 0.50);
}
.stamp {
  width: 230px;
  height: 50px;
  border-radius: 100px;
  background: linear-gradient(180deg, var(--pink) 0%, var(--mediumpurple) 141%);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.offer-card h4 {
  font-size: 80px;
  font-weight: 800;
  margin: 5px 0 0 0;
}
.offer-card h4 span {
  font-size: 30px;
  font-weight: 300;
}
.offer-card h4 span b {
  font-weight: 800;
}
.offer-card hr {
  width: 100%;
  height: 1px;
  opacity: 1;
  background: var(--purple);
  border: none;
  margin: 10px auto;
}
.offers {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offers h6 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}
.offers h6 b {
  font-weight: 800;
}
.offers h6:nth-child(1) {
  text-align: left;
}
.offers h6:nth-child(2) {
  text-align: right;
}
.offer-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offer-card ul li {
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}
.offer-card button {
  width: 280px;
  height: 55px;
  border-radius: 20px;
  background: var(--lightpurple);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: var(--white);
  font-size: 25px;
  font-weight: 800;
  transition: all 0.4s ease;
  margin: 5px auto 0 auto;
}
.offer-card button img {
  height: 25px;
  filter: brightness(0) invert(100%);
  margin-left: 15px;
}
.offer-card button:hover {
  background: var(--purple);
}
.custom-dots {
  text-align: center;
}
.custom-dots .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.custom-dots .slick-dots li {
  margin: 0 5px;
}
.custom-dots .slick-dots li button {
  background: rgba(255, 255, 255, 0.6); 
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  display: block;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}
.custom-dots .slick-dots li.slick-active button {
  background: var(--green);
}
/* section1 */
.section2 {
  padding: 40px 0 120px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--blueburry) 0%, var(--violent) 100%);
  position: relative;
}
.astro2 {
  position: absolute;
  height: 340px;
  top: -120px;
  right: 60px;
  animation: float2 6s ease-in-out infinite;
  transform-origin: center;
}
.satellite {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 220px;
  animation: float2 6s ease-in-out infinite;
  transform-origin: center;
}
.sec2-txt {
  margin-bottom: 70px;
}
.sec2-txt h3 {
  font-weight: 800;
  color: var(--white);
  font-size: 45px;
  font-weight: 800;
  max-width: 85%;
  line-height: 1.1;
  margin: 0 auto;
}
.sec2-txt h3 br {
  display: none;
}
.animated-word .letter {
  color: var(--green);
  opacity: 0;
  display: inline-block;
  transform: translateY(-10px);
}
.animated-word.animate .letter {
  animation: appear 1.5s forwards;
}
.animated-word.animate .letter:nth-child(1) { animation-delay: 0s; }
.animated-word.animate .letter:nth-child(2) { animation-delay: 0.05s; }
.animated-word.animate .letter:nth-child(3) { animation-delay: 0.1s; }
.animated-word.animate .letter:nth-child(4) { animation-delay: 0.15s; }
.animated-word.animate .letter:nth-child(5) { animation-delay: 0.2s; }
.animated-word.animate .letter:nth-child(6) { animation-delay: 0.25s; }
.animated-word.animate .letter:nth-child(7) { animation-delay: 0.3s; }
.animated-word.animate .letter:nth-child(8) { animation-delay: 0.35s; }
.animated-word.animate .letter:nth-child(9) { animation-delay: 0.4s; }
@keyframes appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.icon-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 50px;
}
.icon-box {
  z-index: 1;
  text-align: center;
  width: 30%;
  aspect-ratio: 1;
}
.icons {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border-radius: 100px;
  width: 150px;
  height: 150px;
  box-shadow: 0px 0px 25px 0px rgba(108, 255, 177, 0.50);
  transition: all 0.4s ease;
}
.icons:hover {
  transform: scale(1.1) rotate(5deg);
}
.icon-box p {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  max-width: 85%;
  margin: 20px auto 0 auto;
  line-height: 1.1;
}
.icon-box p span {
  color: var(--green);
}
.dashed-line {
  width: 95%;
  position: absolute;
  z-index: 0;
  top: 30%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
/* section3 */
.section3 {
  text-align: center;
  padding: 30px 0 60px 0;
  background: linear-gradient(180deg, var(--violent) 0%, var(--purple) 100%);
}
.video-block {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.20);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 50px;
  filter: brightness(0.7);
}
.video-txt {
  position: relative;
  z-index: 1;
  text-align: center;
}
.wifi {
  margin-bottom: 30px;
  height: 40px;
}
.video-txt h3 {
  font-size: 45px;
  font-weight: 800;
  color: var(--white);
}
.video-txt button {
  width: 400px;
  height: 65px;
  border-radius: 20px;
  background: var(--lightpurple);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: var(--white);
  font-size: 30px;
  font-weight: 800;
  transition: all 0.4s ease;
  margin: 30px auto 10px auto;
}
.video-txt button img {
  height: 25px;
  filter: brightness(0) invert(100%);
  margin-left: 15px;
}
.video-txt button:hover {
  background: var(--white);
  color: var(--purple);
}
.video-txt button:hover img {
  filter: none;
}
/* section4 */
.section4 {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(180deg, var(--purple) 0%, var(--violent) 100%);
}
.sec4-txt {
  margin-bottom: 40px;
}
.sec4-txt h3 {
  color: var(--white);
  font-size: 45px;
  font-weight: 800;
}
.sec4-txt h3 span {
  color: var(--green);
}
.speedbar svg {
  width: 100%;
}
.rotate-animation {
  transform-origin: 582.5px 485.75px;
  opacity: 0;
}
.rotate-animation.animate {
  animation: rotate360 2.8s ease-out forwards;
}
@keyframes rotate360 {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  90% {
    transform: rotate(-8deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}
.sec4-astro {
  text-align: center;
}
.sec4-astro img {
  width: 320px;
  animation: spaceWalk 6s ease-in-out infinite;
}
@keyframes spaceWalk {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-10px) rotate(-2deg) scale(1.02);
  }
  50% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  75% {
    transform: translateY(10px) rotate(2deg) scale(0.98);
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}
/* section5 */
.section5 {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--violent) 0%, var(--lightpurple) 100%);
}
.section5 .container {
  background: var(--white);
  border-radius: 50px;
  padding: 60px 30px;
  position: relative;
}
.section5 .container:before {
  content: '';
  background: url('/img/moon.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 130px;
  height: 130px;
  position: absolute;
  left: -30px;
  top: -30px;
  animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.section5 .container:after {
  content: '';
  background: url('/img/plants.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 180px;
  height: 175px;
  position: absolute;
  right: -30px;
  bottom: -30px;
  animation: floatUpDown2 4s ease-in-out infinite;
}
@keyframes floatUpDown2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
.sec5-txt h3 {
  margin-bottom: 30px;
  color: var(--purple);
  font-size: 45px;
  font-weight: 800;
}
.sec5-txt h3 span {
  color: var(--lightpurple);
}
.accordion-item {
  border: none;
}
.accordion-button {
  border-bottom: 1px solid var(--purple);
}
.accordion-button span {
  max-width: 90%;
  font-size: 22px;
  font-weight: 800;
  color: var(--purple);
}
.accordion-button::after, .accordion-button:not(.collapsed)::after {
  background-image: url('/img/down.svg');
  background-size: 100%;
  height: 20px;
  width: 25px;
  background-position: center bottom;
  transition: all 0.4s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-position: center top;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: var(--purple);
  background: rgba(118, 146, 255, 0.2);
}
.accordion-body {
  text-align: left;
  padding: 10px 15px;
}
.accordion-body p {
  font-size: 14px;
  line-height: 1.2;
  color: var(--purple);
  margin: 10px 0;
}
.accordion-body p a {
  color: var(--lightpurple);
  cursor: pointer;
}
/* footer */
.footer {
  background: url('/img/stars.svg'), linear-gradient(180deg, var(--lightpurple) 0%, var(--purple) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 70px 0;
}
.footer-txt h3 {
  font-size: 45px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 30px;
}
.animated-word2 .letter {
  color: var(--green);
  opacity: 0;
  display: inline-block;
  transform: translateY(-10px);
}
.animated-word2.animate .letter {
  animation: appear2 1.5s forwards;
}
.animated-word2.animate .letter:nth-child(1) { animation-delay: 0s; }
.animated-word2.animate .letter:nth-child(2) { animation-delay: 0.05s; }
.animated-word2.animate .letter:nth-child(3) { animation-delay: 0.1s; }
.animated-word2.animate .letter:nth-child(4) { animation-delay: 0.15s; }
.animated-word2.animate .letter:nth-child(5) { animation-delay: 0.2s; }
.animated-word2.animate .letter:nth-child(6) { animation-delay: 0.25s; }
.animated-word2.animate .letter:nth-child(7) { animation-delay: 0.3s; }
.animated-word2.animate .letter:nth-child(8) { animation-delay: 0.35s; }
.animated-word2.animate .letter:nth-child(9) { animation-delay: 0.4s; }
.animated-word2.animate .letter:nth-child(10) { animation-delay: 0.45s; }
.animated-word2.animate .letter:nth-child(11) { animation-delay: 0.5s; }
.animated-word2.animate .letter:nth-child(12) { animation-delay: 0.55s; }
.animated-word2.animate .letter:nth-child(13) { animation-delay: 0.6s; }
.animated-word2.animate .letter:nth-child(14) { animation-delay: 0.65s; }
@keyframes appear2 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.apps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 60px;
}
.apps img {
  height: 40px;
}
.apps img:nth-child(1) {
  margin-right: 20px;
}
.footer-txt button {
  width: 280px;
  height: 55px;
  border-radius: 20px;
  background: var(--lightpurple);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: var(--white);
  font-size: 25px;
  font-weight: 800;
  transition: all 0.4s ease;
  margin: 10px 0;
}
.footer-txt button img {
  height: 25px;
  filter: brightness(0) invert(100%);
  margin-left: 15px;
}
.footer-txt button:hover {
  background: var(--purple);
}
.footer-astro {
  text-align: center;
}
.footer-astro img {
  width: 100%;
  animation: rocketLift 3.5s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes rocketLift {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  25% {
    transform: translateY(-5px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(-1deg);
  }
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1400px) {
  .offer-card {
    width: 90%;
  }
  .sec4-txt h3, .sec5-txt h3 {
    font-size: 40px;
  }
  .footer-txt h3 {
    font-size: 42px;
  }
  .satellite {
    bottom: 20px;
    width: 190px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 100px;
  }
  .logo {
    height: auto;
    width: 100%;
  }
  #contactform:after {
    width: 130px;
    top: -145px;
    right: -30px;
  }
  .astro1 {
    width: 500px;
  }
  .sec1-txt h3 {
    font-size: 40px;
  }
  .form-title h5 {
    font-size: 22px;
  }
  .form-title img {
    height: 20px;
  }
  .form-header {
    margin-bottom: 20px;
  }
  .offer-card {
    padding: 20px;
  }
  .offer-card h4 {
    font-size: 70px;
  }
  .offer-card ul li {
    font-size: 14px;
  }
  .stamp {
    width: 200px;
    font-size: 24px;
  }
  .offer-card button {
    width: 100%;
  }
  .satellite {
    width: 170px;
  }
  .sec2-txt h3 {
    max-width: 100%;
  }
  .video-txt h3 {
    font-size: 40px;
  }
  .sec4-txt h3 {
    max-width: 80%;
    margin: 0 auto;
  }
  .icons {
    width: 120px;
    height: 120px;
  }
  .icons img {
    width: 65px;
  }
  .icon-box p {
    font-size: 18px;
    max-width: 90%;
  }
  .sec4-astro img {
    width: 280px;
  }
  .section5 .container:before {
    width: 90px;
    height: 90px;
  }
  .section5 .container:after {
    width: 140px;
    height: 135px;
  }
  .accordion-button span {
    font-size: 18px;
  }
  .footer-txt h3 {
    font-size: 35px;
  }
  .radio-buton label p span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1080px) {
  .astro2 {
    height: 270px;
  }
}
@media only screen and (max-width: 991px) {
  .header-txt {
    padding: 0;
  }
  .header-txt h1 {
    font-size: 80px;
  }
  #contactform {
    width: 460px;
  }
  #contactform:after {
    width: 100px;
    top: -105px;
  }
  .form-title h5 {
    font-size: 18px;
  }
  .header-txt h6 {
    font-size: 30px;
  }
  .form-step h6 {
    font-size: 18px;
  }
  .astro1 {
    width: 400px;
    left: 40%;
  }
  .icon-box {
    width: 33%;
  }
  .icon-box p {
    font-size: 16px;
    max-width: 100%;
  }
  .sec1-txt h3 {
    max-width: 80%;
    margin: 0 auto 10px auto;
  }
  .sec1-txt h6 {
    font-size: 22px;
  }
  .sec2-txt h3 {
    font-size: 40px;
  }
  .video-txt h3 {
    max-width: 80%;
    margin: 0 auto;
  }
  .sec4-txt h3 {
    max-width: 100%;
  }
  .sec4-astro img {
    width: 80%;
  }
  .sec5-txt h3 {
    font-size: 32px;
  }
  .accordion-button span {
    font-size: 16px;
  }
  .footer-txt h3 {
    font-size: 30px;
  }
  .astro2 {
    height: 190px;
  }
  .form-step h2 {
    text-wrap: balance;
  }
  .radio-buton label p {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media only screen and (max-width: 814px) {
  #contactform {
    width: 420px;
  }
  .under_purple {
    width: 90%;
  }
  .form-title img {
    height: 15px;
  }
  .form-title h5 {
    margin: 0 15px 0 0;
    font-size: 17px;
  }
  .satellite {
    width: 150px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    text-align: center;
    padding: 30px 0 70px 0;
  }
  .logo {
    width: 280px;
    margin: 0 auto 30px auto;
  }
  #contactform {
    width: 90%;
    margin: 50px auto 0 auto;
  }
  .form-title h5 {
    font-size: 20px;
  }
  .offer-card {
    width: 360px;
  }
  .sec2-txt h3 {
    font-size: 36px;
  }
  .tarifa-opt {
    font-size: 18px;
  }
  .icons {
    width: 90px;
    height: 90px;
  }
  .icons img {
    height: 45px;
  }
  .icon-box {
    width: 30%;
  }
  .icon-box p {
    font-size: 14px;
    max-width: 86%;
  }
  .sec5-txt h3 {
    font-size: 36px;
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  .section5 .container {
    padding: 35px;
  }
  .section5 .container:after {
    width: 100px;
    height: 98px;
    right: -50px;
  }
  .footer {
    text-align: center;
  }
  .footer-txt h3 {
    font-size: 40px;
  }
  .footer-txt button {
    margin: 10px auto;
  }
  .apps {
    justify-content: center;
    margin-top: 40px;
  }
  .footer-astro {
    margin-top: 30px;
    text-align: right;
  }
  .footer-astro img {
    width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  .section5 .container {
    max-width: 90%;
    padding: 50px 20px;
  }
  .astro2 {
    top: -160px;
  }
  .tarifa-opt {
    min-width: 100px;
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 525px) {
  .form-title {
    flex-direction: column;
  }
  .form-title h5 {
    margin: 0 auto 10px auto;
  }
  .form-title img {
    height: 30px;
  }
  #contactform:after {
    width: 90px;
    top: -80px;
    right: -10px;
  }
  .sec1-txt h3 {
    max-width: 100%;
  }
  .satellite {
    display: none;
  }
  .section2 {
    padding: 40px 0 60px 0;
  }
  .icon-box {
    width: 40%;
  }
  .icon-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .dashed-line {
    display: none;
  }
  .icon-box p {
    font-size: 16px;
  }
  .video-txt h3 {
    font-size: 35px;
    max-width: 100%;
  }
  .sec4-txt h3 {
    font-size: 35px;
    max-width: 90%;
  }
  .sec5-txt h3 {
    font-size: 35px;
    max-width: 100%;
  }
  .video-txt button {
    font-size: 26px;
    width: 90%;
  }
  .accordion-button {
    padding: 15px 0;
  }
  .accordion-button span {
    max-width: 80%;
  }
}
@media only screen and (max-width: 475px) {
  .cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .tarifa-opt {
    min-width: 75px;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 450px) {
  .sec2-txt h3 br {
    display: flex;
  }
  .sec4-txt h3 {
    max-width: 85%;
  }
  .astro2 {
    top: -150px;
  }
}
@media only screen and (max-width: 425px) {
  .header-txt h1 {
    font-size: 65px;
  }
  .sec1-txt h3 {
    font-size: 36px;
  }
  .sec1-txt h6 {
    font-size: 17px;
  }
  .offer-card {
    width: 90%;
  }
  .video-txt button {
    width: 100%;
    font-size: 22px;
  }
  .sec2-txt {
    margin-bottom: 30px;
  }
  .icons {
    width: 100px;
    height: auto;
    aspect-ratio: 1;
    margin: 20px auto;
  }
  .icons img {
    height: 60px;
  }
  .icon-box p {
    font-size: 14px;
  } 
  .section2 {
    padding: 40px 0;
  }
  .sec4-txt h3 {
    max-width: 100%;
  }
  .sec2-txt h3 {
    max-width: 90%;
  }
  .sec1-txt h3, .sec2-txt h3, .footer-txt h3, .sec5-txt h3, .sec4-txt h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 390px) {
  .form-title h5 {
    font-size: 17px;
  }
  .form-button {
    width: 100%;
    font-size: 24px;
  }
  #contactform:after {
    width: 70px;
    top: -50px;
  }
  .header-txt h1 {
    font-size: 60px;
  }
  .header-txt h6 {
    font-size: 26px;
  }
  .tarifa-opt {
    font-size: 12px;
    height: 45px;
  }
  .video-txt h3 {
    font-size: 30px;
  }
  .sec4-txt h3 {
    max-width: 85%;
  }
  .sec5-txt h3 {
    font-size: 28px;
  }
  .astro2 {
    right: 0;
  }
  .icon-box {
    width: 45%;
  }
  .icons {
    width: 80px;
    height: auto;
    aspect-ratio: 1;
    margin: 20px auto;
  }
  .icons img {
    height: 50px;
  }
  .icon-box p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  #contactform {
    border-radius: 40px;
    padding: 30px 25px;
  }
  .form-title h5 {
    font-size: 20px;
    max-width: 80%;
  }
  .sec1-txt h6 {
    max-width: 80%;
    margin: 0 auto 20px auto;
  }
  .tarifa-opt {
    min-width: 25%;
    padding: 0;
    height: 35px;
    font-size: 11px;
  }
  .tarifa-opt:nth-child(1) {
    width: 40%;
  }
  .video-txt h3 {
    font-size: 28px;
  }
  .video-txt button {
    font-size: 18px;
  }
  .sec4-txt h3 {
    max-width: 100%;
  }
  .sec5-txt h3 {
    font-size: 25px;
  }
  .accordion-button span {
    max-width: 90%;
    font-size: 14px;
  }
}
@media only screen and (max-width: 345px) {
  .header-txt h1 {
    font-size: 50px;
  }
  .header-txt h6 {
    font-size: 22px;
  }
  .logo {
    width: 250px;
  }
  .sec1-txt h3, .sec2-txt h3, .footer-txt h3, .sec4-txt h3 {
    font-size: 28px;
  }
  .video-block {
    padding: 25px;
  }
  .sec4-txt h3 {
    max-width: 90%;
  }
  .sec5-txt h3 {
    font-size: 20px;
  }
  .offer-card ul li {
    font-size: 12px;
  }
  .icon-box p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 325px) {
  .footer-txt h3 {
    font-size: 26px;
  }
}