* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "General Sans", sans-serif;
}

.page-holder {
  overflow: hidden;
}

.hidden {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.hero-linear {
  background: linear-gradient(to bottom, #D6E4FC 5%, rgba(127, 136, 150, 0) 85%);
}

.section-linear {
  background: rgba(215, 227, 252, 0.2392156863);
  background-image: linear-gradient(to bottom, rgba(127, 136, 150, 0) 0%, #D6E4FC 100%);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#videoContainer {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  min-width: 300px;
  /* Add this line */
  width: 100%;
  /* Add this line */
}

#videoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container-outer {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.arrow-big {
  position: absolute;
}
.arrow-big svg {
  opacity: 0.3;
}
.arrow-big.low-opacity svg {
  opacity: 0.1;
}
.arrow-big.top {
  top: 0;
  right: 0;
}
.arrow-big.left {
  top: 0;
  left: 0;
}
.arrow-big.right {
  bottom: 0;
  right: -60px;
}
.arrow-big.bottom {
  bottom: 0;
  left: 0;
}

.btn {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 10px;
  min-width: 140px;
  display: inline-block;
  text-align: center;
  border: 1px solid transparent;
}
.btn--blue {
  color: #fff;
  background: #3A8BFF;
}
.btn--orange {
  color: #fff;
  background: #FFB43A;
}
.btn--stroke {
  color: #3A8BFF;
  background: #fff;
  border: 1px solid #3A8BFF;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: #223045;
}

h1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
}
@media (min-width: 991px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 147%;
}
@media (min-width: 991px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 22px;
  font-weight: 900;
  line-height: 130%;
}
@media (min-width: 991px) {
  h3 {
    font-size: 28px;
  }
}

p {
  font-family: "General Sans", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: #223045;
  margin: 0;
}

.title-block {
  padding-bottom: 40px;
  border-bottom: 3px solid #223045;
  display: inline-flex;
}

.header {
  padding: 16px 20px;
}
@media (min-width: 991px) {
  .header {
    padding: 24px 20px;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 72px;
  right: 0;
  width: 100%;
  z-index: 10;
  gap: 20px;
  background: #fff;
  padding: 20px;
}
@media (min-width: 991px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    top: 0;
    flex-direction: row;
    justify-content: center;
    padding: 0;
  }
}
.header__nav.open {
  display: flex;
}
.header__nav-link {
  color: #223045;
  text-decoration: none;
  font-size: 20px;
}
@media (min-width: 991px) {
  .header__nav-link {
    font-size: 16px;
  }
}
.header__cta {
  display: none;
  align-items: center;
  gap: 20px;
}
@media (min-width: 991px) {
  .header__cta {
    display: flex;
  }
}
.header__hamburger {
  display: block;
  cursor: pointer;
}
@media (min-width: 991px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger-icon, .header__hamburger-close {
  display: block;
}
.header__hamburger-close {
  display: none;
}

.footer {
  padding: 0 20px 36px 20px;
  position: relative;
}
.footer-line-left {
  position: absolute;
  bottom: -70px;
  left: -190px;
  opacity: 0.5;
  display: none;
}
@media (min-width: 768px) {
  .footer-line-left {
    display: block;
  }
}
.footer-line-right {
  position: absolute;
  top: 0;
  right: -100px;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .footer-line-right {
    top: 0;
    right: 0;
  }
}
.footer__wrapper {
  background: linear-gradient(to right, #FFDFA3 0%, #BFC4C9 50%, #7AA7F2 100%);
  padding: 24px;
  border-radius: 28px;
}
@media (min-width: 991px) {
  .footer__wrapper {
    padding: 70px 16px;
  }
}
.footer__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media (min-width: 991px) {
  .footer__block {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
  }
}
.footer__block-left {
  max-width: 517px;
}
.footer__description {
  margin: 40px 0;
}
.footer__form {
  background: #fff;
  padding: 16px;
  border-radius: 28px;
}
@media (min-width: 769px) {
  .footer__form {
    padding: 40px 30px;
  }
}
.footer__form form p, .footer__form form label {
  width: 100%;
}
.footer__form form input {
  width: 100%;
  display: block;
  padding: 0 0 0 12px;
  border: 0;
  background: #F1F4F5;
  min-height: 40px;
  margin-bottom: 30px;
  border-radius: 10px;
  margin-top: 4px;
}
.footer__form form textarea {
  width: 100%;
  border: 0;
  background: #F1F4F5;
  margin-bottom: 10px;
  border-radius: 10px;
  margin-top: 4px;
  padding-left: 12px;
  padding-top: 12px;
}
.footer__form form .wpcf7-submit {
  background: #3A8BFF;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 16px;
  min-height: 48px;
  margin-bottom: 0;
}
.footer__form form .wpcf7-spinner {
  position: absolute;
  bottom: 80px;
}
.footer__bottom {
  padding: 80px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 991px) {
  .footer__bottom {
    flex-direction: row;
  }
}
.footer__pages {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__pages {
    flex-direction: row;
  }
}
.footer__pages-link {
  color: #223045;
  text-decoration: none;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__copyright {
  text-align: center;
  font-size: 14px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fefefe;
  padding: 20px;
  border-radius: 5px;
  max-width: 90%;
  min-width: 90%;
}
@media (min-width: 991px) {
  .modal-content {
    max-width: 80%;
    min-width: 50%;
  }
}

.hero {
  margin-bottom: 48px;
  padding: 0 20px;
}
.hero .arrow-big.bottom {
  top: 27%;
  left: 0;
}
.hero.ph {
  margin-bottom: 0;
}
.hero.ph .hero__content {
  max-width: 1080px;
}
@media (min-width: 768px) {
  .hero {
    margin-bottom: 80px;
  }
}
.hero__lottie {
  width: 100%;
  max-width: 840px;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
  min-height: 555px;
}
.hero__wrapper {
  position: relative;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .hero__wrapper {
    padding-top: 60px;
  }
}
.hero__image {
  position: relative;
}
.hero__content {
  max-width: 860px;
  margin: 0 auto 65px auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.hero__tf {
  margin-bottom: 28px;
}
.hero__tf h1 {
  margin-bottom: 28px;
}
.hero__tf h1 span {
  background: linear-gradient(to right, #3A8BFF 62%, #FFB43A 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero__tf p {
  font-size: 19px;
  line-height: 142%;
}
.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.challenge {
  margin-bottom: 48px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .challenge {
    margin-bottom: 60px;
  }
}
.challenge__wrapper {
  background: #F1F4F5;
  padding: 24px 0 0 0;
}
@media (min-width: 991px) {
  .challenge__wrapper {
    padding: 58px 15px;
  }
}
.challenge__image {
  width: 100%;
  min-height: 321px;
  position: relative;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 28px;
}
@media (min-width: 991px) {
  .challenge__image {
    width: 50%;
    max-width: 650px;
    position: absolute;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    border-bottom-left-radius: 0;
  }
}
.challenge__title {
  margin-bottom: 40px;
}
.challenge__list-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.challenge__list-item:nth-last-child(1) {
  margin-bottom: 0;
}
.challenge__list-icon {
  min-width: 70px;
  display: flex;
}
.challenge__content {
  max-width: 100%;
  padding: 0 24px;
  margin-bottom: 30px;
}
@media (min-width: 991px) {
  .challenge__content {
    max-width: 50%;
    padding-right: 40px;
  }
}
@media (min-width: 1280px) {
  .challenge__content {
    padding-right: 70px;
  }
}

.platform {
  padding: 0 20px;
  margin-bottom: 140px;
}
.platform .arrow-big.top {
  top: 0;
  right: -240px;
}
.platform .arrow-big.bottom {
  bottom: 100px;
  left: 180px;
}
.platform__wrapper {
  padding: 24px;
}
@media (min-width: 768px) {
  .platform__wrapper {
    padding: 70px 24px;
  }
}
@media (min-width: 1280px) {
  .platform__wrapper {
    padding: 300px 0 100px 0;
  }
}
.platform__image {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 1280px) {
  .platform__image {
    width: 60%;
    position: absolute;
    left: 30px;
    top: 30px;
    max-width: 936px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1280px) {
  .platform__image {
    width: 100%;
  }
}
.platform__title {
  margin-bottom: 40px;
}
.platform__description {
  margin-bottom: 40px;
}
.platform__list-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
.platform__list-icon {
  min-width: 70px;
}
.platform__content {
  max-width: 100%;
  margin: 0 auto;
}
.platform__content ul li {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: #223045;
  margin: 0;
}
@media (min-width: 1280px) {
  .platform__content {
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 2;
  }
}

.home__blog {
  padding: 48px 24px;
}
@media (min-width: 768px) {
  .home__blog {
    padding: 140px 24px;
  }
}

.blog__post-wrapper {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .blog__post-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.blog__post-image {
  width: 100%;
  min-height: 220px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 15px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .blog__post-image {
    min-height: 362px;
  }
}
.blog__post-link {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 15px;
  color: #223045;
  display: block;
}

.model {
  margin-bottom: 48px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .model {
    margin-bottom: 60px;
  }
}
.model .title-block {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.model h3 {
  font-weight: 500;
}
.model__at {
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  max-width: 540px;
}
.model__wrapper {
  background: #F1F4F5;
  padding: 24px 0 0 0;
}
@media (min-width: 991px) {
  .model__wrapper {
    padding: 58px 15px;
  }
}
.model__image {
  width: 100%;
  min-height: 321px;
  position: relative;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}
@media (min-width: 991px) {
  .model__image {
    width: 50%;
    max-width: 650px;
    position: absolute;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    border-bottom-left-radius: 0;
  }
}
.model__title {
  margin-bottom: 40px;
}
.model__tf p {
  margin-bottom: 20px;
}
.model__tf p:nth-last-child(1) {
  margin-bottom: 0;
}
.model__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.model__buttons .btn.btn--stroke {
  background: transparent;
}
.model__list {
  margin-top: 20px;
  margin-bottom: 30px;
}
.model__list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.model__list-icon {
  min-width: 70px;
}
.model__content {
  max-width: 100%;
  padding: 0 24px;
  margin-bottom: 30px;
}
@media (min-width: 991px) {
  .model__content {
    max-width: 50%;
    padding: 0 7px;
  }
}

.boxes {
  position: relative;
  padding: 48px 24px;
}
@media (min-width: 991px) {
  .boxes {
    padding: 120px 20px;
  }
}
.boxes__tf {
  margin-bottom: 40px;
  text-align: center;
}
.boxes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .boxes__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 991px) {
  .boxes__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.boxes__box {
  background: linear-gradient(to bottom, rgba(215, 227, 252, 0.3), #D7E3FC 100%);
  padding: 24px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.boxes__box img {
  margin-bottom: 15px;
}
.boxes__box-title {
  font-size: 24px;
  line-height: 147%;
  font-weight: 500;
}
.boxes__box .title-block {
  padding-bottom: 15px;
  width: 100%;
}
.boxes__box .title-block br {
  display: none;
}
@media (min-width: 991px) {
  .boxes__box .title-block br {
    display: block;
  }
}
.boxes__box-description {
  margin-top: 15px;
}
.boxes-arrows {
  display: none;
}
@media (min-width: 991px) {
  .boxes-arrows {
    display: block;
  }
}
@media (min-width: 2000px) {
  .boxes-arrows {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
  }
}
.boxes-arrow-right {
  position: absolute;
  top: -50px;
  right: -20px;
  opacity: 0.15;
}
.boxes-arrow-left {
  position: absolute;
  bottom: -50%;
  left: 0;
  opacity: 0.15;
}

.tabs {
  padding: 0 24px 64px 24px;
}
.tabs video {
  width: 100%;
}
@media (min-width: 768px) {
  .tabs {
    padding: 0 20px 200px 20px;
  }
}
.tabs__wrapper {
  position: relative;
}
.tabs__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.tabs__list--desktop {
  display: none;
}
@media (min-width: 991px) {
  .tabs__list--desktop {
    display: flex;
  }
}
.tabs__list--mobile {
  display: block;
}
@media (min-width: 991px) {
  .tabs__list--mobile {
    display: none;
  }
}
@media (max-width: 990px) {
  .tabs__list {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
.tabs__list::-webkit-scrollbar {
  display: none;
}
.tabs__item {
  cursor: pointer;
  padding: 10px 24px;
  color: #959CA6;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-bottom 0.3s;
  display: inline-block;
}
.tabs__item--active {
  color: #223045;
  border-bottom: 2px solid #223045;
}
.tabs__item:hover {
  color: #959CA6;
}
.tabs__content {
  padding: 20px;
}
.tabs__animation {
  text-align: center;
}
.tabs__pane {
  display: none;
}
.tabs__pane--active {
  display: block;
}

.blogpage {
  margin-bottom: 60px;
  padding: 0 20px;
}
.blogpage__tf {
  padding: 48px 0;
}
@media (min-width: 991px) {
  .blogpage__tf {
    padding: 80px 0;
  }
}
.blogpage__posts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blogpage__grid {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 28px;
}
@media (min-width: 768px) {
  .blogpage__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.blogpage__grid:nth-child(even) {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .blogpage__grid:nth-child(even) {
    grid-template-columns: 1fr 1fr;
  }
}
.blogpage__grid-item {
  border-radius: 28px 28px 0 0;
}
@media (min-width: 768px) {
  .blogpage__grid-item {
    border-radius: 28px 0 0 28px;
  }
}
.blogpage__grid-item.has-bgd {
  background: #F1F4F5;
  padding: 16px;
}
@media (min-width: 768px) {
  .blogpage__grid-item.has-bgd {
    padding: 92px 40px;
  }
}
.blogpage__grid-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 28px;
  min-height: 240px;
}
@media (min-width: 768px) {
  .blogpage__grid-image {
    min-height: 100%;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    border-bottom-left-radius: 0;
  }
}
.blogpage__grid-link {
  display: inline-block;
  margin-bottom: 24px;
}
.blogpage__grid .title-block {
  padding-bottom: 20px;
}
.blogpage__grid-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 147%;
}
@media (min-width: 991px) {
  .blogpage__grid-title {
    font-size: 36px;
  }
}
.blogpage__grid-excerpt {
  margin-bottom: 24px;
}
@media (min-width: 991px) {
  .blogpage__grid-excerpt {
    margin-bottom: 48px;
  }
}

.videos {
  padding: 0 20px 60px 20px;
}
.videos__title {
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 991px) {
  .videos__title {
    margin-bottom: 40px;
  }
}
.videos__wrapper {
  padding: 24px 16px;
  background: linear-gradient(to bottom, #D6E4FC 5%, #7F8896 85%);
  border-radius: 28px;
}
@media (min-width: 991px) {
  .videos__wrapper {
    padding: 66px 0;
  }
}
.videos__slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 343px;
  max-height: 343px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .videos__slide-image {
    min-height: 420px;
    max-height: 420px;
  }
}
@media (min-width: 991px) {
  .videos__slide-image {
    min-height: 640px;
    max-height: 640px;
  }
}
.videos__slide-btn {
  border: none;
  box-shadow: none;
  background: transparent;
  outline: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.videos .swiper-button-next, .videos .swiper-button-prev {
  position: relative;
}
@media (min-width: 991px) {
  .videos .swiper-button-next, .videos .swiper-button-prev {
    position: absolute;
  }
}
.videos .swiper-button-next:after, .videos .swiper-button-prev:after {
  display: none;
}
.videos .swiper-button-next {
  right: unset;
  left: unset;
}
@media (min-width: 991px) {
  .videos .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
  }
}
.videos .swiper-button-prev {
  right: unset;
  left: unset;
}
@media (min-width: 991px) {
  .videos .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
  }
}
.videos .swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 991px) {
  .videos .swiper-controls {
    margin-top: 0;
  }
}

.htf {
  padding: 48px 0;
}
@media (min-width: 991px) {
  .htf {
    padding: 80px 0;
  }
}
.htf__tf {
  text-align: center;
}

.usc {
  padding: 0 20px;
}
.usc .arrow-big.left {
  top: -70px;
  left: 60px;
}
.usc .arrow-big.left svg {
  opacity: 0.8;
}
.usc .arrow-big.right {
  bottom: 0;
  right: -70px;
}
.usc .arrow-big.right svg {
  opacity: 0.8;
}
.usc.simple {
  padding: 48px 20px;
}
@media (min-width: 991px) {
  .usc.simple {
    padding: 125px 20px;
  }
}
.usc__wrapper {
  position: relative;
  padding: 24px 20px;
  background: #D6E4FC;
  overflow: hidden;
}
@media (min-width: 991px) {
  .usc__wrapper {
    padding: 80px 20px;
  }
}
.usc__header {
  margin-bottom: 24px;
}
.usc__header-title {
  font-size: 24px;
}
@media (min-width: 991px) {
  .usc__header-title {
    font-size: 36px;
  }
}
.usc__header-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.usc__header-body p {
  font-size: 14px;
}
@media (min-width: 991px) {
  .usc__header-body p {
    font-size: 16px;
  }
}
.usc__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}
@media (min-width: 991px) {
  .usc__content {
    grid-template-columns: 1.25fr 0.75fr;
  }
}
.usc__content-left {
  max-width: 100%;
}
@media (min-width: 991px) {
  .usc__content-left {
    max-width: 600px;
  }
}
.usc__content-right.image {
  min-width: 512px;
}
.usc__content-right.image.mobile {
  display: block;
  margin-top: 24px;
  min-width: 100%;
}
@media (min-width: 991px) {
  .usc__content-right.image.mobile {
    display: none;
  }
}
.usc__content-right.image.desktop {
  display: none;
}
@media (min-width: 991px) {
  .usc__content-right.image.desktop {
    display: block;
  }
}
.usc__content.reverse {
  grid-template-columns: 1fr;
}
@media (min-width: 991px) {
  .usc__content.reverse {
    grid-template-columns: 0.75fr 1.25fr;
  }
}
.usc__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
}
.usc-tabs__list {
  list-style: none;
  padding: 0;
  display: flex;
  border-bottom: 1px solid #ddd;
}
.usc-tabs__list-three {
  padding-left: 22px;
  padding-top: 12px;
}
.usc-tabs__item {
  cursor: pointer;
  padding: 10px 20px;
  color: #223045;
}
.usc-tabs__item--active {
  color: #3A8BFF;
  border-bottom: 2px solid #3A8BFF;
}
.usc-tabs__item:hover {
  color: darkgrey;
}
.usc-tabs__content {
  padding-bottom: 0;
}
@media (min-width: 991px) {
  .usc-tabs__content {
    padding: 24px 0;
  }
}
.usc-tabs__pane {
  display: none;
}
.usc-tabs__pane--active {
  display: block;
}
.usc-tabs__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
.usc-tabs__icon {
  min-width: 32px;
  margin-right: 20px;
}
.usc-tabs__icon img {
  max-width: 100%;
  height: auto;
}
.usc-tabs__text.is-outcome {
  position: relative;
}
.usc-tabs__text-outcome-line {
  background: linear-gradient(to bottom, #7AA7F2 0%, #FFDFA3 100%);
  width: 2px;
  height: auto;
  position: absolute;
  top: 42px;
  left: 0;
  bottom: 0;
}
.usc-tabs__text-lead {
  font-weight: 600;
  margin: 0;
}
.usc-tabs__text-description {
  font-size: 14px;
}
@media (min-width: 991px) {
  .usc-tabs__text-description {
    font-size: 16px;
  }
}
.usc__body {
  margin-bottom: 24px;
}

.clir {
  padding: 0 20px;
}
.clir .arrow-big.left {
  top: -70px;
  left: 60px;
}
.clir .arrow-big.left svg {
  opacity: 0.8;
}
.clir .arrow-big.right {
  bottom: 0;
  right: -70px;
}
.clir .arrow-big.right svg {
  opacity: 0.8;
}
.clir .title-block {
  padding-bottom: 24px;
}
.clir__wrapper {
  background: #D7E3FC;
  padding: 48px 20px;
}
@media (min-width: 991px) {
  .clir__wrapper {
    padding: 80px 20px;
  }
}
.clir__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 991px) {
  .clir__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.clir__grid .first {
  padding: 0;
}
@media (min-width: 991px) {
  .clir__grid .first {
    padding-right: 40px;
  }
}
.clir__tf {
  margin-top: 24px;
  margin-bottom: 48px;
}
.clir__tf p {
  margin-bottom: 16px;
}
.clir__tf p:nth-last-child(1) {
  margin-bottom: 0;
}

.cril {
  padding: 64px 20px;
}
@media (min-width: 991px) {
  .cril {
    padding: 128px 20px;
  }
}
.cril .arrow-big.left {
  top: -70px;
  left: 60px;
}
.cril .arrow-big.left svg {
  opacity: 0.8;
}
.cril .arrow-big.right {
  bottom: 0;
  right: -70px;
}
.cril .arrow-big.right svg {
  opacity: 0.8;
}
.cril .title-block {
  padding-bottom: 24px;
}
.cril__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 991px) {
  .cril__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cril__grid-item.first {
  order: 2;
}
@media (min-width: 991px) {
  .cril__grid-item.first {
    order: 1;
  }
}
.cril__grid-item.second {
  order: 1;
}
@media (min-width: 991px) {
  .cril__grid-item.second {
    order: 2;
  }
}
.cril__tf {
  margin-top: 24px;
  margin-bottom: 48px;
}
.cril__tf p {
  margin-bottom: 16px;
}
.cril__tf p:nth-last-child(1) {
  margin-bottom: 0;
}

.team {
  padding: 64px 0;
}
@media (min-width: 480px) {
  .team {
    padding: 128px 0;
  }
}
.team__title {
  text-align: center;
  margin-bottom: 64px;
}
.team__grid {
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
@media (min-width: 480px) {
  .team__grid {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 36px;
    grid-column-gap: 36px;
  }
}
@media (min-width: 768px) {
  .team__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 991px) {
  .team__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.team__box {
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 480px) {
  .team__box {
    display: block;
    max-width: 272px;
    margin: 0 auto;
  }
}
.team__box img {
  margin-bottom: 12px;
  max-width: 80px;
}
@media (min-width: 480px) {
  .team__box img {
    max-width: 100%;
  }
}
.team__box-title {
  text-align: left;
  font-size: 18px;
  line-height: 147%;
  margin-bottom: 8px;
}
@media (min-width: 480px) {
  .team__box-title {
    font-size: 24px;
    text-align: center;
  }
}
.team__box-description {
  text-align: left;
  font-size: 14px;
}
@media (min-width: 480px) {
  .team__box-description {
    text-align: center;
  }
}

.sp {
  margin-bottom: 64px;
  padding: 0 20px;
}
@media (min-width: 991px) {
  .sp {
    margin-bottom: 128px;
  }
}
.sp__wrapper {
  position: relative;
  padding: 32px 0;
  background: #D6E4FC;
  margin-bottom: 48px;
}
@media (min-width: 991px) {
  .sp__wrapper {
    padding: 80px 0;
    margin-bottom: 64px;
  }
}
.sp__header {
  text-align: center;
}
.sp__title {
  margin-bottom: 32px;
}
@media (min-width: 991px) {
  .sp__title {
    margin-bottom: 40px;
  }
}
.sp__body p {
  margin-bottom: 36px;
}
.sp__body h2 {
  margin-bottom: 16px;
}
.sp__body h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 500;
}
.sp__body figure {
  margin: 40px 0;
}

.of {
  padding: 0 20px;
}
.of__slide {
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #223045;
}
@media (min-width: 768px) {
  .of__slide {
    padding: 30px;
  }
}
.of__slide h3 {
  font-size: 16px !important;
}
.of__slide p {
  font-size: 14px !important;
}
.of__slide--1 {
  background-color: #AECAF8;
}
.of__slide--1 h3 {
  color: #223045 !important;
}
.of__slide--1 p {
  color: #223045 !important;
}
.of__slide--2 {
  background-color: #398AFF;
}
.of__slide--3 {
  background-color: #FFEFD1;
}
.of__slide--3 h3 {
  color: #223045 !important;
}
.of__slide--3 p {
  color: #223045 !important;
}
.of__slide--4 {
  background-color: #FFB339;
}
.of__title {
  margin-bottom: 28px;
  text-align: center;
}
.of__wrapper {
  position: relative;
  padding: 32px 0 0 0;
}
@media (min-width: 480px) {
  .of__wrapper {
    padding: 32px 0 32px 0;
  }
}
@media (min-width: 991px) {
  .of__wrapper {
    padding: 80px 20px;
  }
}
.of__box {
  display: flex;
  align-items: center;
}
.of__box-arrow-left {
  position: absolute;
  left: 60px;
  display: none;
}
@media (min-width: 991px) {
  .of__box-arrow-left {
    display: block;
  }
}
.of__box-arrow-right {
  position: absolute;
  right: 60px;
  display: none;
}
@media (min-width: 991px) {
  .of__box-arrow-right {
    display: block;
  }
}
.of__box.hide-mobile {
  display: none;
}
@media (min-width: 768px) {
  .of__box.hide-mobile {
    display: flex;
    position: relative;
    max-width: 980px;
    margin: 0 auto;
  }
}
.of__box.hide-desktop {
  display: block;
}
@media (min-width: 768px) {
  .of__box.hide-desktop {
    display: none;
  }
}
.of__box-center {
  position: relative;
  padding: 0 6px;
}
.of__box-center-image {
  text-align: center;
}
.of__box-center-image svg {
  width: 100%;
}
.of__box-center .pie-chart__center-content {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 190px !important;
  top: 0;
}
.of__box-center .pie-chart__title {
  font-size: 14px !important;
}
.of__box-center .pie-chart__description {
  font-size: 12px !important;
}
.of .pie-chart {
  position: relative;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  transform: rotate(-45deg);
}
.of .pie-chart__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 50%;
  height: 50%;
  background: #E5EDFD;
  border-radius: 50%;
  z-index: 2;
  border: 1px solid #223045;
  display: flex;
  align-items: center;
  justify-content: center;
}
.of .pie-chart__center-outer {
  background-color: #fff;
  height: 280px;
  width: 280px;
  border-radius: 50%;
  position: absolute;
  margin: 0;
}
.of .pie-chart__center .pie-chart__icon {
  margin-bottom: 0;
}
.of .pie-chart__center-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  max-width: 80%;
  margin: -16px auto 0 auto;
}
.of .pie-chart__slice {
  position: absolute;
  width: 50%;
  height: 50%;
  border: 1px solid #223045;
}
.of .pie-chart__slice--1 {
  top: 0;
  right: 50%;
  background-color: #AECAF8;
}
.of .pie-chart__slice--1 .pie-chart__content {
  max-width: 145px;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: -17px;
}
.of .pie-chart__slice--1 .pie-chart__content h3, .of .pie-chart__slice--1 .pie-chart__content p {
  color: #223045;
}
.of .pie-chart__slice--1 .pie-chart__content p {
  max-width: 118px;
}
.of .pie-chart__slice--2 {
  top: 0;
  left: 50%;
  background-color: #398AFF;
}
.of .pie-chart__slice--2 .pie-chart__content {
  top: -7px;
  left: 10px;
}
.of .pie-chart__slice--2 p {
  max-width: 175px;
}
.of .pie-chart__slice--3 {
  bottom: 0;
  left: 50%;
  background-color: #FFEFD1;
}
.of .pie-chart__slice--3 .pie-chart__content {
  max-width: 145px;
  margin: 0 auto;
  left: 0;
  right: -10px;
  top: 5px;
}
.of .pie-chart__slice--3 .pie-chart__content h3, .of .pie-chart__slice--3 .pie-chart__content p {
  color: #223045;
}
.of .pie-chart__slice--3 .pie-chart__content p {
  max-width: 135px;
}
.of .pie-chart__slice--4 {
  bottom: 0;
  right: 50%;
  background-color: #FFB339;
}
.of .pie-chart__slice--4 .pie-chart__content {
  top: unset;
  bottom: -5px;
  left: -5px;
}
.of .pie-chart__slice--4 p {
  max-width: 240px;
}
.of .pie-chart__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #223045;
  transform: rotate(45deg);
}
.of .pie-chart__icon {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}
@media (min-width: 768px) {
  .of .pie-chart__icon {
    margin-bottom: 10px;
  }
}
.of .pie-chart__title {
  font-size: 18px;
  margin: 10px 0;
  font-weight: bold;
}
.of .pie-chart__subtitle {
  font-size: 12px;
  margin: 4px 0;
  font-weight: bold;
  color: #FFFFFF;
}
.of .pie-chart__description, .of .pie-chart__text {
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}
.of .pie-chart__description {
  font-size: 12px;
}
.of .pie-chart__text {
  font-size: 10px;
  color: #FFFFFF;
}
.of .pie-chart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #223045;
  border-radius: 50%;
  z-index: 1;
}
.of .swiper {
  width: 100%;
  padding: 20px 0 20px 8px;
}
.of .swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.of .swiper .swiper-slide {
  max-width: 100%;
}
/*# sourceMappingURL=app.css.map */
