@charset "UTF-8";
body {
  font-family: "noor";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: normal;
  font-weight: 400;
}

body.single-page {
  padding-top: 110px;
}

@media only screen and (max-width: 991px) {
  body.single-page {
    padding-top: 55px;
  }
}

.overflow {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

img {
  image-rendering: -webkit-optimize-contrast !important;
}

.ul-es {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ancor {
  text-decoration: none;
}

.ancor:hover {
  text-decoration: none;
}

/*style scroll bar*/
/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 1px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #21227e;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a748b4;
}

/*preloader*/
.preloader {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.progress {
  position: fixed;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 5px;
  background-color: #f7f7f7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f9f9f9));
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  overflow: hidden;
}

.progress-bar {
  -webkit-animation: progress 6s ease infinite;
          animation: progress 6s ease infinite;
  padding: 1px;
  color: white;
  background-image: linear-gradient(135deg, #a748b4, #21227e);
  /* border-radius: 4px 4px 4px 4px; */
}

html[dir="ltr"] .progress-bar {
  background-image: linear-gradient(135deg, #21227e, #a748b4);
}

@-webkit-keyframes progress {
  from {
    width: 0;
    color: rgba(255, 255, 255, 0);
  }
  to {
    width: 100%;
    color: white;
  }
}

@keyframes progress {
  from {
    width: 0;
    color: rgba(255, 255, 255, 0);
  }
  to {
    width: 100%;
    color: white;
  }
}

/*preloader*/
@media only screen and (max-width: 767px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media only screen and (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
}

/*hamburger menu*/
.hamburger-lines {
  height: 14px;
  width: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hamburger-lines .line {
  display: block;
  height: 2px;
  width: 100%;
  background: #21227e;
}

.home-header .hamburger-lines .line {
  background: #fff;
}

.home-header .open-bars .hamburger-lines .line {
  background: #21227e;
}

.home-header .fixed-nav .hamburger-lines .line {
  background: #21227e;
}

.hamburger-lines .line1 {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.open-bars .hamburger-lines .line1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.open-bars .hamburger-lines .line2 {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.open-bars .hamburger-lines .line3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*                                 arrow-top                           */
.arrow-top {
  position: fixed;
  bottom: 20px;
  inset-inline-start: 20px;
  display: none;
  z-index: 10;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  font-size: 20px;
  border: none;
  outline: none !important;
  color: #21227e;
  text-decoration: none !important;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.arrow-top:hover, .arrow-top:focus {
  background-color: #21227e;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .arrow-top {
    bottom: 15px;
    inset-inline-start: 15px;
  }
}

/*top header*/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.top-header a {
  text-decoration: none;
}

.show-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.show-icons .menu-bars {
  display: none;
  background: transparent;
  outline: none !important;
}

.nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-header .big-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
}

.nav-header li a {
  color: #21227e;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-header .nav-header li a {
  color: #fff;
}

.home-header .fixed-nav .nav-header li a {
  color: #21227e;
}

.home-header .fixed-nav .nav-header li a:hover {
  color: #a748b4;
}

.home-header .fixed-nav .nav-header li a.active {
  color: #a748b4;
}

.nav-header li a:hover {
  color: #a748b4;
}

.nav-header li a.active {
  color: #a748b4;
}

.nav-header li {
  margin: 0 13px;
}

.fixed-nav {
  background-color: #fff;
  margin-top: -100px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.fixed-nav .nav-header {
  padding: 10px 0;
}

.fixed-header {
  position: fixed;
}

.fixed-header .fixed-nav {
  margin: 0;
}

.img-logo img {
  max-width: 139px;
  max-height: 43px;
  width: 139px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.fixed-nav .img-logo img {
  max-width: 100px;
  width: 100px;
}

.nav-header figure {
  margin: 0;
}

.nav-head {
  width: 100%;
  display: none;
}

.login-ancor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

.fixed-nav .login-ancor {
  color: #21227e;
}

.single-page .login-ancor {
  color: #21227e;
}

.login-ancor i {
  font-size: 22px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.login-ancor:hover {
  color: #a748b4;
  text-decoration: none;
}

.contact-link {
  width: 136px;
  height: 50px;
  border-radius: 25px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#a946b3), color-stop(#676ff1), color-stop(#676ff1), to(#a946b3));
  background-image: linear-gradient(to right, #a946b3, #676ff1, #676ff1, #a946b3);
  background-size: 300% 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.contact-link:hover {
  text-decoration: none;
  color: #fff;
  background-position: 100% 0;
}

.hide-bg {
  display: none;
}

@media only screen and (max-width: 991px) {
  .hide-bg {
    display: block;
  }
  .nav-header li i {
    font-size: 22px;
    -webkit-margin-end: 5px;
            margin-inline-end: 5px;
  }
  .hide-sm {
    display: none;
  }
  .img-logo img {
    max-width: 100px;
  }
  .nav-header {
    padding: 10px 0;
  }
  .login-ancor {
    font-size: 18px;
    color: #21227e;
  }
  .contact-link {
    width: 110px;
    height: 35px;
    font-size: 14px;
    margin: 0;
  }
  .show-icons .menu-bars {
    position: relative;
    z-index: 300;
    width: 18px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-margin-start: 15px;
            margin-inline-start: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .nav-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 15px 0 0;
  }
  .navgition {
    display: block;
    position: fixed;
    padding: 30px 20px;
    padding-top: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-clip-path: circle(10.9% at 16% 16%);
            clip-path: circle(10.9% at 16% 16%);
    background-color: rgba(255, 255, 255, 0.99);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 200;
    overflow-y: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  html[dir="ltr"] .navgition {
    -webkit-clip-path: circle(11.2% at 86% 14%);
            clip-path: circle(11.2% at 86% 14%);
  }
  .reset-left {
    left: 0;
    top: 0;
    -webkit-clip-path: circle(139.6% at 9% 15%);
            clip-path: circle(139.6% at 9% 15%);
    visibility: visible;
    opacity: 1;
  }
  html[dir="ltr"] .reset-left {
    -webkit-clip-path: circle(121.2% at 86% 14%);
            clip-path: circle(121.2% at 86% 14%);
  }
  .nav-header .big-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20% 20px 20px;
  }
  .nav-header li {
    margin: 0;
  }
  .big-menu li {
    margin-bottom: 25px;
  }
  .nav-header li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 400;
    font-size: 18px;
    color: #21227e;
  }
  .home-header .nav-header li a {
    color: #21227e;
  }
}

.logo-cont {
  position: relative;
}

.second-logo {
  display: none;
}

.home-header .second-logo {
  display: block;
  visibility: visible;
  opacity: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home-header .img-logo {
  opacity: 0;
}

.home-header .fixed-nav .img-logo {
  opacity: 1;
}

.home-header .fixed-nav .second-logo {
  visibility: hidden;
  opacity: 0;
}

.header-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .contact-link {
    width: 100px;
    font-size: 13px;
  }
  .first-btn,
  .second-btn {
    font-size: 14px;
  }
}

.main {
  position: relative;
  height: 100vh;
}

.main-cont {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
}

.main-info {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 41%;
  text-align: start;
  z-index: 1;
}

.main-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #fff;
  margin-bottom: 22px;
}

html[dir="ltr"] .main-title {
  line-height: normal;
}

.main-pargh {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
}

.btn-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.first-btn {
  width: 160px;
  height: 50px;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border: none !important;
  outline: none !important;
  background-image: -webkit-gradient(linear, left top, right top, from(#a946b3), color-stop(#676ff1), color-stop(#676ff1), to(#a946b3));
  background-image: linear-gradient(to right, #a946b3, #676ff1, #676ff1, #a946b3);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  background-size: 300% 100%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.first-btn:hover {
  text-decoration: none;
  color: #fff;
  background-position: 100% 0;
}

.second-btn {
  width: 160px;
  height: 50px;
  border-radius: 25px;
  border: none !important;
  outline: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background-color: #21227e;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.second-btn:hover {
  text-decoration: none;
  color: #fff;
  background-color: #a748b4;
}

html[dir="ltr"] .second-btn {
  font-size: 14px;
}

.main-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  pointer-events: none;
}

.main-background img {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-background::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.main-background::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: #21227e;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(33, 34, 126, 0.501018)), to(rgba(33, 34, 126, 0)));
  background: linear-gradient(180deg, rgba(33, 34, 126, 0.501018) 50%, rgba(33, 34, 126, 0) 100%);
}

/*button down*/
.header-scroll-down-butt {
  width: 22px;
  height: 45px;
  border-radius: 11px;
  opacity: 0.5;
  border: 2px solid #fff;
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 11;
  background-color: transparent;
  padding: 0;
  display: block;
  margin: 0;
  outline: none !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-scroll-down-butt::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2px;
  left: 45%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2px;
  height: 7px;
  background-color: #fff;
  border-radius: 1.5px;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  -webkit-animation-name: sdb10;
  animation-name: sdb10;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
  75% {
    -webkit-transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-15px);
  }
}

@keyframes sdb10 {
  0% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  75% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@media only screen and (max-width: 991px) {
  .main-info {
    max-width: 55%;
  }
  .main-title {
    margin-bottom: 18px;
    font-size: 26px;
    line-height: unset;
  }
  .main-pargh {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .main-info {
    max-width: unset;
  }
  .main-title {
    text-align: center;
  }
  .main-pargh {
    text-align: center;
  }
  .btn-cont {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-scroll-down-butt {
    width: 20px;
    height: 40px;
  }
}

/*                              courses-section                    */
.courses-section {
  position: relative;
  margin-top: 160px;
  overflow: hidden;
}

.section-head {
  text-align: start;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 30px;
  color: #21227e;
  margin-bottom: 25px;
}

.mix-btn-cont {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 25px;
}

.mix-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: unset !important;
  outline: none !important;
  background-color: #e8e8f2;
  height: 40px;
  border-radius: 20px;
  margin: 0;
  padding: 0 15px;
  margin: 0;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: #21227e;
  outline-offset: 0;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}

.mix-btn:hover,
.mixitup-control-active,
.mix-btn:focus {
  border: none;
  color: #fff;
  background-color: #21227e;
}

.product-slider {
  position: relative;
  width: 100%;
}

.product-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  width: 100%;
}

.product-img img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.product-content {
  padding: 20px 0;
  background-color: #fff;
}

.product-category {
  display: block;
  color: #a748b4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: start;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-category:hover {
  color: #21227e;
}

.product-title {
  display: block;
  color: #21227e;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: start;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  min-height: 85px;
  -webkit-box-orient: vertical;
}

.product-link {
  width: 139px;
  height: 42px;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#a946b3), color-stop(#676ff1), color-stop(#676ff1), to(#a946b3));
  background-image: linear-gradient(to right, #a946b3, #676ff1, #676ff1, #a946b3);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  background-size: 300% 100%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-link:hover {
  text-decoration: none;
  color: #fff;
  background-position: 100% 0;
}

.product-slider .swiper-btn {
  position: absolute;
  z-index: 1;
  top: 117px;
  display: none;
  font-size: 30px;
  color: rgba(0, 0, 0, 0.302);
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-slider .swiper-btn:hover {
  color: #21227e;
}

@media (min-width: 1320px) {
  .product-slider .swiper-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.product-slider .swiper-btn i {
  z-index: 2;
}

.product-slider .swiper-btn.swiper-btn-next {
  left: -57px;
}

.product-slider .swiper-btn.swiper-btn-prev {
  right: -57px;
}

.product-slider .swiper-pagination {
  position: relative;
  width: 100%;
  bottom: auto;
  display: none;
  margin-top: 15px;
}

@media (max-width: 1320px) {
  .product-slider .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.product-slider .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: black;
  opacity: 0.3;
  margin: 0 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  border-radius: 50%;
}

.product-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #21227e;
}

.product-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #21227e;
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  .courses-section {
    margin-top: 40px;
  }
  .mix-btn-cont {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .mix-btn {
    white-space: nowrap;
    font-size: 14px;
    -webkit-margin-end: 15px;
            margin-inline-end: 15px;
  }
  .section-head {
    font-size: 24px;
  }
  .product-category {
    font-size: 12px;
  }
  .product-title {
    font-size: 14px;
    -webkit-line-clamp: 2;
    min-height: 42px;
  }
  .product-link {
    width: 120px;
    height: 35px;
    font-size: 14px;
  }
}

/*                              courses-section                    */
/*                              blog-section                    */
.blog-section {
  margin-top: 100px;
}

.blog-slider {
  position: relative;
}

.blog-section .swiper-container {
  padding: 20px 10px;
}

.blog {
  position: relative;
  margin: 10px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  max-width: 360px;
}

.blog-head {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  color: #21227e;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.blog-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  width: 100%;
  margin: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.blog-img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-figure:hover .blog-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
  text-align: start;
}

.blog-link {
  display: block;
  color: #21227e;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: start;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 48.02px;
}

.blog-link:hover {
  color: #a748b4;
}

.blog-pargh {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  width: 100%;
  margin: auto;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: start;
  min-height: 42px;
}

.blog-read {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #808080;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: start;
}

.blog-read:hover {
  color: #21227e;
}

@media (max-width: 991px) {
  .product-section {
    margin-top: 50px;
  }
}

.blog-slider .swiper-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.302);
  display: none;
  font-size: 30px;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-slider .swiper-btn:hover {
  color: #a748b4;
}

@media (min-width: 1320px) {
  .blog-slider .swiper-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.blog-slider .swiper-btn i {
  z-index: 2;
}

.blog-slider .swiper-btn.swiper-btn-next {
  left: -57px;
}

.blog-slider .swiper-btn.swiper-btn-prev {
  right: -57px;
}

.blog-slider .swiper-pagination {
  position: relative;
  width: 100%;
  bottom: auto;
  display: none;
  margin-top: 10px;
}

@media (max-width: 1320px) {
  .blog-slider .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.blog-slider .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: black;
  opacity: 0.3;
  margin: 0 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  border-radius: 50%;
}

.blog-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #21227e;
}

.blog-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #21227e;
  opacity: 1;
}

.blog-ancor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 118px;
  height: 40px;
  border-radius: 20px;
  background-color: #e8e8f3;
  color: #21227e;
  font-weight: 400;
  font-size: 14px;
  margin: 0 auto;
  margin-top: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}

.blog-ancor:hover {
  color: #fff;
  background-color: #a748b4;
}

@media only screen and (max-width: 991px) {
  .blog-section {
    margin-top: 50px;
  }
  .blog-head {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .blog-content {
    padding: 20px;
  }
  .blog-link,
  .blog-pargh {
    font-size: 15px;
  }
}

/*                              blog-section                    */
/*                      influencer-section                      */
.influencer {
  background-color: #21227e;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  margin-top: 100px;
}

.influencer-container {
  position: relative;
  z-index: 2;
}

.influencer-link {
  width: 210px;
  height: 60px;
  border-radius: 30px;
  font-size: 18px;
  margin: 0 auto 60px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#a946b3), color-stop(#676ff1), color-stop(#676ff1), to(#a946b3));
  background-image: linear-gradient(to right, #a946b3, #676ff1, #676ff1, #a946b3);
  background-size: 300% 100%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.influencer-link:hover {
  text-decoration: none;
  color: #fff;
  background-position: 100% 0;
}

.influencer-head {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  max-width: 890px;
  margin: 0 auto;
  margin-bottom: 35px;
}

.influencer-ancor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  max-width: 180px;
  text-decoration: none !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.influencer-ancor:hover .influencer-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  overflow: hidden;
}

.influencer-ancor:hover {
  color: #a748b4;
}

.influencer-name {
  margin-bottom: 8px;
  text-align: center;
  display: inline-block;
}

.influencer-title {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 20px;
  min-height: 46px;
  display: inline-block;
}

.influencer-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 164px;
  max-height: 164px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.influencer-img {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.influencer-slider {
  position: relative;
}

.influencer-slider .swiper-btn {
  position: absolute;
  z-index: 1;
  top: 70px;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.influencer-slider .swiper-btn:hover {
  color: #a748b4;
}

@media (min-width: 1320px) {
  .influencer-slider .swiper-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.influencer-slider .swiper-btn i {
  z-index: 2;
}

.influencer-slider .swiper-btn.swiper-btn-next {
  left: -67px;
}

.influencer-slider .swiper-btn.swiper-btn-prev {
  right: -67px;
}

.influencer-slider .swiper-pagination {
  position: relative;
  width: 100%;
  bottom: auto;
  display: none;
  margin-top: 20px;
}

.influencer-slider .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  border-radius: 50%;
}

.influencer-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #a748b4;
}

.influencer-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #a748b4;
  opacity: 1;
}

@media (max-width: 1320px) {
  .influencer-slider .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 991px) {
  .influencer {
    margin-top: 50px;
    padding: 50px 0;
  }
  .influencer-head {
    font-size: 26px;
  }
  .influencer-link {
    width: 190px;
    height: 50px;
    font-size: 18px;
  }
  .influencer-ancor {
    font-size: 16px;
  }
  .influencer-figure {
    max-width: 90px;
    max-height: 90px;
  }
  .influencer-name {
    min-height: 48px;
  }
}

.influencer-flex-parent ~ .swiper-pagination,
.influencer-flex-parent ~ .swiper-btn,
.courses-flex-parent ~ .swiper-pagination,
.courses-flex-parent ~ .swiper-btn,
.blogs-flex-parent ~ .swiper-pagination,
.blogs-flex-parent ~ .swiper-btn {
  display: none;
}

.influencer-flex,
.courses-flex,
.blogs-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.influencer-flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.blogs-flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.influencer-flex .swiper-slide,
.courses-flex .swiper-slide,
.blogs-flex .swiper-slide {
  width: auto;
  margin: 0 15px;
}

/*                      .influencer-section                      */
/*                              form-section                    */
.form-section {
  margin-top: 100px;
  min-height: 55vh;
}

.create-form {
  width: 504px;
  max-width: 100%;
  margin: 0 auto;
}

.create-form .form-head {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  color: #21227e;
  margin-bottom: 30px;
}

.create-form .form-group {
  margin-bottom: 10px;
  width: 100%;
  text-align: start;
}

.main-label {
  font-weight: 400;
  font-size: 14px;
  color: #21227e;
  text-align: start;
  text-transform: capitalize;
  margin-bottom: 10px;
  -webkit-margin-start: 15px;
  margin-inline-start: 15px;
}

.main-label.required::after {
  content: "*";
  font-size: 16px;
  color: #ff0000;
}

.create-form .form-input {
  background-color: #f7f7f7;
  border: 2px solid #f7f7f7;
  height: 45px;
  width: 100%;
  padding: 0 25px;
  border-radius: 25px;
  text-align: start;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  caret-color: #21227e;
}

.form-input[type="email"],
.form-input[type="tel"] {
  text-align: left;
}

.form-input[type="email"]::-webkit-input-placeholder,
.form-input[type="tel"]::-webkit-input-placeholder {
  text-align: start;
}

.form-input[type="email"]:-ms-input-placeholder,
.form-input[type="tel"]:-ms-input-placeholder {
  text-align: start;
}

.form-input[type="email"]::-ms-input-placeholder,
.form-input[type="tel"]::-ms-input-placeholder {
  text-align: start;
}

.form-input[type="email"]::placeholder,
.form-input[type="tel"]::placeholder {
  text-align: start;
}

.create-form .form-input::-webkit-input-placeholder {
  color: #808080;
}

.create-form .form-input:-ms-input-placeholder {
  color: #808080;
}

.create-form .form-input::-ms-input-placeholder {
  color: #808080;
}

.create-form .form-input::placeholder {
  color: #808080;
}

.create-form textarea.form-input {
  height: 100px;
  resize: none;
  padding: 15px 25px;
}

.create-form .form-input:focus {
  border-color: #a748b4;
  outline: 0;
}

.create-form .form-btn-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.form-domain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  direction: ltr;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.form-domain .form-input {
  padding-right: 120px;
}

.input-append {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5px;
  height: 32px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  color: #989898;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 991px) {
  .form-section {
    margin-top: 50px;
  }
}

/*                              form-section                    */
.success-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.success-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 80px);
}

.success-icon {
  font-size: 100px;
  margin-bottom: 5px;
  color: #74cd5c;
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  color: #21227e;
  margin-bottom: 15px;
}

.success-pargh {
  font-size: 18px;
  font-weight: 400;
  color: #21227e;
  margin-bottom: 30px;
  text-align: center;
}

.success-cont .first-btn {
  margin: 0;
  width: 166px;
  height: 50px;
  text-decoration: none !important;
}

.success-section .img-logo {
  text-align: center;
  margin-top: 50px;
}

.success-section .img-logo img {
  max-width: 160px;
}

@media only screen and (max-width: 767px) {
  .success-section .img-logo img {
    max-width: 110px;
  }
}

/*                                   footer                            */
footer {
  padding: 80px 0 60px;
  margin-top: 100px;
  background-color: #21227e;
  position: relative;
  overflow: hidden;
  text-align: start;
}

.footer-cont {
  margin-bottom: 75px;
}

.footer-head {
  font-weight: 400;
  font-size: 30px;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

.footer-head span {
  font-weight: 700;
}

.footer-info .social {
  display: none;
}

.nav-foot-header {
  padding: 0;
  margin: 0 0 25px;
}

.footer-list a {
  text-decoration: none;
}

.foot-header {
  text-transform: capitalize;
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.nav-foot-li {
  margin-bottom: 10px;
}

.nav-foot-link {
  color: #a9aaec;
  font-size: 15px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-foot-li .nav-foot-link:hover {
  color: #fff;
  text-decoration: none;
}

.contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: start;
  color: #a9aaec;
  font-size: 15px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-box i {
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
  font-size: 24px;
  color: #fff;
}

a.contact-box:hover {
  color: #fff;
  text-decoration: none;
}

.social {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.social a {
  text-decoration: none !important;
}

a.social-link {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  background-color: #fff;
  color: #21227e;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.social-link:hover {
  background-color: #a748b4;
  color: #fff;
}

a.social-link:last-of-type {
  margin: 0;
}

/*                             footer accordion                 */
.footer-accordion.nav-foot-header {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-accordion {
  cursor: pointer;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  padding: 0 15px;
  margin-bottom: 20px;
}

.news-letter .footer-panel {
  padding: 0;
}

.footer-accordion:after {
  content: "";
  font-family: "line Awesome Free";
  font-weight: 900;
  font-size: 13px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

html[dir="rtl"] .footer-accordion:after {
  content: "";
}

.footer-accordion.active:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

html[dir="rtl"] .footer-accordion.active:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/*                             footer accordion                 */
.form-head h2 {
  text-align: start;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-input {
  background-color: #fff;
  border: 2px solid #fff;
  height: 50px;
  width: 100%;
  padding: 0 25px;
  border-radius: 0;
  text-align: start;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  caret-color: #21227e;
}

.form-input::-webkit-input-placeholder {
  color: #808080;
}

.form-input:-ms-input-placeholder {
  color: #808080;
}

.form-input::-ms-input-placeholder {
  color: #808080;
}

.form-input::placeholder {
  color: #808080;
}

.form-input:focus {
  border-color: #a748b4;
  outline: 0;
}

html[dir="rtl"] [type="email"]::-webkit-input-placeholder,
html[dir="rtl"] [type="number"]::-webkit-input-placeholder,
html[dir="rtl"] [type="tel"]::-webkit-input-placeholder,
html[dir="rtl"] [type="url"]::-webkit-input-placeholder {
  text-align: end;
  direction: rtl;
}

html[dir="rtl"] [type="email"]:-ms-input-placeholder,
html[dir="rtl"] [type="number"]:-ms-input-placeholder,
html[dir="rtl"] [type="tel"]:-ms-input-placeholder,
html[dir="rtl"] [type="url"]:-ms-input-placeholder {
  text-align: end;
  direction: rtl;
}

html[dir="rtl"] [type="email"]::-ms-input-placeholder,
html[dir="rtl"] [type="number"]::-ms-input-placeholder,
html[dir="rtl"] [type="tel"]::-ms-input-placeholder,
html[dir="rtl"] [type="url"]::-ms-input-placeholder {
  text-align: end;
  direction: rtl;
}

html[dir="rtl"] [type="email"]::placeholder,
html[dir="rtl"] [type="number"]::placeholder,
html[dir="rtl"] [type="tel"]::placeholder,
html[dir="rtl"] [type="url"]::placeholder {
  text-align: end;
  direction: rtl;
}

textarea.form-input {
  height: 130px;
  resize: none;
  padding: 16px 20px;
}

.form-btn-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.form-btn {
  width: 154px;
  height: 50px;
  border-radius: 25px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border: none;
  outline: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#a946b3), color-stop(#676ff1), color-stop(#676ff1), to(#a946b3));
  background-image: linear-gradient(to right, #a946b3, #676ff1, #676ff1, #a946b3);
  background-size: 400% 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.form-btn:hover {
  text-decoration: none;
  color: #fff;
  background-position: 100% 0;
}

/*select2 style*/
/*add-new-address*/
select {
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.select2-container--default .select2-results__option--disabled {
  display: none;
}

.select2-container .select2-selection--single {
  background-color: #f7f7f7;
  border: 2px solid #f7f7f7;
  height: 45px;
  width: 100%;
  padding: 0 25px;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #808080;
  font-weight: 400;
  font-size: 14px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  position: relative;
  top: auto;
  bottom: auto;
  width: auto;
  height: auto;
}

.select2-container .select2-selection--single .select2-selection__arrow::after {
  content: "";
  font-size: 14px;
  font-family: "line Awesome Free";
  font-weight: 900;
  color: #808080;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-dropdown {
  background-color: #f7f7f7;
  border: none;
  border-radius: 0;
  overflow: hidden;
  z-index: 9;
}

.select2-container .select2-search--dropdown {
  padding: 0 10px;
}

.select2-container .select2-search--dropdown .select2-search__field {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #f7f7f7;
  border: 2px solid #a748b4;
  font-size: 14px;
  font-weight: 400;
  color: #808080;
  padding: 0 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.select2-container
.select2-search--dropdown
.select2-search__field::-webkit-input-placeholder {
  font-weight: 400;
  color: #808080;
}

.select2-container
.select2-search--dropdown
.select2-search__field:-ms-input-placeholder {
  font-weight: 400;
  color: #808080;
}

.select2-container
.select2-search--dropdown
.select2-search__field::-ms-input-placeholder {
  font-weight: 400;
  color: #808080;
}

.select2-container
.select2-search--dropdown
.select2-search__field::placeholder {
  font-weight: 400;
  color: #808080;
}

.select2-container .select2-search--dropdown .select2-search__field:focus {
  border-color: #a748b4;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-container .select2-search--dropdown .select2-search__field {
  text-align: start;
}

.select2-container .select2-results > .select2-results__options {
  scrollbar-width: thin;
  scrollbar-color: #21227e;
}

.select2-container
.select2-results
> .select2-results__options::-webkit-scrollbar {
  background-color: #21227e;
  width: 7px;
  height: 0px;
}

.select2-container
.select2-results
> .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #21227e;
}

.select2-container .select2-results__option {
  color: #808080;
  font-size: 14px;
  text-align: start;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-left: 15px;
  padding-right: 15px;
}

.select2-container .select2-results__option:hover {
  background-color: transparent;
  color: #a748b4;
}

.select2-container
.select2-results__option.select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #a748b4;
}

.select2-container.select2-container--open.select2-container--below
.select2-selection--single {
  border-bottom-color: transparent;
}

.select2-container--open .select2-selection.select2-selection--single {
  border: 2px solid #e6e6e6;
}

.select2-container.select2-container--open .select2-dropdown--below {
  border: 2px solid #e6e6e6;
  border-top: 0;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding-bottom: 10px;
}

.select2-container.select2-container--open .select2-dropdown--below {
  border-top-color: #e6e6e6;
}

.select2-container.select2-container--open
.select2-dropdown--below
.select2-search--dropdown {
  padding: 5px 10px;
}

.select2-container.select2-container--open .select2-dropdown--above {
  border-bottom-color: #e6e6e6;
}

.select2-container.select2-container--open
.select2-dropdown--above
.select2-search--dropdown {
  padding: 5px 10px;
}

.select2-container
.select2-search--dropdown
.select2-search__field:focus-visible {
  border: 2px solid #a748b4;
  outline: none;
}

/*select2 style*/
/*select2 style*/
.copy-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 70px 0 40px;
    margin-top: 50px;
  }
  footer .img-logo {
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
  }
  footer .social {
    display: none;
  }
  footer .footer-info {
    margin-bottom: 35px;
  }
  footer .footer-info .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-cont {
    margin-bottom: 40px;
  }
}

/*                                   footer                            */
.single-page header {
  background-color: #fff;
}

.breadcrumb-sec {
  position: relative;
  background-color: #21227e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 45px 0;
}

.page-head {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 0;
  text-transform: capitalize;
  text-align: center;
}

ol.breadcrumb {
  background-color: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

ol.breadcrumb li a,
ol.breadcrumb li span,
ol.breadcrumb li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  font-size: 14px;
  color: #a9aaec;
  font-weight: 400;
  text-decoration: none !important;
}

ol.breadcrumb li a:hover,
ol.breadcrumb li span:hover,
ol.breadcrumb li:hover {
  color: #a748b4;
}

ol.breadcrumb li:not(.active):after {
  content: "/";
  padding: 0 7px;
}

.single-page .blog-section {
  margin-top: 60px;
}

.blog-cont {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-cont .blog {
  margin: 0;
}

@media (max-width: 991px) {
  .breadcrumb-sec {
    background: none !important;
    padding: 40px 0;
  }
  ol.breadcrumb {
    display: none;
  }
  .breadcrumb-sec .page-head {
    color: #21227e;
  }
  .single-page .blog-section {
    margin-top: 20px;
  }
  .blog-cont {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.post-cont {
  margin-top: 30px;
}

.post-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 950px;
  margin: 0 auto;
}

.post-figure {
  max-width: 950px;
  margin-bottom: 35px;
}

.post-figure img {
  width: 100%;
}

.post-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
}

.post-data i {
  font-size: 24px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.post-data:last-of-type {
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}

.post-pargh {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 36px;
  text-align: justify;
  margin-bottom: 60px;
}

.post-pargh span:first-of-type {
  display: inline-block;
  margin-bottom: 40px;
}

.post-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 40px;
}

.tags-ancor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 36px;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  padding: 0 15px;
  background-color: #e0e0e0;
  text-decoration: none !important;
}

.tags-ancor:hover {
  color: #fff;
  background-color: #21227e;
}

.post-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 40px;
}

.social-ancor {
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  background-color: #e0e0e0;
  text-decoration: none !important;
}

.social-ancor i {
  font-size: 18px;
}

.social-ancor:hover {
  color: #fff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.social-ancor.social-custom {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 10px;
}

.social-ancor.social-custom i::after {
  content: "|";
  padding: 0 10px;
}

.social-ancor.facebook {
  background-color: #4080ff;
}

.social-ancor.twitter {
  background-color: #40bff5;
}

.social-ancor.linkedin {
  background-color: #238cc8;
}

.social-ancor.tumblr {
  background-color: #35465c;
}

.social-ancor.pinterest {
  background-color: #e13138;
}

.social-ancor.reddit {
  background-color: #ff4500;
}

.social-ancor.vk {
  background-color: #45668e;
}

.social-ancor.envelope {
  background-color: #333333;
}

.social-ancor.print {
  background-color: #444444;
}

.post-Navigate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #e5e8ed;
  border-bottom: 1px solid #e5e8ed;
  padding: 25px 0;
}

.Navigate-ancor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  font-size: 18px;
  color: #b2b2b2;
  text-decoration: none !important;
}

.Navigate-ancor:hover {
  color: #21227e;
}

.Navigate-ancor i {
  font-size: 30px;
}

html[dir="ltr"] .Navigate-ancor i {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.nav-next i {
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
}

.nav-prev i {
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
}

.comment-section {
  margin-top: 60px;
}

.comment-cont {
  border-top: 1px solid #e5e8ed;
  padding-top: 35px;
}

.comment-head {
  font-weight: 700;
  font-size: 28px;
  color: #21227e;
  text-align: start;
  margin-bottom: 30px;
}

.comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 15px;
}

.comment-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #e5e8ed;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.comment-list li:last-of-type {
  border-bottom: none;
}

.comment-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  max-width: 100%;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.comment-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 10px;
  text-align: start;
  max-width: 670px;
}

.comment-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

.comment-name {
  font-weight: 700;
  font-size: 16px;
  color: #21227e;
}

.comment-date {
  font-weight: 400;
  font-size: 12px;
  color: #999999;
}

.comment-date::before {
  content: "-";
  padding: 0 8px;
}

.comment-data {
  font-weight: 300;
  font-size: 16px;
  color: #000000;
}

.comment-ancor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 242px;
  height: 44px;
  border-radius: 22px;
  background-color: transparent;
  outline: none !important;
  border: 2px solid #21227e;
  color: #21227e;
  font-weight: 400;
  font-size: 16px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.comment-ancor:hover {
  background-color: #21227e;
  color: #fff;
}

.comment-form-head {
  font-weight: 700;
  font-size: 22px;
  color: #21227e;
  text-align: start;
  margin-bottom: 8px;
}

.comment-form-pargh {
  text-align: start;
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  position: relative;
  margin-bottom: 40px;
}

.comment-form-pargh::after {
  content: "*";
  font-size: 16px;
  color: #ff0000;
}

.comment-form {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main-label {
  font-weight: 400;
  font-size: 16px;
  color: #21227e;
  text-align: start;
  text-transform: capitalize;
  margin-bottom: 10px;
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
}

.main-label.required::after {
  content: "*";
  font-size: 16px;
  color: #ff0000;
}

.form-group {
  text-align: start;
  position: relative;
}

.main-form-input {
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  height: 50px;
  width: 100%;
  padding: 0 25px;
  border-radius: 25px;
  text-align: start;
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  caret-color: #21227e;
}

.main-form-input:focus {
  border-color: #21227e;
  outline: 0;
}

textarea.main-form-input {
  height: 100px;
  resize: none;
  padding: 14px 20px;
}

.comment-form .input-row:nth-of-type(2n + 1) {
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.comment-form .input-row {
  width: calc(50% - 7.5px);
}

@media only screen and (max-width: 991px) {
  .post-pargh {
    font-size: 16px;
    line-height: 24px;
  }
  .post-pargh span:first-of-type {
    margin-bottom: 20px;
  }
  .post-tags,
  .post-social {
    overflow: auto;
    padding-bottom: 15px;
  }
  .post-tags a,
  .post-social a {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .comment-head {
    font-size: 22px;
  }
  .comment-form-head {
    font-size: 18px;
  }
  .comment-form .input-row:nth-of-type(2n + 1) {
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
  }
  .comment-form .input-row {
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}

.influencer-flex-parent ~ .swiper-pagination,
.influencer-flex-parent ~ .swiper-btn {
  display: none;
}

.influencer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.influencer-flex .swiper-slide {
  width: auto;
  margin: 0 15px;
}

.influencer-detail {
  margin-top: 60px;
}

.influencer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #21227e;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  .influencer-detail {
    margin: 10px 0 50px;
  }
  .influencer-box {
    font-size: 16px;
  }
}

.custom-pagention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.custom-pagention a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #4d4d4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 4px;
  line-height: 34px;
  background-color: #f3f3f9;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.custom-pagention a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #a748b4;
}

.custom-pagention a i {
  font-size: 16px;
}

html[dir="ltr"] .custom-pagention a i {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.terms {
  font-weight: 500;
  font-size: 16px;
  display: block;
  color: #21227e;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
}

.terms a {
  display: inline-block;
  color: #21227e;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.terms a:hover {
  color: #21227e;
}

/***************************pop-up*************************/
.terms-modal .modal-dialog {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

@media (max-width: 480px) {
  .terms-modal .modal-dialog {
    width: calc(100vw - 40px);
  }
}

.terms-modal .modal-content {
  padding: 50px 45px 36px;
}

.modal-content {
  border-radius: 0;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
}

.modal-header {
  padding: 0;
  border: none;
  position: static;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal-header .close {
  position: absolute;
  top: 15px;
  inset-inline-end: 15px;
  padding: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.2);
  font-size: 16px;
  width: auto;
  height: auto;
  opacity: 1;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal-header .close:hover,
.modal-header .close:focus {
  color: #a748b4;
}

.modal-title {
  margin: 0 auto;
  font-weight: 700;
  font-size: 20px;
  color: #21227e;
  text-align: center;
  margin-bottom: 3vh;
}

.modal-body {
  padding: 0;
  margin: 0;
}

.modal-body p {
  color: #666666;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
  text-align-last: center;
}

@media (max-width: 480px) {
  .terms-modal .modal-content {
    padding: 40px 25px 30px;
  }
}

.check-label {
  text-align: start;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #21227e;
  -webkit-padding-start: 35px;
          padding-inline-start: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.check-group input[type="checkbox"],
.check-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.check-group .checkmark {
  border: 2px solid transparent;
  border-radius: 0;
  background-color: #f1f1f1;
  width: 20px;
  height: 20px;
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.check-group .custom-checkmark {
  border-radius: 3px;
}

.check-group input[type="checkbox"] ~ .checkmark {
  border-radius: 3px;
}

.check-group:hover input ~ .checkmark {
  background-color: #f1f1f1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.check-group input:checked ~ .checkmark {
  background-color: #21227e;
}

.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  visibility: visible;
}

.check-group input:checked ~ .checkmark:after {
  opacity: 1;
  visibility: visible;
}

.check-group .checkmark:after {
  content: "\f00c";
  font-family: "line Awesome Free";
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
}

/***************************pop-up*************************/
/*# sourceMappingURL=main.css.map */