/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --sds-ff-body: 'Inter', sans-serif;
  --sds-ff-heading: 'Roboto', sans-serif;
}

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

body,
html {
  position: relative;
  overflow-x: hidden;
}

/**
  Typography CSS
*/
body {
  font-size: 16px;
  font-family: var(--sds-ff-body);
  color: #303030;
  font-weight: normal;
  word-break: break-word;
  background-color: #ffffff;
  line-height: 30px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #121212;
  font-weight: 700;
  font-family: var(--sds-ff-heading);
  margin-top: 0;
  line-height: 1.2;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: 90px;
}

h2 {
  font-size: 58px;
  line-height: 1.1;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
  line-height: 1.2;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 75px;
  }

  h2 {
    font-size: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  transition: all 0.3s ease-in-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus,
button:focus:not(:focus-visible) {
  outline: 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input:not([type=submit]):not([type=radio]):not([type=checkbox]),
textarea {
  outline: none;
  height: auto;
  width: 100%;
  color: #000000;
  border: none;
}

input[type=color] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--sds-color-theme-primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

*::-moz-selection {
  background: #000000;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: #000000;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #000000;
  color: #ffffff;
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: #000000;
  font-size: var(--sds-fs-body);
  opacity: 1;
}

*::-moz-placeholder {
  color: #000000;
  font-size: var(--sds-fs-body);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #000000;
  font-size: var(--sds-fs-body);
  opacity: 1;
}

*::-ms-input-placeholder {
  color: #000000;
  font-size: var(--sds-fs-body);
  opacity: 1;
}

*::placeholder {
  color: #ffffff;
  font-size: var(--sds-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
img {
  max-width: 100%;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

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

.page-width {
  position: relative;
  max-width: 1620px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.page-width::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 120%;
  left: 15px;
  top: 0;
  background-color: rgba(13, 28, 50, 0.1);
}

.page-width::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 120%;
  left: auto;
  right: 15px;
  top: 0;
  background-color: rgba(13, 28, 50, 0.1);
}

/**
 	Button CSS
*/

.primary-btn {
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
  color: #ffffff;
  font-size: 16px;
  font-family: var(--sds-ff-heading);
  font-weight: 600;
  background: #5E35B1;
  position: relative;
  overflow: hidden;
  padding: 23px 25px;
  line-height: 1;
}

.primary-btn:hover {
  color: #ffffff;
}

.primary-btn:focus {
  color: #ffffff;
}



.primary-btn .anim-btn {
  position: relative;
  text-shadow: 0 23px 0 #ffffff;
  transition: all ease 0.3s;
  overflow: hidden;
}

.primary-btn .anim-btn .anim {
  display: flex;
  align-items: center;
  backface-visibility: hidden;
  transform: translateY(0);
  transition: all ease 0.3s;
}

.primary-btn:hover .anim-btn .anim {
  text-shadow: 0 23px 0 #ffffff;
  transform: translateY(-23px);
}






.primary-btn .btn-icon {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  transform: rotate(0deg);

}

.primary-btn .btn-icon .show-icon {
  position: relative;
  transition: all 0.4s ease-in-out 0s;
}

.primary-btn .btn-icon .hide-icon {
  position: absolute;
  transform: translateX(-150%);
}

.primary-btn:hover .btn-icon .show-icon {
  transform: translateX(150%);
}

.primary-btn:hover .btn-icon .hide-icon {
  transform: translateX(0);
}





.transparent-btn {
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
  color: #303030;
  font-size: 16px;
  font-family: var(--sds-ff-heading);
  font-weight: 600;
  padding: 22px 25px;
  border: 1px solid #303030;
  line-height: 1;
}

.transparent-btn:hover {
  color: #303030;
}

.transparent-btn .anim-btn {
  position: relative;
  text-shadow: 0 23px 0 #303030;
  transition: all ease 0.3s;
  overflow: hidden;
}

.transparent-btn .anim-btn .anim {
  display: flex;
  align-items: center;
  backface-visibility: hidden;
  transform: translateY(0);
  transition: all ease 0.3s;
}

.transparent-btn:hover .anim-btn .anim {
  text-shadow: 0 23px 0 #303030;
  transform: translateY(-23px);
}

.transparent-btn .btn-icon {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  transform: rotate(0deg);

}

.transparent-btn .btn-icon .show-icon {
  position: relative;
  transition: all 0.4s ease-in-out 0s;
}

.transparent-btn .btn-icon .hide-icon {
  position: absolute;
  transform: translateX(-150%);
}

.transparent-btn:hover .btn-icon .show-icon {
  transform: translateX(150%);
}

.transparent-btn:hover .btn-icon .hide-icon {
  transform: translateX(0);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
  color: #303030;
  font-size: 16px;
  font-family: var(--sds-ff-heading);
  font-weight: 500;
  padding: 14px 20px;
  letter-spacing: 0.15px;
  background: #EFEBF7;
  line-height: 1;
}

.secondary-btn:hover {
  color: #303030;
}

.secondary-btn .anim-btn {
  position: relative;
  text-shadow: 0 23px 0 #303030;
  transition: all ease 0.3s;
  overflow: hidden;
}

.secondary-btn .anim-btn .anim {
  display: flex;
  align-items: center;
  backface-visibility: hidden;
  transform: translateY(0);
  transition: all ease 0.3s;
}

.secondary-btn:hover .anim-btn .anim {
  text-shadow: 0 23px 0 #303030;
  transform: translateY(-23px);
}

@media (max-width: 575px) {
  .primary-btn {
    padding: 17px 25px;
  }

  .transparent-btn {
    padding: 16px 25px;
  }
}

/**----------------------------------------
START: Header Mobile CSS
----------------------------------------*/
.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(94, 53, 177, 0.5);
  transition: all 0.3s ease-out 0s;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-area {
  position: fixed;
  right: -490px;
  top: 0;
  width: 450px;
  height: 100%;
  z-index: 9999;
  scrollbar-width: none;
  background-color: #090909;
  overflow-y: scroll;
  transition: all 0.3s ease-out 0s;
}

.mobile-menu-area.opened {
  right: 0;
}

.mobile-main-wrapper .mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
}

.mobile-main-wrapper .title {
  color: #ffffff;
  font-weight: 500;
}

.mobile-main-wrapper .close-btn svg path {
  fill: #ffffff;
}

.mobile-main-wrapper .nav-mobile-menu {
  padding: 15px 20px;
}

.mobile-main-wrapper .nav-mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.mobile-main-wrapper .nav-mobile-menu ul li a {
  font-size: 18px;
  color: #ffffff;
}

.mobile-toggle .mobile-bar {
  display: flex;
}

@media (max-width: 991px) {
  .mobile-menu-area {
    width: 320px;
  }
}

/* !END: Header Mobile CSS *

/**----------------------------------------
START: Header CSS
----------------------------------------*/

.header-area {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  padding: 23px 0;
  z-index: 98;
  transition: all 0.3s ease-in-out 0s;
}

.header-area.header-absolute {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: transparent;
}

.header-area .page-width::after,
.header-area .page-width::before {
  height: 110px;
  top: -25px;
}

.header-main-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.header-main-wrapper .header-menu-area {
  display: flex;
  flex-wrap: wrap;
  column-gap: 55px;
  align-items: center;
}

.site-logo {
  display: inline-flex;
  max-width: 157px;
  width: 100%;
}

.site-logo a {
  display: inline-flex;
}

.site-logo a img {
  width: 100%;
}

.header-menu-area .nav-mainmenu ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 35px;
  align-items: center;
}

.header-menu-area .nav-mainmenu ul li {
  position: relative;
  overflow: hidden;
}

.header-menu-area .nav-mainmenu ul li a {
  color: #303030;
  letter-spacing: 0.14px;
}

.header-menu-area .nav-mainmenu ul li a:hover {
  color: #5E35B1;
}

.header-button .primary-btn {
  font-size: 14px;
  font-weight: 400;
  padding: 13px 25px;
  letter-spacing: 0.13px;
}

.header-area .mobile-toggle {
  display: none;
}

.header-area .mobile-toggle .mobile-bar {
  display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-wrapper .header-menu-area {
    column-gap: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-area .mobile-toggle {
    display: block;
  }

  .header-area .header-button {
    display: none;
  }

  .header-area .nav-mainmenu {
    display: none;
  }
}

@media (max-width: 575px) {
  .header-area {
    padding: 15px 0;
  }

  .header-area .mobile-toggle {
    display: block;
  }

  .header-area .header-button {
    display: none;
  }

  .header-area .nav-mainmenu {
    display: none;
  }

  .site-logo {
    max-width: 120px;
  }
}

/* !END: Header CSS *

/**----------------------------------------
START: Banner CSS
----------------------------------------*/
.banner-section {
  position: relative;
  padding-top: 105px;
}

.banner-main-wrapper {
  background: #F8F8FE;
  padding: 110px 50px 0px;
  border-top: 1px solid rgba(13, 28, 50, 0.1);
  text-align: center;
}

.banner-main-wrapper .banner-title {
  font-weight: 800;
  line-height: 1;
}

.banner-main-wrapper .banner-title .active-color {
  color: #5E35B1;
}

.banner-main-wrapper .banner-desc {
  font-size: 24px;
  color: rgba(48, 48, 48, 0.8);
  font-family: var(--sds-ff-heading);
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  line-height: 1.5;
}

.banner-main-wrapper .banner-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  row-gap: 15px;
  margin-top: 47px;
}

.counter-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 110px;
  row-gap: 20px;
  margin-top: 54px;
}

.counter-item .count-number {
  color: #121212;
  font-size: 34px;
  font-weight: 600;
  font-family: var(--sds-ff-heading);
  letter-spacing: 0.25px;
  line-height: 1;
}

.counter-item .sub-title {
  display: block;
  color: rgba(48, 48, 48, 0.8);
  margin-top: 3px;
}

.banner-rating-wrapper {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-top: 80px;
  padding: 10px 50px;
}

.banner-rating-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  mask-image: url(../images/shape/shape-1.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

.banner-rating-wrapper::after {
  display: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  mask-image: url(../images/shape/shape-2.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

.banner-rating-wrapper ul {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.banner-rating-wrapper .rating-star {
  position: relative;
  z-index: 1;
}

.banner-rating-wrapper ul li span {
  display: flex;
}

.banner-rating-wrapper .sub-title {
  display: block;
  position: relative;
  font-family: var(--sds-ff-heading);
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-main-wrapper .banner-desc {
    font-size: 20px;
  }

  .counter-wrapper {
    column-gap: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-main-wrapper {
    padding: 80px 35px 0px;
  }

  .banner-main-wrapper .banner-desc {
    font-size: 20px;
  }

  .counter-wrapper {
    column-gap: 50px;
    margin-top: 40px;
  }

  .banner-main-wrapper .banner-button {
    margin-top: 35px;
  }

  .banner-rating-wrapper {
    flex-direction: column;
    padding: 8px 50px;
    margin-top: 35px;
  }

  .banner-rating-wrapper::before {
    display: none;
  }

  .banner-rating-wrapper::after {
    display: block;
  }
}

@media (max-width: 575px) {
  .banner-section {
    padding-top: 70px;
  }

  .banner-main-wrapper {
    padding: 80px 15px 0px;
  }

  .banner-main-wrapper .banner-desc {
    font-size: 18px;
  }

  .banner-main-wrapper .banner-button {
    margin-top: 30px;
  }

  .counter-wrapper {
    column-gap: 25px;
    margin-top: 30px;
  }

  .banner-rating-wrapper {
    flex-direction: column;
    margin-top: 30px;
    padding: 2px 65px;
  }

  .banner-rating-wrapper::before {
    display: none;
  }

  .banner-rating-wrapper::after {
    display: block;
  }

  .banner-rating-wrapper ul li span img {
    max-width: 15px;
    width: 100%;
  }

  .banner-rating-wrapper .sub-title {
    font-size: 10px;
    margin-top: 4px;
    max-width: 160px;
    width: 100%;
    line-height: 1.2;
  }
}

/* !END: Banner CSS *

/**----------------------------------------
START: Studies CSS
----------------------------------------*/
.studies-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.studies-section .studies-area {
  padding-bottom: 120px;
  border-bottom: 1px solid rgba(13, 28, 50, 0.1);
  padding-left: 15px;
  padding-right: 15px;
}

.studies-main-wrapper {
  display: flex;
  align-items: center;
  column-gap: 88px;
  row-gap: 30px;
  max-width: 1375px;
  width: 100%;
  margin: 0 auto;
}

.studies-item-wrap {
  display: flex;
  align-items: start;
  column-gap: 25px;
  row-gap: 25px;
}

.studies-item {
  border: 1px solid #E6E6E6;
  padding: 20px 20px;
}

.studies-item .studies-image {
  display: flex;
  margin-bottom: 22px;
}

.studies-item .studies-text .studies-desc {
  font-family: var(--sds-ff-heading);
  letter-spacing: 0.15px;
  margin-top: 10px;
  line-height: 1.5;
}

.studies-item .studies-text .studies-button {
  margin-top: 26px;
}

.studies-item .studies-text .studies-title a:hover {
  color: #5E35B1;
}

.studies-main-wrapper .studies-content {
  max-width: 360px;
  width: 100%;
}

.studies-main-wrapper .studies-content .studies-desc {
  font-size: 18px;
  font-family: var(--sds-ff-heading);
  margin-top: 18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .studies-main-wrapper {
    column-gap: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .studies-main-wrapper {
    column-gap: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .studies-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .studies-section .studies-area {
    padding-bottom: 80px;
  }

  .studies-main-wrapper .studies-content {
    max-width: 100%;
  }

  .studies-main-wrapper {
    flex-direction: column-reverse;
    align-items: start;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .studies-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .studies-section .studies-area {
    padding-bottom: 80px;
  }

  .studies-main-wrapper .studies-content {
    max-width: 100%;
  }

  .studies-main-wrapper {
    flex-direction: column-reverse;
    align-items: start;
  }

  .studies-item {
    padding: 20px 15px;
  }
}

@media (max-width: 575px) {
  .studies-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .studies-section .studies-area {
    padding-bottom: 60px;
  }

  .studies-main-wrapper .studies-content {
    max-width: 100%;
  }

  .studies-main-wrapper {
    flex-direction: column-reverse;
    align-items: start;
  }

  .studies-item-wrap {
    flex-direction: column;
  }

  .studies-item {
    padding: 20px 15px;
  }
}

/* !END: Studies CSS *

/**----------------------------------------
START: Feature CSS
----------------------------------------*/
.feature-section {
  padding-bottom: 120px;
}

.feature-pagination {
  margin-top: 10px;
  text-align: center;
}

.feature-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #12121266;
  border-radius: 50%;
  opacity: 1;
}

.feature-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #5E35B1;
}

.feature-section .feature-area {
  max-width: 1375px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.feature-section .heading-area {
  margin-bottom: 58px;
  text-align: center;
}

.feature-section .heading-area .heading-desc {
  font-size: 18px;
  font-family: var(--sds-ff-heading);
  max-width: 595px;
  width: 100%;
  margin: 16px auto 0;
}

.feature-main-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 25px;
  row-gap: 24px;
}

.feature-item {
  background: #F8F8FE;
  box-shadow: 0px 24px 74px 0px #0B21410A;
  padding: 65px 35px;
  text-align: center;
  transition: all 0.3s ease-in-out 0s;
}

.feature-item .feature-icon {
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out 0s;
}

.feature-item .feature-content .feature-title {
  line-height: 1.6;
}

.feature-item .feature-content .feature-desc {
  display: block;
  font-family: var(--sds-ff-heading);
  margin-top: 5px;
  line-height: 1.4;
}

.feature-item:hover {
  background: #ffffff;
  transform: translateY(-4px);
}

.feature-item:hover .feature-icon {
  animation: gelatine 0.6s;
}

.feature-slider-wrapper {
  display: none;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature-item {
    padding: 35px 12px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-main-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-item {
    padding: 35px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-section {
    padding-bottom: 80px;
  }

  .feature-main-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-item {
    padding: 35px 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-section {
    padding-bottom: 80px;
  }

  .feature-main-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    padding: 35px 12px;
  }
}

@media (max-width: 575px) {
  .feature-section {
    padding-bottom: 60px;
  }

  .feature-section .heading-area {
    margin-bottom: 40px;
  }

  .feature-main-wrapper {
    display: none;
  }

  .feature-slider-wrapper {
    display: block;
  }

  .feature-item {
    padding: 35px 30px;
  }
}

/* !END: Feature CSS *

/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.testimonial-section {
  position: relative;
  padding-top: 100px;
  padding-left: 110px;
  padding-bottom: 100px;
  background: #0F0635;
  max-width: 1590px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-section .page-width::after,
.testimonial-section .page-width::before {
  display: none;
}

.testimonial-slider-nav-pag-wrapper {
  position: relative;
  margin-top: 20px;
}

.testimonial-slider-nav-pag-wrapper.mobile {
  display: none;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  column-gap: 20px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.testimonial-navigation span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #ffffff66;
  cursor: pointer;
}

.testimonial-navigation span img {
  filter: brightness(0.4) grayscale(0);
}

.testimonial-navigation span:hover {
  border: 1px solid #ffffff;
}

.testimonial-navigation span:hover img {
  filter: brightness(1) grayscale(1);
}

.testimonial-section .testimonial-slider {
  width: calc(100% + 215px);
}

.testimonial-section .testimonial-slider-nav-pag-wrapper .testimonial-pagination {
  position: absolute;
  left: 18%;
  top: 18%;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 2px;
  background-color: #ffffff66;
  border-radius: 0px;
  opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 80px;
  background-color: #ffffff;
}

.testimonial-section .heading-area {
  width: 33%;
}

.testimonial-section .heading-area .heading-title {
  color: #ffffff;
}

.testimonial-section .heading-area .heading-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-family: var(--sds-ff-heading);
  margin-top: 20px;
}

.testimonial-main-wrapper {
  display: flex;
  align-items: start;
  column-gap: 65px;
  row-gap: 30px;
}

.testimonial-slider-wrapper {
  width: 67%;
}

.testimonial-item {
  background: #F8F8FE;
  padding: 26px 50px 28px 24px;
}

.testimonial-item .testimonial-rating {
  line-height: 1;
}

.testimonial-item .testimonial-rating ul {
  display: flex;
  align-items: center;
}

.testimonial-item .testimonial-quote span {
  display: flex;
  margin-top: 35px;
  line-height: 1;
}

.testimonial-item .testimonial-desc {
  display: block;
  color: #222D3F;
  font-family: var(--sds-ff-heading);
  letter-spacing: 0.16px;
  margin-top: 20px;
  line-height: 1.7;
}

.testimonial-item .testimonial-author {
  margin-top: 32px;
}

.testimonial-item .testimonial-author .designation {
  display: block;
  color: #616C7E;
  font-size: 15px;
  font-family: var(--sds-ff-heading);
  margin-top: 5px;
  letter-spacing: 0.14px;
  line-height: 1.4;
}

@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .testimonial-section {
    padding-left: 15px;
  }

  .testimonial-section .heading-area {
    width: 35%;
  }

  .testimonial-slider-wrapper {
    width: 60%;
  }

  .testimonial-section .testimonial-slider {
    width: calc(100% + 185px);
  }

  .testimonial-item {
    padding: 26px 20px 28px 24px;
  }

  .testimonial-main-wrapper {
    column-gap: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section {
    padding-left: 15px;
  }

  .testimonial-main-wrapper {
    column-gap: 30px;
  }

  .testimonial-item {
    padding: 26px 20px 28px 24px;
  }

  .testimonial-section .testimonial-slider-nav-pag-wrapper .testimonial-pagination {
    position: absolute;
    left: 25%;
    top: 18%;
  }

  .testimonial-pagination .swiper-pagination-bullet {
    width: 25px;
  }

  .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 15px;
  }

  .testimonial-slider-nav-pag-wrapper {
    display: none;
  }

  .testimonial-slider-nav-pag-wrapper.mobile {
    display: block;
  }

  .testimonial-slider-wrapper,
  .testimonial-section .heading-area {
    width: 100%;
  }

  .testimonial-main-wrapper {
    flex-direction: column;
  }

  .testimonial-navigation {
    justify-content: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 15px;
  }

  .testimonial-slider-nav-pag-wrapper {
    display: none;
  }

  .testimonial-slider-nav-pag-wrapper.mobile {
    display: block;
  }

  .testimonial-slider-wrapper,
  .testimonial-section .heading-area {
    width: 100%;
  }

  .testimonial-main-wrapper {
    flex-direction: column;
  }

  .testimonial-navigation {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .testimonial-section {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 15px;
  }

  .testimonial-slider-nav-pag-wrapper {
    display: none;
  }

  .testimonial-slider-nav-pag-wrapper.mobile {
    display: block;
  }

  .testimonial-slider-wrapper,
  .testimonial-section .heading-area {
    width: 100%;
  }

  .testimonial-main-wrapper {
    flex-direction: column;
  }

  .testimonial-navigation {
    justify-content: center;
  }

  .testimonial-section .testimonial-slider {
    width: 100%;
  }

  .testimonial-navigation span {
    width: 50px;
    height: 50px;
  }

  .testimonial-item {
    padding: 26px 20px 28px 24px;
  }
}

/* !END: Testimonial CSS *

/**----------------------------------------
START: Success CSS
----------------------------------------*/
.success-section {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.success-section .page-width::before,
.success-section .page-width::after {
  height: 250%;
  top: -130px;
}

.success-section .heading-area {
  max-width: 625px;
  width: 100%;
}

.success-main-wrapper {
  display: flex;
  align-items: end;
  column-gap: 50px;
  row-gap: 30px;
  max-width: 1375px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.success-section .heading-area .sub-title {
  display: block;
  font-size: 24px;
  font-family: var(--sds-ff-heading);
  font-weight: 700;
  letter-spacing: 0.16px;
  margin-bottom: 20px;
}

.success-main-wrapper .success-content .success-desc {
  font-size: 18px;
  font-family: var(--sds-ff-heading);
  letter-spacing: 0.16px;
}

.success-main-wrapper .success-content .success-desc span {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.16px;
}

.success-main-wrapper .success-content .success-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 24px;
  row-gap: 20px;
  margin-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .success-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .success-main-wrapper {
    align-items: start;
    flex-direction: column;
  }

  .success-main-wrapper .success-content .success-button {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .success-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .success-main-wrapper {
    align-items: start;
    flex-direction: column;
  }

  .success-main-wrapper .success-content .success-button {
    margin-top: 25px;
  }
}

@media (max-width: 575px) {
  .success-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .success-section .heading-area .sub-title {
    font-size: 20px;
  }

  .success-main-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .success-main-wrapper .success-content .success-button {
    justify-content: center;
    margin-top: 25px;
  }
}

/* !END: Success CSS *

/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-area {
  position: relative;
  background: #F8F8FE;
  padding: 24px 15px;
  overflow: hidden;
}

.footer-area .page-width::after,
.footer-area .page-width::before {
  display: none;
}

.footer-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 15px;
  max-width: 1375px;
  width: 100%;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  max-width: 157px;
  width: 100%;
}

.footer-logo a {
  display: inline-flex;
}

.footer-logo a img {
  width: 100%;
}

.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 35px;
}

.footer-menu ul li {
  position: relative;
  overflow: hidden;
}

.footer-menu ul li a {
  color: #303030;
  letter-spacing: 0.14px;
}

.footer-menu ul li a:hover {
  color: #5E35B1;
}

@media (max-width: 575px) {
  .footer-logo {
    max-width: 120px;
  }

  .footer-main-wrapper {
    flex-direction: column;
  }

  .footer-menu ul {
    column-gap: 25px;
  }
}

@keyframes gelatine {

  from,
  to {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.7, 1.1);
  }

  50% {
    transform: scale(1.1, 0.7);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

.banner-rating-wrapper .rating-star li:last-child img {
    width: 24px;
    height: 24px;
    padding: 1.5px;
}

/* !END: Footer CSS *