/* Lightweight replacements for the former React, Webflow and GSAP runtime. */

html,
body {
  overflow-x: clip;
}

.home1_hero_wrapper {
  background-color: #f7d8d1;
  background-image:
    radial-gradient(circle at 12% 24%, rgb(10 91 111 / 72%), transparent 31%),
    radial-gradient(circle at 86% 20%, rgb(255 160 88 / 82%), transparent 36%),
    radial-gradient(circle at 70% 88%, rgb(241 64 112 / 72%), transparent 38%),
    linear-gradient(135deg, #123c54 0%, #f4a08a 48%, #ffd1a7 100%);
}

.home2_hero_image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 904;
  object-fit: cover;
}

.home1_hero_reviews-stars {
  width: auto;
  height: 1.35rem !important;
  object-fit: contain;
}

.home1_solution_image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.home1_feature_image {
  display: block;
  width: 100%;
  height: auto;
}

.home1_benefits_dashboard > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact3_hero_image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.icon-height-small,
.icon-height-medium {
  width: auto;
  object-fit: contain;
}

.section_home1_hero .button-group > .button-box:first-child {
  isolation: isolate;
}

.section_home1_hero .button-group > .button-box:first-child::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    transparent 0 74%,
    hsl(205 100% 57% / 0.05) 78%,
    hsl(225 100% 64% / 0.82) 86%,
    hsl(278 100% 66% / 0.58) 92%,
    transparent 99%
  );
  content: "";
  filter: blur(12px);
  opacity: 0.68;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) rotate(0);
  animation: best-iptv-glow-spin 4s linear infinite;
}

#pricing-plans-root .plan_grid.is-v2 {
  align-items: stretch;
}

#pricing-plans-root .w-dyn-item,
#pricing-plans-root .plan_box,
#pricing-plans-root .glow-container,
#pricing-plans-root .glow-content {
  min-width: 0;
  height: 100%;
}

#pricing-plans-root .plan_box > .plan_plan-box,
#pricing-plans-root .glow-content > .plan_plan-box {
  box-sizing: border-box;
  height: 100%;
}

.glow-container {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  padding: 2px;
  overflow: hidden;
  border-radius: var(--radius--default, 1rem);
  box-shadow:
    0 0 20px hsl(230 100% 65% / 0.14),
    0 0 28px hsl(278 100% 66% / 0.1);
}

.glow-container::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 210%;
  aspect-ratio: 1;
  background: conic-gradient(
    transparent 0 76%,
    hsl(230 100% 65% / 0.08) 80%,
    hsl(230 100% 65% / 0.9) 87%,
    hsl(278 100% 66% / 0.66) 92%,
    transparent 99%
  );
  content: "";
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) rotate(0);
  animation: best-iptv-glow-spin 4s linear infinite;
}

.glow-container::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid hsl(220 12% 20% / 0.16);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px hsl(0 0% 100% / 0.4);
  content: "";
  pointer-events: none;
}

.glow-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius--default, 1rem) - 2px);
}

.glow-content > .plan_plan-box {
  position: relative;
  z-index: 1;
}

@keyframes best-iptv-glow-spin {
  to {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}

.reviews_marquee-group,
.logos_marquee-group,
.highlight_marquee-group {
  flex: none;
  will-change: transform;
}

.reviews_marquee-group {
  animation: best-iptv-marquee-left 48s linear infinite;
}

.reviews_marquee-group.is-2nd {
  transform: translate3d(-100%, 0, 0);
  animation-name: best-iptv-marquee-right;
  animation-duration: 52s;
}

.logos_marquee-group {
  animation: best-iptv-marquee-left 28s linear infinite;
}

.highlight_marquee-group {
  animation: best-iptv-marquee-left 34s linear infinite;
}

.reviews_marquee:hover .reviews_marquee-group,
.logos_marquee:hover .logos_marquee-group,
.highlight_marquee:hover .highlight_marquee-group {
  animation-play-state: paused;
}

@keyframes best-iptv-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes best-iptv-marquee-right {
  from {
    transform: translate3d(-100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.faq_question {
  cursor: pointer;
}

.faq_answer {
  height: 0;
  overflow: hidden;
  transition: height 280ms ease;
}

.faq_icon {
  transition: transform 220ms ease;
}

.faq_accordion.is-open .faq_icon {
  transform: rotate(45deg);
}

.faq_question:focus-visible,
.tabs-link:focus-visible {
  outline: 3px solid rgba(11, 120, 144, 0.38);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  #pricing-plans-root .glow-container {
    max-width: none;
  }
}

@media (max-width: 479px) {
  .section_home1_hero .padding-global.padding-section-medium {
    padding-top: 3.25rem;
    padding-bottom: 4rem;
  }

  .section_home1_hero .section_heading.is-centered.max-width-medium {
    width: 100%;
  }

  .section_home1_hero .text-style-badge {
    max-width: min(100%, 21rem);
    padding: 0.55rem 0.9rem;
    font-size: 0.72rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .section_home1_hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.8vw, 2.6rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .section_home1_hero .hero-title-break {
    display: none;
  }

  .section_home1_hero .text-style-muted80.max-width-small {
    max-width: 34ch;
    font-size: 1.05rem;
    line-height: 1.5;
    text-wrap: pretty;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section_home1_hero .button-group > .button-box:first-child::before,
  .glow-container::before,
  .reviews_marquee-group,
  .logos_marquee-group,
  .highlight_marquee-group {
    animation: none;
  }

  .faq_answer,
  .faq_icon {
    transition: none;
  }
}
