body,
html {
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter";
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

.all-main h1,
.all-main h2,
.all-main h3,
.all-main h4,
.all-main h5,
.all-main h6,
.all-main p,
.all-main ul,
.all-main li {
  margin: 0;
  padding: 0;
}
.all-main h1 sup {
  font-size: 2.5rem;
}
.all-main p sup,
.all-main h1 sup,
.all-main h2 sup,
.all-main h3 sup,
.all-main h4 sup {
  line-height: 0;
}
.all-main sub,
.all-main h2 sup {
  font-size: 2rem;
}
.all-main h3 sup {
  font-size: 1.3rem;
}
.all-main ul {
  list-style: none;
}

.all-main a {
  cursor: pointer;
  text-decoration: none;
}

.all-main img {
  width: 100%;
}

.all-main .custom-container {
  max-width: 76.875rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
/* some common css */
.section_padding {
  padding: 6rem 0;
}
.section-content .sub_heading {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0%;
  margin-bottom: 1.25rem;
  color: #009edb;
}
.section-content h1 {
  font-weight: 700;
  font-size: 4.5rem;
  letter-spacing: 0%;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  color: #001a3d;
  position: relative;
}

.section-content h2 {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0%;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #001a3d;
}
.section-content .spn_yellow {
  color: #ffba3b;
}
.section-content .spn_white {
  color: #ffffff;
}
.spn_blue {
  color: #009edb;
}
.section-content .pera_grapg {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0%;
  margin-bottom: 1.25rem;
  line-height: 120%;
  color: #001a3d;
}
.primary_button {
  background-color: #ffba3b;
  padding: 0.75rem 1.5rem;
  color: #001a3d;
  font-size: 1rem;
  font-weight: 600;
  line-height: 140%;
  display: inline-block;
  border: none;
  border-radius: 0.875rem;
}
.primary_button.white {
  background-color: #ffffff;
  color: #001a3d;
}
.section-content .sec_sub_text,
.sec_sub_text {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0%;
  font-style: italic;
  line-height: 120%;
  color: #999999;
  margin-top: 2rem;
}
/* home common css is start from here */
.banner-section {
  position: relative;
  overflow: hidden;
}
.section_flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.section-content {
  width: 50%;
  max-width: 50%;
}
.banner_sildes_wrap {
  background-image: url(../images/banner_sildes_wrap_bg.webp);
  background-position: center;
  background-size: cover;
  padding: 2.1875rem 0 0 0;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 51%;
  bottom: 0;
}
.banner-section .section-content {
  padding: 2.9375rem 5rem 2.9375rem 0;
  box-shadow: 2.1875rem 0rem 0.9375rem -1.125rem rgba(0, 0, 0, 0.36);
  z-index: 1;
  background-color: #ffffff;
  max-width: 42.5%;
}
.banner-section .section-content::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -3.75rem;
  width: 6.75rem;
  box-shadow: -0.125rem 0.0625rem 0.5rem 0.375rem rgba(0, 0, 0, 0.38);
}
.banner-section .spn_yellow {
  position: relative;
}
.banner-section .spn_yellow::before {
  content: "";
  position: absolute;
  height: 0.75rem;
  background-color: #009edb;
  width: 7.4rem;
  right: -12.975rem;
  transform: translate(100%, 0%);
  top: 0.7375rem;
  border-top-left-radius: 6.3125rem;
  border-bottom-left-radius: 6.25rem;
}
.banner-section .section-content h1::before {
  content: "";
  position: absolute;
  background-color: #009edb;
  width: 10rem;
  height: 0.75rem;
  left: 0;
  transform: translate(-100%, 0%);
  top: 9.4375rem;
  border-radius: 6.3125rem;
}
/*------------------ marqeeeee sction is satrt------------ */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.marquee-container.reverse {
  margin-top: 1.3125rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.marquee-container.reverse .marquee-track {
  animation: scrollRight 30s linear infinite;
}

/* .marquee-track:hover {
  animation-play-state: paused;
} */

.marquee-item {
  flex-shrink: 0;
  width: 26rem;
  height: 21.25rem;
  margin: 0 0.9375rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  letter-spacing: 0.125rem;
}

.subtitle {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.875rem;
}

/* cta section css is start from here */
.daily_connectivity {
  padding: 6rem 0;
  background-image: url(/staticfiles/images/daily_connectivity_bg.png);
  background-position: center;
  background-size: cover;
}
section.daily_connectivity.check_plans {
  background-image: url(/staticfiles/images/daily-connectivity-check-plans-bg.png);
}
.daily_connectivity .aily_connectivity_sec_cnt {
  max-width: 40%;
}
.daily_connectivity .sub_heading {
  color: #063674;
}
.aily_connectivity_sec_cnt .sec_sub_text {
  margin-top: 2rem;
}
.daily_connectivity .sec_sub_text,
.daily_connectivity .custom-container .pera_grapg {
  color: #fff;
}
.daily_connectivity .section_flex {
  align-items: center;
  justify-content: space-between;
}
/* offers section is start from here */
.offer_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 21.6875rem;
}
.offer_box .offer_box_heading {
  color: #001a3d;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0 1rem;
  text-align: center;
}
.offer_wrap_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6875rem;
  margin-top: 5rem;
}
.check_wireless .section-content h2 {
  text-align: center;
}
.check_wireless .section-content {
  width: 100%;
  max-width: 100%;
}
.center_dot {
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 100%;
  background-color: #7f7f7f;
  display: inline-block;
}
.center_border {
  position: relative;
  width: 100%;
  text-align: center;
}
.center_border::before,
.center_border::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 0.1875rem;
  background-color: #ffba3b;
  width: 44%;
  right: 0;
  transform: translate(0, -50%);
}
.center_border::after {
  left: 0;
  right: unset;
}
/* pricing plan sectin is strat from here */
.pricing_plans {
  background-image: url(/staticfiles/images/pricing_plan_bg.png);
  background-position: center;
  background-size: cover;
}
.pricing_plans_btm {
  max-width: 62%;
  margin-top: -4.3rem;
}
.pricing_plans_btm .sec_sub_text {
  margin-top: 1.5rem;
}
.plan-cards-main {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
}
.price-row label.per_mont {
  font-size: 1.4rem;
  margin: 0 0.3rem 0 0;
}

.plan-cards-main::-webkit-scrollbar {
  display: none;
}

.plan-card-whole {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  scroll-snap-align: start;
  color: #041028;
  border-radius: 1.2731rem;
  display: flex;
  cursor: pointer;
}

.plan-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5625rem;
  box-shadow: 0 0.625rem 1.125rem rgba(0, 55, 90, 0.18);
}

.plan-card.popular {
  padding-top: 3.5rem;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #052652;
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.625rem;
}

.plan-cards-sub h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  color: #052652;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.625rem;
}

.plan-cards-sub .price-row p {
  font-size: 2rem;
  color: #009edb;
  font-weight: 500;
  margin: 0;
}

.price-row label {
  font-size: 2rem;
  color: #001a3d;
  font-weight: 500;
}

.price-row p span {
  font-size: 1.95rem;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.plan-cards-sub h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #001a3d;
  margin-bottom: 0.625rem;
}

.plan-cards-sub p {
  color: #999;
  font-weight: 400;
  font-size: 0.875rem;
}

.divider {
  width: 100%;
  border-bottom: 0.0938rem solid #000;
  opacity: 0.5;
  margin: 0.9375rem 0;
}

.plan-features-main h4 {
  font-size: 1rem;
  color: #001a3d;
  font-weight: 500;
  margin-bottom: 1rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.625rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 0.5625rem;
}

.plan-features li img {
  width: 1.0625rem;
  height: 1.0625rem;
  flex: 0 0 1.25rem;
}

.plan-features li span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #1b1f26b8;
}

.plan-features strong {
  color: #5d6167;
  font-weight: 700;
}

.plan-card-btn {
  display: flex;
  justify-content: end;
  margin-top: 1.25rem;
  align-items: end;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 0;
  background: #ffba3b;
  color: #001a3d;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.875rem;
  transition: 0.25s ease;
  text-decoration: none;
}

.btn:hover {
  background: #f4aa1f;
}

.plan-card.popular .btn {
  background: #009edb;
  color: #ffffff;
}

.plan-cards-slider {
  position: relative;
  overflow: hidden;
  margin-top: 3.125rem;
}

.plan-cards-main {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.plan-cards-main.is-dragging {
  transition: none;
  cursor: grabbing;
}

.plan-card-whole {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  color: #041028;
  border-radius: 1.2731rem;
  display: flex;
  cursor: pointer;
}

.slider-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-arrow {
  display: flex;
  padding: 0.6875rem;
  border: 0.0938rem solid #009edb;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-arrow:hover {
  background: #009edb;
}

.slider-arrow:disabled {
  background: transparent;
  cursor: not-allowed;
}

/*  ----------------------------------------------*/
.quick_trustworthy {
  background-image: url(/staticfiles/images/quick_trustworthy_bg.png);
  background-position: center;
  background-size: cover;
}
.quick_trustworthy .section-content h2 {
  margin-bottom: 8.6875rem;
}
.quick_trustworthy .section_flex,
.certified_retailer .section_flex {
  gap: 3.75rem;
  align-items: center;
}
.daily_connectivity.check_plans .section-content {
  width: 62%;
  max-width: 62%;
  text-align: center;
  margin: 0 auto;
}
.stat_box h5 {
  color: #001a3d;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.stat_box p {
  color: #000000;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}
.stats_wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.125rem;
}
.faq_section {
  background-color: #d8f4ff;
}
.all-main .faq_section .custom-container {
  max-width: 48rem;
  /* text-align: center; */
}
.all-main .faq_section .section-content {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 5rem;
}

.all-main .faq_section .section-content.faq_section_btm {
  max-width: 39.375rem;
  margin: 5rem auto 0 auto;
}
/* accordian css */
.accordion-wrapper {
  width: 100%;
  max-width: 50rem;
  display: flex;
  flex-direction: column;
}

/* ========== Accordion Card ========== */
.accordion {
  border-top: 0.0625rem solid #001a3d;
  overflow: hidden;
  transition: background 0.35s ease;
}

.accordion:last-child {
  border-bottom: 0.0625rem solid #001a3d;
}

/* ========== Intro / Header ========== */
.accordion__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.375rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.35s ease;
  -webkit-tap-highlight-color: transparent;
  gap: 0.875rem;
}

.accordion__intro h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #001a3d;
  margin: 0;
  letter-spacing: -0.0125rem;
  line-height: 1.4;
  flex: 1;
}

/* ========== Icon ========== */
.accordion__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  position: relative;
  transition: transform 0.35s ease;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: #1a1a2e;
  border-radius: 0.0625rem;
  transition: all 0.35s ease;
}

/* Horizontal line */
.accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.125rem;
  transform: translateY(-50%);
}

/* Vertical line */
.accordion__icon::after {
  top: 0;
  left: 50%;
  width: 0.125rem;
  height: 100%;
  transform: translateX(-50%);
}

/* Active state: rotate icon, hide vertical line */
.accordion.accordion__active .accordion__icon {
  transform: rotate(180deg);
}

.accordion.accordion__active .accordion__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

/* ========== Content ========== */
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s ease;
}

.accordion__content-inner {
  padding: 0 1.375rem 1.25rem 1.375rem;
  color: #001a3d;
  font-size: 0.875rem;
  line-height: 1.7;
}

.accordion__content-inner p {
  margin: 0;
}
.plane_button {
  font-size: 1rem;
  color: #001a3d;
  line-height: 1;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  border: 0.0625rem solid #001a3d;
  border-radius: 1.5rem;
}
.faq_section_btm {
  margin-top: 5rem;
}
.faq_section_btm h3 {
  font-size: 2rem;
  color: #001a3d;
  line-height: 1;
  margin-bottom: 1.5rem;
}
/* responsive css is start from here */
@media screen and (max-width: 1300px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  html {
    font-size: 13px;
  }
  .plan-card-whole {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 767px) {
  .plan-card-whole {
    flex: 0 0 100%;
  }
  .section_flex {
    flex-direction: column;
  }
  .section-content,
  .banner-section .section-content,
  .daily_connectivity .aily_connectivity_sec_cnt,
  .daily_connectivity.check_plans .section-content,
  .banner_sildes_wrap,
  .pricing_plans_btm {
    width: 100%;
    max-width: 100%;
  }
  .banner_sildes_wrap {
    position: static;
  }
  .banner-section {
    padding: 2rem 0;
  }
  .section-content h1 {
    font-size: 3.1rem;
  }
  .banner-section .spn_yellow::before,
  .banner-section .section-content h1::before {
    display: none;
  }
  .banner-section .section-content {
    padding: 0;
    box-shadow: none;
  }

  .marquee-item {
    width: 12.5rem;
    height: 8.125rem;
  }
  .section-content h2 {
    font-size: 2.3rem;
  }
  .offer_wrap_flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .offer_box {
    max-width: 47%;
  }
  .offer_box .offer_box_heading {
    padding: 0;
  }
  .offer_image_bx {
    max-width: 6rem;
  }
  .offer_box .offer_box_heading {
    font-size: 1.1rem;
  }
  .pricing_plans_btm {
    margin-top: unset;
  }
}
