@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
/* CSS Reset (normalize) */
html, body {
  height: 100%;
  margin: 0;
}

html {
  box-sizing: border-box;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: #4B4085;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

p, li, a, span, input, button, textarea, select {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/* style.scss - BEM Example */
h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #4B4085;
  font-size: 43.98px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 80px;
  }
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #4B4085;
  font-size: 32px;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #4B4085;
  font-size: 24px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 32px;
  }
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #4B4085;
  font-size: 20px;
}

h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #4B4085;
  font-size: 18px;
}

p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #4B4085;
}

.bo-button {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #FFF;
  display: inline-block;
  padding: 12px 26px;
  background-color: #4B4085;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.bo-button:hover {
  background-color: rgb(55.5837563452, 47.4314720812, 98.5685279188);
}

.header {
  padding-top: 16px;
  padding-bottom: 16px;
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: #FFDD59;
}

.header__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}

.header__hamburger {
  background: none;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #6135BA;
  box-sizing: content-box;
}

.header__nav {
  gap: 42px;
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.header__nav.is-active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
@media (min-width: 768px) {
  .header__nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    opacity: 1;
    pointer-events: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

.header__hamburger {
  z-index: 120;
}
@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.header__nav-list {
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .header__nav-list {
    flex-direction: row;
    gap: 42px;
    align-items: center;
  }
}

.header__nav-list {
  list-style: none;
  gap: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav-list a {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  text-decoration: none;
  color: #6135BA;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.header__nav-list a:hover, .header__nav-list a.active {
  color: #FF2C80;
}

.header__btn {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 12px 24px 10px 24px;
  background-color: #FF2C80;
  border-radius: 21px;
  transition: background-color 0.3s ease;
}
.header__btn:hover {
  background-color: rgb(248, 0, 98.7298578199);
}

.header__logo {
  margin-right: auto;
  margin-left: auto;
  z-index: 2;
}
@media (min-width: 768px) {
  .header__logo {
    margin-right: 0;
    margin-left: 0;
  }
}

.header__logo-img {
  width: 182px;
  height: 34px;
}
@media (min-width: 768px) {
  .header__logo-img {
    width: 232px;
    height: 44px;
  }
}

.bo-hero {
  background: linear-gradient(290.16deg, #FFDD59 -42.33%, #FFDD59 32.48%);
}

.bo-hero__inner {
  background-image: url("../images/sun-beams.png");
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: 70%;
  position: relative;
  height: 577px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.bo-hero__wrap {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: translateY(-94px);
}
@media (min-width: 768px) {
  .bo-hero__wrap {
    transform: translateY(-44px);
    justify-content: flex-start;
  }
}

.bo-hero__content {
  text-align: center;
}
@media (min-width: 768px) {
  .bo-hero__content {
    padding: 0 62px;
  }
}

.bo-hero__img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.bo-hero__title {
  color: #FF2C80;
  margin-bottom: 15px;
}

.bo-hero__text {
  color: #FF2C80;
  font-size: 18px;
}
@media (min-width: 768px) {
  .bo-hero__text {
    font-size: 32px;
  }
}

.bo-block1 {
  padding-top: 51px;
  padding-bottom: 36px;
  overflow-x: hidden;
}

.bo-block1__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .bo-block1__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 51px;
  }
}

.bo-block1__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #4B4085;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .bo-block1__title {
    margin-bottom: 125px;
  }
}

.bo-block1__img {
  border-radius: 10px;
  width: 100%;
}

.bo-block1__img-wrap {
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .bo-block1__img-wrap {
    flex: 1;
  }
}
.bo-block1__img-wrap::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background-image: url("../images/dotted-circle.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  right: -57%;
  top: 50%;
  transform: translate(0, -50%);
}
@media (min-width: 768px) {
  .bo-block1__img-wrap::before {
    right: -166px;
    top: -100px;
    transform: none;
  }
}

@media (min-width: 768px) {
  .bo-block1__text {
    flex: 1;
  }
}

.bo-block1__text h3 {
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .bo-block1__text h3 {
    margin-bottom: 23px;
  }
}

.bo-block2 {
  padding-top: 51px;
  padding-bottom: 36px;
}

.bo-block2__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}

.bo-block2__content {
  position: relative;
}
@media (min-width: 992px) {
  .bo-block2__content {
    display: flex;
    gap: 47px;
    align-items: center;
  }
}
.bo-block2__content::before {
  content: "";
  position: absolute;
  top: -36px;
  left: -200px;
  width: 505px;
  height: 505px;
  z-index: -1;
  background-color: #BAC3FF;
  opacity: 0.5;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .bo-block2__content::before {
    left: -155px;
  }
}

.bo-block2__tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.bo-block2__tile {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 576px) {
  .bo-block2__tile {
    width: calc(50% - 10px);
  }
}

.bo-block2__tile-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  text-align: center;
  background: linear-gradient(108.61deg, rgba(97, 53, 186, 0.6) 0%, #6135BA 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bo-block2__tile-text::before {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: 8px;
  border: 1px solid #FFF;
  border-radius: 10px;
  opacity: 0.3;
}

.bo-block2__tile-text h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 23px;
  color: #FFDD59;
  text-transform: uppercase;
  max-width: 228px;
  position: relative;
  z-index: 1;
}

.bo-block2__tile-text p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  color: #FFF;
  max-width: 228px;
  position: relative;
  z-index: 1;
}

.bo-block2__img {
  width: 100%;
}

.bo-block2__text {
  margin-top: 51px;
}
@media (min-width: 992px) {
  .bo-block2__text {
    margin-top: 0;
    max-width: 325px;
  }
}

.bo-block2__text h2 {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .bo-block2__text h2 {
    margin-bottom: 23px;
  }
}

.bo-block2__btn {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .bo-block2__btn {
    margin-top: 64px;
  }
}

.bo-block3 {
  padding-top: 41px;
  padding-bottom: 24px;
  background-color: #FFDD59;
}
@media (min-width: 768px) {
  .bo-block3 {
    padding-top: 78px;
    padding-bottom: 70px;
  }
}

.bo-block3__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}

.bo-block3__title {
  text-align: center;
  margin-bottom: 46px;
  color: #FF2C80;
}
@media (min-width: 992px) {
  .bo-block3__title {
    margin-bottom: 36px;
    color: #FF2C80;
  }
}

.bo-block3__slider {
  position: relative;
  overflow-x: hidden;
}

.bo-block3__slider-wrap {
  margin-bottom: 15px;
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  position: relative;
  min-height: 220px;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .bo-block3__slider-wrap {
    transform: none !important;
    gap: 24px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .bo-block3__slider-wrap {
    gap: 48px;
  }
}

.bo-block3__slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  z-index: 1;
  transition: none;
}
@media (min-width: 768px) {
  .bo-block3__slide {
    flex: 1 1 0%;
    opacity: 1 !important;
    transform: none !important;
    position: relative;
    display: flex;
  }
}

.bo-block3__slide.is-active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
  z-index: 1;
}

.bo-block3__slide.slide-in-right {
  display: flex;
  opacity: 1;
  transform: translateX(40px);
  z-index: 2;
}

.bo-block3__slide.slide-in-left {
  display: flex;
  opacity: 1;
  transform: translateX(-40px);
  z-index: 2;
}

.bo-block3__slide.slide-out-left {
  display: flex;
  opacity: 0;
  transform: translateX(-40px);
  z-index: 1;
}

.bo-block3__slide.slide-out-right {
  display: flex;
  opacity: 0;
  transform: translateX(40px);
  z-index: 1;
}

.bo-block3__slide.is-active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
  z-index: 1;
}

.bo-block3__slider-nav {
  pointer-events: none;
}
@media (min-width: 768px) {
  .bo-block3__slider-nav {
    display: none;
  }
}

@media (min-width: 768px) {
  .bo-block3__slider-dots {
    display: none;
  }
}

.bo-block3__slider-nav-btn {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 11;
  pointer-events: auto;
}

.bo-block3__slider-nav-btn:not(.active) {
  opacity: 0.3;
}

.bo-block3__slider-nav-icon {
  fill: #6135BA;
}

.bo-block3__slider-nav-btn--prev {
  left: -7px;
}

.bo-block3__slider-nav-btn--next {
  right: -7px;
}

.bo-block3__slider-nav-btn--prev svg {
  transform: rotate(180deg);
}

.bo-block3__slide-img {
  border-radius: 10px;
}

.bo-block3__slide-text {
  margin-top: 35px;
}

.bo-block3__slide-text p {
  text-align: center;
  color: #FF2C80;
}

.bo-block3__slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}
@media (min-width: 768px) {
  .bo-block3__slider-dots {
    display: none;
  }
}

.bo-block3__slider-dot {
  background: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #FFF;
}

.bo-block3__slider-dot.active {
  background-color: #FFF;
}

.bo-block4 {
  padding-top: 40px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .bo-block4 {
    padding-top: 73px;
    padding-bottom: 86px;
  }
}

.bo-block4__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .bo-block4__inner {
    max-width: 1213px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.bo-block4__title {
  text-align: center;
  margin-bottom: 31px;
}
@media (min-width: 768px) {
  .bo-block4__title {
    margin-bottom: 65px;
  }
}

.bo-block4__item-order {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  text-align: center;
  color: #FFF;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #FF2C80;
  position: relative;
}
@media (min-width: 768px) {
  .bo-block4__item-order {
    margin-bottom: 40px;
    width: 100px;
    height: 100px;
    font-size: 42px;
  }
}

.bo-block4__spacer {
  width: 52px;
  height: 52px;
}
@media (min-width: 768px) {
  .bo-block4__spacer {
    display: none;
  }
}

.bo-block4__items {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 29px;
}
@media (min-width: 768px) {
  .bo-block4__items {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 25px;
    margin-bottom: 42px;
    position: relative;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .bo-block4__items::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100px;
    background-image: url("../images/dashed-line.svg");
    background-repeat: repeat-x;
    background-position: center;
  }
}

.bo-block4__item {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: calc(768px - 1px)) {
  .bo-block4__item {
    padding-top: 37px;
    padding-bottom: 37px;
  }
}
@media (min-width: 768px) {
  .bo-block4__item {
    flex-direction: column;
    align-items: center;
    max-width: 230px;
    flex: 1;
  }
}

.bo-block4__item-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: calc(768px - 1px)) {
  .bo-block4__item-text {
    min-height: 73px;
    max-width: 180px;
  }
}

.bo-block4__item-text h4 {
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 1;
}
@media (min-width: 768px) {
  .bo-block4__item-text h4 {
    margin-bottom: 10px;
  }
}

.bo-block4__item-text p {
  line-height: 1.1;
}
@media (max-width: calc(768px - 1px)) {
  .bo-block4__item-text p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .bo-block4__item-text p {
    line-height: 26px;
  }
}

.bo-block4__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .bo-block4__item:nth-child(even) {
    flex-direction: column;
    align-items: center;
  }
}

.bo-block4__item-order::before,
.bo-block4__item-order::after {
  width: 70px;
  height: 70px;
}
@media (min-width: 768px) {
  .bo-block4__item-order::before,
  .bo-block4__item-order::after {
    display: none;
  }
}

.bo-block4__item:nth-child(odd) .bo-block4__item-order::before {
  content: url("../images/dashed-line-3.svg");
  position: absolute;
  bottom: 56%;
  left: 50%;
  z-index: -1;
  transform: rotate(-90deg);
}

.bo-block4__item:first-child {
  padding-top: 0;
}

.bo-block4__item:first-child .bo-block4__item-order::before {
  display: none;
}

.bo-block4__item:nth-child(odd) .bo-block4__item-order::after {
  content: url("../images/dashed-line-1.svg");
  position: absolute;
  top: 54%;
  left: 50%;
  z-index: -1;
}

.bo-block4__item:nth-child(even) .bo-block4__item-order::before {
  content: url("../images/dashed-line-3.svg");
  position: absolute;
  bottom: 60%;
  right: 50%;
  z-index: -1;
}

.bo-block4__item:nth-child(even) .bo-block4__item-order::after {
  content: url("../images/dashed-line-4.svg");
  position: absolute;
  top: 54%;
  right: 50%;
  z-index: -1;
}

.bo-block4__item:last-child .bo-block4__item-order::after {
  display: none;
}

.bo-block4__item::after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: calc(100% - 190px);
  height: 3px;
  background-image: url("../images/dashed-line-2.svg");
  background-repeat: repeat-x;
}
@media (min-width: 768px) {
  .bo-block4__item::after {
    display: none;
  }
}

.bo-block4__item:last-child::after {
  display: none;
}

.bo-block4__item:last-child {
  padding-bottom: 0;
}

.bo-block4__bottom p {
  text-align: center;
  font-size: 12px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .bo-block4__bottom p {
    font-size: 16px;
  }
}

.bo-block5 {
  padding-top: 53px;
  padding-bottom: 33px;
  background-color: #4B4085;
}
@media (min-width: 768px) {
  .bo-block5 {
    padding-top: 101px;
    padding-bottom: 83px;
  }
}

.bo-block5__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}

.bo-block5__title {
  color: #FFF;
  text-align: center;
  padding-left: 11px;
  padding-right: 11px;
  line-height: 1.2;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .bo-block5__title {
    margin-bottom: 10px;
  }
}

.bo-block5__text {
  color: #FFF;
  font-size: 18px;
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .bo-block5__text {
    font-size: 24px;
  }
}

.bo-block5__content {
  margin-top: 31px;
  position: relative;
}
@media (min-width: 768px) {
  .bo-block5__content {
    display: flex;
    gap: 48px;
    margin-top: 52px;
  }
}

.bo-block5__content::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background-image: url("../images/striped-circle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  z-index: 0;
  right: -31%;
  top: -30px;
}
@media (min-width: 768px) {
  .bo-block5__content::before {
    width: 470px;
    height: 470px;
    left: -13.7%;
    top: 50%;
    transform: translateY(-50%);
    background-size: 141%;
  }
}

.bo-block5__columns {
  background-color: #FFF;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .bo-block5__columns {
    max-width: 699px;
    padding: 20px 32px;
  }
}
@media (min-width: 992px) {
  .bo-block5__columns {
    display: flex;
    gap: 38px;
  }
}

.bo-block5__column {
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: calc(992px - 1px)) {
  .bo-block5__column {
    margin-bottom: 13px;
  }
}
@media (min-width: 768px) {
  .bo-block5__column {
    flex: 1;
  }
}

.bo-block5__column:last-child {
  margin-bottom: 0;
}

.bo-block5__column-1 {
  background-color: #FFF;
  border: 1px solid #4B4085;
}

.bo-block5__column-head {
  padding-top: 9px;
  padding-bottom: 9px;
  background-color: #6135BA;
  text-align: center;
  color: #FFF;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.bo-block5__column-content {
  padding: 17px;
}

.bo-block5__column-content h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #4B4085;
  font-size: 14.72px;
  line-height: 1;
  color: #000;
}

.bo-block5__column-content h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #4B4085;
  font-size: 9.81px;
  line-height: 1;
  color: #000;
  margin-bottom: 8px;
}

.bo-block5__column-content p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #4B4085;
  font-size: 7.36px;
  line-height: 11.45px;
  color: #000;
  margin-bottom: 8px;
}

.bo-block5__column-content--center-text {
  text-align: center;
}

.bo-block5__column-content--center-text h4 {
  margin-bottom: 3.45px;
}

.bo-block5__column-content--center-text h5 {
  margin-bottom: 11px;
}

.bo-block5__column-img--bordered {
  border: 1px solid #6135BA;
}

.bo-block5__column-img {
  border-radius: 6px;
}

.bo-block5__column-2 {
  background-color: #6135BA;
  text-align: center;
  padding: 10px 18px 13px;
}

.bo-block5__column-2 .bo-block5__column-content {
  padding: 0;
  margin-bottom: 16px;
}

.bo-block5__column-2 h4.font-600 {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 9px;
}

.bo-block5__column-2 h4 {
  color: #FFF;
  line-height: 1.2;
  padding-left: 28px;
  padding-right: 28px;
}

.bo-block5__column-content--image {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.bo-block5__column-content--image:last-child {
  margin-bottom: 0;
}

.bo-block5__content-text {
  margin-top: 38px;
  position: relative;
}
@media (min-width: 768px) {
  .bo-block5__content-text {
    margin-top: 0;
    max-width: 325px;
  }
}

.bo-block5__content-text p {
  color: #FFF;
  text-align: left;
  margin-bottom: 30px;
}

.bo-block5__content-text p:last-child {
  margin-bottom: 0;
}

.bo-block6 {
  padding-top: 45px;
  position: relative;
}
@media (min-width: 768px) {
  .bo-block6 {
    padding-top: 72px;
  }
}

.bo-block6__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.bo-block6__inner::before {
  content: "";
  position: absolute;
  width: 316px;
  height: 316px;
  background-image: url(../images/striped-circle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  z-index: 0;
  right: -195px;
  top: 285px;
}
@media (min-width: 992px) {
  .bo-block6__inner::before {
    width: 470px;
    height: 470px;
    background-size: 135%;
    right: -330px;
    top: 225px;
  }
}

.bo-block6__content {
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .bo-block6__content {
    max-width: 698px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bo-block6__content::after {
  content: "";
  display: block;
  height: 97px;
  width: 61px;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .bo-block6__content::after {
    margin-top: 27px;
  }
}

.bo-block6__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-size: 69px;
  line-height: 0.8;
}
@media (min-width: 768px) {
  .bo-block6__title {
    font-size: 68px;
  }
}

.bo-block6__title-span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-size: 64px;
}

.bo-block6__midtext {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-size: 49px;
  color: #FFDD59;
  text-align: center;
  padding: 7.5px 8px;
  background-color: #FF2C80;
  border-radius: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .bo-block6__midtext {
    letter-spacing: 23px;
    text-indent: 23px;
    margin-top: 27px;
    margin-bottom: 27px;
  }
}

.bo-block6__subtitle {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-size: 62px;
  text-align: center;
  line-height: 0.8;
}
@media (min-width: 768px) {
  .bo-block6__subtitle {
    letter-spacing: 25px;
    text-indent: 25px;
  }
}

.bo-block6__hr {
  width: 100%;
  height: 10px;
  border: 0;
  background-color: #FF2C80;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .bo-block6__hr {
    margin-top: 27px;
    margin-bottom: 27px;
  }
}

.bo-block6__text {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-size: 14px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .bo-block6__text {
    font-size: 15.74px;
    margin-bottom: 27px;
  }
}

.bo-block6__boxed-text {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-size: 10.71px;
  color: #FFDD59;
  padding: 9px 8px;
  border-radius: 10px;
  background-color: #FF2C80;
}
@media (min-width: 768px) {
  .bo-block6__boxed-text {
    font-size: 16px;
    letter-spacing: 2px;
    text-indent: 2px;
  }
}

.bo-block6__slider {
  position: relative;
  padding-bottom: 35px;
  overflow: hidden;
}

.bo-block6__slider-wrap {
  margin-bottom: 15px;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: calc(768px - 1px)) {
  .bo-block6__slider-wrap {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
}
@media (min-width: 768px) {
  .bo-block6__slider-wrap {
    transform: none !important;
    margin-bottom: 0;
    gap: 20px;
    justify-content: space-between;
  }
}

.bo-block6__slider-item {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  padding-top: 51px;
  padding-bottom: 35px;
}
@media (min-width: 768px) {
  .bo-block6__slider-item {
    flex: 1 1 0%;
    width: 100%;
    padding-top: 72px;
    padding-bottom: 56px;
    max-width: 325px;
  }
}
@media (min-width: 768px) {
  .bo-block6__slider-item {
    order: 1;
  }
}

.bo-block6__slider-chart {
  background-color: #4B4085;
  border-radius: 8px;
  text-align: center;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 768px) {
  .bo-block6__slider-chart {
    min-height: clamp(450px, 58.59vw, 517px);
  }
}

@media (min-width: 768px) {
  .bo-block6__slider-chart-img {
    width: 149px;
    height: 149px;
  }
}

.bo-block6__slider-chart-text {
  margin-top: 44px;
}

.bo-block6__slider-chart-text-number {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-size: 118px;
  color: #FF2C80;
  line-height: 0.7;
  margin-bottom: 22px;
}
@media (min-width: 768px) and (max-width: calc(992px - 1px)) {
  .bo-block6__slider-chart-text-number {
    font-size: clamp(86px, 11.2vw, 114px);
  }
}

.bo-block6__slider-chart-text-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-size: 36px;
  color: #FF2C80;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .bo-block6__slider-chart-text-title {
    font-size: clamp(22px, 2.86vw, 36px);
  }
}

.bo-block6__slider-chart-text-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #4B4085;
  font-size: 22px;
  color: #FFF;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .bo-block6__slider-chart-text-text {
    font-size: clamp(14px, 1.82vw, 21px);
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
  .bo-block6__slider-item--big {
    order: 0;
  }
}

.bo-block6__slider-item--big .bo-block6__slider-chart-text {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .bo-block6__slider-item--big .bo-block6__slider-chart-text {
    margin-top: 33px;
  }
}

.bo-block6__slider-item--big .bo-block6__slider-chart-text-number {
  font-size: 172px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .bo-block6__slider-item--big .bo-block6__slider-chart-text-number {
    font-size: clamp(106px, 13.8vw, 167px);
  }
}

.bo-block6__slider-item--big .bo-block6__slider-chart-text-title {
  font-size: 70px;
  color: #FFF;
  line-height: 0.9;
}
@media (min-width: 768px) {
  .bo-block6__slider-item--big .bo-block6__slider-chart-text-title {
    font-size: clamp(42px, 5.47vw, 68px);
    margin-bottom: 0;
  }
}

.bo-block6__slider-item--big .bo-block6__slider-chart-text-title span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-size: 75px;
}
@media (min-width: 768px) {
  .bo-block6__slider-item--big .bo-block6__slider-chart-text-title span {
    font-size: clamp(45px, 5.86vw, 72px);
  }
}

@media (min-width: 768px) {
  .bo-block6__slider-item--big .bo-block6__slider-chart-img {
    width: clamp(176px, 22.92vw, 250px);
    height: clamp(150px, 19.54vw, 217px);
    height: auto;
    margin-top: calc(clamp(30px, 3.91vw, 50px) * -1) !important;
  }
}

.bo-block6__slider-content {
  margin-top: 37px;
}

.bo-block6__slider-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #4B4085;
  font-size: 24px;
  font-size: 36px;
  margin-bottom: 5px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .bo-block6__slider-content h3 {
    font-size: 32px;
  }
}

.bo-block6__slider-content p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #4B4085;
  font-size: 18px;
  margin-bottom: 29px;
}
.bo-block6__slider-content p:last-child {
  margin-bottom: 0;
}

.bo-block6__slider-content ul {
  padding-left: 20px;
  margin-bottom: 29px;
}
.bo-block6__slider-content ul:last-child {
  margin-bottom: 0;
}

.bo-block6__slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}
@media (min-width: 768px) {
  .bo-block6__slider-dots {
    display: none;
  }
}

.bo-block6__slider-dot {
  background: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #4B4085;
}

.bo-block6__slider-dot.active {
  background-color: #4B4085;
}

.bo-block7 {
  padding-top: 44px;
  padding-bottom: 32px;
  background-color: #EAEBEE;
}
@media (min-width: 768px) {
  .bo-block7 {
    padding-top: 74px;
    padding-bottom: 58px;
  }
}

.bo-block7__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}

.bo-block7__table {
  margin-bottom: 34px;
}
@media (min-width: 768px) {
  .bo-block7__table {
    margin-bottom: 45px;
  }
}

.bo-block7__table {
  border: 1px solid #4B4085;
  border-radius: 8px;
  overflow: hidden;
}
.bo-block7__table table {
  border-collapse: collapse;
  border: 0;
  margin: 0;
  width: 100%;
}
.bo-block7__table table thead th {
  padding: 16px 13px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  background-color: #4B4085;
  color: #FFF;
  overflow: hidden;
}
@media (min-width: 768px) {
  .bo-block7__table table thead th {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    color: #4B4085;
    font-size: 32px;
    color: #FFF;
    padding: 13px;
  }
}
.bo-block7__table table tbody {
  background-color: #FFF;
}
.bo-block7__table table tbody td {
  border: 1px solid #4B4085;
  font-family: Roboto;
  font-weight: 400;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .bo-block7__table table tbody td {
    font-size: 16px;
    line-height: 32px;
  }
}
.bo-block7__table table tbody td strong {
  font-weight: 700;
}
.bo-block7__table table tbody td:first-child {
  border-left: 0;
}
.bo-block7__table table tbody td:last-child {
  border-right: 0;
}
.bo-block7__table table tbody tr:last-child td {
  padding: 8px 24px;
  line-height: 1.2;
  border-bottom: 0;
}
@media (min-width: 768px) {
  .bo-block7__table table tbody tr:last-child td {
    padding: 14px 24px;
  }
}

@media (min-width: 768px) {
  .bo-block7__content {
    display: flex;
    gap: 25px;
  }
}
@media (min-width: 992px) {
  .bo-block7__content {
    gap: 48px;
  }
}

.bo-block7__content-col {
  margin-bottom: 43px;
}
.bo-block7__content-col:last-child {
  margin-bottom: 0;
}
.bo-block7__content-col h4 {
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .bo-block7__content-col h4 {
    font-size: 24px;
    margin-bottom: 13px;
  }
}
.bo-block7__content-col ul {
  padding-left: 25px;
}
.bo-block7__content-col ul li {
  line-height: 26px;
}
.bo-block7__content-col pre {
  text-align: left;
  padding: 5px 19px 11px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-x: auto;
  max-width: 100%;
  background-color: white;
  border-radius: 10px;
  margin-top: 17px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  background: linear-gradient(white, white) padding-box, repeating-linear-gradient(55deg, #4B4085 0, #4B4085 8px, transparent 8px, transparent 16px) top/100% 1px no-repeat, repeating-linear-gradient(145deg, #4B4085 0, #4B4085 8px, transparent 8px, transparent 16px) right/1px 100% no-repeat, repeating-linear-gradient(55deg, #4B4085 0, #4B4085 8px, transparent 8px, transparent 16px) bottom/100% 1px no-repeat, repeating-linear-gradient(145deg, #4B4085 0, #4B4085 8px, transparent 8px, transparent 16px) left/1px 100% no-repeat;
  background-repeat: no-repeat;
  background-origin: border-box;
}
@media (min-width: 992px) {
  .bo-block7__content-col pre {
    margin-top: 26px;
  }
}
.bo-block7__content-col pre h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.bo-block7__content-col code {
  display: block;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0;
}

.bo-block8 {
  padding-top: 58px;
  padding-bottom: 68px;
}
@media (min-width: 992px) {
  .bo-block8 {
    padding-top: 76px;
    padding-bottom: 101px;
  }
}

.bo-block8__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .bo-block8__inner {
    display: flex;
    gap: 25px;
  }
}
@media (min-width: 992px) {
  .bo-block8__inner {
    gap: 48px;
    align-items: center;
  }
}

.bo-block8__content {
  margin-bottom: 43px;
}
@media (min-width: 768px) {
  .bo-block8__content {
    max-width: 507px;
    flex: 1;
  }
}
.bo-block8__content h2 {
  margin-bottom: 24px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .bo-block8__content h2 {
    font-size: 36px;
  }
}
.bo-block8__content p {
  font-size: 18px;
}
@media (min-width: 992px) {
  .bo-block8__content p {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .bo-block8__form {
    flex: 1;
  }
}

.bo-block8__form-group {
  margin-bottom: 20px;
}

.bo-block8__form-label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #4B4085;
  display: block;
  margin-bottom: 6px;
}

.bo-block8__form-input,
.bo-block8__form-textarea {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #4B4085;
  padding: 7px 10px;
  width: 100%;
  border-radius: 10px;
  border: 0;
  background-color: #F5F5F5;
}
.bo-block8__form-input::placeholder,
.bo-block8__form-textarea::placeholder {
  color: rgb(124.3299492386, 112.5482233503, 186.4517766497);
}

.bo-block8__form-textarea {
  min-height: 211px;
}

.bo-block8__form-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #FFF;
  display: inline-block;
  padding: 12px 26px;
  background-color: #4B4085;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding-left: 36px;
  padding-right: 36px;
  margin-top: 7px;
}
.bo-block8__form-btn:hover {
  background-color: rgb(55.5837563452, 47.4314720812, 98.5685279188);
}

.footer {
  background-color: #FFDD59;
  padding-top: 38px;
  padding-bottom: 44px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 19px;
    padding-bottom: 73px;
  }
}

.footer__inner {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
  }
}

@media (min-width: 768px) {
  .footer__logo-content {
    flex: 1;
    max-width: 512px;
  }
}

.footer__logo {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .footer__logo {
    margin-bottom: 21px;
  }
}

.footer__logo-img {
  width: 182px;
  height: 33px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer__logo-img {
    margin-left: 0;
    margin-right: 0;
    width: 232px;
    height: 44px;
  }
}

@media (max-width: calc(768px - 1px)) {
  .footer__logo-text {
    margin-bottom: 27px;
  }
}

.footer__logo-text p {
  text-align: center;
  line-height: 18px;
}
@media (min-width: 768px) {
  .footer__logo-text p {
    text-align: left;
  }
}

.footer__links ul {
  list-style: none;
}
@media (min-width: 768px) {
  .footer__links ul {
    text-align: right;
  }
}
.footer__links ul li {
  line-height: 36px;
}

.footer__link {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #4B4085;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.footer__link::after {
  content: "";
  display: block;
  margin-bottom: -2px;
  height: 1px;
  width: 100%;
  background-color: #4B4085;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer__link:hover::after {
  transform: scaleX(1);
}

.footer__bottom {
  margin-top: 49px;
  border-top: 1px solid #4B4085;
  padding-top: 34px;
}
@media (min-width: 768px) {
  .footer__bottom {
    margin-top: 63px;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
  }
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.footer__copy {
  margin-top: 23px;
}

.footer__copy p {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
