* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  /* height: 100%; */
  width: 100%;
}

@font-face {
  font-family: "lato-bold";
  src: url('../font/lato/Lato-Bold.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "lato-regular";
  src: url('../font/lato/Lato-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}

:root {
  --midnight-blue: #141f39;
  --midnight-blue-2: #17243d;
  --orange-red: #159f8d;
  --ghost-white: #f5f8fa;
  --white: white;
  --dim-grey: #4f4f4f;
  --floral-white: #fbf7ec;
  --coral: #61c49c;
  --gainsboro: #e2e2e2;
  --azure: #deeeeb;
  --dark-slate-blue: #5e6084;
  --misty-rose: #ffe8dd;
  --font-lato-bild: lato-bold;
  --font-lato-regular: lato-regular;
  --para-lineheight: 1.875rem;
}

.dropdown-menu-cont {
  position: fixed;
  background: var(--white);
  height: max-content;
  width: 100%;
  left: 0;
  padding: 0 15px;
  top: 83px;
  border-bottom: 1px solid var(--gainsboro);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.dropdown-menu {
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-width: 1290px;
  width: 100%;
  margin: auto;
  gap: 3rem;
  padding: 2rem 0;
}

.dropdown-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* background-color: red; */
  gap: 3rem;
}

.dropdown-menu__item {
  display: flex;
  gap: 12px;
}

.dropdown-menu__desc {
  font-family: var(--font-lato-regular);
  color: var(--dim-grey);
  font-size: 13px;
}

.dropdown-menu__icon img {
  width: 1.5rem;
}

.dropdown-menu-ancur {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  font-family: var(--font-lato-regular);
}

.dropdown-menu__title-arrow {
  transition: all .2s linear;
}

.dropdown-menu-ancur:hover .dropdown-menu__title-arrow {
  transform: translateX(5px);
}

.dropdown-menu-ancur:hover .dropdown-menu__title {
  color: var(--dim-grey);
}

.dropdown-menu__title {
  color: var(--midnight-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-menu__title img {
  width: .8rem;
}

.site-header {
  padding: 0 15px;
  border-bottom: 1px solid var(--gainsboro);
  height: 83px;
  align-content: center;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
}

.nav__title,
.nav__item>a,
.btn--login {
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue);
  font-size: 19px;
  text-decoration: none;
  cursor: pointer;
}

.nav__title:hover,
.nav__item>a:hover,
.btn--login:hover {
  color: var(--dim-grey);
}

.nav__item {
  list-style: none;
}

.header__wrapper {
  max-width: 1290px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

.header__logo img {
  width: 175px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn--demo {
  font-family: var(--font-lato-regular);
  font-weight: 400;
  border: 1px solid var(--orange-red);
  text-transform: uppercase;
  color: var(--white);
  padding: 0 20px;
  height: 40px;
  background-color: var(--orange-red);
  align-content: center;
  font-size: 12px;
  text-decoration: none;
  border-radius: 10px;
}

.btn--demo:hover {
  border-color: var(--midnight-blue);
  background: var(--midnight-blue);
}

.btn--creator {
  font-family: var(--font-lato-regular);
  font-weight: 400;
  border: 1px solid var(--midnight-blue);
  text-transform: uppercase;
  color: var(--midnight-blue);
  padding: 0 20px;
  height: 40px;
  align-content: center;
  font-size: 12px;
  text-decoration: none;
  border-radius: 10px;
}

.btn--creator:hover {
  color: var(--orange-red);
  border-color: var(--orange-red);
}

.nav__item--has-dropdown-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 83px;
}

.nav__item--has-dropdown {
  cursor: pointer;
}

.dropdown-menu-cont--active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.3s ease;
}

.btn--login--mob {
  display: none;
}


/* hero section */
.container-pd {
  padding: 80px 15px;
}

.container-wd,
.tabs-section__container {
  max-width: 1290px;
  width: 100%;
  margin: auto;
}

.hero-section {
  background: var(--ghost-white);
}

.hero-section__content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-image: url('../assets/64b1bd375e73b516e5805fce_Untitled\ design\ \(19\).png');
  background-repeat: no-repeat;
  background-size: contain;
  gap: 2rem;
}

.hero-section__heading {
  color: var(--midnight-blue);
  text-align: left;
  letter-spacing: -.03em;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: var(--font-lato-bild);
  font-size: 38px;
  font-weight: 700;
  line-height: 140%;
}

.hero-section__description {
  font-family: var(--font-lato-regular);
  line-height: var(--para-lineheight);
  font-weight: 400;
  color: var(--midnight-blue);
  margin-bottom: 20px;
}

.same-btn {
  font-family: var(--font-lato-regular);
  align-content: center;
  font-size: 1.1rem;
  padding: 0 25px;
  height: 54px;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn--demo-hero {
  background: var(--orange-red);
  border: 2px solid var(--orange-red);
  color: var(--white);
}

.btn--demo-hero:hover {
  background: var(--midnight-blue);
  border-color: var(--midnight-blue);
}

.btn--creator-hero {
  border: 2px solid var(--midnight-blue);
  color: var(--midnight-blue);
  background: var(--white);
}

.btn--creator-hero:hover {
  background: transparent;
}

.hero-section__image img {
  width: 100%;
}

.hero-section__buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-section__text-content {
  align-content: center;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 100px;
}

.scroll-track {
  display: inline-flex;
}

.scroll-track img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.scroll-track a {
  margin-right: 50px;
  display: inline-block;
  opacity: .4;
}




.tabs {
  display: flex;
  justify-content: space-between;
}

.tab {
  padding: 10px 15px 30px 15px;
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  /* background: #f2f2f2; */
  width: 100%;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tab:hover {
  box-shadow: 0 -2px 5px #0000001a;
}

.tab.active {
  background: var(--ghost-white);
  /* border-bottom: 3px solid orange; */
  /* color: orange; */
}

.top-tab-text {
  font-family: var(--font-lato-bild);
  color: #a6b0c2;
  transition: all .2s ease;
}

.tab-content .content {
  display: none;
}

.tab-content .content.active {
  display: block;
  background: var(--ghost-white);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.tabs-section__tab5-wrapper {
  border-bottom: 4px solid var(--orange-red);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 40px;
  column-gap: 70px;
}

.tabs-section__image {
  align-content: center;
}

.tabs-section__image img {
  width: 100%;
}

.tab.active .teb-icon svg {
  color: var(--orange-red);
}

.teb-icon svg {
  color: #A6B0C2;
}

.tab.active .top-tab-text {
  color: var(--orange-red);
}

.tab:hover .top-tab-text {
  color: #a6b0c2;
}

.tabs-section__heading {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.same--heading2 {
  line-height: 3.5rem;
  font-weight: 700;
  font-size: 3em;
  font-family: var(--font-lato-bild);
  padding-bottom: 15px;
  letter-spacing: -.02em;
  text-transform: capitalize;
  color: var(--midnight-blue);

}

.tabs-section__description {
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue);
  /* margin-bottom: 10px; */
}

.tabs-section__feature {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--gainsboro);
  padding: 1.5rem 0;
}

.tabs-section__feature:last-child {
  border: none;
}

.tabs-section__feature-icon img {
  width: 18px;
  margin-top: 10px;
}

.tabs-section__feature-text h3 {
  color: var(--midnight-blue);
  text-transform: capitalize;
  font-family: var(--font-lato-bild);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
  padding-bottom: 10px;
}

.tabs-section__feature-text p {
  color: #5e6084;
  margin-bottom: 10px;
  font-family: var(--font-lato-regular);
  font-size: 16px;
  line-height: 1.875rem;
}

.tabs-section__cta {
  padding-left: 33px;
}



.creator-storefronts-top-text {
  color: var(--orange-red);
  font-weight: 600;
}

.creator-storefronts-section {
  padding-top: 0;
}

.creator-storefronts-section__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.creator-storefronts-section__image img {
  width: 100%;
}


.integration-section {
  /* padding-top: 0; */
  background: var(--ghost-white);
}

.integration-section__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* column-gap: 70px; */
}

.integration-section__apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 30px;
}

.integration-section__app {
  display: flex;
  column-gap: 20px;
}

.integration-section__app-icon img {
  width: 70px;
}

.integration-section__app-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--midnight-blue);
  font-family: var(--font-lato-bild);
  line-height: 2.125rem;
  margin-bottom: 10px;
}

.integration-section__app-info p {
  font-weight: 400;
  color: var(--dark-slate-blue);
  font-family: var(--font-lato-regular);
  line-height: 1.875rem;
}

.integration-section__stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}

.integration-section__stats img {
  width: 148px;
}

.integration-section__stats p {
  font-size: 1.1875rem;
  font-family: var(--font-lato-regular);
  font-weight: 400;
  line-height: 1.875rem;
  color: var(--dark-slate-blue);
}

.integration-section__intro {
  padding-right: 70px;
  align-content: center;
}



.free-tools-section__heading {
  text-align: center;
  padding-bottom: 56px;
}

.free-tools-section__tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 40px;
}

.free-tools-section__tool {
  box-shadow: 4px 4px 10px 10px #00000008;
  background: var(--white);
  padding: 20px 40px;
  border-radius: 40px;
  text-decoration: none;
}

.free-tools-section__icon img {
  height: 55px;
  width: 55px;
}

.free-tools-section__info {
  padding-top: 20px;
}

.free-tools-section__info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.125;
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue);
  margin-bottom: 5px;
}

.free-tools-section__info p {
  font-family: var(--font-lato-regular);
  font-weight: 400;
  line-height: 1.875rem;
  color: var(--midnight-blue);
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.free-tools-section__tool__cta {
  text-align: center;
  padding-top: 40px;
}

.free-tools-section {
  /* padding-top: 0; */
}


.platform-features-section__heading {
  text-align: center;
}

.platform-features-section {
  background: var(--ghost-white);
}

.platform-features-section__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}

.platform-features-section__feature {
  background: var(--white);
  padding: 30px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--gainsboro);
  transition: all .22s;
  border-radius: 20px;
  text-decoration: none;
}

.platform-features-section__feature:hover {
  box-shadow: 0 2px 15px #00000014;
}

.platform-features-section__info h3 {
  color: var(--midnight-blue);
  text-transform: capitalize;
  font-family: var(--font-lato-bild);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 10px;
}

.platform-features-section__info p {
  color: var(--midnight-blue-2);
  margin-bottom: 10px;
  font-family: var(--font-lato-regular);
  font-size: 16px;
  line-height: 1.875rem;
}

.platform-features-section__icon img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}



.faq-section__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-section__item.active .faq-section__answer {
  max-height: 500px;
  /* set as per your content size */
}

.faq-section__item.active .faq-section__answer {
  max-height: 500px;
  /* set as per your content size */
}

.nav-rotate--icon--active {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.nav-rotate--icon {
  display: inline-block;
  position: relative;
}



.faq-section__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
  margin-top: 56px;
}

.faq-section__image img {
  width: 100%;
}

.faq-section__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  color: var(--midnight-blue);
  text-align: left;
  text-transform: capitalize;
  font-family: var(--font-lato-bild);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2rem;
  user-select: none;
}

.faq-section__item {
  border-bottom: 1px solid var(--orange-red);
}

.faq-section__answer p {
  padding-bottom: 1rem;
  font-family: var(--font-lato-regular);
  color: var(--dark-slate-blue);
  line-height: 1.875rem;
  text-align: justify;
  padding-right: 70px;
}

.faq-section__heading {
  text-align: center;
}



.testimonial-section__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
}

.testimonial-section__logo {
  text-align: center;
}

.testimonial-section__logo img {
  width: 100px;
}

.testimonial-section__quote {
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue-2);
  line-height: 1.875rem;
  text-align: center;
  margin-top: 3rem;
}

.testimonial-section__card {
  padding: 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-section__author-img img {
  width: 4rem;
  border-radius: 50%;
}

.testimonial-section__author-img {
  text-align: center;
}

.testimonial-section__author-info h3 {
  font-size: 1.125rem;
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue);
  text-align: center;
  margin-top: 10px;
}

.testimonial-section__author-info p {
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue);
  text-align: center;
  margin-top: 5px;
}



.workflow-section {
  background: var(--ghost-white);
}

.workflow-section__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 30px;
  margin-bottom: 5px;
}

.workflow-section__heading {
  text-align: center;
}

.workflow-section__note {
  text-align: center;
  font-size: 12px;
  font-family: var(--font-lato-regular);
  color: var(--dim-grey);
  font-weight: 400;
}

.workflow-section__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  gap: 20px;
  flex-wrap: wrap;
}

.workflow-section__logos img {
  width: 60px;
}



.footer__top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

ul {
  list-style: none;
}

.footer__top a {
  text-decoration: none;
  color: #f1f5fdcc;
  font-weight: 400;
  transition: all .25s;
  font-family: var(--font-lato-regular);
}

.footer__top a:hover {
  color: #ffffff80;
}

.footer {
  background: var(--midnight-blue-2);
}

.footer__tools-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__tools-title,
.footer__about-title,
.footer__contact-title,
.footer__legal-title,
.footer__social-brand {
  color: #f1f5fdcc;
  font-family: var(--font-lato-bild);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid #ffffff80;
  margin-bottom: 1.5rem;
}

.footer__about-img img {
  width: 100%;
  border-radius: 20px;
}

.footer__office div {
  color: #f1f5fdcc;
  font-family: var(--font-lato-regular);
  margin-bottom: 10px;
  line-height: 1.5rem;
}

.footer__office {
  margin-bottom: 2rem;
}

.footer__contact-links,
.footer__about-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__about-text {
  font-family: var(--font-lato-bild);
  color: #f1f5fdcc;
  text-align: left;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.875rem;
}

.footer__social-brand {
  margin-top: 2rem;
}

.footer__social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__social-icons img {
  width: 25px;
}

.footer__bottom p {
  color: #f1f5fd99;
  font-family: var(--font-lato-regular);
  font-size: 14px;
  text-align: center;
}

.footer__bottom {
  padding: 15px 0;
  border-top: 1px solid #f1f5fd99;
}

.hero-section__container--influncer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
}

.hero-section__image {
  width: 100%;
}

.hero-section__content {
  align-content: center;
}

.bg-gray {
  background: var(--ghost-white);
}

.campaign-tracking-heading {
  text-align: center;
}

.campaign-tracking-description {
  text-align: center;
  line-height: 1.5rem;
}

.campaign-tracking-image {
  margin-top: 56px;
}

.hypeauditor-section {
  background: #172B6F;
}

.hypeauditor-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.hypeauditor-left-inner {
  background: var(--white);
  position: relative;
  padding: 48px 58px 48px 183px;
  border-radius: 6px;
  overflow: hidden;
}

.hypeauditor-img {
  position: absolute;
  left: -100px;
  bottom: -2px;
  height: 100%;
}

.hypeauditor-left-desc {
  margin: 20px 0 32px;
  font-family: var(--font-lato-regular);
  color: var(--dim-grey);
  font-weight: 500;
  line-height: 1.5rem;
}

.hypeauditor-left-heading {
  font-family: var(--font-lato-bild);
  font-size: 25px;
  color: var(--midnight-blue);
  line-height: 1.5rem;
}

.hypeauditor-right-desc {
  margin-bottom: 32px;
  color: var(--white);
  font-family: var(--font-lato-regular);
  font-weight: 500;
}

.hypeauditor-right-heading {
  color: var(--white);
}

.testimonial-image-wrapper img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-name {
  font-size: 24px;
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue);
  margin-bottom: 5px;
}

.testimonial-company {
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue);
}

.testimonial-card {
  background: #f3f3f3;
  padding: 30px 25px;
  width: 480px;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  margin-left: 20px;
}

.testimonial-container {
  overflow: hidden;
}

.testimonial-text {
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue-2);
  line-height: 1.5rem;
  margin-top: 1rem;
  text-align: justify;
}

.testimonial-heading,
.testimonial-subheading,
.competitor-heading,
.competitor-description {
  text-align: center;
}

.testimonial-scroll-track {
  margin-top: 20px;
}


.platform-features-section__features--reporting {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-section {
  position: relative;
  z-index: -1;
}

.clipboard {
  width: 80px;
  height: 80px;
  background: #EBEFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.clipboard img {
  width: 30px;
}

.competitor-inner-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
}

.competitor-text-block,
.competitor-image {
  align-content: center;
}

.competitor-image img {
  width: 100%;
}


.features-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  padding-top: 100px;
}

.feature-title {
  font-family: var(--font-lato-bild);
  font-weight: 600;
  color: var(--midnight-blue);
  margin: 10px 0;
}

.feature-description {
  font-family: var(--font-lato-regular);
  font-weight: 500;
  color: var(--midnight-blue-2);
  opacity: .7;
  line-height: 1.4;
}

.feature-icon {
  color: #1e48cf;
}

.hypeauditor--images {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 1vw; */
  padding-top: 50px;
  flex-wrap: wrap;
}

.hypeauditor--images img {
  width: 180px;
}

.reduce-img,
.blog-card__image {
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.reduce-img img,
.blog-card__image img {
  object-fit: cover;
  display: block;
}

.blog-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 70px;
}

.blog-card__image img {
  width: 100%;
}

.blog-bp {
  padding-bottom: 56px;
}

.blog-card__category a {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gainsboro);
  font-family: var(--font-lato-regular);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  border-radius: 5px;
  margin: 1rem 0;
}

.blog-card__title a {
  color: var(--midnight-blue);
  text-decoration: none;
  font-family: var(--font-lato-bild);
  font-weight: 800;
  font-size: 18px;
}

.blog-card__title a:hover {
  text-decoration: underline;
  color: #1e48cf;
}

.blog-card__meta {
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue);
  font-size: 12px;
  opacity: .7;
  margin-top: 20px;
}

.blog-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 2rem;
}

.blog-section__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-lato-regular);
  font-weight: 500;
  flex-wrap: wrap;
}

.blog-section__nav a {
  color: var(--midnight-blue);
  text-decoration: none;
}

.blog-section__nav a:hover {
  color: #1e48cf;
}

.search-input__container {
  position: relative;
}

.search-input__container input {
  width: 350px;
  padding: 10px 10px;
  outline: none;
  border: 1px solid var(--dim-grey);
  border-radius: 5px;
}

.search-input__container input:focus {
  border-color: var(--orange-red);
}

.blog-h2--heading {
  text-decoration: none;
  color: var(--midnight-blue);
}

.blog-h2--heading:hover {
  color: #1e48cf;
}

.search-input__container .search-icon {
  display: inline-flex;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: 50px;
  background: var(--orange-red);
  border-radius: 5px;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.featured-label {
  font-family: var(--font-lato-regular);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.blog--mini-heading-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 1em;
}

.blog--mini-heading {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-lato-bild);
}

.blue-text {
  color: #1e48cf;
}

.red-text {
  color: #e23232;
}

.orange-text {
  color: var(--orange-red);
}

.purple-text {
  color: #9c2ccf;
}

.blog--mini-heading-box a {
  display: flex;
  align-items: center;
  gap: 1px;
  font-family: var(--font-lato-bild);
  font-weight: 500;
  text-decoration: none;
}

.blog--mini-heading-box a:hover {
  text-decoration: underline;
}

.brand-logos-section__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-logos-section__logos img {
  width: 150px;
}

.brand-logos-section__heading {
  text-align: center;
  margin-top: 100px;
}

.brand-logos-section--cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logos-section__subtext {
  text-align: center;
  margin-top: 1rem;
}


.hero-section__input-wrapper input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 25px;
  border-radius: 10px;
  outline: none;
  background: var(--white);
  border: none;
  font-size: medium;
  margin-bottom: 20px;
}

.hero-section__input-group button,
.hero-section__extension-link a {
  width: 100%;
}

.hero-section__extension-link {
  margin: 30px 0;
}

.hero-section__extension-link a {
  display: flex;
  border: 1px solid var(--orange-red);
  text-align: center;
  color: var(--orange-red);
  text-transform: capitalize;
  align-items: center;
  gap: 10px;
}

.hero-section__feature img {
  width: 17px;
  display: block;
}

.hero-section__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--midnight-blue);
  font-weight: 500;
  font-family: var(--font-lato-regular);
}

.hero-section__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.influencer-card {
  display: flex;
  justify-content: space-between;
  background: var(--white);
  box-shadow: 0px 0px 10px #00000014;
  border-radius: 10px;
}

.influencer-card__image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--azure);
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.influencer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.influencer-card__top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
}

.influencer-card__metric {
  display: flex;
  align-items: center;
  gap: 16px;
}

.influencer-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  max-width: 240px;
  width: 100%;
  border-left: 1px solid var(--ghost-white);
}

.influencer-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.influencer-card__metric:first-child .influencer-card__icon {
  background: #FCE5E6;
  color: var(--orange-red);
}

.influencer-card__metric:last-child .influencer-card__icon {
  background: #DFF7E9;
  color: #55D38D;
}

.influencer-card__name {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue);
  opacity: .8;
}

.influencer-card__handle {
  font-weight: 500;
  font-family: var(--font-lato-regular);
  color: #9c2ccf;
  text-decoration: none;
  margin: 5px 0;
  display: inline-block;
}

.influencer-card__bio {
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue-2);
  opacity: .7;
  font-weight: 500;
  line-height: 1.3;
}

.influencer-card__value {
  font-size: 18px;
  font-family: var(--font-lato-bild);
  font-weight: 500;
  color: var(--midnight-blue-2);
  opacity: .7;
}

.influencer-card__label {
  font-family: var(--font-lato-regular);
  font-size: 13px;
  color: var(--midnight-blue-2);
  opacity: .8;
  margin-top: 5px;
}


.card {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.title {
  font-size: 16px;
  font-weight: bold;
  color: #3d3d3d;
}

.subtitle {
  font-size: 12px;
  color: #9a9a9a;
  margin-bottom: 10px;
}

.value {
  font-size: 20px;
  font-weight: bold;
  color: #3d3d3d;
}

.growth {
  font-size: 12px;
  color: #29aa75;
  margin-top: 4px;
}

#lineChart {
  width: 100%;
  height: 150px;
}

.influencer-stats {
  display: flex;
  margin-top: 25px;
  gap: 20px;
}

.influencer-stats__fake-followers {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-section__container--influncer--insta {
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 70px;
}

.fake-followers__note {
  text-align: center;
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue-2);
  opacity: .7;
  margin-top: 10px;
}

/* Green stroke hover lighten */
.apexcharts-radialbar-slice-0 {
  /* transition: stroke 0.3s ease; */
  cursor: pointer;
}

.apexcharts-radialbar-slice-0:hover {
  stroke: rgba(162, 227, 184, 0.5);
  /* Lighter green */
}

/* Remove top border line */
.apexcharts-ycrosshairs {
  display: none !important;
}

.influencer-stats__fake-followers {
  max-width: 300px;
  width: 100%;
}

.apexcharts-canvas {
  margin: 0 auto;
  text-align: center;
}

.influencer-stats__fake-followers {
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  /* gap: 10px; */
}

.fake-followers__title {
  font-size: 18px;
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue-2);
  opacity: .7;
}

.fake-followers__subtitle {
  font-size: 13px;
  font-family: var(--font-lato-bild);
  font-weight: 600;
  opacity: .6;
  margin-top: 10px;
}

.followers-card__growth {
  float: right;
  font-family: var(--font-lato-bild);
  font-weight: 600;
  color: #29aa75;
}

.followers-card__value {
  float: left;
  font-size: 21px;
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue);
}

.followers-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}

.followers-stats__chart {
  background: var(--white);
  width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
  flex-shrink: 0;
}

.followers-stats__country-img {
  width: 1.5rem;
}

.followers-stats__section {
  background: var(--white);
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
}

.followers-stats__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-lato-bild);
  font-weight: 500;
  color: var(--midnight-blue-2);
}

.followers-stats__country {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.followers-stats__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.followers-stats__country-name,
.followers-stats__value {
  opacity: .7;
}

.followers-stats__progress {
  width: 100px;
  flex-shrink: 0;
  background: var(--ghost-white);
  height: 8px;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

.followers-stats__progress::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 2rem;
}

.stats__progress--brazil::after {
  width: 12.1%;
  background: var(--orange-red);
}

.stats__progress--india::after {
  width: 8%;
  background: #652ccf;
}

.stats__progress--indonesia::after {
  width: 7.4%;
  background: #55D38D;
}

.stats__progress--united::after {
  width: 7.1%;
  background: #00CFE8;
}

.stats__progress--italy::after {
  width: 5.3%;
  background: #652ccf;
}

.followers-stats__percentage {
  display: flex;
  align-items: center;
  gap: 15px;
}

.followers-stats__value {
  width: 60px;
}

.chart-box {
  position: relative;
}

.chart-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chart-text span {
  display: block;
}

.audience-sales-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  gap: 20px;
}

.sales-comparison {
  background: var(--white);
  width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
  flex-shrink: 0;
}

.audience-age {
  display: flex;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
}

.audience-age__subtitle {
  font-size: 13px;
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue-2);
  opacity: .7;
  margin-top: 5px;
}

.audience-age__highlight {
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue-2);
  opacity: .7;
  margin-top: 50px;
}

.audience-age__chart {
  width: 190px;
}

.avg--number {
  font-size: 20px;
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue-2);
  display: block;
  text-align: center;
  margin-bottom: 5px;
}

.avg--text {
  font-family: var(--font-lato-bild);
  font-size: 13px;
  color: #29aa75;
  display: block;
  text-align: center;
}

.sales-comparison__content {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.sales-comparison__vs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}

.sales-comparison__vs span:first-child {
  height: 100%;
  width: 1px;
  background: #e6e6e6;
  margin: auto;
}

.sales-comparison__vs span:last-child {
  height: 100%;
  width: 1px;
  background: #e6e6e6;
  margin: auto;
}

.sales-comparison__vs-text {
  font-family: var(--font-lato-bild);
  font-size: 12px;
  color: var(--midnight-blue-2);
  opacity: .7;
  border: 1px solid var(--ghost-white);
  border-radius: 50%;
  padding: 5px;
  background: #e6e6e6;
}

.sales-comparison__icon {
  width: 32px;
  height: 32px;
  background: #D9F8FC;
  display: inline-flex;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  color: #00CFE8;
}

.sales-comparison__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sales-comparison__label,
.sales-comparison__value {
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue-2);
  opacity: .7;
}

.sales-comparison__value {
  font-size: 18px;
  margin-top: 15px;
}

.sales-comparison__footer {
  width: 100%;
  height: 8px;
  background: #652ccf;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  margin-top: 1rem;
}

.sales-comparison__footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: #00CFE8;
}

.hero-section__image--influncer {
  overflow-x: auto;
}

.hero-section__image--influncer::-webkit-scrollbar {
  display: none;
}

.agencies-section__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.agencies-section__btn {
  border: 1px solid var(--midnight-blue);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--midnight-blue);
}

.agencies-section__btn:hover {
  border-color: var(--orange-red);
  color: var(--orange-red);
}

.agencies-section__btn svg {
  display: block;
  color: #e23232;
}

.creator-storefronts-section__features--insta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.creator-storefronts-section__feature:last-child {
  border-bottom: 1px solid var(--gainsboro);
}

.metrics {
  text-align: center;
}

.insta--h3-same {
  font-size: 25px;
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue-2);
  margin-bottom: 10px;
}


.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tabse {
  background-color: #e9efff;
  padding: 6px;
  border-radius: 10px;
  display: inline-flex;
  white-space: nowrap;
  flex-wrap: wrap;
}

.tab-button {
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  background-color: transparent;
  color: #1f3c88;
  font-weight: 500;
  margin: 0 2px;
  display: flex;
  align-items: center;
  font-family: var(--font-lato-regular);
}

.tab-button span {
  background-color: #159f8d;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.tab-button.active {
  background-color: white;
}

.tab-button.active.has-save {
  color: var(--orange-red);
}

.tab-button.active span {
  background-color: var(--orange-red) !important;
}

.plans {
  display: none;
  grid-template-columns: 1fr 1.1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;

}

.plans.active {
  display: grid;
}

.plan {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.plan:hover {
  background: #f7ece9;
}

.pricing-section__plan-title {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-lato-bild);
  color: var(--orange-red);
  margin-bottom: 25px;
}

.pricing-section__price {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue-2);
  margin-bottom: 5px;
}

.pricing-section__price-note {
  font-weight: 500;
  font-size: 16px;
}

.pricing-section__billed-note {
  font-size: 22px;
  font-family: var(--font-lato-regular);
  font-weight: 500;
  color: var(--midnight-blue);
  border-bottom: 1px solid var(--orange-red);
  padding-bottom: 20px;
  margin-bottom: 10px;
  margin-top: 16px;
}

.pricing-section__features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding-top: 10px;
}

.pricing-section__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-lato-bild);
  font-weight: 600;
  font-size: 18px;
}

.pricing-section__btn {
  font-size: small;
  width: fit-content;
}

.pricing-section__plan--mt {
  margin-top: 20px;
}

.orange-bg {
  background: var(--orange-red);
}

.orange-bg:hover {
  background: var(--orange-red);
}

.orange-bg .pricing-section__plan-title,
.orange-bg .pricing-section__price,
.orange-bg .pricing-section__billed-note,
.orange-bg .pricing-section__features li {
  color: var(--white);
}

.orange-bg .pricing-section__btn {
  background: var(--white);
  color: var(--orange-red);
  border: none;
}

.orange-bg .pricing-section__btn:hover {
  color: var(--midnight-blue);
}

.click-down {
  display: block;
  width: fit-content;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  margin: auto;
  margin-top: 40px;
}

.compare-heading {
  text-align: center;
}

.compare-wrapper {
  display: grid;
  grid-template-columns: 2.25fr 1fr 1fr 1fr 1fr;
  margin-top: 50px;
}

.compare-title {
  font-family: var(--font-lato-bild);
  font-size: 25px;
  color: var(--midnight-blue-2);
  font-weight: 600;
  border-bottom: 1px solid var(--gainsboro);
  padding: 12px 0;
}

.compare-title-mini {
  font-family: var(--font-lato-bild);
  font-size: 18px;
  color: var(--midnight-blue-2);
  font-weight: 700;
  text-align: center;
}

.compare-value {
  text-align: center;
}

.compare-value img {
  width: 1.3rem;
  margin: 0 2px;
}

.compare-title-mini,
.compare-value {
  border-left: 1px solid var(--gainsboro);
  border-bottom: 1px solid var(--gainsboro);
  padding: 12px 0;
}

.compare-title-mini {
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 1;
}

.compare-info {
  border-bottom: 1px solid var(--gainsboro);
  padding: 12px 0;
}

.compare-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-lato-regular);
  font-weight: 500;
  padding-right: 1rem;
}

.compare-info img {
  display: block;
}


.compare-label {
  color: var(--midnight-blue);
}

.compare-value {
  font-family: var(--font-lato-regular);
  font-weight: 500;
  color: var(--midnight-blue);
  padding-right: 1rem;
  padding-left: 1rem;
}

.main-compare {
  overflow-x: auto;
  padding-bottom: 50px;
}

.compare-value,
.compare-label,
.compare-title,
.compare-title-mini {
  white-space: nowrap;
}

.tooltip-wrapper {
  position: relative;
}

.tooltip {
  position: absolute;
  top: 0;
  background: var(--midnight-blue);
  color: var(--white);
  padding: 10px;
  width: 250px;
  height: auto;
  white-space: unset !important;
  font-family: var(--font-lato-regular);
  line-height: 1.5;
  display: none;
  user-select: none;
  border-radius: 10px;
  left: 110%;
  z-index: 10;
  font-size: 12px;
}

.tooltip.show {
  display: block;
}

.tooltip-wrapper {
  cursor: pointer;
}

.conversions {
  font-family: var(--font-lato-bild);
  font-weight: 600;
  color: var(--orange-red);
  margin-bottom: 20px;
  font-size: 18px;
}

.free-tools-section__tools-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.free-tools-section__tools-pricing .free-tools-section__tool:hover {
  background: #fbfffd;
}

.free-tools-section__tools-pricing .free-tools-section__icon {
  width: 60px;
  height: 60px;
  background: #FFE8DD;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.free-tools-section__tools-pricing .free-tools-section__icon img {
  width: 35px;
  object-fit: contain;
}

.demo-heading,
.demo-subtext {
  text-align: center;
}

.demo-subtext {
  font-family: var(--font-lato-regular);
  color: var(--midnight-blue);
}

.hero-section__buttons--demo {
  text-align: center;
  margin-top: 16px;
}

.brands-market {
  text-align: center;
}

.marketing-box {
  background: var(--white);
  border: 1px solid var(--gainsboro);
  padding: 30px 20px;
  border-radius: 10px;
  transition: all .3s ease-in;
}

.marketing-box:hover {
  box-shadow: 0px 5px 10px #0000004d;
  transform: translateY(-10px);
}

.marketing-try--it a {
display: inline-flex;
align-items: center;
gap: 10px;
width: fit-content;
font-family: var(--font-lato-bild);
color: var(--orange-red);
font-weight: 600;
margin-top: 1rem;
text-decoration: none;
position: relative;
}

.marketing-try--it a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--orange-red);
  bottom: -3px;
  left: 0;
  transition: all .2s ease-in;
}

.marketing-try--it a:hover::after {
  width: 100%;
}

.marketing-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.features-section-merketing {
  padding-top: 50px;
}

.hero-solution-content,
.minto-hero-heading-box {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.solution-heading,
.solution-description {
  text-align: center;
}

.solution-buttons a {
  margin: auto;
}

.clip-mt {
  margin-top: 2rem;
}

.hero-solution-image {
  margin-top: 50px;
}

.hero-solution-image img {
  width: 100%;
}

.hero-section__container--influncer2 {
  margin-top: 50px;
}

.monitor-title-h3 {
  font-family: var(--font-lato-bild);
  font-size: 20px;
  color: var(--midnight-blue-2);
  margin-bottom: 10px;
}

.section__container--monitor {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 50px;
  border-radius: 10px;
}

.monitor-section {
  margin-top: 100px;
}

.monitor-feature-image img {
  width: 100%;
}

.monitor-feature-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.col-span2 {
  grid-column: span 2;
}

.feature-box {
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.monitor-feature-text {
  padding: 3rem 2.5rem;
  padding-bottom: 0;
}

.monitor-cta {
  margin-bottom: 50px;
}

.monitor-feature-image {
  align-content: end;
}

.media-monitor-faq-section {
  padding-top: 100px;
}

.media-monitor-faq-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--midnight-blue-2);
  text-align: center;
  font-family: var(--font-lato-bild);
}

.media-monitor-faq-section {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.media-monitor-faq-question {
  font-family: var(--font-lato-bild);
  font-size: 18px;
  color: var(--midnight-blue-2);
  margin-bottom: 10px;
}

.media-monitor-faq-answer {
  font-family: var(--font-lato-regular);
  font-size: 18px;
  color: var(--midnight-blue-2);
  line-height: 1.3;
}

.media-monitor-faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #dddddd;
  padding-top: 30px;
}

.media-monitor-faq-item:last-child {
  border: none;
}

.media-monitor-faq-list {
  margin-top: 20px;
}

.solution-description-cm {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.features-section-cm-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.features-section-cm {
  margin-top: 100px;
}

.media-monitor-faq-title-cm {
  text-align: left;
}

.media-plan-faq-section {
  max-width: 800px;
  width: 100%;
  margin: auto;
  margin-top: 100px;
}

.media-plan-faq-section-main-title {
  font-family: var(--font-lato-bild);
  color: var(--midnight-blue-2);
  font-size: 28px;
  text-align: center;
}


.media-plan-question {
  font-family: var(--font-lato-bild);
  font-size: 16px;
  color: var(--midnight-blue-2);
  margin-bottom: 5px;
}

.media-plan-faq-item {
  padding: 20px 0;
  padding-top: 30px;
  border-bottom: 1px solid #dddddd;
}

.media-plan-answer,
.media-plan-steps-list li {
  font-family: var(--font-lato-regular);
  font-weight: 500;
  color: #797979;
  font-size: 17px;
  line-height: 1.3;
  /* opacity: .7; */
}

.media-plan-steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-left: 1rem;
  margin-bottom: 20px;
}

.media-plan-steps-list li a {
  color: var(--orange-red);
  opacity: 1;
}

.media-plan-faq-item:last-child {
  border: none;
}

.creator-storefronts-section__image {
  align-content: center;
}

.free-tools-section__tools-ic {
  margin-top: 30px;
}

.td-none {
  text-decoration: none;
}

.influcer-box-ic {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tools-section__tools-ic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.free-tools-section__icon-ic {
  padding: 15px;
  background: #FFE8DD;
  display: block;
  width: fit-content;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.free-tools-section__icon-ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.blog-tab {
  background: transparent;
  border: none;
  font-size: 16px;
  padding: 10px 15px;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #555;
}

.blog-tab:hover:not(.active) {
  color: var(--orange-red); /* ya koi hover color */
}

.blog-tab.active {
  color: #ffffff; /* active color */
  background: var(--orange-red);
  border-color: var(--orange-red);
}



.blog-main-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-tab {
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid var(--midnight-blue-2);
  height: 43px;
}

.blog-section__tabs {
  display: flex;
  gap: 15px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.blog-card__meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--orange-red);
  font-family: var(--font-lato-regular);
}

.blog-card__meta div img {
  display: block;
}

.blog-card__title-is a {
  color: var(--midnight-blue);
  text-decoration: none;
  font-family: var(--font-lato-bild);
  font-weight: 800;
  font-size: 18px;
}

.blog-card__image {
  overflow: hidden;
  display: block;
}

.blog-card__image img {
  transition: all .3s linear;
}

.blog-card__image:hover img {
  transform: scale(1.2);
}

.hidden {
  display: none;
}


@media only screen and (max-width: 900px) {
  .header__nav {
    position: fixed;
    width: 100%;
    top: 120px;
    padding: 2rem 15px;
    left: 0;
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    max-height: calc(100% - 100px);
    overflow-y: auto;
  }

  .plans {
    grid-template-columns: 1fr 1fr;
  }

  .free-tools-section__tools-pricing {
    grid-template-columns: 1fr;
  }

  .pricing-section__plan--mt {
    margin-top: 0px;
  }

  .hero-section__container--influncer--insta {
    grid-template-columns: 1fr;
  }

  .features-section {
    padding-top: 80px;
  }

  .competitor-inner-content {
    display: flex;
    flex-direction: column-reverse;
  }

  .menu-active {
    transform: translateY(0);
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
  }

  .header__wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .header__logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header {
    min-height: 120px;
    height: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__item--has-dropdown-wrap {
    width: 100%;
    justify-content: space-between;
    height: fit-content;
  }

  .dropdown-menu-cont {
    position: static;
    visibility: visible;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .dropdown-menu-cont--active {
    max-height: 1000px;
  }

  .dropdown-menu-cont {
    border-bottom: 0;
  }

  .dropdown-menu {
    border-top: 1px solid var(--ghost-white);
    border-bottom: 1px solid var(--ghost-white);
    padding: 1rem 0;
    margin-top: 1rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .menu--btn {
    width: 30px;
    height: 30px;
    /* background-color: red; */
    position: relative;
  }

  .menu--line {
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--midnight-blue);
    transition: all .2s ease;
  }

  .line--one {
    top: 8px;
    right: 0;
    transform-origin: top right;
  }

  .line--two {
    bottom: 8px;
    right: 0;
    transform-origin: top right;
  }

  .btn-active .line--two {
    transform: rotate(23deg);
  }

  .btn-active .line--one {
    transform: rotate(-23deg);
  }

  .hero-section__content-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .container-pd {
    padding: 60px 15px;
  }

  .wrapper {
    margin-top: 50px;
  }

  .creator-storefronts-section {
    padding-top: 0;
  }

  .tabs-section__tab5-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .creator-storefronts-section__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .integration-section__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }

  .free-tools-section__tools,
  .platform-features-section__features,
  .faq-section__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  .free-tools-section__heading {
    padding-bottom: 20px;
  }

  .testimonial-section__wrapper {
    gap: 20px;
  }

  .testimonial-section__card {
    padding: 0 20px;
  }

  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .btn--login {
    display: none;
  }

  .btn--login--mob {
    display: block;
    font-family: var(--font-lato-regular);
    color: var(--midnight-blue);
    font-size: 19px;
    text-decoration: none;
    cursor: pointer;
  }

  .colunm-revs {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .hero-section__container--influncer {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .hypeauditor-flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }

  .blog-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-logos-section__heading {
    margin-top: 80px;
  }

  .container-wd.blog-bp {
    row-gap: 1rem;
  }

  .creator-storefronts-section__features--insta {
    grid-template-columns: repeat(1, 1fr);
  }

  .features-section {
    gap: 20px;
  }

  .monitor-feature-wrapper {
    display: flex;
    flex-direction: column;
  }

}


@media only screen and (max-width: 768px) {

  .tabs,
  .agencies-section__buttons {
    flex-direction: column;
  }

  .plans {
    grid-template-columns: 1fr;
  }

  .hero-section__heading {
    font-size: 35px;
  }

  .same-btn {
    font-size: 13px;
  }

  .same--heading2 {
    font-size: 1.7rem;
    line-height: 1.5;
  }

  .tabs-section__feature-text h3 {
    font-size: 1.2rem;
  }

  .tabs-section__feature {
    padding-bottom: 1.2rem 0;
  }

  .integration-section__app-info h3,
  .free-tools-section__info h4 {
    font-size: 1.2rem;
  }

  .free-tools-section__info {
    padding-top: 15px;
  }

  .footer__top {
    grid-template-columns: repeat(1, 1fr);
  }

  .dropdown-menu__image img {
    width: 100%;
  }

  .hypeauditor-left-inner {
    background: var(--white);
    position: relative;
    padding: 20px 20px 191px 20px;
    border-radius: 6px;
    overflow: hidden;
  }

  .hypeauditor-img {
    left: 50%;
    height: 150px;
    transform: translateX(-50%);
  }

  .features-section {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }

  .blog-section__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .influencer-stats,
  .followers-stats,
  .audience-sales-wrapper,
  .influencer-card {
    flex-direction: column;
  }

  .influencer-stats__fake-followers,
  .followers-stats__chart,
  .sales-comparison {
    margin: auto;
  }

  .influencer-card__metrics {
    padding: 20px;
    padding-top: 0;
  }

  .influencer-card__image {
    width: 70px;
    height: 70px;
  }

  .sales-comparison,
  .followers-stats__chart,
  .influencer-stats__fake-followers {
    width: 100%;
    max-width: inherit;
  }

  .insta--h3-same {
    font-size: 20px;
  }

  .features-section-cm-box {
    grid-template-columns: 1fr;
  }

  .tools-section__tools-ic,
  .blog-main-cont {
    grid-template-columns: 1fr;
  }

  .influcer-box-ic {
    flex-direction: column;
  }

}

@media only screen and (max-width: 550px) {
  .integration-section__apps {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }

  .testimonial-section__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }

  .testimonial-section__quote {
    margin-top: 1rem;
  }

  .dropdown-menu__list {
    grid-template-columns: 1fr;
  }

  .faq-section__answer p {
    padding-right: 10px;
    text-align: left;
  }

  .integration-section__intro {
    padding-right: 0;
  }

  .header__actions {
    gap: 18px;
  }

  .testimonial-card {
    width: 280px;
  }

  .followers-stats__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .audience-age {
    flex-direction: column;
    gap: 20px;
  }

  .audience-age__highlight {
    margin-top: 20px;
  }

  .tabse,
  .blog-section__tabs {
    flex-direction: column;
  }

  .blog-section__tabs {
    width: 100%;
  }

  .blog-section__tabs button {
    width: fit-content;
  }

  .blog-section__header {
    margin-bottom: 40px;
  }
}


@media only screen and (max-width: 375px) {
  .same-btn {
    padding: 0 13px;
    height: 40px;
  }

  .integration-section__app-icon img {
    width: 50px;
  }

  .integration-section__app {
    flex-direction: column;
  }

  .integration-section__stats img {
    width: 120px;
  }

}