:root {
  --white-color: #fff !important;
  --black-color: #2E3033 !important;
  --grey-color: #586563;
  --primary-color: #5547FF;
  --primary-color-rgb: 85, 71, 255;
  --secondary-color: #E2F561;
  --accent-color: #FEDC6E;
  --bg-color: #fff;
  --font-family: "Urbanist", sans-serif;
  --font-family-2: "Inter", sans-serif;
  --font-awesome: "Font Awesome 6 Free";
  --font-size-default: 16px;
  --font-weight-default: 400;
  --font-size-theme: 18px;
  --line-height-theme: 1.6;
  --font-weight-theme: 800;
  --button-height: 56px;
  --header-height: 70px;
  --gap: 15px;
}

body {
  background-color: var(--bg-color);
  color: var(--grey-color);
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  line-height: var(--line-height-theme);
}

h1 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 115px;
  font-weight: 400;
  line-height: 1;
}
h1 span {
  font-weight: 500;
  color: var(--secondary-color);
}
h1:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 84px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 66px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 44px;
  }
}

h2 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}
h2:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}
h3:not(:last-child) {
  margin-bottom: 15px;
}

h4 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}
h4:not(:last-child) {
  margin-bottom: 20px;
}

h5 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
h5:not(:last-child) {
  margin-bottom: 15px;
}

h6 {
  color: var(--secondary-color);
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: 400;
  line-height: 1;
}
h6:not(:last-child) {
  margin-bottom: 18px;
}
h6.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 11px 14px 10px;
}
h6.subtitle::before, h6.subtitle::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}
h6.subtitle-2 {
  color: var(--black-color);
  display: flex;
  align-items: center;
  gap: 4px;
}
h6.subtitle-2::before {
  content: url(../img/d.svg);
}
h6.subtitle-2::after {
  content: url(../img/d.svg);
}
h6.subtitle-2::before, h6.subtitle-2::after {
  width: 15px;
}
h6.subtitle-3 {
  display: inline-block;
  background-color: #C8E4DC;
  color: #0F513F;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 11px 14px 10px;
}
h6.subtitle-3.transparent {
  background-color: transparent;
  border-color: rgba(36, 45, 49, 0.32);
}
h6.subtitle-3.text-uppercase {
  padding: 12px 14px 9px;
}

p,
main li,
ol li::marker {
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: 500;
  line-height: var(--line-height-theme);
}

p:not(:last-child), ul:not(:last-child), ol:not(:last-child) {
  margin-bottom: 20px;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6, .dark p, .dark li {
  color: var(--white-color);
}
.dark h6.subtitle {
  border-color: rgba(255, 255, 255, 0.3);
}
.dark h6.subtitle::before, .dark h6.subtitle::after {
  background-color: var(--white-color);
}
.dark li::marker {
  color: var(--white-color);
}

main input[type=text],
main input[type=email],
main textarea {
  --border-width: 1px;
  width: 100%;
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  line-height: var(--line-height-theme);
  border: var(--border-width) solid #e7e7e8;
  border-width: var(--border-width);
  border-radius: 8px;
  padding: 16px 25px;
  outline: none;
}
main input[type=text]::-moz-placeholder, main input[type=email]::-moz-placeholder, main textarea::-moz-placeholder {
  color: var(--grey-color);
  font-family: var(--font-family);
  text-transform: capitalize;
}
main input[type=text]::placeholder,
main input[type=email]::placeholder,
main textarea::placeholder {
  color: var(--grey-color);
  font-family: var(--font-family);
  text-transform: capitalize;
}

main textarea {
  display: block;
  height: 130px;
  resize: none;
}

.button {
  --button-padding: 0 var(--button-padding-inline, 25px);
  display: inline-flex;
  gap: 10px;
  height: var(--button-height);
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: var(--font-family-2);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: 6px;
}
.button .icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-size: 30px;
  border-radius: 6px;
  overflow: hidden;
}
.button:hover .icon-wrap i {
  animation: buttonAnimation 0.5s forwards;
}
.button.style-2 {
  --button-height: 50px;
  position: relative;
  font-size: var(--font-size-theme);
  border-radius: 50px;
  margin-right: var(--button-height);
}
.button.style-2 .icon-wrap {
  position: absolute;
  top: 0;
  right: calc(-1 * var(--button-height));
  width: var(--button-height);
  height: var(--button-height);
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 14px;
  border-radius: 50%;
}
.button.style-3 .icon-wrap, .button.style-4 .icon-wrap {
  width: auto;
  height: auto;
  background-color: transparent;
  color: inherit;
  font-size: 12px;
}
.button.style-3:hover .icon-wrap i, .button.style-4:hover .icon-wrap i {
  animation: buttonAnimation2 0.5s forwards;
}
.button.style-3 {
  background-color: var(--accent-color);
  color: var(--black-color);
}
.button.style-4 {
  background-color: #242D31;
}
.button.style-5 .icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--white-color);
  font-size: 14px;
  border-radius: 6px;
  overflow: hidden;
}
.button.style-5:hover {
  color: var(--white-color);
  background: var(--black-color);
}

@keyframes buttonAnimation {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  51% {
    transform: translateX(-30px);
  }
}
@keyframes buttonAnimation2 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  51% {
    transform: translateX(-100%);
  }
}
.btn-wrap {
  margin-top: 30px;
}

.swiper {
  --swiper-pagination-bottom: 0;
  --swiper-pagination-color: var(--white-color);
  --swiper-pagination-bullet-inactive-color: var(--swiper-pagination-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  padding-bottom: var(--swiper-padding-bottom, 0);
}
.swiper-pagination-bullet {
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active, .swiper-pagination-bullet:hover {
  border-color: var(--swiper-pagination-color);
}
.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}

@media (max-width: 1199px) {
  .pl-100 {
    padding-left: 50px;
  }
  .pr-100 {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 75px;
  }
  .pb-100 {
    padding-bottom: 75px;
  }
  .pl-100 {
    padding-left: 0;
  }
  .pr-100 {
    padding-right: 0;
  }
  .mt-100 {
    margin-top: 75px;
  }
  .mb-100 {
    margin-bottom: 75px;
  }
}
.section-single .bg-image {
  aspect-ratio: 1/1.25;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .section-single .bg-image {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 992px) {
  .section-single:not(.reverse) .item-text {
    padding-right: 50px;
  }
}
@media (min-width: 1200px) {
  .section-single:not(.reverse) .item-text {
    padding-right: 100px;
  }
}
.section-single.reverse .content.d-flex {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .section-single.reverse .item-text {
    padding-left: 50px;
  }
}
@media (min-width: 1200px) {
  .section-single.reverse .item-text {
    padding-left: 100px;
  }
}
@media (max-width: 991px) {
  .section-single .d-flex {
    gap: 50px 0;
  }
}

.services {
  border-top: 1px solid #eee;
}
.services__item {
  border-bottom: 1px solid #eee;
  transition: all 0.22s;
}
.services__item h3 {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 0;
  transition: all 0.22s;
}
@media (max-width: 991px) {
  .services__item h3 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .services__item h3 {
    font-size: 22px;
  }
}
.services__item .num {
  font-size: 24px;
  text-align: center;
}
@media (max-width: 576px) {
  .services__item .num {
    font-size: 20px;
  }
}
.services__item .col {
  padding-block: 33px;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services__item .col:last-child {
  border-right: none;
}
@media (max-width: 576px) {
  .services__item .col {
    padding-block: 24px;
    padding-inline: 6px;
  }
}
.services__item:hover {
  background-color: #E9EBF5;
  cursor: pointer;
}
.services__item:hover h3 {
  color: #3A53E3;
}

.numbers .col-sm-6 {
  background: rgba(87, 93, 94, 0.32);
}
.numbers > .row .col-sm-6:nth-child(even) .numbers__item {
  flex-direction: column-reverse;
}
@media (max-width: 576px) {
  .numbers > .row .col-sm-6:nth-child(even) .numbers__item {
    flex-direction: column;
  }
}
.numbers__item {
  padding-block: 1rem;
  color: #fff;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .numbers__item {
    min-height: 280px;
  }
}
@media (max-width: 576px) {
  .numbers__item {
    min-height: 0;
    padding-bottom: 1.5rem;
  }
}
.numbers__item p {
  color: #fff;
  margin-bottom: 0;
}
.numbers .number {
  font-size: 64px;
  line-height: 1;
}
@media (max-width: 991px) {
  .numbers .number {
    font-size: 48px;
  }
}
.numbers .number span {
  color: var(--accent-color);
}

.slider-outer {
  display: flex;
  justify-content: center;
  max-width: 1880px;
}

#areaSlider .swiper-slide {
  width: 70%;
  transition: transform 0.3s;
  opacity: 0.5;
  transform: scale(0.85);
  padding: 300px 45px 35px 45px;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  #areaSlider .swiper-slide {
    padding: 200px 35px 30px 35px;
  }
}
#areaSlider .swiper-slide::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, black, transparent);
  top: 0;
  left: 0;
  z-index: -1;
}
#areaSlider .swiper-slide p {
  font-size: 18px;
}
#areaSlider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.tabs {
  overflow: hidden;
}
.tabs__label {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.tabs__label:hover {
  color: var(--primary-color);
}
.tabs__label.active {
  color: var(--primary-color);
}
.tabs__selector {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding-block: 18px;
  margin-bottom: 12px;
  background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 576px) {
  .tabs__selector {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
.tabs__container {
  height: auto;
  display: flex;
  position: relative;
  transition: height 0.3s;
}
.tabs__panel {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(10%);
  transition: all 0.4s;
}
.tabs__panel h2 {
  font-size: 75px;
  grid-column-start: 1;
  grid-column-end: 2;
}
.tabs__panel.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .tabs__panel {
    grid-template-columns: 1fr 1fr;
  }
  .tabs__panel h2 {
    font-size: 56px;
    grid-column-end: 3;
  }
}
@media (max-width: 576px) {
  .tabs__panel {
    grid-template-columns: 1fr;
  }
  .tabs__panel h2 {
    font-size: 56px;
    grid-column-end: 2;
  }
}

#header {
  --header-position: fixed;
  --links-color: var(--black-color);
  --mobile-nav-link-color: var(--black-color);
  --hamburger-lines-color: var(--black-color);
  --hamburger-lines-height: 2px;
  --hamburger-width: 26px;
  --hamburger-height: 24px;
}
#header .logo {
  max-width: 245px;
}
#header:not(.style-2) {
  background-color: var(--bg-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
#header:not(.style-2) .logo .img-2 {
  display: none;
}
#header:not(.style-2).transparent {
  background-color: transparent;
  box-shadow: 0 5px 15px transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#header:not(.style-2).transparent.scrolled {
  background-color: var(--bg-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
#header .nav a:not(.button) {
  color: var(--links-color);
  font-family: var(--font-family);
  font-size: var(--font-size-theme);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
@media (min-width: 992px) {
  #header .nav ul {
    align-items: center;
  }
}
#header .nav li.active a:not(.button),
#header .nav a:not(.button):hover {
  color: var(--secondary-color);
}
#header.style-2 {
  --links-color: var(--white-color);
  --mobile-nav-link-color: var(--black-color);
  --hamburger-lines-color: var(--white-color);
  transition: background-color 0.3s ease;
  background: #000;
}
@media (max-width: 991px) {
  #header.style-2 {
    --links-color: var(--black-color);
  }
}
#header.style-2 .logo .img-1 {
  display: none;
}
#header.style-2.scrolled {
  background-color: #000;
}
#header [data-button] .icon-wrap {
  display: none;
}

#footer {
  background-color: #171C1D;
  padding-top: 100px;
  background-image: url(../img/bg4.png);
}
@media (max-width: 991px) {
  #footer {
    padding-top: 75px;
  }
}
#footer * {
  font-family: var(--font-family);
}
#footer *:not(h1):not(h4) {
  color: #F0F2F4;
}
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6, #footer p, #footer li {
  margin-bottom: 0px;
}
#footer h1 {
  color: var(--white-color);
  line-height: 0.9;
}
#footer h1 u {
  color: var(--secondary-color);
  font-size: 45px;
}
#footer h4 {
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}
#footer li:not(:last-of-type) {
  margin-bottom: 5px;
}
#footer a {
  transition: color 0.3s ease;
}
#footer a:hover {
  color: var(--accent-color);
}
#footer .copyright-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-block: 30px;
}
#footer .copyright-wrap .text-wrap {
  text-align: center;
}
#footer .copyright-wrap .text-wrap p {
  font-size: var(--font-size-default);
}
#footer .logo {
  width: 240px;
}
@media (max-width: 767px) {
  #footer .logo {
    margin-bottom: 20px;
  }
}

#home {
  padding-block: var(--home-padding-block, 100px);
}
@media (max-width: 991px) {
  #home {
    --home-padding-block: 75px;
  }
}
#home.section-1 {
  padding-block: calc(var(--home-padding-block, 100px) + var(--header-height)) var(--home-padding-block, 100px);
}
#home.section-1 .item-text {
  padding-block: 100px 250px;
}
@media (max-width: 991px) {
  #home.section-1 .item-text {
    padding: 75px 0 0;
  }
}
#home.section-9 {
  padding-block: calc(var(--home-padding-block, 100px) + var(--header-height)) var(--home-padding-block, 100px);
}
#home.section-9.overlay {
  --overlay-bg: transparent;
  --overlay-opacity: 1;
}
#home.section-9.overlay::before {
  background-image: url("../img/bg-gradient4.webp");
  background-position: center center;
  background-size: cover;
}
#home.section-9 .img-wrap img {
  border-radius: 50px;
}
#home.section-15 {
  padding-block: calc(var(--home-padding-block, 100px) + var(--header-height) / 2) var(--home-padding-block, 100px);
}

#ebooks {
  overflow: hidden;
}
#ebooks .swiper {
  position: relative;
  left: 50%;
  width: 120%;
  transform: translateX(-50%);
}
#ebooks .swiper-wrapper {
  height: auto;
}
@media (max-width: 575px) {
  #ebooks .swiper {
    left: 0;
    width: calc(100% - 30px);
    transform: translateX(0);
  }
}

#tarifs .context .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--white-color);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
#tarifs .context .item:nth-of-type(1) {
  --plan-color: var(--accent-color);
}
#tarifs .context .item:nth-of-type(2) {
  --plan-color: #A7DECF;
}
#tarifs .context .item:nth-of-type(3) {
  --plan-color: #FFB3B4;
}
#tarifs .context .item .tarif-top-content {
  padding: 30px;
}
#tarifs .context .item .tarif-top-content .tarif-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
#tarifs .context .item .tarif-top-content .tarif-name .icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  background-color: var(--plan-color);
  border-radius: 6px;
}
#tarifs .context .item .tarif-top-content .tarif-name h5 {
  font-weight: 500;
}
#tarifs .context .item .tarif-top-content .tarif-price {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
#tarifs .context .item .tarif-top-content .tarif-price h2 {
  font-weight: 700;
  margin-bottom: 0;
}
#tarifs .context .item .tarif-top-content .tarif-price p {
  transform: translateY(-3px);
}
#tarifs .context .item .tarif-bottom-content {
  background-color: #242d31;
  padding: 30px;
}
#tarifs .context .item .tarif-bottom-content .tarif-description li {
  color: var(--white-color);
}
#tarifs .context .item .tarif-bottom-content .btn-wrap .button {
  --button-height: 52px;
  width: 100%;
  align-items: center;
  background-color: #dee7e6;
  color: var(--black-color);
  font-size: var(--font-size-default);
}
#tarifs .context .item .tarif-bottom-content .btn-wrap .button:hover {
  background-color: var(--plan-color);
}

#contact .content {
  border: 15px solid #fff;
}
#contact .content .form-box {
  background-color: var(--white-color);
  padding: 40px 30px;
}
@media (max-width: 575px) {
  #contact .content .form-box {
    padding-inline: 15px;
  }
}
#contact .content .form-box h4 {
  font-size: 30px;
}
#contact .content form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#contact .content form .new-validate__line {
  width: 100%;
}
@media (min-width: 768px) {
  #contact .content form .new-validate__line:nth-of-type(1), #contact .content form .new-validate__line:nth-of-type(2) {
    width: calc(50% - 10px);
  }
}

#testimonials.section-6 .context .item {
  background-color: var(--white-color);
  border-top: 2px solid rgba(var(--primary-color-rgb), 0.3);
  border-right: 2px solid rgba(var(--primary-color-rgb), 0.3);
  border-radius: 16px;
  padding: 25px;
}
#testimonials.section-6 .context .item .author-info {
  width: 120px;
}
#testimonials.section-6 .context .item .author-info .img-wrap {
  margin-bottom: 20px;
}
#testimonials.section-6 .context .item .author-info .img-wrap img {
  border-radius: 50%;
}
#testimonials.section-6 .context .item .author-info .text-wrap {
  text-align: center;
}
#testimonials.section-6 .context .item .author-info .text-wrap p:not(.small) {
  font-weight: 700;
  margin-bottom: 0;
}
#testimonials.section-6 .context .item .author-info .text-wrap p.small {
  color: var(--grey-color);
  font-size: var(--font-size-default);
}
#testimonials.section-6 .context .item .author-message {
  flex: 1;
}
#testimonials.section-6 .context .item .author-message .icon-wrap {
  color: #ffc106;
  margin-bottom: 15px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  #testimonials.section-6 .d-flex.columns-3 {
    --columns: 2;
  }
}
#testimonials.section-13 .context > .item {
  background-color: #F0F2F4;
  border-radius: 24px;
  padding: 50px 25px;
}
#testimonials.section-13 .context > .item:nth-of-type(1) {
  text-align: center;
}
#testimonials.section-13 .context > .item:nth-of-type(1) .img-wrap {
  margin-bottom: 25px;
}
#testimonials.section-13 .context > .item:nth-of-type(1) .text-wrap {
  margin-bottom: 20px;
}
#testimonials.section-13 .context > .item:nth-of-type(1) .icon-wrap {
  margin-bottom: 25px;
}
#testimonials.section-13 .context > .item:nth-of-type(1) .icon-wrap.d-flex {
  justify-content: center;
}
#testimonials.section-13 .context > .item:nth-of-type(1) .icon-wrap i {
  color: var(--secondary-color);
}
#testimonials.section-13 .context > .item:nth-of-type(2) {
  display: flex;
  align-items: center;
}
#testimonials.section-13 .swiper-navigation {
  display: flex;
  justify-content: center;
  gap: 5px;
}
#testimonials.section-13 .swiper-navigation .swiper-button-prev,
#testimonials.section-13 .swiper-navigation .swiper-button-next {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 52px;
  height: 52px;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  margin-top: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#testimonials.section-13 .swiper-navigation .swiper-button-prev:hover,
#testimonials.section-13 .swiper-navigation .swiper-button-next:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
#testimonials.section-13 .swiper-navigation .swiper-button-prev {
  padding-right: 3px;
}
#testimonials.section-13 .swiper-navigation .swiper-button-next {
  padding-left: 3px;
}
#testimonials.section-13 .swiper-slide .icon-wrap {
  color: var(--secondary-color);
}
#testimonials.section-13 .swiper-slide > .text-wrap {
  padding-block: 30px;
}
#testimonials.section-13 .swiper-slide h4 {
  margin-bottom: 0;
}
#testimonials.section-13 .swiper-slide .d-flex p {
  color: var(--grey-color);
}
#testimonials.section-13 .swiper-slide .img-wrap img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
#testimonials.section-23 {
  background-repeat: repeat-y;
  background-size: contain;
  padding-bottom: 90px;
}
#testimonials.section-23 .swiper {
  --swiper-pagination-bottom: calc(100px - var(--swiper-pagination-bullet-size) - 10px);
  --swiper-pagination-bullet-inactive-opacity: .5;
  --swiper-pagination-bullet-inactive-color: #404040;
  --swiper-pagination-color: #5547FF;
  padding-bottom: 30px;
}
#testimonials.section-23 .swiper-wrapper {
  height: auto;
}
#testimonials.section-23 .swiper-slide {
  padding: 55px;
  padding-bottom: 35px;
  background: #fff;
}
@media (max-width: 767px) {
  #testimonials.section-23 .swiper-slide {
    padding: 35px 35px 20px 35px;
  }
}
#testimonials.section-23 .swiper-slide > .d-flex {
  gap: 30px;
  flex-direction: column;
}
#testimonials.section-23 .swiper-slide .text-wrap {
  flex: 1;
}
#testimonials.section-23 .swiper-slide .text-wrap h4 {
  margin-bottom: 0;
}
#testimonials.section-23 .swiper-slide .text-wrap p.big {
  font-size: 18px;
  line-height: 1.4;
}
#testimonials.section-23 .swiper-slide .icon-wrap {
  margin-bottom: 20px;
}
#testimonials.section-23 .swiper-slide .icon-wrap.d-flex {
  gap: 10px;
}
#testimonials.section-23 .swiper-slide .icon-wrap i {
  color: #ffc106;
  font-size: 14px;
}
#testimonials.section-23 .swiper-slide .img-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1199px) {
  #testimonials.section-23 .swiper-slide .img-wrap img:first-child {
    width: 96px;
  }
}
#testimonials.section-23 .swiper-slide .img-wrap img:last-child {
  width: 70px;
}
@media (max-width: 1199px) {
  #testimonials.section-23 .swiper-slide .img-wrap img:last-child {
    width: 56px;
  }
}
#testimonials.section-23 .swiper-pagination {
  display: flex;
  justify-content: center;
  bottom: 0px;
}

#faq.section-14 .img-wrap img {
  border-radius: 24px;
}
#faq.section-14 .context {
  margin-top: -20px;
}
#faq.section-14 .context .accordion {
  counter-increment: itemCounter;
}
#faq.section-14 .context .accordion:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}
#faq.section-14 .context .accordion-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 30px 26px;
  cursor: pointer;
}
#faq.section-14 .context .accordion-title .text-wrap {
  flex: 1;
}
#faq.section-14 .context .accordion-title .text-wrap h5 {
  font-weight: 400;
  text-transform: uppercase;
}
#faq.section-14 .context .accordion-title .text-wrap h5::before {
  content: counter(itemCounter, decimal-leading-zero);
  display: inline-block;
  width: 50px;
  color: var(--secondary-color);
}
#faq.section-14 .context .accordion-title .icon-wrap {
  position: relative;
  width: 40px;
  height: 40px;
}
#faq.section-14 .context .accordion-title .icon-wrap::before, #faq.section-14 .context .accordion-title .icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: transform 0.3s ease;
}
#faq.section-14 .context .accordion-title .icon-wrap::before {
  transform: translate(-50%, calc(-50% - 4px));
}
#faq.section-14 .context .accordion-title .icon-wrap::after {
  transform: translate(-50%, calc(-50% + 4px));
}
#faq.section-14 .context .accordion-content {
  padding: 0 50px 30px;
}
#faq.section-14 .context .accordion-content p {
  color: var(--grey-color);
}
#faq.section-14 .context .accordion-description {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
#faq.section-14 .context .accordion.active .accordion-title .icon-wrap::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#faq.section-14 .context .accordion.active .accordion-title .icon-wrap::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#faq.section-22 .accordion-container {
  max-width: 930px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  margin-inline: auto;
}
#faq.section-22 .accordion-container .accordion:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
#faq.section-22 .accordion-container .accordion-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 25px 18px;
  cursor: pointer;
}
#faq.section-22 .accordion-container .accordion-title .text-wrap {
  flex: 1;
}
#faq.section-22 .accordion-container .accordion-title .icon-wrap i {
  perspective: 1000px;
  transition: color 0.3s ease, transform 0.3s ease;
}
#faq.section-22 .accordion-container .accordion-content {
  padding: 0 25px 20px;
}
#faq.section-22 .accordion-container .accordion-description {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
#faq.section-22 .accordion-container .accordion.active .accordion-title .icon-wrap i {
  color: var(--secondary-color);
  transform: rotateX(180deg);
}

.empty {
  height: 350px;
  margin-top: -120px;
  background: var(--bg-color);
}
@media (max-width: 767px) {
  .empty {
    height: 200px;
  }
}

.join {
  background-color: #E2F561;
  background-image: url(../img/bg5.png);
  background-repeat: repeat;
  background-size: auto;
  padding-block: 100px 250px;
  position: relative;
}
@media (max-width: 1199px) {
  .join {
    padding-bottom: 180px;
  }
}
@media (max-width: 767px) {
  .join {
    padding-block: 50px 100px;
  }
}
.join h3 {
  text-transform: uppercase;
  text-align: center;
  font-size: 90px;
  letter-spacing: -4px;
}
@media (max-width: 1023px) {
  .join h3 {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  .join h3 {
    font-size: 48px;
    letter-spacing: -2px;
  }
}
.join img {
  position: absolute;
}
.join img:nth-of-type(1) {
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .join img:nth-of-type(1) {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .join img:nth-of-type(1) {
    width: 120px;
  }
}
@media (max-width: 576px) {
  .join img:nth-of-type(1) {
    width: 70px;
  }
}
.join img:nth-of-type(2) {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .join img:nth-of-type(2) {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .join img:nth-of-type(2) {
    width: 200px;
  }
}
@media (max-width: 576px) {
  .join img:nth-of-type(2) {
    left: auto;
    right: 12%;
    transform: none;
  }
}
.join img:nth-of-type(3) {
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .join img:nth-of-type(3) {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .join img:nth-of-type(3) {
    width: 70px;
  }
}
@media (max-width: 576px) {
  .join img:nth-of-type(3) {
    width: 40px;
  }
}

.section-10 .img-wrap img {
  border-radius: 30px;
}

.section-11 .context .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border-radius: 25px;
  padding: 50px 30px;
}
.section-11 .context .item:nth-child(even) {
  flex-direction: column-reverse;
}
.section-11 .context .item .bg-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.section-11 .context .item .text-wrap {
  text-align: center;
}
.section-11 .context .item .text-wrap h4 {
  color: var(--white-color);
  font-size: 28px;
}

.section-12 .context .bg-image {
  height: 450px;
  border-radius: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .section-12 .context .bg-image {
    height: 400px;
  }
}

.section-16 .content .item {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border: 1px solid var(--black-color);
  border-radius: 50%;
  padding-inline: 15px;
}
.section-16 .content .item .text-wrap {
  text-align: center;
}
.section-16 .content .item .text-wrap h3 {
  font-size: 54px;
  font-weight: var(--font-weight-default);
  margin-bottom: 0;
}

.section-17 {
  overflow: hidden;
}
.section-17 .swiper {
  overflow: visible;
}
.section-17 .swiper-slide {
  text-align: center;
  border-radius: 12px;
  padding: 40px 25px;
}
.section-17 .swiper-slide .img-wrap {
  padding-block: 30px;
}

.section-18 .context .img-wrap img {
  border-radius: 8px;
}
.section-18 .context .item .d-flex {
  gap: 20px;
}
.section-18 .context .item .d-flex .icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
}
.section-18 .context .item .d-flex .text-wrap {
  flex: 1;
}
.section-18 .context .item .d-flex .text-wrap h4 {
  margin-bottom: 15px;
}
.section-18 .context.d-flex.columns-3 > .item:nth-of-type(3) {
  width: 100% !important;
}

.section-19 .content .bg-image {
  aspect-ratio: 1/1.25;
  border-radius: 10px;
  margin-bottom: 30px;
}
.section-19 .content .text-wrap h4 {
  text-transform: uppercase;
}

.section-20 .content h2 {
  margin-bottom: 50px;
}
.section-20 .content .d-flex .item {
  counter-increment: itemCounter;
}
.section-20 .content .d-flex .item .icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #fc5e60;
  border-radius: 50%;
  margin-bottom: 20px;
}
.section-20 .content .d-flex .item .icon-wrap h5 {
  color: var(--white-color);
  font-size: 18px;
}
.section-20 .content .d-flex .item .icon-wrap h5::before {
  content: counter(itemCounter);
}
.section-20 .content .d-flex .item .text-wrap h4 {
  margin-bottom: 15px;
}

@media (min-width: 991px) {
  .section-21 .context.large-left > .item:nth-of-type(1) {
    padding-right: 40px;
  }
  .section-21 .context.large-right > .item:nth-of-type(2) {
    padding-left: 40px;
  }
}
.section-21 .context .img-wrap {
  margin-bottom: 25px;
}
.section-21 .context .img-wrap img {
  border-radius: 14px;
}
.section-21 .context .text-wrap h4 {
  margin-bottom: 20px;
}

.step__img {
  display: block;
  margin: 0 auto;
  margin-top: -100px;
}
.step__num {
  color: #FC5E60;
  font-family: var(--font-family-2);
  font-size: 24px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}/*# sourceMappingURL=style.css.map */