/*==================================Poppins-font==================================*/
@font-face {
  font-family: "PoppinsRegular";
  src: url("../fonts/PoppinsRegular.eot");
  src: url("../fonts/PoppinsRegular.eot") format("embedded-opentype"), url("../fonts/PoppinsRegular.woff2") format("woff2"), url("../fonts/PoppinsRegular.woff") format("woff"), url("../fonts/PoppinsRegular.ttf") format("truetype"), url("../fonts/PoppinsRegular.svg#PoppinsRegular") format("svg");
}
@font-face {
  font-family: "PoppinsBold";
  src: url("../fonts/PoppinsBold.eot");
  src: url("../fonts/PoppinsBold.eot") format("embedded-opentype"), url("../fonts/PoppinsBold.woff2") format("woff2"), url("../fonts/PoppinsBold.woff") format("woff"), url("../fonts/PoppinsBold.ttf") format("truetype"), url("../fonts/PoppinsBold.svg#PoppinsBold") format("svg");
}
html, body {
  height: 100%;
  font-size: 16px;
  color: #000;
}

a {
  text-decoration: none !important;
  color: #333;
  outline: none !important;
}

* {
  transition: 0.7s;
}

.btn-apply {
  color: #fff !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: 1px solid #7438ff !important;
  background-color: #7438ff !important;
}
.btn-apply:hover {
  background-color: #5e37a1 !important;
  color: #fff !important;
}
@media (max-width: 576px) {
  .btn-apply {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
}

.btn-apply-outline {
  color: #7438ff !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: 1px solid #7438ff !important;
  background-color: transparent !important;
}
.btn-apply-outline:hover {
  background-color: #7438ff !important;
  color: #ffffff !important;
}

header {
  position: fixed;
  display: grid !important;
  font-family: "PoppinsRegular" !important;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  background-color: transparent;
  z-index: 99;
}
header .site-name {
  display: grid;
  font-size: 40px;
  color: #fff;
  margin: auto 0;
  font-family: cursive;
}
header .site-name img {
  width: 180px;
}
header .site-name .light-logo {
  display: none;
}
header .nav-wrapper {
  margin: auto 0;
  text-align: right;
}
header .nav-wrapper nav {
  margin: auto 0;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  display: flex;
  justify-content: end;
}
header .nav-wrapper nav .close {
  position: absolute;
  top: 8px;
  right: 18px;
  display: none;
  z-index: 10;
}
header .nav-wrapper nav .close i {
  font-size: 36px;
  color: #fff;
}
header .nav-wrapper nav .link {
  position: relative;
  color: #ffffff;
  padding: 10px 14px;
  margin-right: 8px;
  display: flex;
  text-transform: uppercase;
}
header .nav-wrapper nav .link:hover {
  color: #212121;
}
header .nav-wrapper nav .link:hover .line {
  transform: scale(1);
}
header .nav-wrapper nav .link i:before {
  line-height: 1.6 !important;
}
header .nav-wrapper nav .link .more {
  margin-top: 22px;
  transition: 0s;
}
header .nav-wrapper nav .link .line {
  position: absolute;
  left: 10px;
  bottom: 0;
  right: 10px;
  height: 3px;
  border-radius: 20px;
  background-color: #212121;
  border-radius: 100px;
  transform: scale(0);
}
header .nav-wrapper nav .dropdown {
  position: relative;
}
header .nav-wrapper nav .dropdown:hover {
  transition-delay: 1s;
}
header .nav-wrapper nav .dropdown:hover .link i {
  display: inline-block;
  transform: rotateX(180deg);
}
header .nav-wrapper nav .dropdown:hover .dropdown-box {
  display: block;
}
header .nav-wrapper nav .dropdown .dropdown-box {
  position: absolute;
  left: 10px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.1882352941);
  display: none;
}
header .nav-wrapper nav .dropdown .dropdown-box .link {
  margin-right: 0;
  color: #212121;
  padding: 12px 16px;
}
header .nav-wrapper nav .dropdown .dropdown-box .link:hover {
  background-color: rgba(0, 236, 212, 0.4);
}
header .nav-wrapper nav .dropdown .dropdown-box .link i:before {
  line-height: 1.6 !important;
}
header .nav-wrapper nav .dropdown .dropdown-box .link .line {
  width: 100%;
  left: 0;
}
header .nav-wrapper nav .active {
  color: #212121;
}
header .nav-wrapper nav .active .line {
  transform: scale(1);
}
header .nav-wrapper nav .influ-btn, header .nav-wrapper nav .brand-btn {
  background-color: #FF5E7D;
  position: relative;
  border: none;
  z-index: 0;
  overflow: hidden;
  font-weight: 600;
}
header .nav-wrapper nav .influ-btn:hover, header .nav-wrapper nav .brand-btn:hover {
  background-color: #212121;
  color: #fff !important;
}
header .nav-wrapper nav .influ-btn:hover:before, header .nav-wrapper nav .brand-btn:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
header .nav-wrapper nav .influ-btn:hover .line, header .nav-wrapper nav .brand-btn:hover .line {
  transform: scale(0);
}
header .nav-wrapper nav .influ-btn:before, header .nav-wrapper nav .brand-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #212121;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
header .nav-wrapper nav .brand-btn {
  background-color: #00ecd4;
  color: #212121;
}
header .btnm {
  display: none;
  margin: auto 0;
}
header .btnm .btnmenu {
  display: block;
  width: 28px;
  float: right;
  margin: auto 0;
  cursor: pointer;
}
header .btnm .btnmenu .bars {
  position: relative;
  display: block;
  height: 3px;
  border-radius: 100px;
  margin-bottom: 5px;
  background-color: #fff;
}
@media (max-width: 992px) {
  header .nav-wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8509803922);
  }
  header .nav-wrapper nav {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 350px;
    padding-top: 32px;
    justify-content: start;
    text-align: center;
    flex-direction: column;
    background-color: #7438ff;
    overflow: scroll;
  }
  header .nav-wrapper nav .close {
    display: block;
  }
  header .nav-wrapper nav .link {
    margin: 0;
    padding: 22px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
  }
  header .nav-wrapper nav .dropdown .dropdown-box {
    position: relative;
    left: 0;
    background-color: transparent;
    width: 100%;
    box-shadow: none;
  }
  header .nav-wrapper nav .dropdown .dropdown-box .link {
    padding: 22px 0;
    color: #fff;
  }
  header .nav-wrapper nav .influ-btn, header .nav-wrapper nav .brand-btn {
    width: 300px;
    margin: 0 auto;
    border-bottom: none;
    padding: 10px 14px;
    margin: 10px auto;
    display: table;
  }
  header .btnm {
    display: block;
  }
}
@media (max-width: 576px) {
  header {
    padding: 0 16px;
  }
}

.light-header header {
  background-color: #ffffff;
  box-shadow: 0 4px 1rem rgba(75, 19, 70, 0.1019607843);
  height: 68px;
}
.light-header header .site-name .dark-logo {
  filter: brightness(100%) invert(1);
}
.light-header header .site-name .light-logo {
  display: none;
}
.light-header header nav .link {
  color: #212121;
}
.light-header header nav .link .line {
  background-color: #212121;
}
.light-header header nav .active {
  color: #7438ff !important;
}
.light-header header nav .influ-btn {
  color: #fff !important;
}
.light-header header .btnm .btnmenu .bars {
  background-color: #4959D8;
}
@media (max-width: 992px) {
  .light-header header nav .link {
    color: #ffffff;
  }
  .light-header header nav .link:hover {
    color: #212121;
  }
  .light-header header nav .link .line {
    background-color: #212121;
  }
  .light-header header nav .active {
    color: #212121 !important;
  }
  .light-header header nav .brand-btn {
    color: #212121;
  }
}
@media (max-width: 576px) {
  .light-header header {
    height: 60px;
  }
}

.scroll-header {
  background-color: #ffffff;
  box-shadow: 0 4px 1rem rgba(75, 19, 70, 0.1019607843);
  height: 68px;
}
.scroll-header .site-name .dark-logo {
  filter: brightness(100%) invert(1);
}
.scroll-header .site-name .light-logo {
  display: none;
}
.scroll-header nav .link {
  color: #212121 !important;
}
.scroll-header nav .link:hover {
  color: #212121 !important;
}
.scroll-header nav .link .line {
  background-color: #4959D8;
}
.scroll-header nav .active {
  color: #7438ff !important;
}
.scroll-header nav .influ-btn {
  color: #fff !important;
}
.scroll-header .btnm .btnmenu .bars {
  background-color: #4959D8;
}
@media (max-width: 992px) {
  .scroll-header nav .link {
    color: #ffffff !important;
  }
  .scroll-header nav .link:hover {
    color: #4959D8;
  }
  .scroll-header nav .link .line {
    background-color: #4959D8;
  }
  .scroll-header nav .active {
    color: #212121 !important;
  }
}
@media (max-width: 576px) {
  .scroll-header {
    height: 60px;
  }
}

.ad-banner {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.5019607843);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: 99;
}
.ad-banner .close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.1882352941);
  border-radius: 5px;
  padding: 6px 10px;
  cursor: pointer;
}
.ad-banner .close i {
  color: #fff;
  font-size: 14px;
}
.ad-banner .banner-container {
  width: 90%;
  height: 90%;
  margin: auto;
  display: flex;
}
.ad-banner .banner-container .banner-image {
  margin: auto;
}
.ad-banner .banner-container .banner-image .banner-desktop {
  width: 80%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ad-banner .banner-container .banner-image .banner-mobile {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero-area {
  position: relative;
  background-color: #7438ff;
  height: 100vh;
}
.hero-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 150px;
  background-image: url(../img/dots_9x3.svg);
  background-repeat: initial;
  background-size: cover;
}
.hero-area .desc .head-title {
  color: #212121;
  font-size: 2.4vw;
  font-weight: bold;
  line-height: 3.6vw;
  margin-bottom: 16px;
}
.hero-area .desc .head-title span {
  color: #00ecd4;
}
.hero-area .desc .sub-title {
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  line-height: initial;
  margin-bottom: 24px;
  display: block;
}
.hero-area .desc .section-btns {
  margin-top: 32px;
  display: inline-grid;
  grid-gap: 1.2rem;
  grid-template-columns: auto auto;
}
.hero-area .desc .section-btns .btn {
  font-weight: bold;
}
.hero-area .desc .section-btns .btn-common {
  background-color: #00ecd4;
  color: #212121;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1607843137);
  padding: 12px 22px;
}
.hero-area .desc .section-btns .btn-common:hover {
  border-color: #00ecd4;
}
.hero-area .desc .section-btns .btn-border {
  position: relative;
  color: #00ecd4;
  border: 2px solid #00ecd4;
  border-radius: 8px;
  text-transform: uppercase;
  padding: 12px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1607843137);
}
.hero-area .desc .section-btns .btn-border:hover {
  color: #212121;
}
.hero-area .desc .section-btns .btn-border:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.hero-area .desc .section-btns .btn-border:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #00ecd4;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.hero-area .intro-img {
  display: flex;
  position: relative;
}
.hero-area .intro-img::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 24px;
  width: 94px;
  height: 150px;
  background-image: url(../img/dots_9x6.svg);
  background-repeat: initial;
  background-size: cover;
  z-index: -1;
}
.hero-area .intro-img img {
  width: 68%;
  margin: auto;
}
@media (max-width: 992px) {
  .hero-area .desc .section-btns .btn {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .hero-area {
    height: -moz-max-content;
    height: max-content;
    padding-top: 90px;
  }
  .hero-area .desc .head-title {
    font-size: 5vw;
    line-height: 5.2vw;
  }
  .hero-area .desc .sub-title {
    font-size: 16px;
  }
  .hero-area .desc .section-btns {
    margin-top: 0;
  }
  .hero-area .desc .section-btns .btn {
    padding: 10px 16px;
    font-size: 12px;
  }
  .hero-area .intro-img::before {
    content: none;
  }
}
@media (max-width: 576px) {
  .hero-area .desc .head-title {
    font-size: 7vw;
    line-height: 8vw;
  }
  .hero-area .desc .section-btns {
    grid-gap: 0.8rem;
  }
  .hero-area .desc .section-btns .btn {
    font-size: 14px;
  }
}

.ACM .head-title {
  line-height: unset !important;
}
.ACM .head-title #acm-features, .ACM .head-title #influencer-features {
  color: #fff;
}
.ACM .head-title span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.ACM .head-title span.cursor.typing {
  animation: none;
}
.ACM .intro-img img {
  width: 90% !important;
}

@keyframes blink {
  0% {
    background-color: #ccc;
  }
  49% {
    background-color: #ccc;
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #ccc;
  }
}
.acm-features, .VA-features {
  position: relative;
  padding: 100px 0 40px;
  background-color: #fff;
}
.acm-features .head-title, .VA-features .head-title {
  color: #7438ff;
  font-size: 2.6vw;
  font-weight: 700;
  line-height: unset;
  margin-bottom: 24px;
}
.acm-features .row, .VA-features .row {
  margin-bottom: 120px;
}
.acm-features ul, .VA-features ul {
  font-size: 18px;
  padding-left: 22px;
}
.acm-features .description, .VA-features .description {
  font-size: 16px;
  color: rgba(33, 33, 33, 0.8);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .acm-features .head-title, .VA-features .head-title {
    font-size: 5vw;
  }
  .acm-features ul, .VA-features ul {
    text-align: left !important;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

#VA-features {
  font-size: 34px;
  font-weight: 600;
}

.VA-features .row {
  margin-bottom: 0 !important;
}
.VA-features .feature-img {
  text-align: center;
}
.VA-features .feature-img img {
  width: 85%;
}
.VA-features .head-title {
  margin-bottom: 12px;
}
.VA-features .first-sec, .VA-features .second-sec, .VA-features .third-sec, .VA-features .fourth-sec, .VA-features .fifth-sec {
  position: relative;
}
.VA-features .first-sec::before, .VA-features .second-sec::before, .VA-features .third-sec::before, .VA-features .fourth-sec::before, .VA-features .fifth-sec::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  height: 180px;
  background-image: url(../img/triangle2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  animation: jumping 9s ease-in-out 2s infinite alternate;
  animation-delay: 1s;
  transition: all 0.9s ease 5s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.VA-features .second-sec::before {
  left: 0;
  right: unset;
  width: 180px;
  height: 180px;
  border-radius: 100px;
  background-color: #7438ff;
  background-image: unset;
}
.VA-features .third-sec::before {
  width: 150px;
  height: 200px;
  animation: spin 4s ease-in-out 2s infinite alternate;
  background-image: url(../img/dots_9x6.svg);
}
.VA-features .fourth-sec::before {
  left: 0;
  right: unset;
  background-image: url(../img/triangle1.svg);
}
.VA-features .fifth-sec::before {
  width: 180px;
  height: 180px;
  border-radius: 100px;
  background-color: #00ecd4;
  background-image: unset;
}
@media (max-width: 768px) {
  .VA-features .row {
    margin-bottom: 80px !important;
  }
  .VA-features .feature-img img {
    width: 100%;
  }
}

.acm-plans .free-tier, .acm-plans .custom-col {
  position: relative;
  z-index: 1;
}
.acm-plans .free-tier:before, .acm-plans .custom-col:before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  left: 12px;
  height: 40%;
  z-index: -1;
  border-radius: 25px 25px 0 0;
  background: linear-gradient(180deg, #9FEEE6, transparent);
}
.acm-plans .free-tier .heading, .acm-plans .custom-col .heading {
  padding: 8px;
  text-align: center;
  color: #00ecd4;
  background-color: #fff;
  border-radius: 25px;
  font-weight: bold;
  margin-bottom: 2.2rem;
  border: 2px solid #00ecd4;
}
.acm-plans .free-tier p, .acm-plans .custom-col p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.acm-plans .free-tier p .tick, .acm-plans .custom-col p .tick {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 30px;
  margin-right: 5px;
  background-color: #fff;
  border: 2px solid #00ecd4;
}
.acm-plans .free-tier p .tick:before, .acm-plans .custom-col p .tick:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  top: 4.5px;
  left: 3px;
  transform: rotateZ(314deg);
  border-left: 2px solid #00ecd4;
  border-bottom: 2px solid #00ecd4;
}
.acm-plans .free-tier .blank, .acm-plans .custom-col .blank {
  color: #00ecd4;
  font-weight: bold;
}
.acm-plans .free-tier .btn-trial, .acm-plans .custom-col .btn-trial {
  background-color: #00ecd4;
  color: #fff;
}
.acm-plans .custom-col:before {
  background: linear-gradient(180deg, #D3C4F8, transparent);
}
.acm-plans .custom-col .heading {
  border-color: #7438ff;
  color: #7438ff;
}
.acm-plans .custom-col p .tick {
  border-color: #7438ff;
}
.acm-plans .custom-col p .tick:before {
  border-color: #7438ff;
}
.acm-plans .custom-col .blank {
  color: #7438ff;
}
.acm-plans .custom-col .btn-custom {
  background-color: #7438ff;
  color: #fff;
}
.acm-plans h2 {
  margin-bottom: 2.2rem;
  line-height: 2.75rem;
}
.acm-plans p {
  color: #707070;
  font-weight: 600;
  margin-bottom: 0;
  padding: 20px 0;
}
.acm-plans .border-bottom {
  border-bottom-style: dashed !important;
}

.influencer-features {
  position: relative;
  padding: 100px 0;
  background-color: #fff;
}
.influencer-features .head-title {
  color: #7438ff;
  font-size: 2.6vw;
  font-weight: 700;
  line-height: unset;
  margin-bottom: 24px;
}
.influencer-features .influencer-detail {
  font-size: 22px;
  color: #212121;
}
@media (max-width: 768px) {
  .influencer-features .head-title {
    font-size: 5vw;
  }
}

.how-we-work {
  position: relative;
  padding: 100px 0 40px;
  background-color: #F5F5F5;
}
@media (max-width: 576px) {
  .how-we-work {
    padding: 60px 0 40px;
  }
}
.how-we-work .first-sec, .how-we-work .second-sec, .how-we-work .third-sec, .how-we-work .fourth-sec, .how-we-work .fifth-sec {
  position: relative;
}
.how-we-work .first-sec::before, .how-we-work .second-sec::before, .how-we-work .third-sec::before, .how-we-work .fourth-sec::before, .how-we-work .fifth-sec::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  height: 180px;
  background-image: url(../img/triangle2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  animation: jumping 9s ease-in-out 2s infinite alternate;
  animation-delay: 1s;
  transition: all 0.9s ease 5s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.how-we-work .second-sec::before {
  left: 0;
  right: unset;
  width: 180px;
  height: 180px;
  border-radius: 100px;
  background-color: #7438ff;
  background-image: unset;
}
.how-we-work .third-sec::before {
  width: 150px;
  height: 200px;
  animation: spin 4s ease-in-out 2s infinite alternate;
  background-image: url(../img/dots_9x6.svg);
}
.how-we-work .fourth-sec::before {
  left: 0;
  right: unset;
  background-image: url(../img/triangle1.svg);
}
.how-we-work .fifth-sec::before {
  width: 180px;
  height: 180px;
  border-radius: 100px;
  background-color: #00ecd4;
  background-image: unset;
}
.how-we-work .py-6 {
  padding: 5.2rem 0;
}
@media (max-width: 576px) {
  .how-we-work .py-6 {
    padding: 3rem 0;
  }
}
.how-we-work .head-title {
  color: #7438ff;
  font-size: 45px;
  font-weight: 700;
  line-height: unset;
  margin-bottom: 24px;
}
@media (max-width: 756px) {
  .how-we-work .head-title .count {
    font-size: 90px !important;
    line-height: 90px !important;
  }
}
@media (max-width: 576px) {
  .how-we-work .head-title {
    font-size: 32px;
  }
  .how-we-work .head-title .count {
    font-size: 70px !important;
    line-height: 80px !important;
  }
  .how-we-work .head-title .text {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}
.how-we-work .head-title .count {
  font-size: 120px;
  line-height: 100px;
  opacity: 0.3;
  margin-right: 16px;
  font-family: Montserrat;
}
.how-we-work .head-title .text {
  font-size: 32px;
  line-height: 38px;
  align-self: center;
}
.how-we-work img {
  width: 80%;
}
.how-we-work .two {
  color: #00ecd4;
}
.how-we-work .three {
  color: #FF5E7D;
}
.how-we-work .four {
  color: #FF7A00;
}
.how-we-work .five {
  color: #4959D8;
}
.how-we-work .desc {
  color: #707070;
  font-size: 20px;
}
@media (max-width: 756px) {
  .how-we-work .desc {
    text-align: center;
  }
}

@keyframes jumping {
  0% {
    transform: translateY(0px) translateX(0) rotate(0) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-10px) translateX(-10px) rotate(20deg) scale(0.8);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-15px) translateX(-15px) rotate(10deg) scale(0.9);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) translateX(-20px) rotate(20deg) scale(0.75);
    opacity: 0.6;
  }
  85% {
    transform: translateY(-25px) translateX(-25px) rotate(20deg) scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-15px) translateX(-15px) rotate(0) scale(0.95);
    opacity: 0.85;
  }
}
@keyframes spin {
  0% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-30px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-30px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0px);
    opacity: 0.85;
  }
}
@media (max-width: 768px) {
  .influencer-heading {
    font-size: 5vw !important;
    line-height: 6vw !important;
  }
}
@media (max-width: 576px) {
  .influencer-heading {
    font-size: 7vw !important;
    line-height: 9vw !important;
  }
}

.about-tool {
  position: relative;
  padding: 80px 0 100px;
  background-color: #fff;
}
.about-tool .head-title {
  color: #7438ff;
  font-size: 3.5vw;
  font-weight: 700;
  line-height: 4.8vw;
  margin-bottom: 24px;
}
.about-tool .carousel .carousel-indicators {
  position: unset;
  flex-direction: column;
  margin-left: 0;
  margin-right: 0;
}
.about-tool .carousel .carousel-indicators [data-bs-target] {
  text-indent: 0;
  width: unset;
  height: unset;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1882352941);
  margin-bottom: 16px;
  padding: 24px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  white-space: nowrap;
  border-top: none;
  border-bottom: none;
}
.about-tool .carousel .carousel-indicators .active {
  background-color: rgba(116, 56, 255, 0.1254901961);
  color: #7438ff;
}
@media (max-width: 992px) {
  .about-tool .carousel .carousel-indicators {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: space-between;
    padding: 4px;
  }
  .about-tool .carousel .carousel-indicators [data-bs-target] {
    padding: 8px 12px;
    margin-right: 16px;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1882352941);
  }
}
.about-tool .carousel .carousel-inner .carousel-item .carousel-caption {
  position: unset;
  color: #212121;
  padding-top: 0;
  padding-bottom: 0;
}
.about-tool .carousel .carousel-inner .carousel-item .carousel-caption p {
  margin: auto 20px 20px;
}
.about-tool .carousel .carousel-inner .carousel-item .carousel-caption p .highlight {
  font-weight: bold;
  color: #7438ff;
  text-transform: uppercase;
}
.about-tool .carousel .carousel-inner .carousel-item img {
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.19);
  margin-bottom: 0.5rem !important;
}
.about-tool .tools-step .step {
  text-align: center;
  transition: 1s;
}
.about-tool .tools-step .step p {
  margin: auto 20px 20px;
}
.about-tool .tools-step .step p .highlight {
  font-weight: bold;
  color: #7438ff;
  text-transform: uppercase;
}
.about-tool .tools-step .step img {
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1882352941);
}
.about-tool .tools-step .two, .about-tool .tools-step .three, .about-tool .tools-step .four {
  display: none;
}
@media (max-width: 992px) {
  .about-tool ul.about-nav {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: space-between;
    padding: 4px;
  }
  .about-tool ul.about-nav li {
    padding: 8px 12px;
    margin-right: 16px;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1882352941);
  }
}
@media (max-width: 768px) {
  .about-tool .head-title {
    font-size: 5vw;
  }
}
@media (max-width: 576px) {
  .about-tool .carousel .carousel-indicators [data-bs-target] {
    font-size: 12px;
    margin-right: 8px;
    padding: 8px;
  }
  .about-tool .tools-step .step p {
    font-size: 14px;
    margin: auto 16px 16px;
  }
}

.schedule {
  padding: 28px 0;
  background: linear-gradient(135deg, #7438ff, #4959D8);
}
.schedule .head-title {
  color: #fff;
  font-size: 2.5vw;
  line-height: 4vw;
}
.schedule .cta {
  background-color: #00ecd4;
  color: #fff;
  font-weight: 600;
  padding: 10px 32px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1882352941);
}
.schedule .cta:hover {
  background-color: transparent;
  border-color: #00ecd4;
  color: #00ecd4;
}

.plans {
  position: relative;
  padding: 80px 0 100px;
  background-color: #fff;
}
.plans .head-title {
  color: #7438ff;
  font-size: 3.5vw;
  font-weight: 700;
  line-height: 4.8vw;
  margin-bottom: 24px;
}
.plans .sub-title {
  color: #212121;
  font-size: 24px;
  font-weight: 400;
  line-height: initial;
  margin-bottom: 24px;
  display: block;
}
.plans .card {
  border: none;
  height: 100%;
  justify-content: space-between;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1882352941);
  border-radius: 8px;
  padding: 24px;
}
.plans .card .heading {
  text-align: center;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: bold;
}
.plans .card ul.features {
  list-style: none;
  padding: 16px 0;
}
.plans .card ul.features li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1882352941);
}
.plans .lite {
  border-bottom: 4px solid #7438ff;
}
.plans .lite .heading {
  color: #7438ff;
}
.plans .lite .btn {
  background-color: #7438ff;
  color: #fff;
}
.plans .lite .btn:hover {
  border-color: #7438ff;
}
.plans .premium {
  border-bottom: 4px solid #FF5E7D;
}
.plans .premium .heading {
  color: #FF5E7D;
}
.plans .premium .btn {
  background-color: #FF5E7D;
  color: #fff;
}
.plans .premium .btn:hover {
  border-color: #FF5E7D;
}
.plans .popular {
  border-bottom: 4px solid #00ecd4;
}
.plans .popular .heading {
  color: #00ecd4;
}
.plans .popular .btn {
  background-color: #00ecd4;
  color: #fff;
}
.plans .popular .btn:hover {
  border-color: #00ecd4;
}
.plans .enterprise {
  border-bottom: 4px solid #FF7A00;
}
.plans .enterprise .heading {
  color: #FF7A00;
}
.plans .enterprise .btn {
  background-color: #FF7A00;
  color: #fff;
}
.plans .enterprise .btn:hover {
  border-color: #FF7A00;
}
@media (max-width: 768px) {
  .plans .head-title {
    font-size: 5vw;
  }
  .plans .sub-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

footer {
  background: #222222;
  padding: 60px 0px 45px;
}
footer h6 {
  font-family: "PoppinsRegular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  color: #00ecd4;
  padding-bottom: 18px;
  margin-bottom: 0;
}
footer .address p {
  width: 87%;
}
footer p, footer a {
  font-family: "PoppinsRegular";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #747474;
  display: inline-block;
}
footer .mail a:hover {
  color: #00ecd4;
}
footer .social-copywright {
  text-align: right;
}
footer .social-copywright ul.social {
  padding: 0px;
  margin: 0px;
  padding-bottom: 18px;
}
footer .social-copywright ul.social li {
  display: inline-block;
  list-style: none;
}
footer .social-copywright ul.social li a {
  font-size: 18px;
  display: block;
  padding: 0px 10px;
  color: #00ecd4;
}
footer .social-copywright ul.social li a:hover {
  color: #00ecd4;
}
footer .social-copywright ul.social li a img {
  width: 18px;
}
footer .social-copywright a:hover {
  color: #00ecd4;
}
@media (max-width: 767px) {
  footer {
    padding: 30px 0px;
    text-align: center;
  }
  footer h6 {
    justify-content: center;
  }
  footer .social-copywright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 15px;
  }
}

.model, .model-edit, .model-resource {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.8666666667);
}
.model:-webkit-scrollbar, .model-edit:-webkit-scrollbar, .model-resource:-webkit-scrollbar {
  width: 2px;
}
.model .new, .model-edit .new, .model-resource .new {
  position: relative;
  padding: 40px 30px;
  border-radius: 5px;
  margin: auto;
  max-width: 576px;
  min-width: 300px;
  background-color: #f9f9f9;
}
.model .new .heading, .model-edit .new .heading, .model-resource .new .heading {
  font-size: 30px;
  font-weight: bold;
  color: #7438ff;
}
.model .new .close, .model-edit .new .close, .model-resource .new .close {
  position: absolute;
  top: 5px;
  right: 8px;
  cursor: pointer;
}
.model .new .close img, .model-edit .new .close img, .model-resource .new .close img {
  width: 20px;
}

.about {
  position: relative;
  margin-top: 70px;
  padding: 90px 0;
  background: url(../img/about_bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(75, 27, 187, 0.8);
  z-index: -1;
}
.about .heading {
  font-size: 4.6vw;
  color: #fff;
  font-weight: 600;
}
.about .subheading {
  font-size: 2.2vw;
  color: #fff;
}
@media (max-width: 576px) {
  .about {
    margin-top: 60px;
  }
  .about .heading {
    font-size: 6vw;
    font-weight: bold;
  }
  .about .subheading {
    font-size: 4vw;
  }
}

.about-section {
  position: relative;
  padding: 80px 0 100px;
  background-color: #fff;
}
.about-section .head-title {
  color: #7438ff;
  font-size: 3.5vw;
  font-weight: 700;
  line-height: 4.8vw;
  margin-bottom: 24px;
}
.about-section .image-box {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin: auto;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.3137254902);
  z-index: 0;
}
.about-section .image-box:before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 98px;
  height: 98px;
  background: url(../img/about-dots.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.about-section .image-box img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
}
.about-section .right-dot:before {
  right: -18px;
  left: unset;
}
.about-section .directors-detail .name {
  font-size: 26px;
  font-weight: bold;
  color: #212121;
  margin-bottom: 8px;
}
.about-section .directors-detail .designation {
  color: #7438ff;
  font-size: 20px;
  margin-bottom: 10px;
  font-style: italic;
}
.about-section .directors-detail .info {
  color: #707070;
  font-size: 16px;
}
.about-section .card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1882352941);
}
.about-section .card:hover {
  transform: translateY(3px);
  box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.1882352941);
}
.about-section .card .blog-image-box {
  height: 170px;
  overflow: hidden;
}
.about-section .card .blog-image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .card .detail {
  padding: 16px;
}
.about-section .card .detail p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}
@media (max-width: 992px) {
  .about-section .image-box {
    width: 150px;
    height: 150px;
  }
  .about-section .image-box img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .about-section .head-title {
    font-size: 6vw;
  }
}

.bg-grey {
  background-color: #F5F5F5;
}

.header-section {
  position: relative;
  margin-top: 70px;
  padding: 40px 0;
  background-color: #7438ff;
}
@media (max-width: 576px) {
  .header-section {
    margin-top: 60px;
  }
}
.header-section .head-title {
  color: #fff;
  font-size: 3.5vw;
  font-weight: 700;
  line-height: 4.8vw;
}

.thanku {
  position: relative;
  margin-top: 70px;
  padding: 40px 0;
  height: 90%;
}
.thanku .thanku-card {
  max-width: 720px;
  min-width: 300px;
  padding: 0 32px 54px;
  display: flex;
  flex-direction: column;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2509803922);
}
.thanku .thanku-card img {
  margin: auto;
  width: 250px;
}
.thanku .thanku-card p {
  margin: auto;
  text-align: center;
  font-size: 18px;
}

.hero-section {
  position: relative;
  background-color: #7438ff;
  height: 100vh;
}
.hero-section::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 100px;
  height: 160px;
  background-image: url(../img/dots_9x6.svg);
  background-repeat: initial;
  background-size: cover;
}
.hero-section .desc .head-title {
  color: #212121;
  font-size: 2.4vw;
  font-weight: bold;
  line-height: 3.6vw;
  margin-bottom: 16px;
}
.hero-section .desc .head-title span {
  color: #00ecd4;
}
.hero-section .desc .sub-title {
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  line-height: initial;
  margin-bottom: 24px;
  display: block;
}
.hero-section .desc .section-btns {
  margin-top: 32px;
  display: inline-grid;
  grid-gap: 1.2rem;
  grid-template-columns: auto auto;
}
.hero-section .desc .section-btns .btn {
  font-weight: bold;
}
.hero-section .desc .section-btns .btn-common {
  background-color: #00ecd4;
  color: #212121;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1607843137);
  padding: 12px 22px;
}
.hero-section .desc .section-btns .btn-common:hover {
  border-color: #00ecd4;
}
.hero-section .desc .section-btns .btn-border {
  position: relative;
  color: #00ecd4;
  border: 2px solid #00ecd4;
  border-radius: 8px;
  text-transform: uppercase;
  padding: 12px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1607843137);
}
.hero-section .desc .section-btns .btn-border:hover {
  color: #212121;
}
.hero-section .desc .section-btns .btn-border:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.hero-section .desc .section-btns .btn-border:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #00ecd4;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.hero-section .intro-img {
  display: flex;
  position: relative;
}
.hero-section .intro-img::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0px;
  width: 113px;
  height: 180px;
  background-image: url(../img/dots_9x6.svg);
  background-repeat: initial;
  background-size: cover;
  z-index: -1;
}
.hero-section .intro-img img {
  width: 100%;
  margin: auto;
}
@media (max-width: 992px) {
  .hero-section .desc .section-btns .btn {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: -moz-max-content;
    height: max-content;
    padding-top: 90px;
  }
  .hero-section .desc .head-title {
    font-size: 5vw;
    line-height: 5.2vw;
  }
  .hero-section .desc .sub-title {
    font-size: 16px;
  }
  .hero-section .desc .section-btns {
    margin-top: 0;
  }
  .hero-section .desc .section-btns .btn {
    padding: 10px 16px;
    font-size: 12px;
  }
  .hero-section .intro-img::before {
    content: none;
  }
}
@media (max-width: 576px) {
  .hero-section .desc .head-title {
    font-size: 7vw;
    line-height: 8vw;
  }
  .hero-section .desc .section-btns {
    grid-gap: 0.8rem;
  }
  .hero-section .desc .section-btns .btn {
    font-size: 14px;
  }
}

section.campaign-section {
  padding: 100px 0px 131px;
  position: relative;
}

section.campaign-section .container-custome {
  position: relative;
  z-index: 1;
}

ul.campaign-company-logo {
  padding: 0px;
  padding-top: 87px;
}

ul.campaign-company-logo li {
  display: inline-block;
  width: 25%;
  float: none;
  vertical-align: middle;
  margin: 0px -2px;
  text-align: center;
  border: 1px solid #dddddd;
  border-left: 0;
  border-top: 0;
}

ul.campaign-company-logo li a {
  display: table;
  width: 100%;
  height: 155px;
  cursor: unset;
}

ul.campaign-company-logo li a:hover {
  filter: grayscale(100%);
  opacity: 0.8;
}

ul.campaign-company-logo li:nth-child(4n) {
  border-right: 0;
}

ul.campaign-company-logo li:nth-last-child(-n+4) {
  border-bottom: 0;
}

.v-mid {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

@media (max-width: 767px) {
  ul.campaign-company-logo li a {
    height: 135px;
  }
  ul.campaign-company-logo li a img {
    width: 95px;
  }
}
@media (max-width: 640px) {
  .campaign-section .iq-objects.banner_obj .iq-objects-02 img {
    width: 50px;
  }
  ul.campaign-company-logo li {
    width: 33.33%;
  }
  ul.campaign-company-logo li:nth-child(4n) {
    border-right: 1px solid #dddddd;
  }
  ul.campaign-company-logo li:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid #dddddd;
  }
  ul.campaign-company-logo li:nth-last-child(-n+4) {
    border-bottom: 1px solid #dddddd;
  }
  ul.campaign-company-logo li:last-child {
    border-bottom: 0;
  }
}/*# sourceMappingURL=main.css.map */