:root {
  --indigo: #8a5cff;
  --yellow: #ffd027;
  --pink: #ff3489;
  --light-pink: #ff348914;
  --orange: #ffa301;
  --indigo-light: #f0ebff;
  --black: #080808;
  --black-light: #08080814;
  --gray: #08080836;
  --fb: #0084ff;
  --fb-light: #0084ff14;
  --yt: #ff0000;
  --yt-light: #ff000014;
  --spotify: #1db954;
  --spotify-light: #1db95414;
  --cloud: #ff7700;
  --cloud-light: #ff770014;
  --twitch: #6441a5;
  --twitch-light: #6441a514;
}

/* background color classes */

.text-justify {
  text-align: justify;
}

.bg-black {
  background-color: var(--black);
}

.bg-black-light {
  background-color: var(--black-light);
}

.bg-indigo {
  background-color: var(--indigo);
}

.bg-indigo-light {
  background-color: var(--indigo-light) !important;
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-pink {
  background-color: var(--pink);
}

.bg-pink-light {
  background-color: var(--light-pink);
}

.bg-orange {
  background-color: var(--orange);
}

.bg-fb {
  background-color: var(--fb) !important;
}

.bg-fb-light {
  background-color: var(--fb-light) !important;
}

.bg-spotify {
  background-color: var(--spotify) !important;
}

.bg-spotify-light {
  background-color: var(--spotify-light) !important;
}

.text-indigo {
  color: var(--indigo);
}

.bg-youtube {
  background-color: var(--yt) !important;
}

.bg-youtube-light {
  background-color: var(--yt-light) !important;
}

.bg-cloud {
  background-color: var(--cloud) !important;
}

.bg-cloud-light {
  background-color: var(--cloud-light) !important;
}

.bg-twitch {
  background-color: var(--twitch) !important;
}

.bg-twitch-light {
  background-color: var(--twitch-light) !important;
}

.text-youtube {
  color: var(--yt);
}

/* buttons classes */

.btn-yellow {
  background-color: var(--yellow);
  padding: 12px 20px;
  border-radius: 12px;
  outline: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  font-family: "Inter", serif;
}

.btn-yellow:hover {
  background-color: var(--yellow);
  color: var(--indigo);
}

.btn-yellow-light {
  background-color: rgba(255, 208, 39, 0.25);
  padding: 12px 20px;
  border-radius: 12px;
  outline: none;
  border: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 22px;
  font-family: "DM Sans", serif;
}

.btn-review-container>div {
  display: flex;
  align-items: center;
}

.btn-review-container>div:nth-child(3) {
  justify-content: flex-end;
}

.btn-review-outline {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--black);
  background-color: white;
  color: var(--black);
  outline: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Inter", serif;
}

.btn-review-outline:hover {
  border: 1px solid var(--indigo);
  color: var(--indigo);
  background-color: white;
}

/* font related classes */

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.font-inter {
  font-family: "Inter", serif;
}

.font-dm {
  font-family: "DM Sans", serif;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fs-21 {
  font-size: 21px;
}

.fs-24 {
  font-size: 24px;
}

/* tag css override */
h1,
h2,
h3,
h4,
h5 {
  font-family: "DM Sans", serif;
  font-weight: 700;
}

p {
  font-family: "Inter", serif;
}

h2,
.head2 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
}

.head3 {
  font-size: 26px;
  line-height: 28px;
  font-weight: 700;
}

.head4 {
  font-size: 21px;
  line-height: 24px;
  font-weight: 700;
}

.head5 {
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
}

/* index page css */

.review_slider .review_card_items {
  padding: 26px;
  border-radius: 26px;
  color: white;
  margin: 10px;
  max-width: 340px;
  min-height: 380px;
  max-height: 400px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.review_slider .review_card_items .review_card_body p:first-child {
  line-height: 21px;
}

.review_slider .review_card_items .review_card_user {
  display: flex;
  align-items: center;
}

.review_slider .review_card_items .review_card_user>div:first-child {
  height: 60px;
  width: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
}

.review_slider .review_card_items .review_card_user>img {
  height: 54px;
  width: 54px;
  border-radius: 50%;
}

.review_slider .review_card_items .review_card_user p {
  margin-bottom: 0px;
}

.review_slider .review_card_items .review_card_user p:first-child {
  font-size: 21px;
  font-weight: 600;
  line-height: 25px;
}

.review_slider .review_card_items .review_card_user p:last-child {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #ffffffb8;
}

/* header banner section css */

.banner_buttons .btn-yellow {}

.banner_review {
  display: flex;
  align-items: center;
}

/* footer section css */

.footer_wrapper {
  display: flex;
  justify-content: space-between;
}

.footer_wrapper .footer_item:first-child {
  width: 24%;
}

.footer_wrapper .footer_item {
  width: 18.5%;
}

/* why section css */

.why_wrapper .why_card {
  border: 1.5px solid white;
  padding: 24px;
  border-radius: 16px;
  background-color: #ffffff6b;
  margin-bottom: 20px;
  height: 95%;
}

.why_wrapper .why_card>div {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  background-color: var(--indigo);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

/* counter section css */

.counter_wrapper {
  margin-top: 3rem;
  border: 4px solid white;
  padding: 35px;
  border-radius: 24px;
  /* background: linear-gradient(45deg, rgba(255,208,39,0.32) 32%, rgba(255,52,137,0.32) 32%); */
  background-image: linear-gradient(45deg, #ffd02752, #ff348952);
}

.counter_wrapper .counter_item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter_wrapper .counter_item>div:first-child {
  height: 80px;
  width: 80px;
  background: var(--orange);
  border-radius: 16px;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter_wrapper .counter_item h3 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 900;
  margin-bottom: 0;
}

.counter_wrapper .counter_item p {
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
  font-size: 16px;
}

/* explore section css */

.explore_slider .explore_cards {
  width: 320px;
  margin-right: 10px;
}

.explore_slider .explore_cards>div:first-child {
  background-color: var(--indigo);
  padding: 20px;
  border-radius: 16px;
  min-height: 200px;
  width: 320px;
  margin-bottom: 30px;
}

.explore_slider .explore_cards h5 {
  font-size: 22px;
  line-height: 28px;
  color: var(--black);
  margin-bottom: 0;
}

.explore_slider .explore_cards p {
  font-size: 14px;
  font-weight: 500;
  color: #080808b8;
  margin-bottom: 5px;
}

.explore_slider .explore_cards a {
  text-decoration: none;
  color: var(--black);
}

.explore_slider .explore_cards a:hover {
  color: var(--pink);
  cursor: pointer;
}

.explore_slider .explore_cards a>i {
  color: var(--pink);
}

.slick-arrow {
  position: absolute;
  opacity: 0.7;
  top: -35px;
  z-index: 1;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  padding: 0;
  overflow: hidden;
  font-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 2px solid var(--black);
  border-radius: 16px;
  cursor: pointer;
  outline: none;
  transition: 0.25s;
  color: var(--black);
}

.slick-next {
  right: 10px;
}

.slick-prev {
  right: 70px;
}

/* service section css */

.services-section {
  padding: 50px 20px;
}

.service-tabs {
  margin-top: 30px;
}

.service-tabs .nav-pills .nav-link {
  border-radius: 24px 24px 0 0;
  font-size: 24px;
  font-weight: 500;
  width: 200px;
  font-family: "Inter", serif;
  color: var(--black);
}

.service-tabs .nav-item:nth-child(1) .nav-link.active {
  background-color: var(--pink);
  color: white;
}

.service-tabs .nav-item:nth-child(2) .nav-link.active {
  background-color: var(--black);
  color: white;
}

.service-tabs .nav-item:nth-child(3) .nav-link.active {
  background-color: var(--fb);
  color: white;
}

.service-tabs .nav-item:nth-child(4) .nav-link.active {
  background-color: var(--black);
  color: white;
}

.service-tabs .nav-item:nth-child(5) .nav-link.active {
  background-color: var(--yt);
  color: white;
}

.service-tabs .tab-content .tab-pane {
  /* background-color: white; */
  padding: 20px;
  border-radius: 2px;
}

.service-tabs .tab-content .tab-pane:nth-child(1) {
  border: 4px solid var(--pink);
}

.service-tabs .tab-content .tab-pane:nth-child(2) {
  border: 4px solid var(--black);
}

.service-tabs .tab-content .tab-pane:nth-child(3) {
  border: 4px solid var(--fb);
}

.service-tabs .tab-content .tab-pane:nth-child(4) {
  border: 4px solid var(--black);
}

.service-tabs .tab-content .tab-pane:nth-child(5) {
  border: 4px solid var(--yt);
}

.service-card-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}

.service-card {
  transition: all 0.3s;
  font-size: 21px;
  line-height: 24px;
  font-family: "Inter", serif;
  width: 150px;
  margin-bottom: 10px;
  text-align: center;
}

.service-tabs .tab-content .tab-pane .service-card-img {
  height: 100px;
  width: 100px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #fff;
  /* box-shadow: 0 0 24px 0 rgb(255 52 137 / 32); */
  box-shadow: 0 0 50px 0 #ccc;
  margin: auto;
  margin-bottom: 30px;
}

.service-tabs .tab-content .tab-pane:nth-child(1) .service-card-img {
  background-color: var(--pink);
}

.service-tabs .tab-content .tab-pane:nth-child(2) .service-card-img {
  background-color: var(--black);
}

.service-tabs .tab-content .tab-pane:nth-child(3) .service-card-img {
  background-color: var(--fb);
}

.service-tabs .tab-content .tab-pane:nth-child(4) .service-card-img {
  background-color: var(--black);
}

.service-tabs .tab-content .tab-pane:nth-child(5) .service-card-img {
  background-color: var(--yt);
}

.service-card-img:nth-child(2) {
  background-color: var(--black);
}

.service-card i {
  font-size: 2rem;
  color: #ff5a79;
  margin-bottom: 10px;
}

.trusted-info {
  margin-top: 22px;
  text-align: center;
  font-family: "Inter", serif;
  font-size: 21px;
  font-weight: 500;
}

.links-list {
  list-style-type: none;
  padding-left: 0;
}

.links-list li a {
  text-decoration: none;
  color: #080808b8;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
}

.links-list li a:hover {
  color: #8a5cff;
}

/* service page css  */

.bg-insta {
  background: linear-gradient(#f9ce34 0.1%, #ff3489 30%);
  /* background: linear-gradient(45deg, rgba(249,206,52,1) 10%, rgba(255,52,137,1) 78%); */
}

.package-container {
  /* background: linear-gradient(45deg, rgba(249,206,52,1) 10%, rgba(255,52,137,1) 78%); */
}

.package-container a {
  color: white;
}

.service-banner .nav-pills {
  background-color: white;
  border-radius: 24px;
  padding: 6px 0;
  width: 380px;
  max-width: 400px;
}

.service-banner .nav-pills .nav-item .nav-link {
  font-size: 21px;
}

.pricing-section {
  border: 1px solid #ddd;
  background-color: white;
  border-radius: 24px;
  padding: 24px;
}

.pricing-section .radio-group label {
  background-color: #0000000a;
  border-radius: 32px;
  width: 100%;
  margin-bottom: 10px;
  padding: 9px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.pricing-section .radio-group label input {
  height: 16px;
  width: 16px;
}

.pricing-section .prize-tag {
  font-size: 62px;
  font-weight: 700;
  font-family: "DM Sans", serif;
}

.order-btn {
  background-color: var(--pink);
  color: white;
  border: 2px solid var(--pink);
  border-radius: 16px;
  padding: 10px 40px;
  font-size: 22px;
  font-weight: 600;
}

.order-btn:hover {
  background-color: white;
  color: var(--pink);
}

.bg-youtube .order-btn {
  background-color: var(--yt);
  border: 2px solid var(--yt);
}

.bg-youtube .order-btn:hover {
  background-color: white;
  color: var(--yt);
}

.bg-youtube .order-btn {
  background-color: var(--yt);
  border: 2px solid var(--yt);
}

.bg-youtube .order-btn:hover {
  background-color: white;
  color: var(--yt);
}

.package-container.bg-black .order-btn {
  background-color: var(--black);
  border: 2px solid var(--black);
}

.package-container.bg-black .order-btn:hover {
  background-color: white;
  color: var(--black);
}

.package-container.bg-fb .order-btn {
  background-color: var(--fb);
  border: 2px solid var(--fb);
}

.package-container.bg-fb .order-btn:hover {
  background-color: white;
  color: var(--fb);
}

.package-container.bg-spotify .order-btn {
  background-color: var(--spotify);
  border: 2px solid var(--spotify);
}

.package-container.bg-spotify .order-btn:hover {
  background-color: white;
  color: var(--spotify);
}

.package-container.bg-cloud .order-btn {
  background-color: var(--cloud);
  border: 2px solid var(--cloud);
}

.package-container.bg-cloud .order-btn:hover {
  background-color: white;
  color: var(--cloud);
}

.package-container.bg-twitch .order-btn {
  background-color: var(--twitch);
  border: 2px solid var(--twitch);
}

.package-container.bg-twitch .order-btn:hover {
  background-color: white;
  color: var(--twitch);
}

.bg-insta .nav-pills .nav-item .nav-link.active {
  background-color: var(--pink);
  border-radius: 17px;
}

.bg-black .nav-pills .nav-item .nav-link.active {
  border-radius: 17px;
}

.bg-youtube .nav-pills .nav-item .nav-link.active {
  background-color: var(--yt);
  border-radius: 17px;
}

.bg-fb .nav-pills .nav-item .nav-link.active {
  background-color: var(--fb);
  border-radius: 17px;
}

.bg-spotify .nav-pills .nav-item .nav-link.active {
  background-color: var(--fb);
  border-radius: 17px;
}

.bg-cloud .nav-pills .nav-item .nav-link.active {
  background-color: var(--fb);
  border-radius: 17px;
}

.bg-twitch .nav-pills .nav-item .nav-link.active {
  background-color: var(--twitch);
  border-radius: 17px;
}

.service-why-container>div:first-child {
  background-color: var(--pink);
  padding: 38px;
  border-radius: 24px;
  margin: 10px;
}

.service-why-container div ul {
  margin-top: 30px;
}

.service-why-container>div:first-child ul li {
  color: white;
  position: relative;
  border-bottom: 1px solid white;
  padding-left: 2rem;
  min-height: 40px;
  margin-top: 12px;
  text-wrap: auto;
}

.service-why-container>div:first-child ul li:last-child {
  border-bottom: none;
}

.service-why-container>div:first-child ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-image: url("../images/Yes.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.service-why-container>div:nth-child(2) {
  background-color: white;
  padding: 38px;
  border-radius: 24px;
  margin: 10px;
  border: 1.5px solid #ff348936;
}

.service-why-container>div:nth-child(2) ul li {
  position: relative;
  border-bottom: 1px solid #00000026;
  padding-left: 2rem;
  min-height: 40px;
  margin-top: 12px;
  text-wrap: auto;
}

.service-why-container>div:nth-child(2) ul li:last-child {
  border-bottom: none;
}

.service-why-container>div:nth-child(2) ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-image: url("../images/No.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.steps-wrapper .card-count {
  height: 46px;
  width: 46px;
  border-radius: 24px;
  background-color: var(--indigo);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  font-weight: 600;
}

.accordion-header .accordion-button {
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  color: var(--black);
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
}

.service_review_slider .review_card_items {
  padding: 26px;
  border-radius: 26px;
  color: white;
  margin: 10px;
  /* max-width: 340px; */
  min-height: 300px;
  /* max-height: 420px; */
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-family: "Inter", serif;
}

.service_review_slider .review_card_items .review_card_body h5 {
  line-height: 21px;
  margin-top: 1rem;
}

.read-more-btn {
  color: white;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.read-more-btn:hover {
  color: var(--black);
  text-decoration: underline;
}

.review-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 8;
  line-height: 1.5;
  max-height: calc(22px * 8);
  /* Matches the line height times the number of lines */
  transition: max-height 0.3s ease;
}

.review-content-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  line-height: 1.5;
  max-height: calc(22px * 5);
  /* Matches the line height times the number of lines */
  transition: max-height 0.3s ease;
}

.review-content-5.expanded,
.review-content.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.seprator {
  margin: auto;
  height: 4px;
  width: 70px;
}

@media screen and (max-width: 992px) {
  .footer_wrapper .footer_item:first-child {
    width: 50%;
  }

  .footer_wrapper .footer_item {
    width: 50%;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .services-section {
    padding: 20px 15px;
  }

  .head2 {
    font-size: 28px;
    line-height: 30px;
  }

  .head3 {
    font-size: 21px;
    line-height: 24px;
  }

  .head4 {
    font-size: 18px;
    line-height: 20px;
  }

  .slick-arrow {
    display: none !important;
  }

  .service-banner .nav-pills {
    padding: 6px;
  }

  .service-banner .nav-pills li {
    width: 48%;
  }

  .service-banner .nav-pills .nav-item .nav-link {
    font-size: 16px;
  }

  .pricing-section .prize-tag {
    font-size: 44px;
    line-height: 46px;
  }
}

@media screen and (max-width: 568px) {
  .order-btn {
    padding: 4px 14px;
    font-size: 18px;
  }

  .banner_buttons .btn-yellow {
    width: 100%;
  }

  .banner_review {
    flex-direction: column;
  }

  .banner_review>button {
    margin-bottom: 1rem;
  }

  .banner_review p {
    text-align: center;
  }

  .service-tabs .nav-pills .nav-link {
    font-size: 18px;
    width: 170px;
  }

  .service-tabs .tab-content .tab-pane {
    padding: 10px;
  }

  .service-tabs .tab-content .tab-pane .service-card h5 {
    font-size: 16px;
  }

  .service-tabs .tab-content .tab-pane .service-card {
    width: 120px;
  }

  .service-tabs .tab-content .tab-pane .service-card-img {
    height: 75px;
    width: 75px;
    border-radius: 40px;
    margin-bottom: 15px;
  }

  .trusted-info {
    font-size: 14px;
  }

  .btn-review-container .btn-review-outline {
    width: 100%;
  }

  .btn-review-container p {
    font-size: 14px;
    text-align: center;
  }

  .counter_wrapper {
    padding: 1rem;
  }

  .counter_wrapper .counter_item h3 {
    font-size: 30px;
    line-height: 34px;
  }

  .counter_wrapper .counter_item p {
    font-size: 14px;
    line-height: 17px;
  }

  .counter_wrapper .counter_item {
    margin-bottom: 0.8rem;
    justify-content: flex-start;
  }

  .counter_wrapper .counter_item>div:first-child {
    height: 60px;
    width: 60px;
  }

  .footer_wrapper .footer_item:first-child {
    width: 100%;
  }
}

@media screen and (max-width: 478px) {
  .pricing-section {
    padding: 12px;
  }

  .pricing-section .radio-group label {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .service-tabs .nav-pills .nav-link {
    width: 135px;
    padding: 12px;
  }
}

@media screen and (max-width: 400px) {
  .service-banner .nav-pills {
    padding: 6px;
    flex-direction: column;
  }

  .service-banner .nav-pills li {
    width: 100%;
  }

  .service-why-container>div:first-child,
  .service-why-container>div:nth-child(2) {
    padding: 20px 16px;
  }

  .pricing-section .prize-tag {
    font-size: 38px;
    line-height: 40px;
    margin-bottom: 0px;
  }

  .btn-review-container>div {
    justify-content: center !important;
  }
}