/* Hero Start */
.hero_slider {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--ac-BG);
}

.hero_slider .swiper-wrapper {
  display: flex;
}

.hero_slider .hero_slide2,
.hero_slider .hero_slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero_slider .hero_slide2::before,
.hero_slider .hero_slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.534);
  z-index: 1;
}

.hero_slider .hero_slide2 *,
.hero_slider .hero_slide * {
  position: relative;
  z-index: 2;
}

/* Slide 1 Start */
.hero_slider .hero_slide2,
.hero_slider .hero_slide3,
.hero_slider .hero_slide {
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center;
  gap: 20px;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero_slider .hero_slide img {
  width: 100%;
  background-size: cover;
  object-fit: cover;
}

.hero_slider .hero_content {
  width: 100%;
  height: auto;
  text-align: center;
}

.hero_slider .hero_slide .tagline {
  display: inline-block;
  background-color: var(--ac-BG);
  border: 1px solid var(--ac-ash);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
}

/* Slide 1 — traffic engine */
.hero_slider .hero_slide1 .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.hero_slider .hero_slide1 .hero_content {
  position: relative;
  width: 100%;
  text-align: center;
}

.hero_slider .hero_slide1 .hero_content_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.hero_slider .hero_slide1 .tagline {
  border: none;
  background: var(--hero-badge-gradient);
  color: var(--ac-BG);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  padding: 8px 22px;
}

.hero_slider .hero_slide1 .title {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.hero_slider .hero_slide1 .title .highlight-cyan {
  display: block;
  margin-top: 0.12em;
  color: var(--hero-cyan);
}

.hero_slider .hero_slide1 .description {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.hero_slider .hero_slide1 .cta_button {
  background: var(--hero-cyan);
  color: var(--secondary-color);
  font-weight: 700;
  padding: 14px 44px;
}

.hero_slider .hero_slide1 .cta_button:hover {
  background: var(--hero-cyan-hover);
  color: var(--secondary-color);
}

.hero_slider .hero_slide1 .cta_button i {
  color: var(--secondary-color);
}

.hero_slider .hero_slide1 .hero_status {
  position: absolute;
  top: calc(100% + 44px);
  left: 70px;
  bottom: auto;
  margin: 0;
  max-width: none;
  width: max-content;
  min-width: 320px;
  padding: 14px 18px;
  text-align: left;
  border: 1px solid rgba(46, 232, 214, 0.28);
  border-radius: 10px;
  background: rgba(8, 12, 28, 0.72);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.hero_slider .hero_slide1 .hero_status__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hero-cyan);
  font-family: var(--secondary-font);
}

.hero_slider .hero_slide1 .hero_status__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hero-cyan);
  box-shadow: 0 0 10px var(--hero-cyan), 0 0 20px rgba(46, 232, 214, 0.55);
  animation: hero-status-pulse 2s ease-in-out infinite;
}

@keyframes hero-status-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.75;
    transform: scale(0.92);
  }
}

.hero_slider .hero_slide1 .hero_status__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--secondary-font);
  text-align: left;
  white-space: nowrap;
}

.hero_slider .hero_slide1 .hero_status__text strong {
  color: var(--ac-BG);
  font-weight: 700;
}

.hero_slider .hero_slide3 .tagline {
  border: none;
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}

.hero_slider .hero_slide3 .description {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.hero_slider .hero_slide3 .trustScore .link .number,
.hero_slider .hero_slide3 .trustScore .link .text {
  color: var(--ac-80);
}

.hero_slider .hero_slide3 .trustScore .link {
  border-bottom-color: var(--ac-80);
  text-decoration: none;
}

.hero_slider .hero_slide .title {
  font-size: 48px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  color: var(--ac-BG);
  line-height: 63px;
}

.hero_slider .hero_slide .description {
  font-size: 16px;
  font-weight: 600;
  color: var(--ac-60);
  font-family: var(--secondary-font);
  text-align: center;
  margin-bottom: 20px;
}

.hero_slider .hero_slide .cta_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  border: none;
  padding: 12px 40px;
  color: var(--ac-BG);
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s;
}

.hero_slider .hero_slide .cta_button:hover {
  background: var(--secondary-color);
}

.hero_slider .hero_slide .hero_image {
  display: flex;
  justify-content: end;
  width: 60%;
  aspect-ratio: 16 / 12;
}

.hero_slider .hero_slide .hero_image img {
  width: 100%;
  height: 100%;
  margin-right: -60px;
  background-position: center;
  background-size: contain;
  object-fit: contain;
}

.hero_slider .hero_slide .trust_info {
  margin-top: 80px;
  margin-left: 70px;
  font-family: var(--primary-font);
}

.hero_slider .hero_slide .trust_info_title {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  font-size: 24px;
  gap: 5px;
  color: var(--ac-BG);
  font-weight: 600;
  font-family: var(--primary-font);
}

.hero_slider .hero_slide .trust_info_title svg {
  width: 28px;
  height: 28px;
}

.hero_slider .trust_info .reviews .star {
  background: #00b67a;
  padding: 3px;
  border-radius: 2px;
}

.hero_slider .trust_info .reviews .star svg {
  width: 23px;
  height: 23px;
}

.hero_slider .trust_info .reviews .star svg path {
  fill: var(--ac-BG);
}

.hero_slider .trust_info .reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0;
}

.hero_slider .trust_info .reviews {
  display: flex;
  align-items: center;
}

.hero_slider .trust_info .trustScore {
  display: flex;
  align-items: center;
}

.hero_slider .trust_info .trustScore .text {
  font-size: 16px;
  font-weight: 400;
  color: var(--ac-BG);
  font-family: var(--secondary-font);
}

.hero_slider .trust_info .trustScore .number {
  font-size: 16px;
  font-weight: 400;
  padding: 0px 5px;
  color: var(--primary-color);
  font-family: var(--secondary-font);
}

.hero_slider .trust_info .trustScore .link {
  border-bottom: 1px solid var(--ac-ash);
}

/* Slide 1 End */

/* Slide 2 Start */
.hero_slider .hero_slide2 {
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center;
  gap: 20px;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero_slider .hero_slide2 img {
  width: 100%;
  background-size: cover;
  object-fit: cover;
}

.hero_slide2 .hero_content2 {
  width: 100%;
  text-align: center;
  height: auto;
}

.hero_slider .hero_slide2 .tagline {
  display: inline-block;
  background-color: var(--ac-BG);
  border: none;
  color: var(--secondary-color);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero_slider .hero_slide2 .title {
  max-width: 900px;
  font-size: 48px;
  font-family: var(--primary-font);
  margin: 20px auto;
  font-weight: bold;
  color: var(--ac-BG);
  line-height: 1.2;
}

.hero_slider .hero_slide2 .highlight {
  display: block;
  margin-top: 0.15em;
  color: var(--ac-80);
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  line-height: 1.2;
}

.hero_slide2 .cta_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  border: none;
  padding: 12px 40px;
  color: var(--ac-BG);
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s;
}

.hero_slide2 .cta_button:hover {
  background: var(--secondary-color);
}

.hero_slide2 .hero_image {
  display: flex;
  justify-content: end;
  width: 70%;
  aspect-ratio: 16 / 12;
}

.hero_slide2 .hero_image img {
  width: 100%;
  height: 100%;
  margin-right: -60px;
  background-position: center;
  background-size: contain;
  object-fit: contain;
}

.hero_slide2 .our_card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero_slide2 .our_card .card_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  align-items: center;
  text-align: center;
  padding: 22px 14px;
  border-radius: 14px;
  background: var(--ac-140);
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero_slide2 .our_card .card_item:hover {
  transform: translateY(-4px);
  background: var(--primary-color);
}

.hero_slide2 .our_card .card_item .icon {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.hero_slide2 .our_card .card_item .icon i {
  font-size: 26px;
  color: var(--secondary-color);
  line-height: 1;
}

.hero_slide2 .our_card .card_item .icon .hero_card_icon {
  width: 26px;
  height: 26px;
  color: var(--secondary-color);
  display: block;
}

.hero_slide2 .our_card .card_item h3 {
  font-size: 17px;
  font-family: var(--secondary-font);
  color: var(--ac-BG);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.25;
}

.hero_slide2 .our_card .card_item .card_desc {
  font-size: 13px;
  font-family: var(--secondary-font);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
}

@media screen and (max-width: 992px) {
  .hero_slide2 .our_card {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero_slide2 .our_card .card_item {
    padding: 14px 10px;
    justify-content: flex-start !important;
  }

  .hero_slide2 .our_card .card_item h3 {
    font-size: 14px;
  }

  .hero_slide2 .our_card .card_item .card_desc {
    font-size: 12px;
  }

  .hero_slide2 .our_card .card_item .icon i {
    font-size: 22px;
  }

  .hero_slide2 .our_card .card_item .icon .hero_card_icon {
    width: 22px;
    height: 22px;
  }
}

@media screen and (max-width: 576px) {
  .hero_slide2 .our_card {
    grid-template-columns: 1fr;
  }
}

/* Slide 2 End */

.hero_slider .swiper-button-next::after,
.hero_slider .swiper-button-prev::after {
  display: none;
}

.hero_slider .swiper-button-next i {
  font-size: 28px;
}

.hero_slider .custom_pagination {
  width: 100%;
  position: absolute;
  bottom: 10px;
  right: 0px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero_slider .swiper-horizontal > .swiper-pagination-bullets,
.hero_slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero_slider .swiper-pagination-custom,
.hero_slider .swiper-pagination-fraction {
  width: 100%;
}

.hero_slider .custom_pagination,
.hero_slider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_slider .swiper-pagination {
  margin-top: 5px;
}

.hero_slider .swiper-pagination-bullet {
  background: var(--ac-60);
  opacity: 1;
  width: 12px;
  height: 12px;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  -ms-border-radius: 6px !important;
  -o-border-radius: 6px !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.hero_slider .swiper-pagination-bullet-active {
  width: 32px;

  background: var(--primary-color);
}

@media only screen and (max-width: 1150px) and (orientation: landscape) {
  .hero_slider .container .hero_image {
    display: block !important;
  }

  .hero_slider .hero_slide2,
  .hero_slider .hero_slide3,
  .hero_slider .hero_slide,
  .hero_slider {
    height: 100vh !important;
  }

  .hero_slider .hero_content {
    padding: 0;
  }

  .hero_slider .hero_slide .description,
  .hero_slider .hero_slide .title,
  .hero_slider .hero_slide2 .title {
    text-align: center !important;
  }

  .hero_slide2 .our_card {
    display: flex !important;
    margin-top: 0px !important;
  }

  .hero_slide .hero_content,
  .hero_slide2 .hero_content2 {
    max-width: 100% !important;
  }

  .hero_slide2 .hero_image,
  .hero_slider .hero_slide .hero_image {
    max-width: 40% !important;
  }

}

@media screen and (max-width: 992px) {
  .hero_slider .hero_slide2,
  .hero_slider .hero_slide3,
  .hero_slider .hero_slide {
    align-items: center;
    justify-content: center;
  }

  .hero_slider .hero_slide .container,
  .hero_slider .hero_slide2 .container {
    display: block;
    text-align: center;
    margin: 0;
  }

  .hero_slider .hero_slide2,
  .hero_slider .hero_slide3,
  .hero_slider .hero_slide,
  .hero_slider {
    height: 70vh;
  }

  .hero_slider .hero_slide2 .tagline {
    padding: 6px 20px;
    font-size: 14px;
  }
  .hero_slider .hero_slide .title {
    max-width: 100%;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    margin: 10px 0;
  }

  .hero_slider .hero_slide2 .title {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.25 !important;
    text-align: center;
    margin: 10px auto;
  }

  .hero_slider .hero_slide .description {
    text-align: center;
    line-height: 22px;
  }

  .hero_slide2 .our_card {
    margin-bottom: 30px;
    margin-top: 20px;
  }

  .hero_slider .hero_slide .trust_info {
    display: none;
  }

  .hero_slider .hero_slide1 .hero_status {
    display: none;
  }

  .hero_slider .hero_slide1 .title .highlight-cyan {
    display: block;
    margin-top: 0.12em;
  }

  .hero_slide .hero_content,
  .hero_slide2 .hero_content2 {
    max-width: 100%;
  }

  .hero_slider .hero_content {
    padding: 0;
  }

  .hero_slide2 .hero_image,
  .hero_slider .hero_slide .hero_image {
    width: 100%;
    aspect-ratio: 16 / 10;
    justify-content: center;
    margin-top: 10px;
  }

  .hero_slide2 .hero_image img,
  .hero_slider .hero_slide .hero_image img {
    margin: 0;
  }

  .hero_slide .cta_button,
  .hero_slide2 .cta_button {
    font-size: 16px;
    padding: 10px 30px;
  }
}

/* Hero End */

/* Services card Start */
#services {
  padding: 80px 0;
  background: var(--ac-BG);
}

#services .service_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border: 1px solid var(--ac-border);
  border-radius: 16px;
  transition: 0.4s;
  text-align: center;
  padding: 20px;
  transition: 0.4s;
}

#services .service_card:hover {
  background: var(--primary-color);
  box-shadow: var(--box-shadow);
}

#services .service_card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50%;
  background-color: var(--ac-180);
}

#services .service_card .icon svg {
  width: 40px;
  height: 40px;
}

#services .service_card .title {
  font-size: 32px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  color: var(--secondary-color);
}

#services .service_card:hover .title {
  color: var(--ac-BG);
}

#services .service_card:hover .description {
  color: var(--ac-BG);
}

#services .service_card:hover .read_more_btn {
  color: var(--ac-BG) !important;
}

#services .service_card:hover svg path {
  stroke: var(--ac-BG) !important;
}

#services .service_card .description {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  margin-bottom: 20px;
}

#services .service_card .read_more_btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  background: transparent;
  transition: 0.4s;
}

#services .service_card .read_more_btn span {
  font-family: var(--secondary-font);
}

#services .service_card .read_more_btn svg {
  width: 28px;
  height: 28px;
  transition: 0.4s;
}

#services .service_card .read_more_btn:hover {
  color: var(--secondary-color) !important;
}

#services .service_card .read_more_btn:hover svg path {
  stroke: var(--secondary-color) !important;
}

#services .service_card:hover .read_more_btn {
  color: var(--ac-180);
}

#services .service_card .read_more_btn svg path {
  transition: 0.4s;
}

#services .service_card:hover .read_more_btn svg path {
  stroke: var(--ac-180);
}

#services .tag {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  margin-bottom: 40px;
}

#services .tag.style_2 {
  margin-bottom: 40px;
}

#services .tag .title {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--primary-color);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

@media screen and (max-width: 992px) {
  #services .service_card .title {
    font-size: 24px;
  }

  #services .tag .title {
    padding: 10px 20px;
    font-size: 16px;
  }

  #services .service_card .read_more_btn {
    font-size: 16px;
  }
}
/* Services card End */

/* Internet Feature Start */
.internet_feature {
  background: var(--ac-20);
  padding: 80px 0;
}

.internet_feature .heading {
  text-align: center;
  margin-bottom: 40px;
}

.internet_feature .tag {
  display: inline-block;
  text-align: left;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  margin: auto;
}

.internet_feature .tag span {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  color: var(--primary-color);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 4px 16px;
  margin: 0;
}

.internet_feature .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0;
  text-align: center;
  font-weight: bold;
  color: var(--secondary-color);
}

.internet_feature .desc {
  display: block;
  text-align: center;
  margin: 0px auto;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.internet_feature .service_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--ac-border);
  transition: 0.4s;
  text-align: center;
  margin-bottom: 20px;
}

.internet_feature .service_card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50%;
  background-color: var(--ac-180);
}

.internet_feature .service_card .icon svg {
  width: 50px;
  height: 50px;
}

.internet_feature .service_card .title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  font-family: var(--primary-font);
  color: var(--secondary-color);
  margin-bottom: 20px;
  margin-top: 10px;
}

.internet_feature .service_card .description {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  margin-bottom: 0px;
}

.internet_feature .phone_view {
  display: none;
}

@media screen and (max-width: 992px) {
  .internet_feature .title {
    font-size: 34px;
    text-align: center;
  }

  .internet_feature .desc,
  .internet_feature .heading {
    text-align: center;
  }

  .internet_feature .desktop_view {
    display: none;
  }

  .internet_feature .phone_view {
    display: block;
    margin-bottom: 20px;
  }

  .internet_feature .service_card .title {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .internet_feature .service_card {
    padding: 10px;
  }
}

/* Internet Feature End */

/* OTT  Platforms Start */
.ott_platforms {
  background: var(--ac-BG);
  padding: 80px 0px;
  overflow: hidden;
}

.ott_platforms .heading {
  margin-bottom: 40px;
}

.ott_platforms .tag {
  display: inline-block;
  text-align: left;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  margin: auto;
}

.ott_platforms .tag span {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  color: var(--primary-color);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 4px 16px;
  margin: 0;
}

.ott_platforms .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0;
  text-align: left;
  font-weight: bold;
  color: var(--secondary-color);
}

.ott_platforms .desc {
  display: block;
  text-align: left;
  margin: 0;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.ott_platforms .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ott_platforms .tab_btn {
  /* width: 100%; */
  display: inline-block;
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--ac-border);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  padding: 12px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.4s;
  white-space: nowrap;
}

.ott_platforms .tab_btn.active {
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow);
}

.ott_platforms .price_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.ott_platforms .price_wrap {
  width: auto;
  max-width: 100%;
  min-width: min(100%, 420px);
  display: flex;
  justify-content: center;
  margin: auto;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--ac-border);
  padding: 16px 24px;
  border-radius: 12px;
}

.ott_platforms .row {
  padding-bottom: 20px;
}

.ott_platforms .duration {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 600;
  color: var(--ac-ash);
  margin-bottom: -14px !important;
}

.ott_platforms .currency {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--primary-color);
}

.ott_platforms .channel_price {
  font-size: clamp(20px, 2.4vw, 28px);
  font-family: var(--primary-font);
  margin: 0;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.ott_platforms .features {
  margin-top: 40px;
}

.ott_platforms .features svg {
  width: 24px;
  height: 24px;
}

.ott_platforms .features span {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0;
}

.ott_platforms .features .features_item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

/* Animation Start */

.ott_platforms .ott_platforms_animation {
  height: 100%;
}

.ott_platforms .animation_img {
  width: 100%;
  aspect-ratio: 16 / 14;
  border-radius: 16px;
}

.ott_platforms .animation_img .img_wrap {
  width: 100%;
  height: 100%;
}

.ott_platforms .animation_img img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  border: 1px solid var(--secondary-color);
  object-fit: cover;
}

@media screen and (max-width: 992px) {
  .ott_platforms .features .features_item {
    justify-content: start;
    max-width: 300px;
    display: block;
    justify-content: center;
    margin: auto;
    padding-bottom: 16px;
  }

  .ott_platforms .channel_price,
  .ott_platforms .title {
    font-size: 34px;
  }

  .ott_platforms .desc,
  .ott_platforms .title,
  .ott_platforms .heading {
    text-align: center;
  }

  .ott_platforms .ott_platforms_animation {
    height: 800px;
  }
}

@media screen and (max-width: 778px) {
  .ott_platforms .ott_platforms_animation {
    height: 640px;
  }
}

@media screen and (max-width: 576px) {
  .ott_platforms .ott_platforms_animation {
    height: 560px;
  }
}

@media screen and (max-width: 500px) {
  .ott_platforms .ott_platforms_animation {
    height: 500px;
  }
}

@media screen and (max-width: 460px) {
  .ott_platforms .ott_platforms_animation {
    height: 450px;
  }
}

@media screen and (max-width: 390px) {
  .ott_platforms .ott_platforms_animation {
    height: 400px;
  }
}
/* OTT  Platforms End */

/* Packages Price Start */
.pricing_section {
  text-align: center;
  background: var(--ac-20);
  padding: 80px 0px;
}

.pricing_section .tag {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
}

.pricing_section .tag span {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  color: var(--primary-color);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 4px 16px;
  margin: 0;
}

.pricing_section .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  color: var(--secondary-color);
}

.pricing_section .desc {
  display: block;
  margin: auto;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
  margin-bottom: 40px;
}

.pricing_section .pricing_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--ac-BG);
  border-radius: 10px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--ac-border);
  transition: 0.4s;
}

.pricing_section .pricing_col:hover {
  background: var(--primary-color);
  box-shadow: var(--box-shadow);
  color: var(--secondary-color);
}

.pricing_section .pricing_col:hover .price h3 {
  background: var(--secondary-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing_section .pricing_col.highlight {
  background: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.pricing_section .pricing_col.highlight .price h3 {
  background: var(--secondary-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing_section .pricing_col .category {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  font-family: var(--primary-font);
  margin: 0;
}

.pricing_section .pricing_col .price {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: 0.4s;
  margin: 20px 0;
}

.pricing_section .pricing_col .price h3 {
  font-size: 58px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  color: var(--secondary-color);
  margin: 0;
}

.pricing_section .pricing_col .price sub,
.pricing_section .pricing_col .price sup {
  font-size: 18px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: 0.4s;
}

.pricing_section .pricing_col .price sup {
  color: var(--primary-color);
  margin-top: -16px;
}

.pricing_section .pricing_col .price sub {
  margin-top: 12px;
}

.pricing_section .pricing_col:hover .price sup {
  color: var(--secondary-color);
}

.pricing_section .pricing_col.highlight .price sup {
  color: var(--secondary-color);
}

.pricing_section .pricing_col .devices {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.pricing_section .pricing_col .devices .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--ac-180);
  border-radius: 6px;
  transition: 0.4s;
}

.pricing_section .pricing_col:hover .devices .icon {
  background: var(--ac-60);
}

.pricing_section .pricing_col:hover .devices .icon path,
.pricing_section .pricing_col:hover .devices .icon svg {
  transition: 0.4s;
}

.pricing_section .pricing_col:hover .devices .laptop path {
  stroke: var(--ac-180);
}

.pricing_section .pricing_col:hover .devices .tv path,
.pricing_section .pricing_col:hover .devices .tab path {
  fill: var(--ac-180) !important;
}

.pricing_section .pricing_col.highlight .devices .icon {
  background: var(--ac-60);
}

.pricing_section .pricing_col.highlight .devices .icon path,
.pricing_section .pricing_col.highlight .devices .icon svg {
  transition: 0.4s;
}

.pricing_section .pricing_col.highlight .devices .laptop path {
  stroke: var(--ac-180);
  fill: var(--ac-60) !important;
}

.pricing_section .pricing_col.highlight .devices .tv path,
.pricing_section .pricing_col.highlight .devices .tab path {
  fill: var(--ac-180) !important;
}

.pricing_section .pricing_col .devices {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing_section .pricing_col .features {
  list-style: none;
  margin: 30px 0 !important;
  padding: 0;
}

.pricing_section .pricing_col .features svg {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

.pricing_section .pricing_col:hover .features svg path {
  fill: var(--secondary-color) !important;
}

.pricing_section .pricing_col:hover .features li {
  color: var(--secondary-color);
}

.pricing_section .pricing_col .features li {
  display: flex;
  align-items: center;
  font-size: 16px;
  text-align: left;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: bold;
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.pricing_section .highlight svg path {
  fill: var(--secondary-color) !important;
}

.pricing_section .pricing_col.highlight .features li {
  color: var(--secondary-color);
}

.pricing_section .pricing_col.highlight .get_start_btn {
  color: var(--ac-BG) !important;
}

.pricing_section .pricing_col .get_start_btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--ac-BG);
  border: none;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  padding: 12px 40px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.4s;
}

.pricing_section .pricing_col.highlight .get_start_btn {
  background: var(--secondary-color);
  color: var(--ac-black);
}

.pricing_section .pricing_col:hover .get_start_btn {
  background: var(--secondary-color);
}

.pricing_section .pricing_col .get_start_btn:hover {
  background: var(--ac-black);
}

@media screen and (max-width: 992px) {
  .pricing_section .title {
    font-size: 34px;
  }

  .pricing_section .pricing_col .category {
    font-size: 24px;
  }

  .pricing_section .pricing_col .get_start_btn {
    padding: 10px 30px;
    font-size: 16px;
  }

  .pricing_section .tag span {
    font-size: 16px;
  }
}
/* Packages Price End */

/* Counter Section Start */
.counter_wrapper {
  position: relative;
  background: var(--ac-BG);
  padding: 80px 0px;
}
.counter_wrapper .container {
  position: relative;
  z-index: 11 !important;
}
.counter_wrapper .shape {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  aspect-ratio: 16 / 16;
  position: absolute;
  top: 0;
  left: 0px;
  margin: 80px 0;
  bottom: 0;
}
.counter_wrapper .shape img {
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.9;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
  background-size: cover;
  object-fit: cover;
}

.counter_wrapper .tag {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  z-index: 1;
}

.counter_wrapper .tag span {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  color: var(--primary-color);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 4px 16px;
  margin: 0;
}

.counter_wrapper .title {
  font-size: 46px;
  max-width: 480px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  color: var(--secondary-color);
}

.counter_wrapper .desc {
  display: block;
  margin: auto;
  text-align: left;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
  margin-bottom: 40px;
}

.counter_wrapper .counter-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.counter_wrapper .counters {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  z-index: 1;
}
.counter_wrapper .counter {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  background: var(--ac-20);
  padding: 20px;
  text-align: left;
}
.counter_wrapper .counter .count_num {
  font-size: 48px;
  font-family: var(--primary-font);
  font-weight: bold;
  color: var(--primary-color);
}

.counter_wrapper .counter p {
  margin: 0;
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 500;
  font-family: var(--secondary-font);
  text-align: left;
}
.counter_wrapper .availability form {
  position: relative;
  display: flex;
  gap: 20px;
  z-index: 2;
}
.counter_wrapper .availability .address {
  position: relative;
  width: 100%;
  border: 1px solid var(--ac-border);
  border-radius: 30px;
  overflow: hidden;
}
.counter_wrapper .availability .address .fa-location-dot {
  position: absolute;
  right: 20px;
  top: 30%;
  font-size: 20px;
  color: var(--primary-color);
}
.counter_wrapper .availability input {
  padding: 10px 20px;
  height: 51px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  width: 100%;
  font-size: 16px;
  font-weight: 400;
}
.counter_wrapper .availability input::placeholder {
  color: var(--ac-ash);
  font-size: 16px;
  font-weight: 400;
}

.counter_wrapper .availability .availability_btn {
  display: inline-block;
  white-space: nowrap;
  background: var(--primary-color);
  color: var(--ac-BG);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  padding: 12px 40px;
  border-radius: 30px;
  transition: 0.4s;
}
.counter_wrapper .availability button:hover {
  background: var(--secondary-color);
}

@media screen and (max-width: 992px) {
  .pricing_section .title {
    font-size: 34px;
  }

  .pricing_section .pricing_col .category {
    font-size: 24px;
  }

  .counter_wrapper .availability {
    text-align: center;
  }

  .counter_wrapper .title {
    max-width: 100%;
    text-align: center;
    font-size: 34px;
  }

  .counter_wrapper .tag span {
    font-size: 16px;
  }

  .counter_wrapper .desc {
    text-align: center;
  }

  .counter_wrapper .counter {
    padding: 10px;
    text-align: center;
  }

  .counter_wrapper .availability .availability_btn {
    padding: 10px 30px;
    font-size: 16px;
    margin-top: 16px;
  }

  .counter_wrapper .availability form {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }

  .counter_wrapper .shape {
    width: 100%;
  }

  .counter_wrapper .counter p {
    font-size: 18px;
    text-align: center;
  }

  .counter_wrapper .counter .count_num {
    font-size: 34px;
  }
}
/* Counter Section End */

/* Latest Blog Start */

.latest_blog {
  width: 100%;
  background: var(--ac-BG);
  padding: 80px 0px;
  overflow: hidden;
}

.latest_blog .heading_wrapper {
  margin-bottom: 40px;
}

.latest_blog .tag {
  display: block;
  text-align: center;
  margin: auto;
}

.latest_blog .tag span {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  color: var(--primary-color);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 4px 16px;
  margin: 0;
}

.latest_blog .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0px 40px 0px;
  text-align: center;
  font-weight: bold;
  color: var(--secondary-color);
}

.latest_blog .blog_content .tag {
  display: block;
  text-align: left;
  margin: auto;
}

.latest_blog .blog_content .tag span {
  border: 1px solid var(--ac-ash);
  font-size: 16px;
  display: inline-block;
  text-align: center;
  color: var(--primary-color);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 4px 16px;
  margin: 0;
}

.latest_blog .blog_content .title {
  font-size: 32px;
  font-family: var(--primary-font);
  margin: 20px 0;
  text-align: left;
  font-weight: bold;
  color: var(--secondary-color);
}

.latest_blog .blog_content .desc {
  display: block;
  text-align: left;
  margin: 0;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.latest_blog .blog_content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.latest_blog .blog_content .content_img {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
}

.latest_blog .blog_content .content_img img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

.latest_blog .blog_content .read_more_btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  background: transparent;
  transition: 0.4s;
  margin-top: 20px;
}

.latest_blog .blog_content .read_more_btn span {
  font-family: var(--secondary-font);
}

.latest_blog .blog_content .read_more_btn svg {
  width: 28px;
  height: 28px;
  transition: 0.4s;
}

.latest_blog .blog_content .read_more_btn svg path {
  stroke: var(--ac-black);
  transition: 0.4s;
}

.latest_blog .blog_content .read_more_btn:hover {
  color: var(--primary-color);
}

.latest_blog .blog_content .read_more_btn:hover svg path {
  stroke: var(--primary-color);
}

.latest_blog .button {
  text-align: center;
  margin-top: 40px;
}

.latest_blog .view_more_btn {
  display: inline-block;
  white-space: nowrap;
  background: var(--primary-color);
  color: var(--ac-BG);
  border: 1px solid var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  padding: 12px 40px;
  border-radius: 30px;
  transition: 0.4s;
}

.latest_blog .view_more_btn svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.latest_blog .view_more_btn svg path {
  stroke: var(--ac-BG);
}

.latest_blog .view_more_btn:hover {
  background: var(--primary-color);
}

.latest_blog .view_more_btn:hover svg {
  transform: translate(15%);
  -webkit-transform: translate(15%);
  -moz-transform: translate(15%);
  -ms-transform: translate(15%);
  -o-transform: translate(15%);
}

@media screen and (max-width: 992px) {
  .latest_blog .title {
    font-size: 34px;
  }
  .latest_blog .blog_content .title {
    font-size: 24px;
  }

  .latest_blog .blog_content {
    flex-direction: column;
    gap: 30px;
  }

  .latest_blog .blog_content1 {
    margin-bottom: 30px;
  }
}

/* Latest Blog End */

/* FAQ Start */

#faq {
  position: relative;
  width: 100%;
  background: var(--ac-20);
  padding: 80px 0px;
}

#faq .faq_wrapper .heading_wrapper {
  margin-bottom: 40px;
}

#faq .faq_wrapper .tag {
  display: block;
  text-align: center;
  margin: auto;
}

#faq .faq_wrapper .tag span {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  color: var(--primary-color);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 4px 16px;
  margin: 0;
  border: 1px solid var(--ac-ash);
}

#faq .faq_wrapper .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0px 40px 0px;
  text-align: center;
  font-weight: bold;
  color: var(--secondary-color);
}

#faq .faq_wrapper .blog_content .tag {
  display: block;
  text-align: left;
  margin: auto;
}

#faq .faq_wrapper .blog_content .tag span {
  border: 1px solid var(--ac-ash);
  font-size: 16px;
  display: inline-block;
  text-align: center;
  color: var(--primary-color);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 4px 16px;
  margin: 0;
}

#faq .faq_animation {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 13;
  background-image: url(../icon/FAQ-bg-shape.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
}

#faq .faq_animation img {
  width: 100%;
  height: 100%;
  background-position: center;
  border-radius: 12px;
  background-size: cover;
  object-fit: cover;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

#faq .faq_animation .question_icon {
  position: absolute;
  top: 50%;
  left: 18%;
  transform: rotate(22deg);

  display: inline-block;
}

#faq .faq_animation .question_icon2 {
  position: absolute;
  top: 2%;
  right: 32%;
  transform: rotate(22deg);
  display: inline-block;
}

#faq .faq_animation .question_icon3 {
  position: absolute;
  top: 40%;
  right: 24%;
  transform: rotate(34deg);
  display: inline-block;
}
/*  */
#faq .faq_animation .question_icon svg {
  width: 60px;
  height: 60px;
}
#faq .faq_animation .question_icon::before,
#faq .faq_animation .question_icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: -1;
  animation: grow1 1.8s ease-in-out infinite;
  -webkit-animation: grow1 1.8s ease-in-out infinite;
}

#faq .faq_animation .question_icon::after {
  background: rgba(255, 255, 255, 0.4);
  animation-delay: 0.5s;
}

#faq .faq_animation .question_icon::before {
  background: rgba(255, 255, 255, 0.6);
  animation-delay: 1.5s;
}

@keyframes grow1 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
/*  */
#faq .faq_animation .question_icon2 svg {
  width: 35px;
  height: 35px;
}
#faq .faq_animation .question_icon2::before,
#faq .faq_animation .question_icon2::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: -1;
  animation: grow2 1.7s ease-in-out infinite;
  -webkit-animation: grow2 1.7s ease-in-out infinite;
}

#faq .faq_animation .question_icon2::after {
  background: rgba(255, 255, 255, 0.4);
  animation-delay: 0.5s;
}

#faq .faq_animation .question_icon2::before {
  background: rgba(255, 255, 255, 0.6);
  animation-delay: 1.5s;
}

@keyframes grow2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
/*  */

#faq .faq_animation .question_icon3 svg {
  width: 44px;
  height: 44px;
}
#faq .faq_animation .question_icon3::before,
#faq .faq_animation .question_icon3::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: -1;
  animation: grow3 1.6s ease-in-out infinite;
  -webkit-animation: grow3 1.6s ease-in-out infinite;
}

#faq .faq_animation .question_icon3::after {
  background: rgba(255, 255, 255, 0.4);
  animation-delay: 0.5s;
}

#faq .faq_animation .question_icon3::before {
  background: rgba(255, 255, 255, 0.6);
  animation-delay: 1.5s;
}

@keyframes grow3 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}

#faq .faq_acc details {
  margin-bottom: 20px;
  border: 1px solid var(--ac-border);
  border-radius: 8px;
  overflow: hidden;
}

#faq .faq_acc summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  list-style: none;
}

#faq .faq_acc summary .icon {
  transition: transform 0.3s ease;
}

#faq .faq_acc details[open] summary .icon {
  transform: rotate(180deg);
}

#faq .faq_acc details summary .icon svg {
  width: 32px;
  height: 32px;
}

#faq .faq_acc .content {
  background-color: transparent;
  border-top: 1px solid var(--ac-border);
  padding: 0 10px;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

#faq .faq_acc details .heading {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--primary-font);
  color: var(--secondary-color);
  margin-bottom: 0px;
}

#faq .faq_acc .content p {
  display: block;
  text-align: left;
  margin: 0;
  margin-top: 20px;
  max-width: 750px;
  padding-bottom: 10px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

@media screen and (max-width: 992px) {
  #faq .faq_wrapper .title {
    font-size: 34px;
  }
  #faq .faq_acc {
    margin-top: 20px;
  }
}

/* FAQ End */
