:root {
  --main-light: #ffffff;
  --main-dark: #333333;
  --second-dark: #150B3F;
  --main-grey: #56505F;
  --main-purple: #7A36EA;
  --main-blue: #00ACFF;
  --main-lite-blue: #EEF7FD;
  --main-green: #069A6C;
  --main-lite-green: #00C26D;
  --main-purp: #7B6AFF;
  --accent-purple: #8B50EC;
  --accent-pink: #EC4E7C;
  --accent-pink-second: #E93589;
  --accent-pink-light: #EAAFFF;
  --button-default: #00ACFF;
  --font-ubuntu: "Ubuntu", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-fredoka: "Fredoka", sans-serif;
}

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

html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  counter-reset: how-it-works how-it-works-2;
}

img {
  width: 100%;
}

.hide {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
}

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

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
}

.relative {
  position: relative;
}

input::-webkit-input-placeholder {
  color: #acacac !important;
}

input:-moz-placeholder {
  /* Firefox 18- */
  color: #acacac !important;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  color: #acacac !important;
}

input:-ms-input-placeholder {
  color: #acacac !important;
}

.text-green {
  color: var(--main-green);
}

.text-blue {
  color: var(--main-blue);
}

.heading {
  font-size: 32px;
  font-weight: 500;
  font-family: var(--font-poppins);
  line-height: 32px;
  letter-spacing: 0.72px;
  color: var(--second-dark);
}
@media all and (min-width: 375px) {
  .heading {
    font-size: 30px;
    line-height: 37px;
  }
}
@media all and (min-width: 768px) {
  .heading {
    font-size: 43px;
    line-height: 42px;
  }
}
@media all and (min-width: 1100px) {
  .heading {
    font-size: 40px;
    line-height: 48px;
  }
}
@media all and (min-width: 1200px) {
  .heading {
    font-size: 46px;
    line-height: 54px;
  }
}

main {
  zoom: 90%;
}

.blue-gradient {
  background: linear-gradient(90deg, #7b6aff 1.34%, #00acff 48.1%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.green-blue-gradient {
  background: linear-gradient(90deg, #069a6c 25.55%, #00acff 90.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider-quotes {
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0px 28px 60px rgba(109, 231, 151, 0.3);
  font-family: var(--font-fredoka);
  font-size: 150px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 4px;
}
@media all and (min-width: 1100px) {
  .slider-quotes {
    font-size: 200px;
  }
}

.contact-form .contact-form-wrap {
  display: block;
}
.contact-form .contact-form-wrap .form-submit p {
  width: 100px;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}

.header {
  position: absolute;
  width: 100%;
  z-index: 3;
}
.header .header-wrap {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-nav-wrap {
  display: none;
  position: absolute;
  width: 104%;
  height: 100vh;
  top: 0;
  left: -17px;
  text-align: center;
  z-index: 4;
  background: linear-gradient(35deg, #299d8b, #1e778b, #028a87, #296c9d, #195f6f, #028a64, #058f93);
  background-size: 200%;
  animation: gba 20s infinite;
}
@media all and (min-width: 1100px) {
  .header .header-nav-wrap {
    display: flex;
    position: initial;
    width: initial;
    height: initial;
    background: transparent;
  }
}
@media all and (min-width: 1100px) {
  .header .header__menu {
    display: flex;
    align-items: center;
    margin-right: 20px;
  }
}
.header .header__logo {
  max-width: 110px;
}
.header .header__list {
  display: none;
  padding-top: 70px;
}
.header .header__list li a {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--main-light);
}
.header .header__list li a[aria-current]:not([aria-current=false]) {
  position: relative;
}
.header .header__list li a[aria-current]:not([aria-current=false])::before {
  content: "";
  background: var(--main-light);
  height: 4px;
  position: absolute;
  width: 4px;
  bottom: 0;
  left: calc(50% - 2px);
  border-radius: 50%;
}
@media all and (min-width: 1100px) {
  .header .header__list {
    display: flex;
    padding-top: 0;
  }
  .header .header__list li {
    margin: 0 10px;
  }
}
.header .modal-btn-wrap {
  display: none;
}
@media all and (min-width: 1100px) {
  .header .modal-btn-wrap {
    display: block;
  }
}
.header .menu-btn {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  margin-top: 6px;
  z-index: 7;
}
@media all and (min-width: 1100px) {
  .header .menu-btn {
    display: none;
  }
}
.header .menu-btn span,
.header .menu-btn span:before,
.header .menu-btn span:after {
  position: absolute;
  width: 24px;
  height: 1px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -2px;
  background-color: #ffffff;
  border-radius: 5px;
}
.header .menu-btn span:before,
.header .menu-btn span:after {
  content: "";
  display: block;
  transition: 0.5s;
}
.header .menu-btn span:before {
  transform: translateY(-5px);
  margin-left: -12px;
}
.header .menu-btn span:after {
  transform: translateY(7px);
  margin-left: -12px;
}
.header .menu-btn_active {
  background-color: transparent;
}
.header .menu-btn_active span {
  height: 0;
}
.header .menu-btn_active span:before {
  transform: rotate(45deg);
  background-color: #ffffff !important;
}
.header .menu-btn_active span:after {
  transform: rotate(-45deg);
  background-color: #ffffff !important;
}

.footer {
  min-height: 255px;
  padding-top: 135px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #3294d3 25.55%, #39c5c5 90.52%);
  clip-path: polygon(0% 60%, 100% 0%, 100% 100%, 0% 100%);
  color: #fff;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  max-width: 110px;
  margin-bottom: 10px;
}
.footer-logo a {
  display: block;
  max-width: 110px;
}
.footer .menu-footer-container {
  display: none;
}
.footer .menu-footer-menu-term-container li,
.footer .menu-footer-container li {
  margin-bottom: 10px;
}
.footer .menu-footer-menu-term-container a,
.footer .menu-footer-container a {
  text-wrap: nowrap;
  color: inherit;
  font-size: 14px;
  line-height: 22px;
}
.footer .menu-footer-menu-term-container {
  text-align: center;
}

@media (min-width: 920px) {
  .footer {
    padding-top: 160px;
  }
  .footer-content {
    flex-direction: row;
    justify-content: flex-start;
  }
  .footer-logo {
    width: 20%;
    margin-bottom: 0;
  }
  .footer-menus {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .menu-footer-menu-term-container,
  .footer .menu-footer-container {
    display: flex;
  }
  .footer .menu-footer-menu-term-container li,
  .footer .menu-footer-container li {
    margin: 0 10px 18px 10px;
  }
  .footer .menu-footer-menu-term-container li a[aria-current]:not([aria-current=false]),
  .footer .menu-footer-container li a[aria-current]:not([aria-current=false]) {
    position: relative;
  }
  .footer .menu-footer-menu-term-container li a[aria-current]:not([aria-current=false])::before,
  .footer .menu-footer-container li a[aria-current]:not([aria-current=false])::before {
    content: "";
    background: var(--main-light);
    height: 4px;
    position: absolute;
    width: 4px;
    bottom: -10px;
    left: calc(50% - 2px);
    border-radius: 50%;
  }
  .footer .footer-menu, .footer .footer-policy {
    display: flex;
  }
}
.testimonials .swiper-pagination, .platform-section .swiper-pagination {
  bottom: 0;
}
.testimonials .swiper-pagination-bullet, .platform-section .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  opacity: 1;
}
.testimonials .swiper-pagination-bullet-active, .platform-section .swiper-pagination-bullet-active {
  background: var(--button-default);
  opacity: 1;
}
.testimonials .swiper-button-prev, .platform-section .swiper-button-prev {
  position: absolute;
  top: inherit;
  bottom: 0;
  left: 0;
}
.testimonials .swiper-button-prev:after, .platform-section .swiper-button-prev:after {
  content: "";
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/arrow-lft.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.testimonials .swiper-button-next, .platform-section .swiper-button-next {
  position: absolute;
  top: inherit;
  bottom: 0;
  right: 0;
}
.testimonials .swiper-button-next:after, .platform-section .swiper-button-next:after {
  content: "";
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/arrow-rght.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.testimonials .swiper-button-next.swiper-button-disabled, .testimonials .swiper-button-prev.swiper-button-disabled, .platform-section .swiper-button-next.swiper-button-disabled, .platform-section .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.hero-btns-wrapper {
  display: flex;
  gap: 20px;
}
.hero-btns-wrapper a {
  padding-right: 45px;
  max-width: unset;
  width: fit-content;
  text-wrap: nowrap;
}
.hero-btns-wrapper a:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 17px;
  width: 20px;
  height: 20px;
  background-image: url(../../assets/images/arrow-dark.svg);
  background-repeat: no-repeat;
}
.hero-btns-wrapper a:first-child:after {
  background-image: url(../../assets/images/desktop-icon.svg);
}
.hero-btns-wrapper a:last-child:after {
  background-image: url(../../assets/images/mobile-icon.svg);
}

.button-hero {
  position: relative;
  display: block;
  max-width: 205px;
  padding: 15px 24px;
  border-radius: 58px;
  font-family: var(--font-ubuntu);
  font-size: 18px;
  font-weight: 500;
  background-color: #FFFFFF;
  color: var(--second-dark);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 30px 0 rgba(8, 72, 66, 0.3);
  transition: all 0.3s ease;
}
.button-hero:hover {
  background-color: #c9e9f3;
}

.button-default {
  position: relative;
  display: block;
  max-width: 237px;
  padding: 15px 62px 15px 40px;
  border-radius: 58px;
  font-family: var(--font-ubuntu);
  font-size: 18px;
  font-weight: 500;
  background-color: var(--button-default);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 30px 0 rgba(8, 72, 66, 0.3);
}
.button-default:after {
  content: "";
  position: absolute;
  left: 177px;
  width: 20px;
  height: 20px;
  background-image: url(../../assets/images/arrow-right-white.svg);
  background-repeat: no-repeat;
}

.modal-btn-wrap .talk-with-us {
  display: inline-flex;
  font-family: var(--font-ubuntu);
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 12px 18px 12px 28px;
  transition: all 0.3s ease;
  width: 151px;
  border-radius: 58px;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url("../../assets/images/headphones.svg");
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: calc(50% + 41px) center;
}
.modal-btn-wrap .talk-with-us:hover {
  background-color: var(--button-default);
  transition: 0.5s all ease;
}

@media (max-width: 1366px) {
  .modal-btn-wrap {
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .modal-btn-wrap {
    display: none;
  }
  .hero-btns-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
.contact-form {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
}
.contact-form.show-modal {
  background: rgba(51, 51, 51, 0.3);
  opacity: 1;
  z-index: 12;
  visibility: visible;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form .contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 32px 50px;
  position: relative;
  max-width: 585px;
  width: 100%;
  max-height: 90%;
  overflow-y: auto;
}
.contact-form .contact-form-wrap::-webkit-scrollbar {
  width: 0px;
}
.contact-form .contact-form-wrap .close-form {
  position: absolute;
  right: 32px;
  top: 32px;
  cursor: pointer;
}
.contact-form .contact-form-wrap .form-header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px;
}
.contact-form .contact-form-wrap .form-header .header-text {
  font-family: var(--font-ubuntu);
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  color: #000;
  margin: 0 0 0 24px;
}
.contact-form .contact-form-wrap .form-container .label {
  font-family: var(--font-ubuntu);
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  margin: 0 0 8px;
  color: #000;
}
.contact-form .contact-form-wrap .form-container .label .required {
  color: var(--accent-pink);
}
.contact-form .contact-form-wrap .form-container .input-block input {
  font-family: var(--font-poppins);
  border: 1px solid #F5F5F5;
  width: 100%;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  padding: 0 28px;
  height: 48px;
  background: #F5F5F5;
  border-radius: 8px;
}
.contact-form .contact-form-wrap .form-container .input-block textarea {
  margin: 0 0 24px;
  resize: none;
  height: 100px;
  font-size: 15px;
  width: 100%;
  background: #F5F5F5;
  border-radius: 8px;
  padding: 16px 32px;
  border: 1px solid #F5F5F5;
}
.contact-form .contact-form-wrap .form-container .input-block .wpcf7-not-valid {
  border: 1px solid #EC4E7C;
}
.contact-form .contact-form-wrap .form-container .form-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form .contact-form-wrap .form-container .form-submit input {
  cursor: pointer;
  border: 0;
  height: 47px;
  padding: 14px 25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 125%;
  border-radius: 30px;
  font-family: var(--font-ubuntu);
  background-color: var(--button-default);
  color: #FFFFFF;
}
.contact-form .contact-form-wrap .form-container .form-submit .ajax-loader {
  position: absolute;
  right: 0;
  bottom: 0;
}
.contact-form .contact-form-wrap .form-container .form-submit .wpcf7-spinner {
  position: absolute;
}
.contact-form .contact-form-wrap .abstraction-block-1 {
  position: absolute;
  right: 0;
  top: 180px;
}
.contact-form .contact-form-wrap .success-form {
  display: none;
  text-align: center;
}
.contact-form .contact-form-wrap .success-form.send-ok {
  display: flex;
  justify-content: center;
  text-align: center;
}
.contact-form .contact-form-wrap .success-form.send-ok .success-form-header .header-text {
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  color: #000;
  margin: 0 0 20px;
}
.contact-form .contact-form-wrap .success-form.send-ok .success-form-header .sub-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  margin: 0 0 20px;
  color: #000;
}
.contact-form .wpcf7-response-output {
  display: none;
}

@media (max-width: 768px) {
  .contact-form .contact-form-wrap {
    padding: 20px 25px;
    max-width: none;
    width: 100%;
    margin: 0 20px;
  }
  .contact-form .contact-form-wrap .form-header .icon {
    position: absolute;
    left: 50px;
  }
  .contact-form .contact-form-wrap .form-header .header-text {
    margin: 0;
    font-size: 22px;
  }
}
.simple_text_page h2 {
  padding-left: 20px;
}
.simple_text_page h2, .simple_text_page h3, .simple_text_page h4, .simple_text_page h5, .simple_text_page h6 {
  font-weight: 500;
  margin: 30px 0;
}
.simple_text_page p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 30px;
}
.simple_text_page ul {
  display: flex;
  flex-direction: column;
  list-style: disc;
  margin: 20px 0;
  padding-left: 40px;
}
.simple_text_page ul li {
  font-size: 16px;
  line-height: 30px;
}
.simple_text_page a {
  color: #007aff;
  font-weight: 600;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  padding-bottom: 35px;
  background: linear-gradient(35deg, #3293D2, #0D99FF, #37B7C8, #37B7C8);
  background: linear-gradient(45deg, #37B7C8, #1eb1c4, #37B7C8, #0D99FF, #3293D2);
  background-size: 200%;
  animation: gba 20s infinite;
}
@media all and (min-width: 1000px) {
  .home-hero:after {
    content: "";
    position: absolute;
    top: 14%;
    width: 920px;
    height: 100%;
    margin-left: calc(50% - 460px);
    background: url(../../assets/images/dots-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
  }
}

@keyframes gba {
  0% {
    background-position: 0;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}
.triangle-bg:before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/triangle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.home-hero-wrap {
  position: relative;
  padding-top: 35px;
  z-index: 1;
}

.home-hero-wrap-info {
  margin-bottom: 35px;
}
@media all and (min-width: 1100px) {
  .home-hero-wrap-info {
    display: flex;
  }
}

@media all and (min-width: 1100px) {
  .home-hero-wrap-info-right {
    padding-left: 100px;
  }
}

.hero-main-heading {
  margin-bottom: 12px;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 33px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--main-light);
}
@media all and (min-width: 375px) {
  .hero-main-heading {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0;
  }
}
@media all and (min-width: 768px) {
  .hero-main-heading {
    font-size: 52px;
  }
}
@media all and (min-width: 1100px) {
  .hero-main-heading {
    margin-bottom: 20px;
    font-size: 54px;
  }
}
@media all and (min-width: 1200px) {
  .hero-main-heading {
    font-size: 64px;
  }
}

.heading-subtitle {
  margin-bottom: 12px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: var(--main-light);
  letter-spacing: 1px;
}
@media all and (min-width: 375px) {
  .heading-subtitle {
    font-size: 36px;
  }
}
@media all and (min-width: 1100px) {
  .heading-subtitle {
    font-size: 46px;
  }
}
@media all and (min-width: 1200px) {
  .heading-subtitle {
    font-size: 54px;
  }
}

.home-hero-description {
  margin-bottom: 48px;
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: var(--main-light);
  letter-spacing: 0.4px;
}
@media all and (min-width: 1100px) {
  .home-hero-description {
    max-width: 450px;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 39px;
    letter-spacing: 1px;
  }
}

.home-hero-wrap-img {
  margin-left: -10px;
}
@media all and (min-width: 1100px) {
  .home-hero-wrap-img {
    margin-left: -35px;
  }
}

.about_platform {
  margin: 100px 0;
}
.about_platform .heading {
  text-align: center;
  text-wrap: balance;
}
.about_platform .why-us-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin: 50px 0;
}
.about_platform .why-us-wrapper .image_section {
  position: relative;
  width: calc(60% - 85px);
  height: 700px;
}
.about_platform .why-us-wrapper .image_section img {
  position: absolute;
}
.about_platform .why-us-wrapper .text_section {
  width: calc(40% + 85px);
}
.about_platform .why-us-wrapper .text_section .why-us-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 85px;
}
.about_platform .why-us-wrapper .text_section .why-us-list::-webkit-scrollbar {
  width: 0px;
}
.about_platform .why-us-wrapper .text_section .why-us-list .list-item {
  position: relative;
  transition: 400ms opacity linear;
  cursor: default;
}
.about_platform .why-us-wrapper .text_section .why-us-list .list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -66px;
  width: 1px;
  height: calc(100% + 64px);
  background-color: #7cd3fc;
}
.about_platform .why-us-wrapper .text_section .why-us-list .list-item:first-child .circle {
  background-color: #fff;
}
.about_platform .why-us-wrapper .text_section .why-us-list .list-item:last-child:before {
  content: none;
}
.about_platform .why-us-wrapper .text_section .why-us-list .list-item:not(.active) {
  opacity: 0.5;
  transition: 400ms opacity linear;
}
.about_platform .why-us-wrapper .text_section .why-us-list .list-item .circle {
  width: 40px;
  height: 40px;
  border: 1px solid #1be4e8;
  border-radius: 50%;
  position: absolute;
  left: -85px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_platform .why-us-wrapper .text_section .why-us-list .list-item .circle span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1be4e8;
}
.about_platform .why-us-wrapper .text_section .why-us-list .list-item .title {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 39px;
  font-weight: 500;
}
.about_platform .why-us-wrapper .text_section .why-us-list .list-item .text {
  font-size: 16px;
  line-height: 26px;
  color: #150B3F;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .about_platform {
    margin: 30px 0 60px 0;
  }
  .about_platform .why-us-wrapper {
    flex-direction: column-reverse;
  }
  .about_platform .why-us-wrapper .image_section {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 300px;
  }
  .about_platform .why-us-wrapper .image_section img {
    max-height: 300px;
    width: auto;
  }
  .about_platform .why-us-wrapper .text_section {
    width: 100%;
    max-width: 500px;
  }
  .about_platform .why-us-wrapper .text_section .why-us-list {
    padding-left: 65px;
  }
  .about_platform .why-us-wrapper .text_section .why-us-list .list-item::before {
    left: -46px;
  }
  .about_platform .why-us-wrapper .text_section .why-us-list .list-item .circle {
    left: -66px;
  }
  .about_platform .why-us-wrapper .text_section .why-us-list .list-item .title {
    font-size: 18px;
    line-height: 25px;
  }
  .about_platform .why-us-wrapper .text_section .why-us-list .list-item .text {
    font-size: 16px;
    line-height: 23px;
  }
}
.what-is {
  margin: 100px 0;
}
.what-is .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
}
.what-is .description {
  max-width: 788px;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto;
  margin-bottom: 80px;
}

.what-is-switch-section {
  margin: 100px 0;
}
.what-is-switch-section .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
}
.what-is-switch-section .description {
  max-width: 788px;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .what-is-switch-section {
    margin: 60px 0;
  }
  .what-is-switch-section .description {
    max-width: 788px;
    text-align: center;
    text-wrap: balance;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.home-how-itworks .heading {
  margin-bottom: 30px;
}
@media (min-width: 1100px) {
  .home-how-itworks .heading {
    text-align: center;
    margin-bottom: 56px;
  }
}

@media (min-width: 920px) {
  .home-how-itworks-wrap {
    display: flex;
    gap: 30px;
  }
}

.home-how-itworks-left .switch-description {
  margin-bottom: 30px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: var(--main-grey);
}
@media (min-width: 920px) {
  .home-how-itworks-left {
    width: 50%;
  }
  .home-how-itworks-left .switch-description {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .home-how-itworks-left .switch-description {
    margin-bottom: 84px;
    font-size: 20px;
    line-height: 30px;
  }
}

.home-how-itworks-item {
  position: relative;
  display: flex;
  padding-bottom: 24px;
}
.home-how-itworks-item:before {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background-color: #ebf4f8;
  left: 20px;
}
.home-how-itworks-item:last-child:before {
  content: none;
}
.home-how-itworks-item .home-how-itworks-item-number {
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.home-how-itworks-item .home-how-itworks-item-number span {
  color: var(--main-blue);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-family: var(--font-ubuntu);
  font-size: 18px;
  font-weight: 500;
  line-height: 20.68px;
  background-color: #eef7fd;
}
.home-how-itworks-item .home-how-itworks-item-wrap {
  width: calc(100% - 40px);
  padding-left: 16px;
}
.home-how-itworks-item .home-how-itworks-item-title {
  margin-bottom: 8px;
  font-family: var(--font-poppins);
  font-size: 26px;
  font-weight: 500;
  line-height: 39px;
  letter-spacing: 0.4px;
  color: var(--second-dark);
}
@media screen and (max-width: 768px) {
  .home-how-itworks-item .home-how-itworks-item-title {
    font-size: 18px;
    line-height: 30px;
  }
}
.home-how-itworks-item .home-how-itworks-item-descr {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--main-grey);
}
@media screen and (max-width: 768px) {
  .home-how-itworks-item .home-how-itworks-item-descr {
    font-size: 14px;
  }
}
@media (min-width: 1100px) {
  .home-how-itworks-item {
    padding-bottom: 48px;
  }
  .home-how-itworks-item .home-how-itworks-item-wrap {
    padding-left: 28px;
  }
}
@media (min-width: 1200px) {
  .home-how-itworks-item .home-how-itworks-item-wrap {
    max-width: 86%;
  }
}

.home-how-itworks-right {
  text-align: center;
}
@media (min-width: 450px) {
  .home-how-itworks-right img {
    max-width: 80%;
  }
}
@media (min-width: 920px) {
  .home-how-itworks-right {
    position: relative;
    width: 50%;
  }
  .home-how-itworks-right img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}

.home-images {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 1100px) {
  .home-images {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .home-images {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.home-images-wrap .left-img, .home-images-wrap .right-img {
  text-align: center;
}
.home-images-wrap img {
  max-width: 80%;
}
@media (min-width: 520px) {
  .home-images-wrap {
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
  }
  .home-images-wrap .left-img {
    width: 57%;
  }
  .home-images-wrap .right-img {
    width: 43%;
  }
  .home-images-wrap img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
}

.home-images-wrap:nth-of-type(even) {
  flex-direction: row-reverse;
}

.home-coaches .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 16px;
}
.home-coaches .description {
  max-width: 788px;
  font-size: 22px;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto;
  margin-bottom: 32px;
  color: #56505f;
}
.home-coaches .logos_wrapper {
  display: flex;
  margin-bottom: 48px;
  overflow: hidden;
}
.home-coaches .logos_wrapper .logo-item {
  border: 1px solid #ddeaf0;
  border-radius: 12px;
  padding: 20px;
  min-width: 216px;
  height: 120px;
}
.home-coaches .logos_wrapper .logo-item img {
  height: 100%;
  object-fit: contain;
}
.home-coaches .team_poster {
  margin-bottom: 64px;
}
.home-coaches .team_poster img {
  max-height: 576px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.home-coaches .numbers {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 64px 0;
}
.home-coaches .numbers .number-item {
  width: 33.33%;
  text-align: center;
}
.home-coaches .numbers .number-item .count {
  position: relative;
  margin-bottom: 11px;
  font-size: 72px;
  line-height: 72px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00acff 25.55%, #069a6c 90.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-coaches .numbers .number-item .count::after {
  content: "+";
}
.home-coaches .numbers .number-item span {
  font-size: 16px;
  line-height: 26px;
  color: #150b3f;
}
.home-coaches .join_team {
  background: #f7f9fa;
  border-radius: 24px;
  padding: 50px 40px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.home-coaches .join_team .text_content .join_title {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 54px;
  font-weight: 500;
}
.home-coaches .join_team .text_content .join_description {
  font-size: 16px;
  line-height: 26px;
}
.home-coaches .join_team .button {
  text-wrap: nowrap;
  padding: 20px 50px;
  background: #35bbb9;
  outline: none;
  color: #fff;
  border-radius: 15px;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .home-coaches .description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .home-coaches .logos_wrapper {
    margin-bottom: 24px;
  }
  .home-coaches .team_poster {
    margin-bottom: 20px;
  }
  .home-coaches .team_poster img {
    max-height: 476px;
    border-radius: 16px;
  }
  .home-coaches .numbers {
    flex-wrap: wrap;
  }
  .home-coaches .numbers .number-item .count {
    font-size: 36px;
    line-height: 36px;
  }
  .home-coaches .join_team {
    padding: 30px;
    gap: 50px;
    flex-direction: column;
    align-items: start;
  }
  .home-coaches .join_team .text_content .join_title {
    font-size: 36px;
    line-height: 36px;
  }
  .home-coaches .join_team button {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 500px) {
  .home-coaches .numbers .number-item {
    width: 100%;
  }
  .home-coaches .join_team {
    padding: 20px 16px;
    gap: 30px;
    flex-direction: column;
    margin-bottom: 0px;
  }
  .home-coaches .join_team .text_content .join_title {
    font-size: 24px;
    line-height: 36px;
  }
  .home-coaches .join_team button {
    padding: 16px 30px;
    width: 100%;
  }
}
.al-switch {
  position: relative;
  z-index: 2;
  margin: 100px 0;
}
.al-switch .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
}
.al-switch .description {
  max-width: 788px;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto;
  margin-bottom: 80px;
}

@media screen and (max-width: 500px) {
  .al-switch {
    margin: 40px 0;
  }
  .al-switch .description {
    margin-bottom: 40px;
  }
}
.al-smart-features {
  position: relative;
  z-index: 2;
  margin: 0 0 60px 0;
}
.al-smart-features .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
}
.al-smart-features .features-slider-block {
  padding-left: calc((100% - 1232px) / 2) !important;
  padding-right: calc((100% - 1232px) / 2 + 100px) !important;
  overflow: hidden;
  padding-bottom: 170px;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide {
  position: relative;
  opacity: 0.5;
  padding: 0 20px;
  height: auto;
  padding-right: 100px;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide .scroll-right {
  position: absolute;
  bottom: -120px;
  right: 100px;
  width: 40px;
  height: 40px;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide .scroll-right::before {
  content: "Scroll right";
  position: absolute;
  bottom: -50px;
  left: 0px;
  width: 40px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  z-index: 2;
  color: #1be4e8;
  text-align: center;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide .scroll-right::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  border: 1px solid #1be4e8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../assets/images/scroll.svg");
  background-repeat: no-repeat;
  background-color: #fff;
  background-position: center;
  z-index: 2;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide:before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 20px;
  width: 100%;
  height: 1px;
  background-color: #7cd3fc;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide:last-child:before {
  content: none;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide .circle {
  width: 40px;
  height: 40px;
  border: 1px solid #1be4e8;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  bottom: -120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide .circle span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1be4e8;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide:first-child .circle, .al-smart-features .features-slider-block .horizontal-slider .swiper-slide:last-child .circle {
  background-color: #fff;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide .al-content-item-title {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide .al-content-item-descr {
  font-size: 16px;
  line-height: 26px;
  color: #150b3f;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide .image-section {
  height: 500px;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.al-smart-features .features-slider-block .horizontal-slider .swiper-slide .image-section img {
  position: absolute;
  max-height: 500px;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .al-smart-features .features-slider-block {
    padding-bottom: 126px;
  }
  .al-smart-features .features-slider-block .horizontal-slider .swiper-slide {
    padding: 0 16px;
    padding-right: 50px;
  }
  .al-smart-features .features-slider-block .horizontal-slider .swiper-slide .scroll-right {
    bottom: -78px;
    right: 28px;
  }
  .al-smart-features .features-slider-block .horizontal-slider .swiper-slide .scroll-right::before {
    bottom: -40px;
    font-size: 12px;
    line-height: 16px;
  }
  .al-smart-features .features-slider-block .horizontal-slider .swiper-slide:before {
    bottom: -60px;
  }
  .al-smart-features .features-slider-block .horizontal-slider .swiper-slide .circle {
    bottom: -80px;
  }
  .al-smart-features .features-slider-block .horizontal-slider .swiper-slide .al-content-item-title {
    font-size: 22px;
    line-height: 30px;
  }
  .al-smart-features .features-slider-block .horizontal-slider .swiper-slide .al-content-item-descr {
    font-size: 14px;
    line-height: 26px;
  }
  .al-smart-features .features-slider-block .horizontal-slider .swiper-slide .image-section {
    height: 300px;
  }
  .al-smart-features .features-slider-block .horizontal-slider .swiper-slide .image-section img {
    max-height: 300px;
  }
}
.al-how-itworks {
  position: relative;
  z-index: 2;
  margin: 100px 0;
}
@media screen and (max-width: 500px) {
  .al-how-itworks {
    margin: 40px 0;
  }
}
.al-how-itworks .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
}
.al-how-itworks .description {
  max-width: 788px;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 500px) {
  .al-how-itworks .description {
    margin-bottom: 40px;
  }
}

.itworks-slider .swiper-wrapper {
  padding-bottom: 85px;
}
.itworks-slider .swiper-slide-wrap {
  background: antiquewhite;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 53px 0 rgba(152, 150, 224, 0.1);
  backdrop-filter: blur(12px);
}
@media all and (min-width: 1100px) {
  .itworks-slider .swiper-slide-wrap {
    display: flex;
    align-items: center;
    padding: 40px 30px 40px 60px;
  }
}
@media all and (min-width: 1100px) {
  .itworks-slider .itworks-slider-image-wrap {
    position: relative;
    width: 32%;
  }
  .itworks-slider .itworks-slider-image-wrap:after {
    content: "";
    position: absolute;
    left: 140px;
    width: 1px;
    height: 98px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    bottom: 0;
    background-color: #ffffff;
  }
}
.itworks-slider .itworks-slider-image {
  width: 77px;
  height: 77px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  border: 4px solid rgba(255, 255, 255, 0.5);
}
.itworks-slider .itworks-slider-image img {
  max-width: 44px;
}
@media all and (min-width: 1100px) {
  .itworks-slider .itworks-slider-image {
    margin-bottom: 0;
    width: 96px;
    height: 96px;
    border-radius: 32px;
  }
  .itworks-slider .itworks-slider-image img {
    max-width: 60px;
  }
}
@media all and (min-width: 1100px) {
  .itworks-slider .itworks-slider-text-wrap {
    width: 68%;
    padding-left: 25px;
  }
}
.itworks-slider .itworks-slider-title {
  margin-bottom: 4px;
  font-family: var(--font-ubuntu);
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.44px;
}
.itworks-slider .swiper-pagination {
  bottom: 0;
}
.itworks-slider .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #ffffff;
  opacity: 1;
}
.itworks-slider .swiper-pagination-bullet-active {
  background: var(--button-default);
  opacity: 1;
}
.itworks-slider .swiper-button-prev {
  position: absolute;
  top: inherit;
  bottom: 0;
}
.itworks-slider .swiper-button-prev:after {
  content: "";
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/arrow-lft.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.itworks-slider .swiper-button-next {
  position: absolute;
  top: inherit;
  bottom: 0;
}
.itworks-slider .swiper-button-next:after {
  content: "";
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/arrow-rght.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.itworks-slider .swiper-button-next.swiper-button-disabled,
.itworks-slider .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.development {
  position: relative;
  z-index: 2;
  margin: 30px 0 60px;
}
.development .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 56px;
}
.development .development-wrap {
  display: flex;
  gap: 30px;
}
.development .development-wrap .development-image_content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 50%;
}
.development .development-wrap .development-image_content .development-description {
  color: #56505f;
  font-size: 20px;
  line-height: 30px;
}
.development .development-wrap .development-image_content img {
  border-radius: 24px;
}
.development .development-wrap .development-list_content {
  width: 50%;
}
.development .development-wrap .development-list_content h3 {
  margin-bottom: 40px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
}
.development .development-wrap .development-list_content .development-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 46px;
  padding-left: 85px;
}
.development .development-wrap .development-list_content .development-items .development-item {
  position: relative;
}
.development .development-wrap .development-list_content .development-items .development-item .development-item-number {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eef7fd;
  color: #00acff;
  font-size: 18px;
  border-radius: 50%;
  position: absolute;
  left: -85px;
  top: 0px;
}
.development .development-wrap .development-list_content .development-items .development-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -66px;
  width: 1px;
  height: calc(100% + 64px);
  background-color: #ebf4f8;
}
.development .development-wrap .development-list_content .development-items .development-item:last-child:before {
  content: none;
}
.development .development-wrap .development-list_content .development-items .development-item .al-content-item-title {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
}
.development .development-wrap .development-list_content .development-items .development-item .al-content-item-descr {
  font-size: 16px;
  line-height: 26px;
  color: #150b3f;
}

@media screen and (max-width: 1200px) {
  .development .development-wrap .development-image_content {
    gap: 40px;
  }
  .development .development-wrap .development-image_content .development-description {
    font-size: 18px;
    line-height: 24px;
  }
  .development .development-wrap .development-list_content h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 26px;
  }
  .development .development-wrap .development-list_content .development-items {
    gap: 36px;
    padding-left: 75px;
  }
  .development .development-wrap .development-list_content .development-items .development-item .development-item-number {
    left: -75px;
  }
  .development .development-wrap .development-list_content .development-items .development-item:before {
    left: -56px;
  }
  .development .development-wrap .development-list_content .development-items .development-item .development-item-title {
    font-size: 22px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .development .heading {
    margin-bottom: 36px;
  }
  .development .development-wrap {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .development .development-wrap .development-image_content {
    width: 100%;
    max-width: 500px;
  }
  .development .development-wrap .development-image_content .development-description {
    font-size: 16px;
  }
  .development .development-wrap .development-list_content {
    width: 100%;
    max-width: 500px;
  }
  .development .development-wrap .development-list_content h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  .development .development-wrap .development-list_content .development-items {
    gap: 36px;
    padding-left: 75px;
  }
  .development .development-wrap .development-list_content .development-items .development-item .development-item-number {
    left: -75px;
  }
  .development .development-wrap .development-list_content .development-items .development-item:before {
    left: -56px;
  }
  .development .development-wrap .development-list_content .development-items .development-item .development-item--title {
    font-size: 22px;
    line-height: 26px;
  }
}
@media screen and (max-width: 500px) {
  .development .heading {
    margin-bottom: 26px;
    font-size: 24px;
    line-height: 30px;
  }
  .development .development-wrap {
    gap: 38px;
  }
  .development .development-wrap .development-image_content .development-description {
    font-size: 14px;
    text-align: center;
  }
  .development .development-wrap .development-list_content .development-items {
    gap: 26px;
    padding-left: 60px;
  }
  .development .development-wrap .development-list_content .development-items .development-item .development-item-number {
    left: -58px;
    top: -7px;
  }
  .development .development-wrap .development-list_content .development-items .development-item:before {
    left: -40px;
  }
  .development .development-wrap .development-list_content .development-items .development-item .development-item-title {
    font-size: 18px;
    line-height: 16px;
    margin-bottom: 16px;
  }
  .development .development-wrap .development-list_content .development-items .development-item .development-item-descr {
    font-size: 14px;
  }
}
.career-catalyst {
  margin: 120px 0;
}
.career-catalyst .heading {
  margin-bottom: 24px;
  text-align: center;
  text-wrap: balance;
}
.career-catalyst .description {
  margin-bottom: 60px;
  font-size: 22px;
  line-height: 33px;
  color: #56505f;
  text-align: center;
  text-wrap: balance;
}
.career-catalyst .career-catalyst-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.career-catalyst .career-catalyst-wrap .image_section {
  position: relative;
  width: 50%;
}
.career-catalyst .career-catalyst-wrap .image_section img {
  width: 100%;
}
.career-catalyst .career-catalyst-wrap .text_section {
  width: 50%;
}
.career-catalyst .career-catalyst-wrap .text_section h3 {
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 500;
  line-height: 39px;
}
.career-catalyst .career-catalyst-wrap .text_section .list-items {
  display: flex;
  flex-direction: column;
  gap: 46px;
  padding-left: 85px;
}
.career-catalyst .career-catalyst-wrap .text_section .list-items .list-item {
  position: relative;
}
.career-catalyst .career-catalyst-wrap .text_section .list-items .list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -66px;
  width: 1px;
  height: calc(100% + 64px);
  background-color: #7cd3fc;
}
.career-catalyst .career-catalyst-wrap .text_section .list-items .list-item:first-child .circle, .career-catalyst .career-catalyst-wrap .text_section .list-items .list-item:last-child .circle {
  background-color: #fff;
}
.career-catalyst .career-catalyst-wrap .text_section .list-items .list-item:last-child:before {
  content: none;
}
.career-catalyst .career-catalyst-wrap .text_section .list-items .list-item .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: -85px;
  width: 40px;
  height: 40px;
  border: 1px solid #1be4e8;
  border-radius: 50%;
}
.career-catalyst .career-catalyst-wrap .text_section .list-items .list-item .circle span {
  width: 12px;
  height: 12px;
  background-color: #1be4e8;
  border-radius: 50%;
}
.career-catalyst .career-catalyst-wrap .text_section .list-items .list-item .title {
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 500;
  line-height: 39px;
}
.career-catalyst .career-catalyst-wrap .text_section .list-items .list-item .text {
  font-size: 16px;
  line-height: 26px;
}

@media screen and (max-width: 1200px) {
  .career-catalyst .heading {
    margin-bottom: 22px;
  }
  .career-catalyst .description {
    line-height: 32px;
  }
  .career-catalyst .career-catalyst-wrap {
    gap: 30px;
  }
  .career-catalyst .career-catalyst-wrap .text_section h3 {
    font-size: 24px;
  }
  .career-catalyst .career-catalyst-wrap .text_section .list-items {
    gap: 36px;
  }
  .career-catalyst .career-catalyst-wrap .text_section .list-items .list-item .title {
    font-size: 22px;
    line-height: 34px;
  }
}
@media screen and (max-width: 768px) {
  .career-catalyst {
    margin: 60px 0;
  }
  .career-catalyst .heading {
    font-size: 36px;
  }
  .career-catalyst .description {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  .career-catalyst .career-catalyst-wrap {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .career-catalyst .career-catalyst-wrap .image_section {
    width: 100%;
    max-width: 500px;
  }
  .career-catalyst .career-catalyst-wrap .text_section {
    width: 100%;
    max-width: 500px;
  }
  .career-catalyst .career-catalyst-wrap .text_section h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .career-catalyst .heading {
    margin-bottom: 26px;
    font-size: 24px;
    line-height: 30px;
  }
  .career-catalyst .description {
    font-size: 14px;
  }
  .career-catalyst .career-catalyst-wrap .text_section h3 {
    font-size: 24px;
  }
  .career-catalyst .career-catalyst-wrap .text_section .list-items {
    padding-left: 50px;
  }
  .career-catalyst .career-catalyst-wrap .text_section .list-items .list-item:before {
    left: -40px;
  }
  .career-catalyst .career-catalyst-wrap .text_section .list-items .list-item .circle {
    top: -7px;
    left: -58px;
  }
  .career-catalyst .career-catalyst-wrap .text_section .list-items .list-item .title {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 16px;
  }
  .career-catalyst .career-catalyst-wrap .text_section .list-items .list-item .text {
    font-size: 14px;
  }
}
.career-areas {
  margin: 60px 0;
}
.career-areas .areas-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.career-areas .areas-wrap .image_section {
  position: relative;
  width: 50%;
}
.career-areas .areas-wrap .image_section img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 32px;
}
.career-areas .areas-wrap .text_section {
  width: 50%;
}
.career-areas .areas-wrap .text_section .info {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
.career-areas .areas-wrap .text_section .info .number {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #00acff 25.55%, #069a6c 90.52%);
  background-clip: text;
  font-size: 52px;
  font-weight: 700;
  line-height: 54px;
  text-transform: uppercase;
}
.career-areas .areas-wrap .text_section .info span {
  font-size: 20px;
  line-height: 30px;
}
.career-areas .areas-wrap .text_section .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.career-areas .areas-wrap .text_section .tags .tag-item {
  padding: 20px 24px;
  font-size: 22px;
  line-height: 33px;
  background-color: #f7f9fa;
  border-radius: 12px;
  cursor: default;
}
.career-areas .areas-wrap .text_section .tags .tag-item:hover {
  color: #fff;
  background: linear-gradient(90deg, #39C6C4 0%, #318ED4 100%);
  transition: 300ms all linear;
}

@media screen and (max-width: 1200px) {
  .career-areas .areas-wrap {
    gap: 40px;
  }
  .career-areas .areas-wrap .text_section .info {
    gap: 20px;
    margin-bottom: 40px;
  }
  .career-areas .areas-wrap .text_section .info .number {
    font-size: 48px;
    line-height: 44px;
  }
  .career-areas .areas-wrap .text_section .info span {
    font-size: 18px;
    line-height: 24px;
  }
  .career-areas .areas-wrap .text_section .tags .tag-item {
    padding: 18px 20px;
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .career-areas .areas-wrap .text_section .info {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 768px) {
  .career-areas .areas-wrap {
    flex-direction: column;
  }
  .career-areas .areas-wrap .image_section {
    max-width: 500px;
    width: 100%;
  }
  .career-areas .areas-wrap .text_section {
    max-width: 500px;
    width: 100%;
  }
  .career-areas .areas-wrap .text_section .info {
    flex-direction: row;
    align-items: center;
  }
  .career-areas .areas-wrap .text_section .info span {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .career-areas .areas-wrap .text_section .info {
    margin-bottom: 20px;
  }
  .career-areas .areas-wrap .text_section .info span {
    font-size: 14px;
  }
  .career-areas .areas-wrap .text_section .tags {
    gap: 6px;
  }
  .career-areas .areas-wrap .text_section .tags .tag-item {
    font-size: 16px;
    padding: 10px 18px;
  }
}
.career-locations {
  margin: 60px 0;
}
.career-locations .locations-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.career-locations .locations-wrap .image_section {
  position: relative;
  width: 50%;
}
.career-locations .locations-wrap .image_section img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 32px;
}
.career-locations .locations-wrap .text_section {
  width: 50%;
}
.career-locations .locations-wrap .text_section .info {
  margin-bottom: 60px;
  font-size: 20px;
  line-height: 30px;
}
.career-locations .locations-wrap .text_section .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.career-locations .locations-wrap .text_section .tags .tag-item {
  padding: 20px 24px;
  font-size: 22px;
  line-height: 33px;
  background-color: #f7f9fa;
  border-radius: 12px;
  cursor: default;
}
.career-locations .locations-wrap .text_section .tags .tag-item:hover {
  color: #fff;
  background: linear-gradient(90deg, #39C6C4 0%, #318ED4 100%);
  transition: 300ms all linear;
}

@media screen and (max-width: 1200px) {
  .career-locations .locations-wrap {
    gap: 40px;
  }
  .career-locations .locations-wrap .text_section .info {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 24px;
  }
  .career-locations .locations-wrap .text_section .tags .tag-item {
    padding: 18px 20px;
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .career-locations .locations-wrap {
    flex-direction: column-reverse;
  }
  .career-locations .locations-wrap .image_section {
    max-width: 500px;
    width: 100%;
  }
  .career-locations .locations-wrap .text_section {
    max-width: 500px;
    width: 100%;
  }
  .career-locations .locations-wrap .text_section .info {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .career-locations .locations-wrap .text_section .info {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .career-locations .locations-wrap .text_section .tags {
    gap: 6px;
  }
  .career-locations .locations-wrap .text_section .tags .tag-item {
    font-size: 16px;
    padding: 10px 18px;
  }
}
.executive-leadership {
  position: relative;
  z-index: 2;
  margin: 30px 0 60px;
}
.executive-leadership .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
}
.executive-leadership .description {
  margin-bottom: 60px;
  font-size: 22px;
  line-height: 33px;
  color: #56505f;
  text-align: center;
  text-wrap: balance;
}
.executive-leadership .executive-leadership-wrap {
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #2ea3b9 100%, #328fd4 100%);
  border-radius: 32px;
  padding: 40px;
  gap: 35px;
  color: #fff;
}
.executive-leadership .executive-leadership-wrap .image_content {
  width: 70%;
}
.executive-leadership .executive-leadership-wrap .image_content img {
  border-radius: 32px;
  width: 100%;
}
.executive-leadership .executive-leadership-wrap .executive-leadership-list-content {
  width: 50%;
}
.executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 46px;
  padding-left: 85px;
}
.executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item {
  position: relative;
}
.executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item .item-number {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ebf4f8;
  font-size: 18px;
  border-radius: 50%;
  position: absolute;
  left: -85px;
  top: 0px;
}
.executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item:before {
  content: "";
  position: absolute;
  top: 40px;
  left: -66px;
  width: 1px;
  height: calc(100% + 6px);
  background-color: #ebf4f8;
}
.executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item:last-child:before {
  content: none;
}
.executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item .item-content {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .executive-leadership .description {
    font-size: 18px;
    line-height: 24px;
  }
  .executive-leadership .executive-leadership-wrap .image_content {
    width: 50%;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content {
    width: 50%;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items {
    gap: 36px;
    padding-left: 75px;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item .item-number {
    left: -75px;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item:before {
    left: -56px;
    height: calc(100% - 4px);
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item .item-content {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .executive-leadership .heading {
    margin-bottom: 20px;
  }
  .executive-leadership .description {
    margin-bottom: 35px;
  }
  .executive-leadership .executive-leadership-wrap {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .executive-leadership .executive-leadership-wrap .image_content {
    width: 100%;
  }
  .executive-leadership .executive-leadership-wrap .image_content img {
    object-fit: cover;
    max-height: 400px;
    width: 100%;
    object-position: center;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content {
    width: 100%;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items {
    gap: 36px;
    padding-left: 75px;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item .item-number {
    left: -75px;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item:before {
    left: -56px;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item .item-content {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 500px) {
  .executive-leadership .heading {
    font-size: 24px;
    line-height: 30px;
  }
  .executive-leadership .description {
    font-size: 16px;
  }
  .executive-leadership .executive-leadership-wrap {
    gap: 38px;
    padding: 30px 20px 20px 20px;
  }
  .executive-leadership .executive-leadership-wrap .image_content img {
    max-height: unset;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items {
    gap: 26px;
  }
  .executive-leadership .executive-leadership-wrap .executive-leadership-list-content .list-items .list-item:before {
    height: calc(100% - 14px);
  }
}
.meta-360 {
  margin: 60px 0;
}
.meta-360 .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
}
.meta-360 .description {
  margin-bottom: 60px;
  font-size: 22px;
  line-height: 33px;
  color: #56505f;
  text-align: center;
  text-wrap: balance;
}
.meta-360 .meta-360-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}
.meta-360 .meta-360-wrap .meta-360-image {
  width: 50%;
}
.meta-360 .meta-360-wrap .meta-360-image img {
  border-radius: 24px;
}
.meta-360 .meta-360-wrap .meta-360-text-content {
  width: 50%;
  padding-left: 85px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}
.meta-360 .meta-360-wrap .meta-360-text-content .meta-360-list-item {
  position: relative;
}
.meta-360 .meta-360-wrap .meta-360-text-content .meta-360-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -66px;
  width: 1px;
  height: calc(100% + 64px);
  background-color: #ebf4f8;
}
.meta-360 .meta-360-wrap .meta-360-text-content .meta-360-list-item:last-child:before {
  content: none;
}
.meta-360 .meta-360-wrap .meta-360-text-content .meta-360-list-item .meta-360-item-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EEF7FD;
  position: absolute;
  left: -85px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #00ACFF;
}
.meta-360 .meta-360-wrap .meta-360-text-content .meta-360-list-item .item_content-item-text {
  font-size: 20px;
  line-height: 30px;
  color: #150B3F;
}

@media screen and (max-width: 1200px) {
  .meta-360 {
    margin: 40px 0;
  }
  .meta-360 .heading {
    margin-bottom: 20px;
  }
  .meta-360 .description {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 30px;
  }
  .meta-360 .meta-360-wrap {
    gap: 50px;
  }
  .meta-360 .meta-360-wrap .item_content-item-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .meta-360 .meta-360-wrap .meta-360-text-content {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .meta-360 .heading {
    margin-bottom: 20px;
  }
  .meta-360 .description {
    margin-bottom: 35px;
    font-size: 18px;
  }
  .meta-360 .meta-360-wrap {
    flex-direction: column;
    gap: 30px;
  }
  .meta-360 .meta-360-wrap .meta-360-image {
    width: 100%;
  }
  .meta-360 .meta-360-wrap .meta-360-text-content {
    width: 100%;
    padding-left: 64px;
  }
  .meta-360 .meta-360-wrap .meta-360-text-content .meta-360-list-item::before {
    left: -45px;
  }
  .meta-360 .meta-360-wrap .meta-360-text-content .meta-360-list-item .meta-360-item-number {
    left: -65px;
    font-size: 14px;
  }
  .meta-360 .meta-360-wrap .meta-360-text-content .meta-360-list-item .item_content-item-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .meta-360 .heading {
    font-size: 24px;
    line-height: 30px;
  }
  .meta-360 .description {
    font-size: 16px;
  }
}
.numbers .numbers-wrap {
  display: flex;
  justify-content: space-around;
  gap: 25px;
}
.numbers .numbers-wrap .number-item {
  display: flex;
  gap: 15px;
}
.numbers .numbers-wrap .number-item h3 {
  font-size: 54px;
  line-height: 54px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00acff 25.55%, #069a6c 90.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.numbers .numbers-wrap .number-item p {
  font-size: 15px;
  max-width: 254px;
}

@media screen and (max-width: 1200px) {
  .numbers .numbers-wrap .number-item h3 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .numbers .numbers-wrap {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 40px;
  }
  .numbers .numbers-wrap .number-item h3 {
    font-size: 50px;
    line-height: 50px;
  }
}
.science {
  position: relative;
  z-index: 2;
  margin: 50px 0;
}
.science .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 16px;
  margin-bottom: 60px;
}
.science .science-wrap {
  display: flex;
  align-items: center;
  gap: 76px;
  min-height: 500px;
}
.science .science-wrap .video_section {
  width: 50%;
}
.science .science-wrap .video_section iframe,
.science .science-wrap .video_section video {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.science .science-wrap .text_section {
  position: relative;
  width: 50%;
}
.science .science-wrap .text_section::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: 0px;
  width: 40px;
  height: 40px;
  border: 1px solid #1be4e8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../assets/images/scroll.svg");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  background-color: #fff;
}
.science .science-wrap .text_section::before {
  content: "Scroll down";
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 76px;
  font-size: 14px;
  line-height: 22px;
  z-index: 2;
}
.science .science-wrap .text_section .swiper-container {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}
.science .science-wrap .text_section .swiper-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 1px;
  height: calc(100% - 122px);
  background-color: #7cd3fc;
}
.science .science-wrap .text_section .swiper-container .swiper-slide {
  width: 100%;
  position: relative;
  opacity: 0.5;
}
.science .science-wrap .text_section .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.science .science-wrap .text_section .swiper-container .swiper-slide:last-child {
  height: 500px;
}
.science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content {
  width: 100%;
  padding-left: 76px;
  margin-bottom: 60px;
}
.science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content .circle {
  width: 40px;
  height: 40px;
  border: 1px solid #1be4e8;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content .circle span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1be4e8;
}
.science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content h3 {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
}
.science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content p {
  font-size: 16px;
  line-height: 34px;
}

@media screen and (max-width: 1200px) {
  .science {
    margin: 30px 0;
  }
  .science .science-wrap {
    gap: 50px;
  }
  .science .science-wrap .text_section:before {
    bottom: 0;
    z-index: 2;
  }
  .science .science-wrap .text_section::after {
    bottom: 46px;
    z-index: 2;
  }
  .science .science-wrap .text_section .swiper-container::before {
    left: 20px;
    height: calc(100% - 88px);
  }
  .science .science-wrap .text_section .swiper-container .swiper-slide {
    padding-right: 16px;
  }
  .science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content {
    width: 100%;
    padding-left: 76px;
    margin-bottom: 60px;
  }
  .science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content .circle {
    left: 0px;
  }
  .science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .science .science-wrap {
    flex-direction: column;
    gap: 30px;
  }
  .science .science-wrap .video_section {
    width: 100%;
  }
  .science .science-wrap .text_section {
    width: 100%;
  }
  .science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content {
    margin-bottom: 30px;
  }
  .science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content h3 {
    font-size: 18px;
    line-height: 30px;
  }
  .science .science-wrap .text_section .swiper-container .swiper-slide .slide-text-content p {
    font-size: 14px;
    line-height: 24px;
  }
}
.unique-slider-block {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 100px;
  min-height: 680px;
}
.unique-slider-block .text-section {
  position: relative;
  width: 50%;
}
.unique-slider-block .text-section::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: 0px;
  width: 40px;
  height: 40px;
  border: 1px solid #1be4e8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../assets/images/scroll.svg");
  background-repeat: no-repeat;
  background-color: #fff;
  background-position: center;
  z-index: 2;
}
.unique-slider-block .text-section::before {
  content: "Scroll down";
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 76px;
  font-size: 14px;
  line-height: 22px;
  z-index: 2;
}
.unique-slider-block .text-section .swiper-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}
.unique-slider-block .text-section .swiper-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 1px;
  height: calc(100% - 122px);
  background-color: #7cd3fc;
}
.unique-slider-block .text-section .swiper-container .swiper-slide {
  width: 100%;
  position: relative;
  opacity: 0.5;
}
.unique-slider-block .text-section .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.unique-slider-block .text-section .swiper-container .swiper-slide:last-child {
  height: 600px;
}
.unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content {
  width: 100%;
  padding-left: 76px;
  margin-bottom: 60px;
}
.unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content .circle {
  width: 40px;
  height: 40px;
  background-color: #eef7fd;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1be4e8;
}
.unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content h3 {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
}
.unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content p {
  font-size: 16px;
  line-height: 34px;
}
.unique-slider-block .image-section {
  width: 50%;
  min-height: 600px;
}
.unique-slider-block .image-section img {
  position: absolute;
  top: 50%;
  left: 0px;
  border-radius: 32px;
  max-height: 600px;
  width: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  object-fit: cover;
}

@media screen and (max-width: 1100px) {
  .unique-slider-block {
    gap: 40px;
  }
  .unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 30px;
  }
  .unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .unique-slider-block {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .unique-slider-block::after {
    left: 20px;
  }
  .unique-slider-block::before {
    left: 20px;
  }
  .unique-slider-block .text-section {
    width: 100%;
  }
  .unique-slider-block .text-section .swiper-container {
    max-height: 500px;
  }
  .unique-slider-block .text-section .swiper-container::before {
    left: 20px;
    height: calc(100% - 122px);
  }
  .unique-slider-block .text-section .swiper-container .swiper-slide {
    padding-right: 16px;
  }
  .unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content {
    width: 100%;
    padding-left: 76px;
    margin-bottom: 60px;
  }
  .unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content .circle {
    left: 0px;
  }
  .unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content h3 {
    font-size: 18px;
    line-height: 30px;
  }
  .unique-slider-block .text-section .swiper-container .swiper-slide .slide-text-content p {
    font-size: 14px;
    line-height: 24px;
  }
  .unique-slider-block .image-section {
    width: 100%;
    min-height: unset;
    height: 300px;
    position: relative;
  }
  .unique-slider-block .image-section img {
    top: 20px;
    right: 20px;
    max-height: 300px;
    width: calc(100% - 40px);
    transform: unset;
  }
}
.unique-analytics {
  position: relative;
  z-index: 2;
  margin: 0 0 80px 0;
}
.unique-analytics .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
}
.unique-analytics .description {
  max-width: 1000px;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto;
  margin-bottom: 60px;
}
.unique-analytics .unique-analytics-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.unique-analytics .unique-analytics-wrap .image {
  width: 25%;
}
.unique-analytics .unique-analytics-wrap .text-content {
  width: 75%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.unique-analytics .unique-analytics-wrap .text-content .area-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.unique-analytics .unique-analytics-wrap .text-content .area-block h3 {
  position: relative;
  padding-left: 36px;
  font-size: 22px;
  line-height: 33px;
  font-weight: 500;
  text-wrap: balance;
}
.unique-analytics .unique-analytics-wrap .text-content .area-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #1E9EEC;
}
.unique-analytics .unique-analytics-wrap .text-content .area-block p {
  font-size: 14px;
  line-height: 22px;
  color: #56505F;
}
.unique-analytics .unique-analytics-wrap .text-content .area-block:nth-child(1) h3::before {
  background-color: #1E9EEC;
}
.unique-analytics .unique-analytics-wrap .text-content .area-block:nth-child(2) h3::before {
  background-color: #7FD5FF;
}
.unique-analytics .unique-analytics-wrap .text-content .area-block:nth-child(3) h3::before {
  background-color: #39C3C6;
}

@media screen and (max-width: 1200px) {
  .unique-analytics {
    margin: 0 0 40px 0;
  }
  .unique-analytics .unique-analytics-wrap {
    gap: 30px;
  }
  .unique-analytics .unique-analytics-wrap .text-content {
    gap: 20px;
  }
  .unique-analytics .unique-analytics-wrap .text-content .area-block h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 940px) {
  .unique-analytics .unique-analytics-wrap .image {
    min-width: 240px;
  }
  .unique-analytics .unique-analytics-wrap .text-content {
    flex-wrap: wrap;
    gap: 30px;
  }
  .unique-analytics .unique-analytics-wrap .text-content .area-block {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .unique-analytics .unique-analytics-wrap .text-content .area-block {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .unique-analytics .unique-analytics-wrap {
    flex-direction: column;
  }
  .unique-analytics .unique-analytics-wrap .image {
    width: 100%;
    max-width: 300px;
  }
  .unique-analytics .unique-analytics-wrap .text-content {
    gap: 12px;
    width: 100%;
  }
  .unique-analytics .unique-analytics-wrap .text-content .area-block h3 {
    font-size: 18px;
  }
}
.unique-focus {
  position: relative;
  z-index: 2;
}
.unique-focus .heading {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 24px;
}
.unique-focus .description {
  max-width: 788px;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto;
  margin-bottom: 80px;
}
.unique-focus .logos_wrapper {
  display: flex;
  margin-bottom: 48px;
  overflow: hidden;
}
.unique-focus .logos_wrapper .logo-item {
  border: 1px solid #ddeaf0;
  border-radius: 12px;
  padding: 20px;
  min-width: 216px;
  height: 120px;
}
.unique-focus .logos_wrapper .logo-item img {
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 500px) {
  .unique-focus .heading {
    margin-bottom: 18px;
  }
  .unique-focus .description {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .unique-focus .logos_wrapper {
    margin-bottom: 30px;
  }
  .unique-focus .logos_wrapper .logo-item {
    padding: 16px;
  }
}
.contacts {
  position: relative;
  margin: 60px 0 100px;
  padding: 0 16px;
}
.contacts:after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/testimonials-shadow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  top: 0;
  z-index: -1;
}

.contact-form-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.contact-form-wrap .contact-text-content {
  max-width: 465px;
  position: relative;
}
.contact-form-wrap .contact-text-content:after {
  content: "";
  position: absolute;
  right: 0;
  width: 34px;
  height: 42px;
  background-image: url(../../assets/images/subtract.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  bottom: 0;
  z-index: -1;
}
.contact-form-wrap .contact-text-content .form_title {
  font-size: 52px;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 54px;
}
.contact-form-wrap .contact-text-content .form_description {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 40px;
}
.contact-form-wrap .contact-text-content .info-items {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.contact-form-wrap .contact-text-content .info-items .item {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 18px;
}
.contact-form-wrap .contact-text-content .info-items .item a {
  color: inherit;
}
.contact-form-wrap .contact-form-content {
  position: relative;
  max-width: 460px;
  margin: 0 16px;
}
.contact-form-wrap .contact-form-content:before {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 100%;
  height: 100%;
  background-color: rgba(203, 235, 234, 0.5019607843);
  border-radius: 18px;
}
.contact-form-wrap .contact-form-content:after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100%;
  height: 100%;
  background-color: rgba(203, 235, 234, 0.5019607843);
  border-radius: 18px;
}
.contact-form-wrap .contact-form-content form {
  position: relative;
  border-radius: 18px;
  padding: 60px;
  background: #fff;
  z-index: 2;
}
.contact-form-wrap .contact-form-content form .form-talk-input {
  position: relative;
  padding: 12px 12px 12px 12px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #d8d8d8;
}
.contact-form-wrap .contact-form-content form .form-talk-input:before {
  content: "";
  position: absolute;
  left: 28px;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 22px;
  z-index: 1;
}
.contact-form-wrap .contact-form-content form .form-talk-input label {
  top: 37px;
  z-index: 1;
  left: 72px;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--main-grey);
}
.contact-form-wrap .contact-form-content form .form-talk-input input,
.contact-form-wrap .contact-form-content form .form-talk-input textarea {
  position: relative;
  width: 100%;
  border: none;
  background: var(--main-light);
  resize: none;
  color: #2D2D2D;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.contact-form-wrap .contact-form-content form .form-talk-input input:focus-visible,
.contact-form-wrap .contact-form-content form .form-talk-input textarea:focus-visible {
  outline: none;
}
.contact-form-wrap .contact-form-content form .form-talk-input input::placeholder,
.contact-form-wrap .contact-form-content form .form-talk-input textarea::placeholder {
  color: var(--second-dark);
}
.contact-form-wrap .contact-form-content form input[type=submit] {
  padding: 15px 50px;
  border-radius: 15px;
  background-color: #35bbb9;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .contact-form-wrap {
    gap: 30px;
  }
  .contact-form-wrap .contact-text-content {
    width: 40%;
  }
  .contact-form-wrap .contact-form-content form {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 1000px) {
  .contact-form-wrap {
    gap: 60px;
    flex-direction: column;
  }
  .contact-form-wrap .contact-text-content {
    width: 100%;
  }
  .contact-form-wrap .contact-form-content form {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 500px) {
  .contacts {
    margin: 30px 0 80px;
  }
  .contact-form-wrap {
    gap: 60px;
    flex-direction: column;
  }
  .contact-form-wrap .contact-text-content {
    width: 100%;
  }
  .contact-form-wrap .contact-text-content:after {
    width: 24px;
    height: 32px;
  }
  .contact-form-wrap .contact-text-content .form_title {
    font-size: 32px;
    line-height: 34px;
  }
  .contact-form-wrap .contact-text-content .form_description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .contact-form-wrap .contact-text-content .info-items {
    gap: 16px;
  }
  .contact-form-wrap .contact-text-content .info-items .item {
    font-size: 14px;
  }
  .contact-form-wrap .contact-form-content {
    width: calc(100% + 32px);
  }
  .contact-form-wrap .contact-form-content::after {
    content: none;
  }
  .contact-form-wrap .contact-form-content::before {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
  }
  .contact-form-wrap .contact-form-content form {
    padding: 20px 16px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  background: linear-gradient(90deg, #39c5c5 25.55%, #3294d3 90.52%);
  background-size: 200%;
  animation: gba 20s infinite;
}

@keyframes gba {
  0% {
    background-position: 0;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}
.main-triangle-bg {
  position: relative;
  padding-bottom: 152px;
}
.main-triangle-bg:after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 450px;
  background: #FFF;
  clip-path: polygon(0 94%, 100% 62%, 100% 100%, 0% 100%);
  z-index: 1;
}
@media all and (min-width: 1100px) {
  .main-triangle-bg {
    padding-bottom: 146px;
  }
  .main-triangle-bg:after {
    height: 600px;
  }
}

.hero-wrap {
  position: relative;
  padding-top: 30px;
  z-index: 1;
}
.hero-wrap .heading {
  margin-bottom: 4px;
  color: var(--main-light);
  text-wrap: balance;
}
@media all and (min-width: 1100px) {
  .hero-wrap {
    padding-top: 35px;
  }
}
@media all and (min-width: 1200px) {
  .hero-wrap {
    padding-top: 53px;
  }
}

.reviews {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.reviews .heading {
  margin-bottom: 16px;
}
.reviews .description {
  max-width: 788px;
  font-size: 16px;
  text-wrap: balance;
  margin-bottom: 56px;
  color: #56505f;
}
.reviews .swiper-button-prev {
  position: absolute;
  top: inherit;
  bottom: 50%;
  left: -100px;
  z-index: 2;
}
.reviews .swiper-button-prev:after {
  content: "";
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/arrow-lft.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.reviews .swiper-button-next {
  position: absolute;
  top: inherit;
  bottom: 50%;
  right: -100px;
}
.reviews .swiper-button-next:after {
  content: "";
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/arrow-rght.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.reviews .swiper-pagination-bullets {
  display: flex;
}
.reviews .swiper-pagination-bullets .swiper-pagination-bullet {
  background: #00acff;
  opacity: 0.5;
}
.reviews .swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}
.reviews .reviews-slider {
  padding-bottom: 30px;
  overflow: hidden;
  margin-top: 50px;
}
.reviews .reviews-slider .swiper-slide {
  display: flex;
  align-items: center;
  background: #fbfbfe;
  border-radius: 12px;
}
.reviews .reviews-slider .swiper-slide img {
  max-width: 220px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews .reviews-slider .swiper-slide .user_quote {
  position: relative;
  padding: 30px;
  width: 100%;
}
.reviews .reviews-slider .swiper-slide .user_quote .content_quote {
  margin-bottom: 32px;
  color: #56505f;
}
.reviews .reviews-slider .swiper-slide .user_quote .content_quote.students {
  font-size: 16px;
}
.reviews .reviews-slider .swiper-slide .user_quote .user_name {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}
.reviews .reviews-slider .swiper-slide .user_quote .user_position {
  font-size: 14px;
  color: #56505f;
}
.reviews .reviews-slider .swiper-slide .user_quote .slider-quotes {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: rgba(168, 204, 243, 0.168627451);
  z-index: -1;
  font-size: 350px;
  line-height: 20px;
}

@media screen and (max-width: 1400px) {
  .reviews {
    padding-left: 56px;
    padding-right: 56px;
  }
  .reviews .swiper-button-prev {
    left: -56px;
  }
  .reviews .swiper-button-next {
    right: -56px;
  }
}
@media screen and (max-width: 768px) {
  .reviews {
    padding-left: 0px;
    padding-right: 0;
  }
  .reviews .swiper-button-prev {
    left: -21px;
    background-color: #fbfbfe;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .reviews .swiper-button-prev:after {
    width: 20px;
    height: 20px;
  }
  .reviews .swiper-button-next {
    right: -21px;
    background-color: #fbfbfe;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .reviews .swiper-button-next:after {
    width: 20px;
    height: 20px;
  }
  .reviews .reviews-slider .swiper-slide {
    flex-direction: column;
  }
  .reviews .reviews-slider .swiper-slide img {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
  }
  .reviews .reviews-slider .swiper-slide .user_quote {
    position: relative;
    padding: 30px;
  }
  .reviews .reviews-slider .swiper-slide .user_quote .content_quote {
    margin-bottom: 32px;
    color: #56505f;
  }
  .reviews .reviews-slider .swiper-slide .user_quote .content_quote.students {
    font-size: 14px;
  }
  .reviews .reviews-slider .swiper-slide .user_quote .user_name {
    font-size: 18px;
  }
}
.blue-slider-block {
  position: relative;
  background: linear-gradient(to bottom, #2ea3b9 100%, #328fd4 100%);
  border-radius: 32px;
  display: flex;
  align-items: center;
  gap: 100px;
  height: 800px;
}
.blue-slider-block::after {
  content: "";
  position: absolute;
  bottom: 132px;
  left: 40px;
  width: 40px;
  height: 40px;
  border: 1px solid #1be4e8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../assets/images/scroll-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
}
.blue-slider-block::before {
  content: "Scroll down";
  position: absolute;
  bottom: 83px;
  left: 40px;
  width: 76px;
  font-size: 14px;
  color: #fff;
  line-height: 22px;
}
.blue-slider-block .text-section {
  width: 100%;
  color: #fff;
}
.blue-slider-block .text-section .swiper-container {
  width: 100%;
  max-height: 455px;
  overflow: hidden;
  position: relative;
}
.blue-slider-block .text-section .swiper-container .swiper-slide {
  width: 100%;
  position: relative;
  opacity: 0.5;
}
.blue-slider-block .text-section .swiper-container .swiper-slide:before {
  content: "";
  position: absolute;
  top: 41px;
  left: 59.5px;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #7cd3fc;
}
.blue-slider-block .text-section .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.blue-slider-block .text-section .swiper-container .swiper-slide:last-child {
  height: 455px;
}
.blue-slider-block .text-section .swiper-container .swiper-slide .slide-text-content {
  width: 50%;
  padding-left: 125px;
  margin-bottom: 100px;
}
.blue-slider-block .text-section .swiper-container .swiper-slide .slide-text-content .circle {
  width: 40px;
  height: 40px;
  border: 1px solid #1be4e8;
  border-radius: 50%;
  position: absolute;
  left: 40px;
  top: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blue-slider-block .text-section .swiper-container .swiper-slide .slide-text-content .circle span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1be4e8;
}
.blue-slider-block .text-section .swiper-container .swiper-slide .slide-text-content h3 {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
}
.blue-slider-block .text-section .swiper-container .swiper-slide .slide-text-content p {
  font-size: 16px;
  line-height: 26px;
  opacity: 0.8;
}
.blue-slider-block .image-section {
  width: 50%;
  min-height: 680px;
  position: absolute;
  right: 0;
}
.blue-slider-block .image-section img {
  position: absolute;
  top: 50%;
  right: 40px;
  border-radius: 32px;
  max-height: 650px;
  height: 100%;
  width: calc(100% - 80px);
  pointer-events: none;
  transform: translateY(-50%);
  object-fit: cover;
  transition: 500ms opacity linear;
}

@media screen and (max-width: 768px) {
  .blue-slider-block {
    flex-direction: column-reverse;
    gap: 50px;
    padding-bottom: 80px;
    height: unset;
  }
  .blue-slider-block::after {
    left: 20px;
    bottom: 40px;
  }
  .blue-slider-block::before {
    left: 70px;
    bottom: 49px;
    max-width: 100%;
    white-space: nowrap;
  }
  .blue-slider-block .text-section .swiper-container {
    max-height: 300px;
  }
  .blue-slider-block .text-section .swiper-container .swiper-slide {
    padding-right: 16px;
  }
  .blue-slider-block .text-section .swiper-container .swiper-slide:last-child {
    height: 300px;
  }
  .blue-slider-block .text-section .swiper-container .swiper-slide::before {
    left: 40px;
  }
  .blue-slider-block .text-section .swiper-container .swiper-slide .slide-text-content {
    width: 100%;
    padding-left: 76px;
    margin-bottom: 60px;
  }
  .blue-slider-block .text-section .swiper-container .swiper-slide .slide-text-content .circle {
    left: 20px;
  }
  .blue-slider-block .text-section .swiper-container .swiper-slide .slide-text-content h3 {
    font-size: 18px;
    line-height: 30px;
  }
  .blue-slider-block .text-section .swiper-container .swiper-slide .slide-text-content p {
    font-size: 14px;
    line-height: 24px;
  }
  .blue-slider-block .image-section {
    width: 100%;
    min-height: unset;
    height: 300px;
    position: relative;
  }
  .blue-slider-block .image-section img {
    top: 20px;
    right: 20px;
    max-height: 300px;
    width: calc(100% - 40px);
    transform: unset;
  }
}
