* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@font-face {
  font-family: "GTWalsheimPro-Regular";
  src: url("../fonts/GTWalsheimPro-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "GTWalsheimPro-bold";
  src: url("../fonts/GTWalsheimPro-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "GTWalsheimPro-medium";
  src: url("../fonts/GTWalsheimPro-Medium.ttf");
  font-display: swap;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #000;
  font-family: "GTWalsheimPro-Regular";
}
html {
  scroll-behavior: smooth;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #000;
  -webkit-text-fill-color: #000;
  transition: background-color 5000s ease-in-out 0s;
}
a {
  text-decoration: none;
  color: #2f26ac;
}
li {
  list-style-type: none;
}
.container {
  max-width: 1240px;
  padding: 0px 12px;
  margin: 0 auto;
}
.d-flex {
  display: flex;
}
.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* align-items: flex-start;
  */
}
.pos-rel {
  position: relative;
}
a {
  font-family: "GTWalsheimPro-Regular";
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}
h2 {
  font-family: "GTWalsheimPro-bold";
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
}
p {
  font-family: "GTWalsheimPro-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
}
img {
  max-width: 100%;
}
.flex-direction {
  flex-direction: column-reverse !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-start {
  align-items: start !important;
}
.align-items-end {
  align-items: end !important;
}
.btn {
  display: inline-block;
  color: #fff;
  padding: 12px 22px 12px 22px;
  border: 2px solid #2f26ac;
  background-color: #2f26ac;
  border-radius: 25px;
  cursor: pointer;
}
#content-open {
  display: none;
}
/* header section */
.menu-header .header-block {
  padding: 30px 0px;
  position: relative;
  background: #fff !important;
  backdrop-filter: none !important;
}
.header-block {
  padding: 30px 0px;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  /* backdrop-filter: blur(60px);
  */
}
.header-inner__block {
  align-items: center;
}
.header-inner__block .logo-wrapper {
  width: 16%;
}
@media (max-width: 991px) {
  .header-inner__block .logo-wrapper {
    width: 23%;
  }
}
@media (max-width: 767px) {
  .header-inner__block .logo-wrapper {
    width: 45%;
  }
}
.header-inner__block .navbar {
  width: 64%;
  align-items: center;
  justify-content: end;
}
@media (max-width: 1400px) {
  .header-inner__block .navbar {
    width: 66%;
  }
}
@media (max-width: 1199px) {
  .header-inner__block .navbar {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .header-inner__block .navbar {
    width: 100%;
  }
}
.header-inner__block .navbar .btn-wrapper {
  margin-left: 13px;
}
@media (max-width: 991px) {
  .header-inner__block .navbar .btn-wrapper {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header-inner__block .navbar .btn-wrapper .btn {
    padding: 12px 21px;
  }
}
nav ul {
  padding-left: 0;
}
@media (max-width: 991px) {
  nav ul {
    display: block !important;
    padding-top: 30px;
  }
}
nav ul li {
  flex-grow: 1;
}
nav ul li a {
  padding: 0px 13px;
  display: inline-block;
  font-family: "GTWalsheimPro-bold";
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  nav ul li a {
    display: block;
    padding: 10px 0px;
  }
}
nav ul li a.active {
  color: #2f26ac;
  position: relative;
}
nav ul li a.active::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 2px;
  border-bottom: 1px solid #2f26ac;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 991px) {
  nav ul li a.active::after {
    bottom: 5px;
    left: 0;
    right: unset;
    margin: 0;
  }
  nav {
    position: absolute;
    width: 100%;
    top: 62px;
    background: #fff;
    left: 0;
    z-index: 10;
    opacity: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
  }
}
nav.menu {
  opacity: 1;
  width: 100%;
  padding: 0px 20px;
  transform: translateY(0px);
  backdrop-filter: unset;
}
#hamburger {
  display: none;
  position: relative;
  width: 24px;
}
@media (max-width: 991px) {
  #hamburger {
    display: block;
  }
}
#hamburger.open > div {
  background-color: transparent;
  position: relative;
}
#hamburger.open::after {
  content: "";
  position: absolute;
  top: 0px;
  transform: rotate(45deg);
  border-radius: 30px;
}
#hamburger.open::before {
  content: "";
  position: absolute;
  top: 0px;
  transform: rotate(-45deg);
  border-radius: 30px;
}
#hamburger > div {
  background: #2f26ac;
  transition: all 0.4s ease-out;
  position: relative;
  height: 4px;
  border-radius: 30px;
  width: 24px;
  left: 5px;
}
#hamburger::after,
#hamburger::before {
  content: "";
  position: absolute;
  height: 4px;
  border-radius: 30px;
  width: 24px;
  background: #2f26ac;
  transition: all 0.4s ease-out;
}
#hamburger::after {
  top: 7px;
}
#hamburger::before {
  top: -7px;
}
/*footer*/
.footer-block {
  background-color: #2f26ac;
  padding: 59px 0px 78px 0px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}
@media (max-width: 1199px) {
  .footer-block {
    border-radius: 60px 60px 0px 0px;
  }
}
@media (max-width: 767px) {
  .footer-block {
    padding: 51px 0px 41px 0px;
  }
  .footer-email {
    display: none;
  }
}
.footer-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .footer-content .footer-heading img {
    width: 36px;
  }
}
.footer-content h2 {
  color: #fff;
  padding-right: 13px;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  .footer-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .footer-content h2 {
    font-size: 34px;
  }
}
.footer-content p {
  color: #fff;
}
@media (max-width: 991px) {
  .footer-content p {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .footer-content p {
    font-size: 12px;
    line-height: 16px;
  }
}
.footer-content .d-flex {
  align-items: center;
}
.footer__inner-block {
  padding-top: 32px;
  padding-bottom: 67px;
}
@media (max-width: 991px) {
  .footer__inner-block {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .footer__inner-block {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 0px;
  }
}
.footer__inner-block .form-block {
  width: 40.67%;
}
@media (max-width: 767px) {
  .footer__inner-block .form-block {
    width: 100%;
    max-width: 500px;
  }
}
.footer__inner-block .form-block label {
  display: block;
  color: #fff;
  font-family: "GTWalsheimPro-bold";
  font-size: 25px;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .footer__inner-block .form-block label {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .footer__inner-block .form-block label {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
  }
  .footer__inner-block .input-btn {
    text-align: center;
  }
}
.footer__inner-block .input-group {
  margin-bottom: 27px;
}
@media (max-width: 1199px) {
  .footer__inner-block .input-group {
    margin-bottom: 20px;
  }
}
.footer__inner-block form input {
  padding: 25px 20px 23px 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  font-family: "GTWalsheimPro-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  color: #fff;
}
.footer__inner-block form textarea {
  padding: 25px 20px 23px 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  font-family: "GTWalsheimPro-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  color: #fff;
}
@media (max-width: 1199px) {
  .footer__inner-block form input {
    padding: 17px 20px 17px 20px;
  }
}
@media (max-width: 767px) {
  .footer__inner-block form input {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}
.footer__inner-block form input::placeholder {
  font-family: "GTWalsheimPro-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__inner-block form textarea::placeholder {
  font-family: "GTWalsheimPro-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__inner-block form input[type="submit"] {
  padding: 12px 49px 12px 49px;
  background-color: #fff;
  font-family: "GTWalsheimPro-Regular";
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  max-width: 152px;
  border-radius: 25px;
  color: #2f26ac;
  cursor: pointer;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .footer__inner-block .input-submit {
    display: flex;
    justify-content: center;
    margin-top: 34px;
  }
}
.footer__inner-block .img-wrapper {
  width: 55%;
}
@media (max-width: 1500px) {
  .footer__inner-block .img-wrapper {
    width: initial;
    position: absolute;
    right: 15px;
  }
}
@media (max-width: 1199px) {
  .footer__inner-block .img-wrapper {
    position: unset;
    width: 55%;
  }
}
@media (max-width: 767px) {
  .footer__inner-block .img-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 60px;
  }
}
.footer-bottom__block {
  align-items: center;
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .footer-bottom__block {
    margin-top: 60px;
  }
}
@media (max-width: 991px) {
  .footer-bottom__block {
    margin-top: 44px;
  }
}
@media (max-width: 767px) {
  .footer-bottom__block .logo-wrapper {
    width: 43%;
  }
}
.footer-bottom__block p {
  color: #fff;
  text-align: center;
}
.footer-bottom__block .social-icon {
  align-items: center;
}
.footer-bottom__block .mbl-content {
  display: none;
}
.footer-bottom__block .mbl-content > a > p {
  display: none;
}
@media (max-width: 991px) {
  .footer-bottom__block .content {
    display: none;
  }
  .footer-bottom__block .mbl-content {
    margin-top: 23px;
    display: block;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .footer-bottom__block .mbl-content p {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer-bottom__block .social-icon {
    /* width: 55%; */
    justify-content: end;
  }
  .footer-bottom__block .mbl-content > a > p {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer-bottom__block .social-icon a {
    width: 45px;
  }
}
.hero-banner {
  position: relative;
  padding-top: 47px;
}
@media (max-width: 767px) {
  .hero-banner {
    padding-top: 43px;
  }
}
.hero-banner::after {
  content: "";
  position: absolute;
  width: 517px;
  height: 517px;
  border-radius: 517px;
  opacity: 0.5;
  background: #fdc500;
  filter: blur(250px);
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero-banner::after {
    width: 283px;
    height: 283px;
    border-radius: 283px;
  }
}
.hero-banner__Block .content-block {
  width: 43%;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .hero-banner__Block .content-block {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .hero-banner__Block .content-block {
    padding-top: 0px;
    width: 100%;
  }
}
.hero-banner__Block .content-block h1 {
  font-family: "GTWalsheimPro-bold";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .hero-banner__Block .content-block h1 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .hero-banner__Block .content-block h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero-banner__Block .content-block h1 {
    font-size: 34px;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 14px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .hero-banner__Block .content-block h1 {
    max-width: 292px;
    margin-bottom: 14px;
  }
}
.hero-banner__Block .content-block h1 span {
  color: #2f26ac;
}
.hero-banner__Block .content-block p {
  color: #414141;
  font-size: 18px;
  line-height: normal;
  max-width: 429px;
}
@media (max-width: 767px) {
  .hero-banner__Block .content-block p {
    font-size: 14px;
    text-align: center;
    max-width: 335px;
    margin: 0 auto;
  }
}
.hero-banner__Block .content-block .btn-wrapper {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .hero-banner__Block .content-block .btn-wrapper {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .hero-banner__Block .content-block .btn-wrapper {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .hero-banner__Block .content-block .btn-wrapper .btn {
    padding: 15px 42px;
  }
}
.hero-banner__Block .img-wrapper {
  width: 50%;
}
@media (max-width: 767px) {
  .hero-banner__Block .img-wrapper {
    margin: 0 auto;
    margin-top: 31px;
    width: 100%;
    max-width: 400px;
  }
}
/* reviews block home page 2 section*/
.reviews {
  position: relative;
  top: -41px;
  z-index: 1;
}
.reviews::after {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  border-radius: 488px;
  opacity: 0.5;
  background: rgb(35, 81, 251);
  filter: blur(250px);
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .reviews::after {
    width: 298px;
    height: 298px;
    border-radius: 298px;
  }
}
.reviews .reviews-block {
  align-items: center;
  padding: 107px 99px;
  background-image: url("/assets/img/mask.svg");
  border-radius: 45px;
  box-shadow: 0px 0px 64px 0px rgba(0, 0, 0, 0.08);
  position: relative;
}
@media (max-width: 1199px) {
  .reviews .reviews-block {
    padding: 60px 40px 60px 40px;
  }
}
@media (max-width: 767px) {
  .reviews .reviews-block {
    padding: 48px 27px 0px 27px;
  }
}
.reviews .reviews-block::before {
  content: url("/assets/img/network.png");
  position: absolute;
  width: 100%;
  height: 100%;
  left: -61px;
  top: -66px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .reviews .reviews-block::before {
    content: unset;
  }
}
.reviews .reviews-block::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background: radial-gradient(
      49.9% 49.9% at 50% 50.1%,
      rgba(255, 255, 255, 0.63) 0%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    radial-gradient(
      365.21% 65.71% at 50% 50.1%,
      rgba(255, 255, 255, 0.63) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
  left: 0;
  z-index: 0;
  border-radius: 45px;
  top: 0px;
}
.reviews .reviews-inner-block {
  width: 20%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .reviews .reviews-inner-block {
    width: 40%;
  }
}
.reviews .img-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
}
@media (max-width: 991px) {
  .reviews .img-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .reviews .img-wrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .reviews .img-wrapper img {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .reviews .img-wrapper img {
    width: 82px;
  }
}
.reviews .review-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991px) {
  .reviews .review-content {
    margin-bottom: 57px;
  }
}
.reviews .review-content h2 {
  color: #2f26ac;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1199px) {
  .reviews .review-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .reviews .review-content h2 {
    font-size: 36px;
  }
}
.reviews .review-content h3 {
  color: #000;
  text-align: center;
  font-family: "GTWalsheimPro-bold";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 181px;
}
@media (max-width: 991px) {
  .reviews .review-content h3 {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .reviews .review-content h3 {
    font-size: 10px;
  }
}
.about-us {
  position: relative;
  background-image: url("/assets/img/mask.svg");
}
.about-us::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90px;
  top: 59%;
  z-index: 0;
  background-image: url("/assets/img/about-us-frame-new.png");
  transform: translateY(59%);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1400px) {
  .about-us::after {
    background-size: 100%;
  }
}
@media (max-width: 991px) {
  .about-us::after {
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .about-us::after {
    background-size: 100%;
    top: 61%;
  }
}
.about-us::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 484px;
  background-color: #fff;
  backdrop-filter: blur(107px);
}
.about-us .container {
  position: relative;
  z-index: 1;
  /* max-width: 1300px; */
}
.about-main__block {
  position: relative;
  padding-top: 162px;
}
@media (max-width: 991px) {
  .about-main__block {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .about-main__block {
    padding-top: 60px;
  }
}
.about-main__block::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background: radial-gradient(
      49.9% 49.9% at 50% 50.1%,
      rgba(255, 255, 255, 0.63) 0%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    radial-gradient(
      365.21% 65.71% at 50% 50.1%,
      rgba(255, 255, 255, 0.63) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
  top: 0;
}
.about-us__top-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 67px;
}
.about-us__top-heading .heading {
  display: flex;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .about-us__top-heading .heading img {
    width: 59px;
  }
}
.about-us__top-heading .heading h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 14px;
  margin: 0px 23px 14px 28px;
}
.about-us__top-heading .heading h2 span {
  color: #2f26ac;
}
@media (max-width: 1199px) {
  .about-us__top-heading .heading h2 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .about-us__top-heading .heading h2 {
    font-size: 36px;
    margin: 0px 14px;
  }
}
@media (max-width: 767px) {
  .about-us__top-heading .heading h2 {
    font-size: 34px;
    text-align: center;
  }
}
.about-us__top-heading .content_top {
  max-width: 751px;
  margin: 0 auto;
}
.about-us__top-heading .content_top p {
  color: #414141;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .about-us__top-heading .content_top p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .about-us__top-heading .content_top p {
    font-size: 14px;
  }
}
.about-us__block {
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 1500px) {
  .about-us__block {
    justify-content: space-between;
  }
}
.about-us__inner-block .img-wrapper {
  display: flex;
  justify-content: center;
}
.about-us__block::after {
  content: "";
  position: absolute;
  border-radius: 517px;
  opacity: 0.2;
  width: 517px;
  height: 517px;
  background: #8218ea;
  filter: blur(250px);
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .about-us__block::after {
    content: unset;
  }
  .about-us__block {
    justify-content: space-evenly;
  }
}
.about-us__inner-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22%;
  margin-bottom: 72px;
}
@media (max-width: 575px) {
  .about-us__inner-block {
    margin-bottom: 13px;
  }
}
.about-us__inner-block h3 {
  text-align: center;
  color: #000;
  font-family: "GTWalsheimPro-bold";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .about-us__inner-block h3 {
    font-size: 8px;
  }
}
.about-us__inner-block.flex-direction {
  margin-top: 72px;
  margin-bottom: 0px;
}
.about-us__inner-block.flex-direction h3 {
  margin-top: 0px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .about-us__inner-block.flex-direction h3 {
    margin-bottom: 10px;
  }
  .about-us__inner-block.flex-direction {
    margin-top: 13px;
  }
}
.about-us__inner-block.l-30 {
  left: -30px;
  position: relative;
}
.about-us__inner-block.l-50 {
  left: 50px;
}
.about-us__inner-block.l-60 {
  left: 60px;
}
.about-us__inner-block.l-40 {
  left: -40px;
}
.about-us__inner-block.l-80 {
  left: 80px;
}

@media (max-width: 1400px) {
  .about-us__inner-block.l-80 {
    left: 100px;
  }
  .about-us__inner-block.l-50 {
    left: 0px;
  }
  .about-us__inner-block.l-60 {
    left: -60px;
  }
  .about-us__inner-block.l-100 {
    left: -100px;
  }
  .about-us__inner-block.l-30 {
    left: 0px;
    position: relative;
  }
}
@media (max-width: 991px) {
  .about-us__inner-block.l-80 {
    position: unset;
    left: 100px;
  }
  .about-us__inner-block.l-50 {
    position: unset;

    left: 0px;
  }
  .about-us__inner-block.l-60 {
    position: unset;

    left: -60px;
  }
  .about-us__inner-block.l-100 {
    position: unset;

    left: -100px;
  }
}
.our-services {
  position: relative;
  padding-top: 150px;
  z-index: 2;
}
.our-services h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  position: relative;
}
@media (max-width: 1199px) {
  .our-services h2 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .our-services {
    padding-top: 30px;
  }
  .our-services h2 {
    font-size: 36px;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .our-services h2 {
    font-size: 34px;
  }
}
.our-services .top-heading h2::before {
  content: url("/assets/img/lg-heart.svg");
  position: absolute;
  width: 66.025px;
  height: 75.153px;
  left: 0;
  left: -42px;
  top: -66px;
}
@media (max-width: 991px) {
  .our-services h2::before {
    content: url("/assets/img/heart.svg");
    width: 25px;
    height: 25px;
    left: -40px;
    top: 10px;
  }
}
.our-services h2 span {
  color: #2f26ac;
}
.our-services .top-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .our-services .top-heading {
    padding-bottom: 0;
  }
}
.our-services .top-heading p {
  max-width: 833px;
  margin: 0 auto;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 991px) {
  .our-services .top-heading p {
    max-width: 600px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .our-services .top-heading p {
    font-size: 14px;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .our-services .top-heading p {
    max-width: 305px;
  }
}
.our-service-block {
  margin-top: 63px;
  position: relative;
}
@media (max-width: 991px) {
  .our-service-block {
    margin-top: 40px;
  }
}
.our-service-block::after {
  content: "";
  position: absolute;
  width: 517px;
  height: 517px;
  right: -110px;
  top: 0;
  border-radius: 517px;
  opacity: 0.2;
  background: rgb(104, 0, 60);
  filter: blur(250px);
  z-index: -1;
}
@media (max-width: 1400px) {
  .our-service-block::after {
    right: 0;
  }
}
@media (max-width: 767px) {
  .our-service-block::after {
    content: unset;
  }
}
.our-service-block::before {
  content: "";
  position: absolute;
  width: 517px;
  height: 517px;
  left: -120px;
  bottom: 0;
  border-radius: 488px;
  opacity: 0.2;
  background: #fdc500;
  filter: blur(250px);
  z-index: -1;
}
@media (max-width: 767px) {
  .our-service-block::before {
    content: unset;
  }
}
.our-services__inner-block {
  width: 49%;
  height: 283px;
  border-radius: 50px;
  position: relative;
  background-image: url("/assets/img/services-mask.svg");
  padding: 49px 17px 48px 17px;
  margin-bottom: 19px;
  box-shadow: 0px 0px 64px 0px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .our-services__inner-block {
    padding: 27px 10px;
    height: auto;
  }
}
@media (max-width: 575px) {
  .our-services__inner-block {
    width: 100%;
    padding: 20px 10px;
  }
}
.our-services__inner-block::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background: radial-gradient(
      49.9% 49.9% at 50% 50.1%,
      rgba(255, 255, 255, 0.63) 0%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    radial-gradient(
      365.21% 65.71% at 50% 50.1%,
      rgba(255, 255, 255, 0.63) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
  left: 0;
  z-index: 0;
  top: 0;
  border-radius: 45px;
}
@media (max-width: 767px) {
  .our-services__inner-block::after {
    border-radius: 28.39px;
    background: radial-gradient(
        49.9% 49.9% at 50% 50.1%,
        rgba(255, 255, 255, 0.63) 0%,
        rgba(255, 255, 255, 0.9) 100%
      ),
      radial-gradient(
        365.21% 65.71% at 50% 50.1%,
        rgba(255, 255, 255, 0.63) 0%,
        rgba(255, 255, 255, 0.9) 100%
      );
  }
}
.our-services__inner-block .pos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .our-services__inner-block .pos {
    justify-content: unset;
  }
}
@media (max-width: 575px) {
  .our-services__inner-block .pos {
    align-items: center;
    max-width: 306px;
    margin: 0 auto;
    justify-content: unset;
  }
}
.our-services__inner-block .img-wrapper {
  width: 30%;
}
.our-services__inner-block .img-wrapper img {
  display: flex;
}
.our-services__inner-block .content-block {
  width: 64%;
}
@media (max-width: 991px) {
  .our-services__inner-block .content-block {
    padding-left: 10px;
    width: 62%;
  }
}
.our-services__inner-block .content-block h3 {
  color: #000;
  font-family: "GTWalsheimPro-bold";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .our-services__inner-block .content-block h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .our-services__inner-block .content-block h3 {
    font-size: 16px;
  }
}
.our-services__inner-block .content-block p {
  color: #414141;
  line-height: normal;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popup .popup-content-block p {
  color: #414141;
  line-height: normal;
  margin-bottom: 24px;
}
.popup .popup-content-block h3 {
  margin-bottom: 10px;
  color: #000;
  font-family: "GTWalsheimPro-bold";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}
.popup .img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .our-services__inner-block .content-block p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .popup .popup-content-block p {
    font-size: 14px;
  }
  .popup .popup-content-block h3 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .our-services__inner-block .content-block p {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
@media (max-width: 575px) {
  .our-services__inner-block .content-block .btn {
    font-size: 10px;
    padding: 2px 12px;
  }
}
.our-services__inner-block:last-child .pos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.our-services__inner-block:last-child .pos h3 {
  text-align: center;
  font-size: 35px;
  max-width: 287px;
  margin: 0 auto;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .our-services__inner-block:last-child .pos h3 {
    max-width: 153px;
    margin-bottom: 15px;
    font-size: 18px;
  }
}
.our-services__inner-block:last-child .pos .btn-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 575px) {
  .our-services__inner-block:last-child::before {
    content: url("/assets/img/20k-followers.svg");
    position: absolute;
    width: 52px;
    height: 52px;
    z-index: 2;
    left: -18px;
    bottom: -19px;
    z-index: 2;
  }
}
@media (max-width: 575px) {
  .our-services__inner-block:first-child::before {
    content: url("/assets/img/smallhastag.svg");
    position: absolute;
    width: 32px;
    height: 32px;
    z-index: 2;
    right: 0;
    top: -18px;
  }
}
.our-services__inner-block.graphics {
  position: relative;
}
.our-services__inner-block.graphics::before {
  content: url("/assets/img/20k-followers.svg");
  position: absolute;
  width: 90px;
  height: 90px;
  bottom: -55px;
  z-index: 2;
  left: -43px;
}
@media (max-width: 575px) {
  .our-services__inner-block.graphics::before {
    content: unset;
  }
}
.our-services__inner-block.Influencer::before {
  content: url("/assets/img/hastag.svg");
  position: absolute;
  width: 90px;
  height: 90px;
  z-index: 2;
  right: 0;
  top: -67px;
}
@media (max-width: 1400px) {
  .our-services__inner-block.Influencer::before {
    right: 30px;
  }
}

@media (max-width: 1199px) {
  .our-services__inner-block.Influencer::before {
    right: 37px;
  }
}
@media (max-width: 575px) {
  .our-services__inner-block.Influencer::before {
    content: unset;
  }
}
.our-clients {
  background-image: url("/assets/img/mask.svg");
  padding: 216px 0px 177px 0px;
  position: relative;
}

.client-inner_block:nth-child(2n + 1) .client-imgwrapper,
.client-inner_block:nth-child(2n + 2) .client-imgwrapper {
  margin: 0 20px;
  margin-bottom: 40px;
  background-color: #fff;
  box-shadow: 1px 1px 1px #000;
  box-shadow: 0px 0px 64px 0px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  width: 150px;
  height: 150px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-inner_block.d-flex {
  flex-wrap: wrap;
  justify-content: center;
}

.viewmore_client {
  display: none;
}
.flex-client {
  display: flex !important;
  transition: all 0.3s ease-out !important;
}
.client-block .client-imgwrapper img {
  width: 122px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .client-block .client-imgwrapper img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 991px) {
  .client-inner_block:nth-child(2n + 1) .client-imgwrapper,
  .client-inner_block:nth-child(2n + 2) .client-imgwrapper {
    margin: 0 10px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .our-clients {
    padding: 80px 0px 60px 0px;
  }
}
.our-clients::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 484px;
  background: #fff;
  backdrop-filter: blur(107px);
  top: 0;
}
.our-clients::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      49.9% 49.9% at 50% 50.1%,
      rgba(255, 255, 255, 0.63) 0%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    radial-gradient(
      365.21% 65.71% at 50% 50.1%,
      rgba(255, 255, 255, 0.63) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
  left: 0;
  z-index: 0;
  top: 0;
  border-radius: 45px;
}
.our-clients .container {
  position: relative;
  z-index: 1;
}
.our-clients .btn-wrapper {
  display: flex;
  justify-content: center;
}
.our-clients .btn-wrapper .btn {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 16px 42px;
}
.client-top__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.client-top__heading .heading {
  display: flex;
  align-items: center;
}
.client-top__heading .heading h2 {
  margin: 0px 32px;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .client-top__heading .heading h2 {
    margin: 0;
    margin-top: 30px;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}
.client-top__heading .heading h2 span {
  color: #2f26ac;
}
.client-top__heading .top-content {
  max-width: 833px;
  margin: 0 auto;
  margin-top: 15px;
}
@media (max-width: 991px) {
  .client-top__heading .top-content {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .client-top__heading .top-content {
    max-width: 305px;
  }
}
.client-top__heading .top-content p {
  color: #414141;
  text-align: center;
  line-height: normal;
}
@media (max-width: 767px) {
  .client-top__heading .top-content p {
    font-size: 14px;
  }
}
.client-block {
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .client-block {
    margin-top: 24px;
  }
}
.client-imgwrapper {
  width: 16.4%;
}

.client-block .client-imgwrapper {
  display: flex;
  justify-content: center;
  /* width: 20%; */
}
@media (max-width: 1199px) {
  .client-block .client-imgwrapper {
    width: 15.9%;
  }
}
@media (max-width: 991px) {
  .client-block .client-imgwrapper {
    width: 16.5%;
  }
}
@media (max-width: 767px) {
  .client-block .client-imgwrapper {
    width: 44%;
    margin-bottom: 18px;
  }
}
/* .client-block .client-imgwrapper img {
  width: 100%;
} */
.client-block::after {
  content: "";
  position: absolute;
  border-radius: 517px;
  opacity: 0.2;
  width: 517px;
  height: 517px;
  background: #cbf44f;
  filter: blur(250px);
  top: 0;
  right: -122px;
  z-index: -1;
}
@media (max-width: 1400px) {
  .client-block::after {
    content: unset;
  }
}

/* campaigntop heading */
.campaign-main__block {
  position: relative;
}
.campaign-main__block::after {
  content: "";
  position: absolute;
  width: 517px;
  height: 517px;
  top: 0px;
  right: 0px;
  border-radius: 517px;
  opacity: 0.5;
  background: #fdc500;
  filter: blur(250px);
  z-index: -1;
}
@media (max-width: 767px) {
  .campaign-main__block::after {
    border-radius: 283px;
    width: 283px;
    height: 283px;
  }
}
.campaigntop-heading__block {
  padding: 107px 0px 111px 0px;
  position: relative;
}
@media (max-width: 767px) {
  .campaigntop-heading__block {
    padding: 60px 0px 60px 0px;
  }
}
@media (max-width: 767px) {
  .campaigntop-heading__block {
    padding: 43px 0px 44px 0px;
  }
}
.campaigntop-heading__block::before {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  top: 50%;
  left: 0px;
  border-radius: 488px;
  opacity: 0.5;
  background: #2351fb;
  filter: blur(250px);
  z-index: -1;
  transform: translateY(50%);
}
@media (max-width: 767px) {
  .campaigntop-heading__block::before {
    width: 298px;
    height: 298px;
    border-radius: 298px;
  }
}
.campaigntop-heading__block h2 {
  font-family: "GTWalsheimPro-Regular";
  font-size: 60px;
  font-weight: 500;
  line-height: 69px;
  color: #000;
  text-align: center;
}
@media (max-width: 991px) {
  .campaigntop-heading__block h2 {
    font-size: 42px;
    line-height: 49px;
  }
}
@media (max-width: 575px) {
  .campaigntop-heading__block h2 {
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}
.campaigntop-heading__block h2 span {
  color: #2f26ac;
  font-weight: 700;
  font-family: "GTWalsheimPro-bold";
  display: block;
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}
.campaigntop-heading__block h2 span::before,
.campaigntop-heading__block h2 span::after {
  content: "";
  position: absolute;
  width: 197px;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(47, 38, 172, 0) 0.13%,
    #2f26ac 50.59%,
    rgba(47, 38, 172, 0) 100%
  );
}
@media (max-width: 767px) {
  .campaigntop-heading__block h2 span::before,
  .campaigntop-heading__block h2 span::after {
    width: 100px;
    height: 1px;
  }
}
@media (max-width: 575px) {
  .campaigntop-heading__block h2 span::before,
  .campaigntop-heading__block h2 span::after {
    width: 70px;
    height: 1px;
  }
}
@media (max-width: 390px) {
  .campaigntop-heading__block h2 span::before,
  .campaigntop-heading__block h2 span::after {
    width: 38px;
    height: 1px;
  }
}
.campaigntop-heading__block h2 span::after {
  top: 56%;
  transform: translateY(-56%);
  right: -20px;
}
@media (max-width: 767px) {
  .campaigntop-heading__block h2 span::after {
    top: 50%;
    transform: translateY(-50%);
    right: 32px;
  }
}
@media (max-width: 480px) {
  .campaigntop-heading__block h2 span::after {
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
  }
}
.campaigntop-heading__block h2 span::before {
  top: 56%;
  transform: translateY(-56%);
  left: -20px;
}
@media (max-width: 767px) {
  .campaigntop-heading__block h2 span::before {
    top: 50%;
    transform: translateY(-50%);
    left: 32px;
  }
}
@media (max-width: 480px) {
  .campaigntop-heading__block h2 span::before {
    left: -10px;
  }
}
/*song cards*/
.song-card {
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 991px) {
  .song-card {
    padding-bottom: 83px;
  }
}
.song-card::after {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  bottom: 250px;
  right: 0px;
  border-radius: 488px;
  opacity: 0.2;
  background: #fb2323;
  filter: blur(250px);
  transform: rotateY(250px);
  z-index: -1;
}
@media (max-width: 767px) {
  .song-card::after {
    width: 298px;
    height: 298px;
    border-radius: 298px;
    opacity: 0.5;
    background: #ff4c38;
    filter: blur(250px);
  }
}
.song-card__inner-block {
  width: 49%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 64px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 50px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .song-card__inner-block {
    padding: 10px 10px;
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .song-card__inner-block {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .song-card__inner-block {
    max-width: 335px;
    /* border-radius: 30px;
      */
    background: #fff;
    box-shadow: 0px 0px 36.3389816284px 0px rgba(0, 0, 0, 0.08);
    padding: 10px;
  }
}
.song-card__inner-block .inner-content {
  margin-bottom: 27px;
}
.song-card__inner-block .inner-content .imgwrapper {
  display: flex;
  height: 302px;
}
.song-card__inner-block .inner-content img {
  border-radius: 30px;
  width: 100%;
}
@media (max-width: 991px) {
  .song-card__inner-block .inner-content img {
    border-radius: 20px;
  }
}
.song-card__inner-block .inner-content__block {
  padding: 0px 20px;
}
.song-card__inner-block .inner-content h2 {
  padding-top: 21px;
  font-family: "GTWalsheimPro-bold";
  font-size: 25px;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 13px;
}
@media (max-width: 1199px) {
  .song-card__inner-block .inner-content__block {
    padding: 0px 10px;
  }
}
@media (max-width: 991px) {
  .song-card__inner-block .inner-content h2 {
    font-size: 18px;
    line-height: normal;
    padding-top: 10px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .song-card__inner-block .inner-content h2 {
    font-size: 16px;
    line-height: normal;
    /* width: 58%;
      */
  }
}
.song-card__inner-block .inner-content p {
  font-family: "GTWalsheimPro-Regular";
  font-size: 18px;
  line-height: 21px;
  color: #414141;
}
@media (max-width: 991px) {
  .song-card__inner-block .inner-content p {
    font-size: 14px;
    line-height: normal;
  }
}
@media (max-width: 575px) {
  .song-card__inner-block .inner-content p {
    width: 286.169px;
    font-size: 12px;
    line-height: normal;
  }
}
.song-card__bottom-block {
  align-items: center;
  padding: 0px 20px;
}
.song-card__bottom-block .review {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
@media (max-width: 1199px) {
  .song-card__bottom-block .review {
    width: 68%;
  }
  .song-card__bottom-block {
    padding: 0px 10px;
  }
}
@media (max-width: 767px) {
  .song-card__bottom-block .review {
    width: 100%;
  }
  .song-card__inner-block .inner-content .imgwrapper {
    height: auto;
  }
}
.song-card__bottom-block h2 {
  color: #2f26ac;
  text-align: center;
  font-size: 24px;
}
@media (max-width: 1199px) {
  .song-card__bottom-block h2 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  .song-card__bottom-block h2 {
    font-size: 20px;
  }
}
.song-card__bottom-block h3 {
  font-family: "GTWalsheimPro-bold";
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
.song-card__bottom-block .btn-wrapper {
  width: 26%;
}
@media (max-width: 1199px) {
  .song-card__bottom-block .btn-wrapper {
    width: 31%;
    text-align: right;
  }
}
@media (max-width: 991px) {
  /* .song-card__bottom-block .btn-wrapper {
      width: 34%;
 }
  */
  .song-card__bottom-block h3 {
    font-size: 10px;
  }
}
@media (max-width: 575px) {
  .song-card__bottom-block .btn-wrapper {
    width: 32%;
  }
  .song-card__bottom-block h3 {
    font-size: 8px;
    line-height: normal;
  }
}
.song-card__bottom-block .btn-wrapper .btn {
  text-align: center;
  font-family: "GTWalsheimPro-bold";
}
@media (max-width: 991px) {
  .song-card__bottom-block .btn-wrapper .btn {
    font-size: 10px;
    padding: 6px 12px;
  }
}
.banner {
  position: relative;
  padding: 150px 0px 241px 0px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .banner {
    padding: 120px 0px 141px 0px;
  }
}
@media (max-width: 767px) {
  .banner {
    padding: 43px 0px 43px 0px;
  }
}
.banner::after {
  content: "";
  position: absolute;
  border-radius: 517px;
  opacity: 0.5;
  background: rgb(253, 197, 0);
  filter: blur(250px);
  width: 517px;
  height: 517px;
  right: 0;
  top: -117px;
  z-index: -1;
}
@media (max-width: 767px) {
  .banner::after {
    width: 283px;
    height: 283px;
    border-radius: 283px;
    top: 0;
  }
}
.banner h2 {
  font-family: "GTWalsheimPro-bold";
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #000;
  text-align: left;
  margin-bottom: 20px;
}
.banner h2 span {
  color: #2f26ac;
}
@media (max-width: 991px) {
  .banner h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .banner h2 {
    font-size: 34px;
    line-height: 38.93px;
    margin-bottom: 14px;
    text-align: center;
  }
}
.banner p {
  color: #414141;
  line-height: normal;
  max-width: 553px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .banner p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .banner p {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .banner p {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
  }
}
.banner .btn {
  padding: 12px 22px;
  font-size: 16px;
}
@media (max-width: 575px) {
  .banner .btn {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 12 42px;
  }
}
.banner .banner-block {
  position: relative;
  align-items: center;
}
.banner .banner-content {
  width: 51.4%;
}
@media (max-width: 767px) {
  .banner .banner-content {
    width: 100%;
    margin-bottom: 44px;
  }
}
@media (max-width: 767px) {
  .banner .banner-content .btn-wrapper {
    display: flex;
    justify-content: center;
  }
}
.banner .img-wrapper {
  width: 48%;
  position: absolute;
  right: -120px;
}
@media (max-width: 1400px) {
  .banner .img-wrapper {
    right: -18px;
  }
}
@media (max-width: 1199px) {
  .banner .img-wrapper {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .banner .img-wrapper {
    position: unset;
  }
}
@media (max-width: 767px) {
  .banner .img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.tabs h2 {
  color: #000;
  text-align: center;
  line-height: normal;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .tabs h2 {
    font-size: 34px;
  }
}
.tabs .tabs-block {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.tabs .tabs-block ul {
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 991px) {
  .tabs .tabs-block ul li {
    width: 28%;
    max-width: 900px;
    /* margin: 0 auto;
      */
    margin-bottom: 34px;
  }
}
@media (max-width: 575px) {
  .tabs .tabs-block ul li {
    width: auto;
    /* margin-bottom: 16px;
      */
  }
}
@media (max-width: 575px) {
  .tabs .tabs-block ul li:nth-child(4) {
    margin-left: 49px;
  }
}
@media (max-width: 575px) {
  .tabs .tabs-block ul li:nth-child(5) {
    margin-right: 30px;
  }
}
.tabs .tabs-block ul li a {
  display: block;
  color: #2f26ac;
  text-align: center;
  font-family: "GTWalsheimPro-bold";
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  background: rgba(47, 38, 172, 0.1);
  border-radius: 25px;
  padding: 16px 44px;
}
@media (max-width: 575px) {
  .tabs .tabs-block ul li a {
    font-size: 12px;
    padding: 11px 23px;
  }
}
.tabs .tabs-block ul li a.active {
  background: #2f26ac;
  color: #fff;
}
.tabs {
  position: relative;
}
.tabs::after {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  border-radius: 488px;
  opacity: 0.5;
  background: rgb(35, 81, 251);
  filter: blur(250px);
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .tabs::after {
    width: 298px;
    height: 298px;
    border-radius: 298px;
    /* z-index: -1;
      */
  }
}
.tabs::before {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  border-radius: 488px;
  background: rgb(251, 35, 35);
  filter: blur(250px);
  top: 0;
  opacity: 0.2;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .tabs::before {
    content: unset;
  }
}
.tabs-main-block {
  position: relative;
  overflow: hidden;
}
.tabs-main-block::after {
  content: "";
  position: absolute;
  background-image: url("/assets/img/mbl.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: -10px;
  left: 0px;
  width: 110.259px;
  height: 192.36px;
}
@media (max-width: 1500px) {
  .tabs-main-block::after {
    height: 166.36px;
  }
}
@media (max-width: 1199px) {
  .tabs-main-block::after {
    content: unset;
  }
}
.tabs-main-block::before {
  content: "";
  position: absolute;
  background-image: url("/assets/img/cameranew.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  left: 0px;
  width: 153px;
  height: 130.155px;
}
@media (max-width: 1500px) {
  .tabs-main-block::before {
    width: 125px;
  }
}
@media (max-width: 1199px) {
  .tabs-main-block::before {
    content: unset;
  }
}
.tabber-block {
  position: relative;
}
.tabber-block::before {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  border-radius: 488px;
  opacity: 0.2;
  background: rgb(253, 197, 0);
  filter: blur(250px);
  bottom: 0px;
  left: -135px;
  z-index: 1;
}
.tabber-block::after {
  content: "";
  position: absolute;
  width: 233px;
  height: 234px;
  background-image: url("/assets/img/computer.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  right: -298px;
}
@media (max-width: 1500px) {
  .tabber-block::after {
    right: -240px;
  }
}
@media (max-width: 1199px) {
  .tabber-block::after {
    content: unset;
  }
  .tabber-block::before {
    content: unset;
  }
}
.tabs__inner-block {
  margin-top: 64px;
  margin-bottom: 120px;
}
.tabs__inner-block .img-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
.tabs__inner-block .img-wrapper h3 {
  color: #2f26ac;
  text-align: center;
  font-family: "GTWalsheimPro-bold";
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  .tabs__inner-block {
    margin-top: 0px;
    margin-bottom: 72px;
  }
}
@media (max-width: 767px) {
  .tabs__inner-block .img-wrapper h3 {
    font-size: 18px;
  }
}
.tabber-bottom,
.tabs__content {
  background-color: rgb(255, 255, 255);
  border-radius: 30px;
  box-shadow: 0px 0px 64px 0px rgba(0, 0, 0, 0.08);
  padding: 40px 40px 40px 40px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .tabber-bottom,
  .tabs__content {
    padding: 20px 20px;
  }
}
.tabber {
  align-items: center;
  /* padding-bottom: 31px;
  */
}
@media (max-width: 767px) {
  .tabber {
    /* justify-content: center; */
  }
}
.tabber .heading {
  width: 50%;
}
@media (max-width: 1199px) {
  .tabber .heading {
    width: 55%;
  }
}
@media (max-width: 575px) {
  .tabber .heading {
    width: 100%;
  }
}
.tabber .heading h3 {
  font-family: "GTWalsheimPro-bold";
  font-size: 35px;
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 14px;
  color: #2f26ac;
}
@media (max-width: 1199px) {
  .tabber .heading h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .tabber .heading h3 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .tabber .heading h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.tabber .heading ul {
  padding-left: 0;
  justify-content: flex-start;
}
@media (max-width: 575px) {
  .tabber .heading ul {
    margin-bottom: 0px;
    justify-content: flex-start;
    width: 100%;
    max-width: initial;
    margin: unset;
    gap: 5px;
  }
}
.tabber .heading ul li {
  font-family: "GTWalsheimPro-medium";
  font-size: 25px;
  font-weight: 500;
  line-height: 1.16;
  color: rgb(0, 0, 0);
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .tabber .heading ul li {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .tabber .heading ul li {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .tabber .heading ul li {
    font-size: 12px;
    padding: 0px 5px;
  }
}
.tabber .heading ul li:first-child {
  padding-left: 0px;
}
@media (max-width: 575px) {
  .tabber .heading ul li:first-child {
    padding: 0;
    /* width: 30%; */
  }
}
.tabber .heading ul li:nth-child(even) {
  border-left: 1px solid #000;
  /* border-right: 1px solid #000; */
  padding: 0px 10px;
}
@media (max-width: 575px) {
  .tabber .heading ul li:nth-child(even) {
    /* width: 37%; */
    padding: 0px 5px;
  }
}
.tabber .apply-block {
  align-items: center;
}
@media (max-width: 575px) {
  .tabber .apply-block {
    margin-top: 24px;
  }
}
.tabber .apply-block .btn {
  padding: 16px 44px 16px 44px;
  border-radius: 25px;
}
@media (max-width: 575px) {
  .tabber .apply-block .btn {
    font-size: 14px;
    padding: 8px 36px;
  }
}
.tabber .apply-block .Minimize {
  margin-left: 21px;
  font-family: "GTWalsheimPro-medium";
  font-size: 25px;
  font-weight: 500;
  line-height: 29px;
  color: rgb(47, 38, 172);
  border-radius: 25px;
  padding: 12px 20px 12px 20px;
}
.tabber .apply-block .Minimize:hover {
  /* background-color: #2f26ac;
  */
  color: #2f26ac;
}
@media (max-width: 575px) {
  .tabber .apply-block .Minimize:hover {
    padding: 8px 36px;
  }
}
@media (max-width: 575px) {
  .tabber .apply-block .Minimize {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
}
.tabber-inner-content {
  margin-top: 31px;
  padding-top: 23px;
  border-top: 1px solid rgb(216, 216, 216);
}
.tabber-inner-content h3 {
  font-family: "GTWalsheimPro-bold";
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: #2f26ac;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .tabber-inner-content h3 {
    font-size: 16px;
  }
}
.tabber-inner-content ul {
  padding-left: 25px;
  margin-bottom: 10px;
}
.tabber-inner-content ul li {
  list-style-type: disc;
  font-family: "GTWalsheimPro-Regular";
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(65, 65, 65);
}
@media (max-width: 575px) {
  .tabber-inner-content ul li {
    font-size: 16px;
  }
}
.tabber-inner-content p {
  margin-bottom: 10px;
  font-family: "GTWalsheimPro-Regular";
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(65, 65, 65);
}
@media (max-width: 575px) {
  .tabber-inner-content p {
    font-size: 16px;
  }
}
.tabber-bottom {
  border-bottom: 0px;
}
.apply-form {
  position: relative;
  padding: 55px 0px 120px 0px;
}
@media (max-width: 991px) {
  .apply-form {
    padding: 34px 0px 80px 0px;
    /* z-index: -1;
      */
  }
}
@media (max-width: 575px) {
  .apply-form {
    padding: 24px 0px 45px 0px;
  }
}
.apply-form::before {
  content: "";
  position: absolute;
  width: 517px;
  height: 517px;
  border-radius: 517px;
  opacity: 0.5;
  background: rgb(253, 197, 0);
  filter: blur(250px);
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .apply-form::before {
    width: 283px;
  }
}
.apply-form::after {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  border-radius: 488px;
  opacity: 0.5;
  background: rgb(35, 81, 251);
  filter: blur(250px);
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .apply-form::after {
    width: 298px;
  }
}
.apply-form__block {
  padding-top: 55px;
}
@media (max-width: 991px) {
  .apply-form__block {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .apply-form__block {
    padding-top: 0px;
  }
}
.apply-form__block .tabber {
  margin-bottom: 60px;
  position: relative;
  border-bottom: 0px;
}
@media (max-width: 991px) {
  .apply-form__block .tabber {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .apply-form__block .tabber {
    margin-bottom: 0px;
  }
}
.apply-form__block .tabber .heading {
  display: flex;
  justify-items: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .apply-form__block .tabber .heading {
    padding-top: 40px;
    margin-bottom: 34px;
  }
}
.apply-form__block .tabber .heading ul {
  padding-left: 0;
}
@media (max-width: 575px) {
  .apply-form__block .tabber .heading ul {
    margin-bottom: 0px;
    justify-content: center;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }
}
.apply-form__block form .input-group {
  width: 49%;
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 767px) {
  .apply-form__block form .input-group {
    width: 100%;
    margin-bottom: 14px;
  }
}
.apply-form__block form .input-group label {
  color: #000;
  font-family: "GTWalsheimPro-bold";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .apply-form__block form .input-group label {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .apply-form__block form .input-group label {
    font-size: 14px;
  }
}
.apply-form__block form .input-group input {
  border-radius: 10px;
  position: relative;
  color: #414141;
  font-family: "GTWalsheimPro-Regular";
  border: 0px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  padding: 25px 31px 24px 31px;
  background: rgba(0, 0, 0, 0.057);
}
@media (max-width: 991px) {
  .apply-form__block form .input-group input {
    padding: 20px 20px;
  }
}
@media (max-width: 575px) {
  .apply-form__block form .input-group input {
    font-size: 14px;
    padding: 17px 11px;
  }
}
.apply-form__block form .input-group input::placeholder {
  color: #414141;
  font-family: "GTWalsheimPro-Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 575px) {
  .apply-form__block form .input-group input::placeholder {
    font-size: 14px;
  }
}
.apply-form__block form .input-group p {
  position: absolute;
  width: 100%;
  padding: 25px 31px 24px 31px;
  background: rgba(0, 0, 0, 0.057);
  top: 50px;
  pointer-events: none;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .apply-form__block form .input-group p {
    top: 30px;
    padding: 20px 20px;
  }
}
@media (max-width: 575px) {
  .apply-form__block form .input-group p {
    top: 26px;
    padding: 21px 11px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
  }
}
.apply-form__block form .input-group p::after {
  content: url("/assets/img/upload.svg");
  position: absolute;
  width: 20px;
  height: 20px;
  right: 31px;
}
@media (max-width: 575px) {
  .apply-form__block form .input-group p::after {
    right: 11px;
  }
}
.apply-form__block input[type="file"] {
  width: 100%;
  opacity: 0;
}
.apply-form__block input[type="submit"] {
  color: #fff;
  text-align: center;
  font-family: "GTWalsheimPro-bold";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 16px 44px;
  border-radius: 25px;
  background: #2f26ac;
  border: 0px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .apply-form__block input[type="submit"] {
    font-size: 14px;
    line-height: 16px;
  }
}
.back-btn {
  align-items: center;
  position: absolute;
  top: 0;
}
.back-btn .img-wrapper {
  padding-right: 5px;
  width: 29px;
  height: 29px;
}
.back-btn .img-wrapper svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .back-btn .img-wrapper svg {
    width: 24px;
    height: 24px;
  }
}
.back-btn a {
  color: #555;
  font-family: "GTWalsheimPro-medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  /* margin-bottom: 5px;
  */
}
@media (max-width: 575px) {
  .back-btn a {
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
  }
}
.submit {
  padding-top: 36px;
  display: flex;
  justify-content: center;
}
@media (max-width: 575px) {
  .submit {
    padding-top: 20px;
  }
}
/** * Owl Carousel v2.3.4 * Copyright 2013-2018 David Deutsch * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE */
/* * Owl Carousel - Core */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/* * Owl Carousel - Animate Plugin */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* * Owl Carousel - Auto Height Plugin */
.owl-height {
  transition: height 500ms ease-in-out;
}
/* * Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item {
  /** This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong calculation of the height of the owl-item that breaks page layouts */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/* * Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.viral {
  position: relative;
  padding: 150px 0px 0px 0px;
  background: #fff;
  backdrop-filter: blur(107px);
}
@media (max-width: 767px) {
  .viral {
    padding: 90px 0px;
  }
}
@media (max-width: 767px) {
  .viral {
    padding: 30px 0px;
  }
}
.viral::after {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  border-radius: 488px;
  opacity: 0.2;
  background: #fb2323;
  filter: blur(250px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .viral::after {
    width: 232px;
    height: 232px;
    border-radius: 232px;
    fill: #fb2323;
    opacity: 0.2;
    filter: blur(250px);
  }
}
.viral .btn-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 575px) {
  .viral .btn-wrapper .btn {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .viral .container {
    padding: 0;
  }
}
.viral-heading {
  margin-bottom: 30px;
}
.viral-heading h2 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .viral-heading h2 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .viral-heading h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .viral-heading h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .viral-heading h2 {
    max-width: 260px;
  }
}
.viral-heading h2::after {
  content: url("/assets/img/lightbulb.svg");
  position: absolute;
  width: 100px;
  height: 100px;
  top: -95px;
  right: 49px;
}
@media (max-width: 991px) {
  .viral-heading h2::after {
    right: 100px;
  }
}
@media (max-width: 575px) {
  .viral-heading h2::after {
    content: url("/assets/img/smallbulb.png");
    width: 44px;
    height: 43px;
    top: 37px;
    transform: translateY(-42px);
    right: 19px;
  }
}
.viral-heading h2 span {
  color: #2f26ac;
}
.viral-slider img {
  border-radius: 20px;
}
.viral-heading p {
  color: #414141;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 911px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 991px) {
  .viral-heading p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .viral-heading p {
    max-width: 400px;
    font-size: 14px;
  }
  .viral-slider img {
    border-radius: 10px;
  }
}
@media (max-width: 575px) {
  .viral-heading p {
    max-width: 277px;
  }
}
.viral-slider {
  display: flex;
  position: relative;
  z-index: 4;
}
.owl-item .slider__img-wrapper {
  /* DO NOT REMEMBER WHERE TU PUT THIS, SEARCH FOR 3D ACCELERATION */
  margin: 50px 0;
  /* OVERWRITE PLUGIN MARGIN */
}
@media (max-width: 575px) {
  .owl-item .slider__img-wrapper {
    margin: 0 auto;
  }
}
.viral-slider .owl-nav .owl-next,
.viral-slider .owl-nav .owl-prev {
  background-color: #2f26ac !important;
  width: 41px;
  height: 41px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.viral-slider .owl-nav .owl-next {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .viral-slider .owl-nav .owl-next {
    right: 0;
  }
}
.viral-slider .owl-nav .owl-prev {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .viral-slider .owl-nav .owl-prev {
    left: 0;
  }
}
.viral-slider .owl-stage {
  margin: 70px 0px;
}
.viral-slider .owl-item .slider__img-wrapper {
  transform: rotate(-5.011deg);
}
.viral-slider .owl-item .slider__img-wrapper img {
  transform: scale(0.8);
}
@media (max-width: 767px) {
  .viral-slider .owl-item .slider__img-wrapper img {
    transform: scale(1);
  }
}
.viral-slider .owl-item.center {
  position: relative;
  z-index: 1;
}
.viral-slider .owl-item.center .slider__img-wrapper {
  transform: rotate(0deg);
}
.viral-slider .owl-item.center .slider__img-wrapper img {
  transform: scale(1.7);
}
@media (max-width: 767px) {
  .viral-slider .owl-item.center .slider__img-wrapper img {
    transform: scale(2.1);
  }
}
.viral-slider .owl-item.center + .active .slider__img-wrapper {
  transform: rotate(5.011deg);
}
.success-story {
  position: relative;
  margin-bottom: 150px;
}
.success-story::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 300px;
  background: #fff;
  backdrop-filter: blur(107px);
}
.success-story .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.success-story .container-fluid .story-heading {
  width: 40%;
  position: relative;
  padding: 0 70px;
  /* z-index: 9;
 */
}
.success-story .container-fluid .story-slider-outer .notes-img {
  position: absolute;
  left: -50px;
  top: -50px;
}
.success-story .container-fluid .story-slider-outer {
  width: 60%;
  position: relative;
}
.success-story .container-fluid .story-slider .owl-item {
  padding: 30px 15px;
}
@media (max-width: 991px) {
  .success-story {
    margin-bottom: 80px;
  }
  .success-story .container-fluid {
    display: block;
    padding: 0;
  }
  .success-story .container-fluid .story-slider-outer,
  .success-story .container-fluid .story-heading {
    width: 100%;
    max-width: 100%;
  }
  .success-story .owl-nav {
  }
}
@media (max-width: 575px) {
  .success-story::before {
    content: unset;
  }
  .success-story .container-fluid .story-heading {
    padding: 0 12px;
    max-width: 316px;
    margin: 0 auto;
  }
  .success-story .container-fluid .story-slider-outer .notes-img {
    left: 5px;
    top: 75px;
    width: 50px;
  }
}
.success-story::after {
  content: "";
  position: absolute;
  width: 488px;
  height: 420px;
  border-radius: 488px;
  opacity: 0.2;
  background: #ff4c38;
  filter: blur(250px);
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .success-story::after {
    content: unset;
  }
}
.success-story .owl-nav {
  position: absolute;
  display: flex;
  z-index: 999999999;
  bottom: 20%;
  left: -50%;
}
@media (max-width: 1500px) {
}
@media (max-width: 1199px) {
  .success-story .owl-nav {
    bottom: 150px;
  }
}
@media (max-width: 991px) {
  .success-story .owl-nav {
    left: inherit;
    position: inherit;
    right: inherit;
    bottom: inherit;
    width: 95px;
    margin: 0 auto;
  }
}
.success-story .owl-nav .owl-next,
.success-story .owl-nav .owl-prev {
  background-color: #2f26ac !important;
  width: 41px;
  height: 41px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.success-story .owl-nav .owl-next {
  position: absolute;
  left: 55px;
}
.success-story .owl-stage {
}
@media (max-width: 991px) {
  .success-story .owl-stage {
    margin: 80px 0px 20px;
  }
}
@media (max-width: 991px) {
  .story-heading {
    position: unset;
    transform: unset;
    margin: 0 auto;
  }
}
.story-heading h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 14px;
}
.story-heading h2 span {
  color: #2f26ac;
}
@media (max-width: 1199px) {
  .story-heading h2 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .story-heading h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .story-heading h2 {
    font-size: 34px;
  }
}
.story-heading p {
  color: #414141;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 361px;
}
@media (max-width: 991px) {
  .story-heading p {
    font-size: 18px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .story-heading p {
    font-size: 14px;
  }
}
.story-slider {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 991px) {
  .story-slider {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .story-slider {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1500px) {
  .story-slider::before {
    left: -2297px;
  }
}
@media (max-width: 1400px) {
  .story-slider::before {
    left: -2277px;
  }
}
@media (max-width: 1199px) {
  .story-slider::before {
    left: -2418px;
  }
}
@media (max-width: 991px) {
  .story-slider::before {
    content: unset;
  }
}
.profile-img {
  margin-bottom: 60px;
  width: 151px;
  height: 151px;
}
.profile-img img {
  border-radius: 50%;
}
.story-card {
  width: 100%;
  border-radius: 50px;
  background: #fff;
  /* box-shadow: 0px 0px 64px 0px rgba(0, 0, 0, 0.08);
 */
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
  /* padding: 85px 43px 79px 45px; */
  padding: 70px 40px 60px 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .story-card {
    border-radius: 30px;
    padding: 40px 20px;
    box-shadow: 0px 0px 49.5150108337px 0px rgba(0, 0, 0, 0.08);
  }
  .profile-img {
    margin-bottom: 30px;
  }
}
.story-card h2 {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 7px;
}
.story-card h3 {
  color: #2f26ac;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.story-card p {
  color: #414141;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  max-width: 348px;
  margin: 0 auto;
  line-height: normal;
  height: 164px;
}
.story-card .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Apply a scaling animation to the center slide and fade-in animation to all slides */
.viral-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh;
  Set a suitable height for the slider container */
}
.slider__img-wrapper img {
  opacity: 1;
  /* Initially set a lower opacity */
  transition: transform 0.5s ease, opacity 0.5s ease;
  /* Apply transition for smooth animation */
  /* Center slide is bigger, others are smaller */
  transform: scale(0.7);
}
/* Hover effect to make the images fully visible on hover */
.slider__img-wrapper:hover img {
  opacity: 1;
}
/* Apply larger scale and higher opacity to the center slide */
.slider__img-wrapper:nth-child(5) img {
  opacity: 1;
  transform: scale(1.2);
}
.container-fluid {
  max-width: 100%;
  padding: 0 12px;
}

/* /////////////////////// */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
/* .overlay:target {
  visibility: visible;
  opacity: 1;
} */

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 40%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 0px;
  right: 0px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
.popup .close:hover {
  color: #06d85f;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px) {
  .box {
    width: 70%;
  }
  .popup {
    width: 70%;
  }
}
