@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #fff;
  line-height: 1;
  font-family: "Montserrat";
  font-size: 0.75rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.lock body {
  overflow: hidden;
  touch-action: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container] {
  margin: 0 auto;
  max-width: 77.5rem;
  box-sizing: content-box;
}
@media (max-width: 77.5em) {
  [class*=__container] {
    max-width: 60.625rem;
  }
}
@media (max-width: 61.99875em) {
  [class*=__container] {
    max-width: 46.875rem;
  }
}
@media (max-width: 47.99875em) {
  [class*=__container] {
    max-width: none;
    padding: 0 1.5625rem;
  }
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

input {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

body.popup-show::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  transform: scale(1);
}

.popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  transform: scale(0);
  transition: transform 0.3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.lock .popup__content {
  visibility: visible;
}

.popup__video {
  width: 100%;
  height: 50vh;
  border-radius: 20px;
  overflow: hidden;
}

.popup__close {
  position: relative;
  width: 30px;
  height: 30px;
  color: #000;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 30px;
  margin-top: -60px;
}
.popup__close::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  background-color: #000;
  border-radius: 10px;
  transform: rotate(45deg);
}
.popup__close::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  background-color: #000;
  border-radius: 10px;
  transform: rotate(-45deg);
}

.popup-form__button {
  font-weight: 500;
  color: #ffffff;
  padding: 12px 25px;
  background: #08297e;
  border-radius: 65px;
}
.popup-form .popup__close {
  margin: 0;
  position: absolute;
  right: 20px;
  top: 20px;
}
.popup-form .popup__content {
  position: relative;
  max-width: 520px;
}
.popup-form .popup__text {
  width: 100%;
}
.popup-form .popup__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  color: #000;
  margin-bottom: 20px;
  padding-right: 35px;
}
.popup-form .form input {
  width: 100%;
  font-size: 1rem;
  padding: 10px 20px;
  border: 1px solid #08297e;
  margin-bottom: 10px;
}
.popup-form .form textarea {
  width: 100%;
  font-size: 1rem;
  padding: 10px 20px;
  border: 1px solid #08297e;
  height: 100px;
  margin-bottom: 20px;
  resize: none;
}
.popup-form .form textarea:focus {
  border: 1px solid #08297e;
  outline: none;
}

@media (max-width: 992px) {
  .popup-form .popup__title {
    font-size: 1.6rem;
  }
  .popup-form .form input, .popup-form .form textarea {
    padding: 10px 15px;
    font-size: 0.92rem;
  }
}
@media (max-width: 768px) {
  .popup-form .popup__title {
    font-size: 1.4rem;
  }
  .popup-form .form input, .popup-form .form textarea {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}
.header {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #000;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header__about {
  display: flex;
  align-items: center;
}

.header__logo-link {
  margin-right: 75px;
}

.header__phone {
  display: flex;
  margin-right: 45px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.header__phone::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 14px;
  height: 14px;
  background-image: url(/images/phone.svg?6cf93411c7dca6e30edc945006f227c9);
  background-repeat: no-repeat;
}

.header__email {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.header__nav {
  flex: 0 0 600px;
}

.header__list {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #777777;
}

.header__link_blue {
  color: #08297e;
  font-weight: bold;
  transition: color 0.3s;
}
.header__link_white {
  color: #fff;
}

.header__item-menu {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.header__item-menu:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}

.header__link-menu > span {
  margin-right: 10px;
}
.header__link-menu > img {
  vertical-align: middle;
}

.header__sublist {
  position: absolute;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 200px;
  background-color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.header__sublink {
  transition: all 0.3s;
}
.header__sublink:not(:last-child) {
  margin-bottom: 10px;
}
.header__sublink:hover {
  color: #fe5166;
  transition: all 0.3s;
}

.menu {
  display: none;
}

.menu__body {
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 60px;
  left: -100%;
  width: 35%;
  transition: left 0.3s;
  z-index: 5;
}

.menu-open .menu__body {
  opacity: 1;
  visibility: visible;
  left: 0;
  transition: left 0.3s;
}

@media (max-width: 47.99875em) {
  .menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header__about {
    display: none;
  }
  .header__nav {
    display: none;
  }
}
.icon-menu {
  display: none;
}
@media (max-width: 47.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #08297e;
    border-radius: 10px;
  }
  .icon-menu::before {
    top: 0px;
  }
  .icon-menu::after {
    bottom: 0px;
  }
  .icon-menu span {
    top: calc(50% - 1px);
  }
  .menu-open .icon-menu span {
    transform: scale(0);
  }
  .menu-open .icon-menu::before {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .menu-open .icon-menu::after {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

@media (max-width: 77.5em) {
  .header__nav {
    flex: 0 0 465px;
  }
  .header__logo-link {
    margin-right: 25px;
  }
  .header__phone {
    margin-right: 25px;
  }
}
@media (min-width: 62em) {
  .header__link {
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #fe5166;
    transition: color 0.3s;
  }
}
@media (max-width: 62em) {
  .header__phone {
    display: none;
  }
  .header__email {
    display: none;
  }
  .header__link_white {
    color: #777777;
  }
}
@media (max-width: 47.9375em) {
  .menu__body {
    background-color: #fff;
    width: 380px;
    height: 100%;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 65px;
  }
  .menu__item {
    color: #08297E;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
  }
  .menu__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .menu__phone, .menu__email {
    display: block;
    color: #08297E;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
  }
  .menu__phone:not(:last-child), .menu__email:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (max-width: 36.125em) {
  .menu__body {
    width: 100%;
  }
}
.footer-top {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #FBFBFB;
}

.footer-top__wrapper {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-size: 24px;
  line-height: 29px;
}

.footer-bottom {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #08297e;
}

.footer-bottom__wrapper {
  display: flex;
  justify-content: space-between;
}

.footer-bottom__logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 25%;
}

.footer-bottom__years {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}

.footer-bottom__nav {
  flex: 0 0 45%;
  display: flex;
  justify-content: space-between;
}

.footer-bottom__item:not(:last-child) {
  margin-bottom: 20px;
}

.footer-bottom__call {
  flex: 0 0 230px;
}

.footer-bottom__call-text {
  font-weight: bold;
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 30px;
}

.footer-bottom__button {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  border: 1px solid #ffffff;
  border-radius: 65px;
  transition: all 0.3s;
}

@media (min-width: 62em) {
  .footer-bottom__logo {
    transform: scale(1);
    transition: transform 0.3s;
  }
  .footer-bottom__logo:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
  }

  .footer-bottom__link {
    transition: color 0.3s;
  }
  .footer-bottom__link:hover {
    color: #fe5166;
    transition: color 0.3s;
  }

  .footer-bottom__button:hover {
    color: #08297e;
    background: #fff;
    transition: all 0.3s;
  }
}
@media (max-width: 61.9375em) {
  .footer-top {
    padding: 20px 0;
  }
  .footer-top__wrapper {
    max-width: 260px;
    flex-wrap: wrap;
  }
  .footer-top__text {
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
  .footer-top__phone {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
  .footer-top__email {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
  .footer-bottom {
    padding: 20px 0;
  }
  .footer-bottom__wrapper {
    width: 100%;
    display: block;
  }
  .footer-bottom__logo-link {
    display: block;
  }
  .footer-bottom__logo-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer-bottom__years {
    display: block;
  }
  .footer-bottom__nav {
    display: none;
  }
  .footer-bottom__call {
    display: none;
  }
}
.main-banner {
  padding-top: 35px;
}

.main-banner__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-banner__content-wrapper {
  position: relative;
  padding-left: 25px;
  padding-top: 25px;
  max-width: 530px;
  margin-left: 40px;
  background: #fff;
}
.main-banner__content-wrapper::before{
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url(/images/main-banner-dots.svg?8e8486f9100c101aa7c42cae5fe24305);
  background-repeat: no-repeat;
  z-index: -1;
}

.main-banner__title {
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
}
@media (min-width: 77.5em) {
  .main-banner__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .main-banner__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .main-banner__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .main-banner__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .main-banner__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .main-banner__title {
    line-height: 1.5rem;
  }
}

.main-banner__text {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 35px;
}

.main-banner__button {
  font-weight: 500;
  color: #ffffff;
  padding: 12px 25px;
  background: #08297e;
  border-radius: 65px;
}
@media (min-width: 77.5em) {
  .main-banner__button {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .main-banner__button {
    font-size: clamp( 0.875rem , 0.7880434783rem  +  0.4347826087vw , 1.125rem );
  }
}
@media (max-width: 20em) {
  .main-banner__button {
    font-size: 0.875rem;
  }
}
@media (min-width: 77.5em) {
  .main-banner__button {
    line-height: 1.375rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .main-banner__button {
    line-height: clamp( 1.125rem , 1.0380434783rem  +  0.4347826087vw , 1.375rem );
  }
}
@media (max-width: 20em) {
  .main-banner__button {
    line-height: 1.125rem;
  }
}

.main-banner__img {
  position: relative;
  top: -100px;
  right: -70px;
  width: 605px;
  z-index: -1;
}
.main-banner__img::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 1245px;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #115db5 0%, #072485fc 90%);
  border-radius: 310px;
  z-index: -1;
  transform: translateX(215px) translateY(-498px) rotate(46deg);
}

.main-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-banner__image-mobile {
  display: none;
}

.system {
  position: relative;
  padding-top: 110px;
  padding-bottom: 90px;
  background: #08297e;
}
.system::before {
  content: "";
  position: absolute;
  background-image: url(/images/system-dots-inside.svg?3ce50f36b87dabf834b921e9b7986c2d);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 80px;
  height: 55px;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.system::after {
  content: "";
  position: absolute;
  background-image: url(/images/system-dots-outside.svg?13fefbb18e4a9fae819ecb8f9d750482);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 80px;
  height: 55px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}
.system-slider {
  display: none;
}
.system-slider__control {
  margin-top: 30px;
}
.system-slider__button_prev > img {
  transform: rotate(180deg);
}
.system-slider__pagging {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-right: 20px;
  padding-left: 20px;
}
.system-slider__pagging .swiper-pagination-bullet {
  background: #fff;
}
.system-slider__pagging .swiper-pagination-bullet-active {
  background: #fe5166;
}
.system__title {
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
}
@media (min-width: 77.5em) {
  .system__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .system__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .system__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .system__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .system__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .system__title {
    line-height: 1.5rem;
  }
}
.system__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  margin: 0 auto;
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 45px;
}

.card-system {
  flex: 0 0 480px;
  display: flex;
  align-items: flex-start;
}
.card-system__image {
  margin-right: 30px;
}
.card-system__title {
  margin-bottom: 10px;
}
@media (min-width: 77.5em) {
  .card-system__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .card-system__title {
    font-size: clamp( 1.25rem , 1.1630434783rem  +  0.4347826087vw , 1.5rem );
  }
}
@media (max-width: 20em) {
  .card-system__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .card-system__title {
    line-height: 1.8125rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .card-system__title {
    line-height: clamp( 1.25rem , 1.0543478261rem  +  0.9782608696vw , 1.8125rem );
  }
}
@media (max-width: 20em) {
  .card-system__title {
    line-height: 1.25rem;
  }
}
.card-system__item {
  margin-left: 10px;
  list-style-type: disc;
  font-size: 12px;
  line-height: 15px;
}
.card-system__item::marker {
  font-size: 8px;
  margin-right: 5px;
}

.control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.decision {
  padding-top: 165px;
  padding-bottom: 110px;
}
.decision__title {
  margin-bottom: 80px;
  font-weight: 800;
  text-align: center;
  color: #000;
}
@media (min-width: 77.5em) {
  .decision__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .decision__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .decision__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .decision__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .decision__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .decision__title {
    line-height: 1.5rem;
  }
}
.decision-slider {
  display: none;
}
.decision-slider__pagging {
  display: flex;
  padding-right: 20px;
  padding-left: 20px;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  margin-top: 30px;
}
.decision-slider__button_prev > img {
  transform: rotate(180deg);
}
.decision__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 160px;
       column-gap: 160px;
  row-gap: 70px;
}

.card-decision {
  width: 195px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-decision__image {
  margin-bottom: 30px;
}
.card-decision__text {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #414042;
}

.advantage {
  position: relative;
  padding-top: 110px;
  padding-bottom: 120px;
  background: #fe5166;
}
.advantage::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 56px;
  bottom: 5px;
  right: 9%;
  background-image: url(/images/dots-inside.svg?51ee7b07239bd4c9fc5423c9cf78a9f4);
  background-size: cover;
  background-repeat: no-repeat;
}
.advantage::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 56px;
  bottom: -5px;
  right: 9%;
  background-image: url(/images/dots-outside.svg?6c3dd47ac66c4c6e7c9438de79b13b64);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(100%);
}
.advantage-slider {
  display: none;
}
.advantage-slider__control {
  margin-top: 30px;
}
.advantage-slider__pagging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-right: 20px;
  padding-left: 20px;
}
.advantage-slider__pagging .swiper-pagination-bullet {
  background: #fff;
}
.advantage-slider__pagging .swiper-pagination-bullet-active {
  background: #08297e;
}
.advantage-slider__button_prev > img {
  transform: rotate(180deg);
}
.advantage__title {
  max-width: 880px;
  margin: 0 auto 80px;
  font-weight: 800;
  text-align: center;
}
@media (min-width: 77.5em) {
  .advantage__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .advantage__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .advantage__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .advantage__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .advantage__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .advantage__title {
    line-height: 1.5rem;
  }
}
.advantage__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-advantage {
  max-width: 210px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.card-advantage__image {
  margin-bottom: 20px;
}
.card-advantage__wrapper {
  text-align: center;
}
.card-advantage__title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
.card-advantage__info {
  font-size: 12px;
  line-height: 15px;
  text-align: center;
}
.card-advantage__button {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #fe5166;
  padding: 10px 25px;
  background: #ffffff;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  border-radius: 65px;
}

.tools {
  padding-top: 165px;
  padding-bottom: 110px;
}
.tools__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.tools__title {
  max-width: 715px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 30px;
}
@media (min-width: 77.5em) {
  .tools__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .tools__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .tools__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .tools__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .tools__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .tools__title {
    line-height: 1.5rem;
  }
}
.tools__video {
  position: relative;
  max-width: 740px;
  height: 370px;
}
.tools__preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tools__video-button {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #f1eeee;
}
.tools__video-button > img {
  margin-left: 5px;
}
.tools__contant {
  max-width: 415px;
}
.tools__subtitle {
  font-weight: 800;
  color: #000000;
  margin-bottom: 30px;
}
@media (min-width: 77.5em) {
  .tools__subtitle {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .tools__subtitle {
    font-size: clamp( 1.5rem , 1.2391304348rem  +  1.3043478261vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .tools__subtitle {
    font-size: 1.5rem;
  }
}
@media (min-width: 77.5em) {
  .tools__subtitle {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .tools__subtitle {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .tools__subtitle {
    line-height: 1.5rem;
  }
}
.tools__list {
  width: 100%;
  height: 370px;
  list-style-type: disc;
  overflow-y: auto;
  padding-right: 35px;
}
.tools__item {
  list-style: disc;
  font-weight: bold;
  margin-left: 20px;
  font-size: 16px;
  line-height: 20px;
  text-align: justify;
  color: #414042;
}
.tools__item::marker {
  margin-right: 5px;
  font-size: 12px;
}

.case {
  padding-right: 50px;
  padding-left: 50px;
  padding-bottom: 50px;
}
.case__title {
  font-weight: 800;
  color: #000000;
  text-align: center;
}
@media (min-width: 77.5em) {
  .case__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .case__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .case__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .case__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .case__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .case__title {
    line-height: 1.5rem;
  }
}
@media (min-width: 77.5em) {
  .case__title {
    margin-bottom: 8.125rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .case__title {
    margin-bottom: clamp( 5.625rem , 4.7554347826rem  +  4.347826087vw , 8.125rem );
  }
}
@media (max-width: 20em) {
  .case__title {
    margin-bottom: 5.625rem;
  }
}
.case-slider {
  position: relative;
  background-color: #fff;
}
.case-slider::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -48px;
  width: 250px;
  height: 250px;
  background-image: url(/images/dots-top-item.svg?8edb5d59445d97123e88fc824d224e1d);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.case-slider::after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: -48px;
  width: 250px;
  height: 250px;
  background-image: url(/images/dots-bottom-item.svg?3be708e72b312cb2e5ab220532ccba22);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.case-slider__pagging {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.case-slider__wrapper {
  z-index: 1;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
}
.case-slider__slide {
  position: relative;
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 95px;
  padding-bottom: 105px;
  z-index: 5;
  background-color: #fff;
}
.case-slider__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 120px;
}
.case-slider__avatar {
  flex: 0 0 160px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
}
.case-slider__item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-slider__content {
  max-width: 570px;
}
.case-slider__name {
  font-weight: 800;
  color: #000000;
}
@media (min-width: 77.5em) {
  .case-slider__name {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .case-slider__name {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .case-slider__name {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .case-slider__name {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .case-slider__name {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .case-slider__name {
    line-height: 1.5rem;
  }
}
.case-slider__subname {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #08297e;
  margin-bottom: 10px;
}
.case-slider__info {
  font-size: 12px;
  line-height: 15px;
  text-align: justify;
  color: #777777;
  margin-bottom: 40px;
}
.case-slider__button {
  padding: 15px 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  background: #08297e;
  border-radius: 65px;
}
.case-slider__button:not(:last-child) {
  margin-right: 25px;
}
.case-slider__button_white {
  background: #ffffff;
  border: 1px solid #08297e;
  color: #08297e;
}
.case-slider__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 50px;
}
.case-card {
  width: 48%;
}
.case-card__wrapper {
  display: flex;
}
.case-card__image {
  margin-right: 25px;
}
.case-card__content {
  max-width: 345px;
}
.case-card__title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #08297e;
  margin-bottom: 10px;
}
.case-card__info {
  font-size: 12px;
  line-height: 15px;
  color: #777777;
}

.swiper-pagination-bullet {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c4c4c4;
  transition: all 0.5s;
  cursor: pointer;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 5px;
}
.swiper-pagination-bullet-active {
  background: #fe5166;
  transition: all 0.5s;
}

.info {
  padding-top: 110px;
  padding-bottom: 110px;
}
.info__title {
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin-bottom: 80px;
}
@media (min-width: 77.5em) {
  .info__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .info__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .info__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .info__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .info__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .info__title {
    line-height: 1.5rem;
  }
}
.info__wrapper {
  display: flex;
  max-width: 1100px;
  justify-content: space-around;
  flex-wrap: wrap;
  row-gap: 80px;
  align-items: center;
  margin: 0 auto;
}
.info__card {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
}
.info__image {
  margin-right: 30px;
}
.info__card-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #08297e;
  margin-bottom: 10px;
  max-width: 230px;
}
.info__text {
  font-size: 12px;
  line-height: 15px;
  max-width: 300px;
  /* текст */
  color: #777777;
}

.offer {
  padding-top: 110px;
  padding-bottom: 110px;
  padding-right: 15px;
  padding-left: 15px;
  background: linear-gradient(270deg, #cacae7 1.17%, #ebedf5 127.4%);
}
.offer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offer__content {
  max-width: 550px;
}
.offer__title {
  font-weight: 800;
  color: #000000;
  margin-bottom: 30px;
}
@media (min-width: 77.5em) {
  .offer__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .offer__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .offer__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .offer__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .offer__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .offer__title {
    line-height: 1.5rem;
  }
}
.offer__image {
  max-width: 588px;
}
.offer__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer__button {
  max-width: 195px;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
  font-weight: 500;
  line-height: 22px;
}
@media (min-width: 77.5em) {
  .offer__button {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .offer__button {
    font-size: clamp( 0.875rem , 0.7880434783rem  +  0.4347826087vw , 1.125rem );
  }
}
@media (max-width: 20em) {
  .offer__button {
    font-size: 0.875rem;
  }
}

.computation {
  padding-top: 110px;
  padding-bottom: 110px;
}
.computation__tariffs {
  margin-bottom: 110px;
}

.tariffs {
  padding-bottom: 110px;
}
.tariffs-slider {
  display: none;
}
.tariffs-slider__control {
  margin-top: 30px;
}
.tariffs-slider__pagging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}
.tariffs-slider__button_prev > img {
  transform: rotate(180deg);
}
.tariffs__title {
  font-weight: 800;
  color: #000000;
  margin-bottom: 80px;
  text-align: center;
}
@media (min-width: 77.5em) {
  .tariffs__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .tariffs__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .tariffs__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .tariffs__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .tariffs__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .tariffs__title {
    line-height: 1.5rem;
  }
}
.tariffs__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.tariffs__card {
  flex: 0 0 19%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tariffs__image {
  margin-bottom: 35px;
}
.tariffs__text {
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #414042;
  margin-bottom: 35px;
}
.tariffs__button {
  padding: 10px 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  background: #08297e;
  border: 1px solid #414042;
  border-radius: 65px;
}

.range {
  position: relative;
  padding: 48px;
}
.range::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background-image: url(/images/dots-bg-grey.svg?3be708e72b312cb2e5ab220532ccba22);
  z-index: -2;
}
.range::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background-image: url(/images/dots-bg-pink.svg?854609451dde5786a994b98fc1f4c013);
  z-index: -2;
}
.range__wrapper {
  position: relative;
  padding: 40px 60px;
  background: #fe5166;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
}
.range__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
.range__title-wrapper {
  display: flex;
  align-items: center;
}
.range__titles {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 30px;
}
.range__titles:not(:last-child) {
  margin-right: 45px;
}
.range-tabs {
  display: flex;
  align-items: center;
  min-height: 140px;
}
.range-tabs__navigation {
  margin-right: 90px;
}
.range-tabs__title {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  background: #fe5166;
  border: 1px solid #ffffff;
  border-radius: 65px;
  padding: 10px 25px;
  transition: all 0.3s;
}
.range-tabs__title:not(:last-child) {
  margin-bottom: 10px;
}
.range-tabs__content {
  align-self: flex-end;
}
.range-tabs__plus {
  transform: rotate(45deg);
}
.range__form {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.range__form > span {
  font-size: 32px;
  font-weight: 800;
}
.range__quantity {
  border-radius: 7px;
  padding: 5px;
  height: 40px;
  width: 130px;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #414042;
  margin-right: 55px;
}
.range__cost {
  border-radius: 7px;
  padding: 5px;
  height: 40px;
  width: 130px;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #414042;
  margin-right: 55px;
  margin-left: 55px;
}
.range__total {
  border-radius: 7px;
  padding: 5px;
  height: 40px;
  width: 190px;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #414042;
  margin-left: 55px;
}
.range__count {
  width: 695px;
}

.noUi-touch-area {
  position: relative;
}
.noUi-touch-area::before {
  opacity: 0;
  visibility: hidden;
  content: "Количество учеников";
  position: absolute;
  bottom: -30px;
  left: 0;
  transition: hover 0.3s;
}

.noUi-touch-area:hover:before {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}

.range__wrapper-mobile {
  display: none;
  padding-top: 50px;
}

.form-mobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 45px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  background: #fe5166;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
}

.form-mobile__label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 29px;
  margin-bottom: 15px;
}

.form-mobile__select {
  width: 100%;
  height: 45px;
  padding-left: 20px;
  border: 1px solid #FE5166;
  border-radius: 65px;
  margin-bottom: 15px;
  color: #FE5166;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.form-mobile__quantity {
  width: 90%;
  height: 45px;
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
  border: 1px solid #FE5166;
  border-radius: 65px;
  margin-bottom: 10px;
}

.form-mobile__cost {
  width: 90%;
  height: 45px;
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
  border: 1px solid #FE5166;
  border-radius: 65px;
  margin-bottom: 10px;
}

.form-mobile__total {
  width: 90%;
  height: 45px;
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
  border: 1px solid #FE5166;
  border-radius: 65px;
}

.plus {
  transform: rotate(45deg);
}

.plus,
.total {
  display: block;
  font-weight: 800;
  font-size: 34px;
}

._tab-active {
  background: #ffffff;
  color: #fe5166;
  border: 1px solid #fe5166;
  transition: all 0.3s;
}

.discount {
  padding-top: 110px;
  padding-bottom: 110px;
  background: linear-gradient(270deg, #cacae7 1.17%, #ebedf5 127.4%);
}
.discount__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.discount__content {
  max-width: 550px;
}
.discount__title {
  font-weight: 800;
  color: #000000;
  margin-bottom: 10px;
}
@media (min-width: 77.5em) {
  .discount__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .discount__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .discount__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .discount__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .discount__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .discount__title {
    line-height: 1.5rem;
  }
}
.discount__info {
  max-width: 410px;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: justify;
  color: #414042;
}
@media (min-width: 77.5em) {
  .discount__info {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .discount__info {
    font-size: clamp( 0.75rem , 0.6630434783rem  +  0.4347826087vw , 1rem );
  }
}
@media (max-width: 20em) {
  .discount__info {
    font-size: 0.75rem;
  }
}
@media (min-width: 77.5em) {
  .discount__info {
    line-height: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .discount__info {
    line-height: clamp( 0.875rem , 0.7445652174rem  +  0.652173913vw , 1.25rem );
  }
}
@media (max-width: 20em) {
  .discount__info {
    line-height: 0.875rem;
  }
}
.discount__image {
  width: 590px;
}
.discount__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.discount__button {
  max-width: 300px;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.partners {
  position: relative;
  padding-top: 160px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
.partners__wrapper {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(270deg, #4d6ec4 18.92%, #08297e 126.08%);
  border-radius: 24px;
  padding-bottom: 65px;
  padding-top: 65px;
}
.partners__wrapper::before {
  content: "";
  bottom: -49px;
  position: absolute;
  left: -49px;
  width: 250px;
  height: 250px;
  background-image: url(/images/dots-bg-blue.svg?8edb5d59445d97123e88fc824d224e1d);
  background-repeat: no-repeat;
  z-index: -2;
}
.partners__wrapper::after {
  content: "";
  position: absolute;
  top: -49px;
  right: -49px;
  width: 250px;
  height: 250px;
  background-image: url(/images/dots-bg-grey.svg?3be708e72b312cb2e5ab220532ccba22);
  background-repeat: no-repeat;
  z-index: -2;
}
.partners__content {
  max-width: 415px;
}
.partners__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: -1;
}
.partners__title {
  font-weight: 800;
  margin-bottom: 10px;
}
@media (min-width: 77.5em) {
  .partners__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .partners__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .partners__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .partners__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .partners__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .partners__title {
    line-height: 1.5rem;
  }
}
.partners__info {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 30px;
}
.partners__button {
  padding: 15px 25px;
  max-width: 300px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  border-radius: 65px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.social {
  padding-top: 110px;
  padding-bottom: 110px;
}
.social__title {
  max-width: 545px;
  margin: 0 auto 60px;
  font-weight: 800;
  color: #000000;
  text-align: center;
}
@media (min-width: 77.5em) {
  .social__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .social__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 20em) {
  .social__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 77.5em) {
  .social__title {
    line-height: 2.75rem;
  }
}
@media (min-width: 20em) and (max-width: 77.5em) {
  .social__title {
    line-height: clamp( 1.5rem , 1.0652173913rem  +  2.1739130435vw , 2.75rem );
  }
}
@media (max-width: 20em) {
  .social__title {
    line-height: 1.5rem;
  }
}
.social__list {
  max-width: 1040px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.social__item {
  width: 160px;
  height: 160px;
}
.social__link {
  width: 100%;
  height: 100%;
}
.social__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.start-tablet {
  display: none;
}

.filds-banner {
  padding-top: 95px;
  padding-bottom: 90px;
}

.filds-banner__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filds-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.filds-banner__content-wrapper {
  position: relative;
  padding-left: 25px;
  padding-top: 25px;
  max-width: 600px;
  margin-left: 40px;
  background: #fff;
}
.filds-banner__content-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url(/images/main-banner-dots.svg?8e8486f9100c101aa7c42cae5fe24305);
  background-repeat: no-repeat;
  z-index: -1;
}

.filds-banner__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 20px;
}

.filds-banner__text {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 35px;
}

.filds-banner__button {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
}

.filds-banner__img {
  position: relative;
  width: 509px;
  z-index: -1;
}
.filds-banner__img::before {
  content: "";
  position: absolute;
  width: 593px;
  height: 1110px;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
  border-radius: 296.891px;
  z-index: -1;
  transform: translateX(253px) translateY(-528px) rotate(46deg);
}

.filds-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.leads {
  padding-top: 75px;
  padding-bottom: 110px;
}
.leads__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.leads__image {
  max-width: 380px;
}
.leads__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.leads__content {
  max-width: 630px;
}
.leads__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 30px;
}
.leads__info {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #414042;
  margin-bottom: 25px;
}
.leads__list {
  padding-left: 30px;
}
.leads__item {
  list-style-type: disc;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #414042;
}
.leads__item::marker {
  font-size: 12px;
}

.opportunity {
  position: relative;
  padding-top: 120px;
  padding-bottom: 160px;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
}
.opportunity::before {
  content: "";
  position: absolute;
  bottom: -65px;
  left: 50%;
  width: 82px;
  height: 60px;
  background-image: url(/images/dots-mini-pink.svg?56eda9e4385ecf2a6701212d76d4c956);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}
.opportunity::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 82px;
  height: 60px;
  background-image: url(/images/dots-mini-grey.svg?3be708e72b312cb2e5ab220532ccba22);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}
.opportunity__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.opportunity__image {
  max-width: 460px;
}
.opportunity__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.opportunity__content {
  max-width: 625px;
}
.opportunity__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 30px;
}
.opportunity__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.process {
  padding-top: 190px;
  padding-bottom: 110px;
}
.process__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.process__content {
  max-width: 655px;
  color: #414042;
}
.process__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 30px;
}
.process__about {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 25px;
  max-width: 560px;
}
.process__list {
  margin-bottom: 25px;
  padding-left: 25px;
}
.process__item {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.process__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.process__image {
  max-width: 405px;
}
.process__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vortex {
  background: #fbfbfb;
}
.vortex__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 80px;
  position: relative;
}
.vortex__wrapper::before {
  content: "";
  position: absolute;
  bottom: -65px;
  right: 0;
  width: 82px;
  height: 60px;
  background-image: url(/images/dots-mini-grey.svg?3be708e72b312cb2e5ab220532ccba22);
  background-repeat: no-repeat;
}
.vortex__wrapper::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 82px;
  height: 60px;
  background-image: url(/images/dots-mini-pink.svg?56eda9e4385ecf2a6701212d76d4c956);
  background-repeat: no-repeat;
}
.vortex__image {
  max-width: 390px;
}
.vortex__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vortex__content {
  max-width: 620px;
  position: relative;
}
.vortex__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 30px;
}
.vortex__list {
  padding-left: 25px;
}
.vortex__item {
  list-style-type: disc;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #414042;
}
.vortex__item::marker {
  font-size: 12px;
}

.education {
  padding-top: 100px;
  padding-bottom: 110px;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
}
.education__wrapper {
  position: relative;
  padding-top: 35px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.education__image {
  max-width: 500px;
}
.education__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.education__content {
  position: relative;
  max-width: 555px;
  z-index: 1;
  padding-bottom: 30px;
}
.education__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 30px;
}
.education__list {
  z-index: 5;
  max-width: 520px;
}
.education__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style-type: disc;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.education__item::marker {
  font-size: 12px;
}

.tippy {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fe5166;
  margin-left: 10px;
  background-image: url(/images/question-mark.svg?21751926fac2d9ce48676e8d33b5d197);
  background-position: center;
  background-repeat: no-repeat;
}

.info-banner {
  padding-top: 95px;
  padding-bottom: 155px;
}

.info-banner__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info-banner__content-wrapper {
  position: relative;
  padding-left: 25px;
  padding-top: 25px;
  max-width: 600px;
  margin-left: 40px;
  background: #fff;
}
.info-banner__content-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url(/images/main-banner-dots.svg?8e8486f9100c101aa7c42cae5fe24305);
  background-repeat: no-repeat;
  z-index: -1;
}

.info-banner__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 20px;
}

.info-banner__text {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 35px;
}

.info-banner__button {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
}

.info-banner__img {
  position: relative;
  width: 565px;
  height: 345px;
}
.info-banner__img::before {
  content: "";
  position: absolute;
  width: 593px;
  height: 1110px;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
  border-radius: 296.891px;
  z-index: -1;
  transform: translateX(253px) translateY(-528px) rotate(46deg);
}

.info-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  overflow: hidden;
}

.info-banner__button-play {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #f1eeee;
}
.info-banner__button-play > img {
  margin-left: 10px;
}

.tools-info {
  padding-top: 0;
}

.manual-tablet {
  display: none;
}

.case-banner {
  padding-top: 70px;
  padding-bottom: 155px;
}
.case-banner__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case-banner__content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 25px;
  padding-top: 25px;
  max-width: 465px;
  margin-left: 40px;
  background: #fff;
}
.case-banner__content-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url(/images/main-banner-dots.svg?8e8486f9100c101aa7c42cae5fe24305);
  background-repeat: no-repeat;
  z-index: -1;
}
.case-banner__button {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
  display: none;
}
.case-banner__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 50px;
}
.case-banner__company {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  width: 100%;
}
.case-banner__avatar {
  max-width: 160px;
  margin-right: 30px;
}
.case-banner__photo {
  width: 100%;
  border-radius: 50%;
}
.case-banner__name-company {
  display: block;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 15px;
}
.case-banner__author {
  display: block;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}
.case-banner__text {
  padding-left: 65px;
  max-width: 465px;
  font-size: 12px;
  line-height: 15px;
  text-align: justify;
  color: #414042;
  margin-bottom: 30px;
}
.case-banner__img {
  position: relative;
  width: 483px;
  z-index: -1;
}
.case-banner__img::before {
  content: "";
  position: absolute;
  width: 593px;
  height: 1110px;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
  border-radius: 296.891px;
  z-index: -1;
  transform: translateX(250px) translateY(-495px) rotate(46deg);
}
.case-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  overflow: hidden;
}
.case-banner__button-play {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #f1eeee;
}
.case-banner__button-play > img {
  margin-left: 10px;
}

.tariffs-banner {
  padding-top: 60px;
  padding-bottom: 70px;
}
.tariffs-banner__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tariffs-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tariffs-banner__content-wrapper {
  position: relative;
  padding-left: 25px;
  padding-top: 25px;
  max-width: 430px;
  margin-left: 40px;
  background: #fff;
}
.tariffs-banner__content-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url(/images/main-banner-dots.svg?8e8486f9100c101aa7c42cae5fe24305);
  background-repeat: no-repeat;
  z-index: -1;
}
.tariffs-banner__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 20px;
}
.tariffs-banner__text {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 35px;
}
.tariffs-banner__button {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
}
.tariffs-banner__img {
  position: relative;
  width: 614px;
  height: 510px;
}
.tariffs-banner__img::before {
  content: "";
  position: absolute;
  width: 593px;
  height: 1110px;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
  border-radius: 296.891px;
  z-index: -1;
  transform: translateX(295px) translateY(-528px) rotate(46deg);
}
.tariffs-banner__image {
  position: absolute;
  width: 614px;
  height: 510px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.tariffs-banner__button-play {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #414042;
  opacity: 0.8;
}
.tariffs-banner__button-play > img {
  margin-left: 10px;
}

.decision-tariffs {
  padding-top: 0;
}

.functional {
  position: relative;
  padding-top: 125px;
  padding-bottom: 135px;
  background: #08297e;
}
.functional::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 85px;
  height: 65px;
  background-image: url(/images/dots-mini-grey.svg?3be708e72b312cb2e5ab220532ccba22);
  background-repeat: no-repeat;
  transform: translateX(-50%);
  opacity: 0.4;
}
.functional::before {
  content: "";
  position: absolute;
  bottom: -75px;
  left: 50%;
  width: 85px;
  height: 65px;
  background-image: url(/images/dots-mini-pink.svg?56eda9e4385ecf2a6701212d76d4c956);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}
.functional__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  margin-bottom: 85px;
}
.functional__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.functional__card {
  display: flex;
  flex: 0 0 25%;
  align-items: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.functional__text {
  font-size: 24px;
  line-height: 29px;
}
.functional__info {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #fe5166;
}

.info-tariffs {
  padding-top: 0;
}

.computation-tariff {
  padding-top: 0;
}

.partners-banner {
  padding-top: 95px;
  padding-bottom: 90px;
}
.partners-banner__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partners-banner__content {
  position: relative;
  padding-left: 25px;
  padding-top: 10px;
  max-width: 600px;
  margin-left: 40px;
  background: #fff;
}
.partners-banner__content::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url(/images/main-banner-dots.svg?8e8486f9100c101aa7c42cae5fe24305);
  background-repeat: no-repeat;
  z-index: -1;
}
.partners-banner__info {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 20px;
}
.partners-banner__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 20px;
}
.partners-banner__text {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 35px;
}
.partners-banner__button {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
}
.partners-banner__img {
  position: relative;
  width: 579px;
  z-index: -1;
}
.partners-banner__img::before {
  content: "";
  position: absolute;
  width: 593px;
  height: 1110px;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
  border-radius: 296.891px;
  z-index: -1;
  transform: translateX(265px) translateY(-528px) rotate(46deg);
}
.partners-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.program__title {
  max-width: 705px;
  margin: 0 auto;
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  display: flex;
  align-items: flex-end;
  text-align: center;
  color: #000000;
  margin-bottom: 80px;
}
.program__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1030px;
  margin: 0 auto;
}

.program-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.program-card__image {
  max-width: 100px;
  margin-bottom: 35px;
}
.program-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.program-card__title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #000000;
  margin-bottom: 35px;
}
.program-card__text {
  max-width: 210px;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #414042;
  margin-bottom: 35px;
}

.for-partners {
  padding-top: 110px;
  padding-bottom: 135px;
}
.for-partners__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #000000;
  margin-bottom: 85px;
}
.for-partners__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.for-partners__wrapper:not(:last-child) {
  margin-bottom: 80px;
}
.for-partners__content {
  max-width: 490px;
}
.for-partners__subtitle {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 25px;
}
.for-partners__info {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #414042;
}
.for-partners__image {
  width: 505px;
  border-radius: 10px;
  overflow: hidden;
}
.for-partners__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.partners-registration {
  width: 721px;
  margin: 0 auto;
  padding-top: 110px;
  padding-right: 20px;
  padding-left: 20px;
}
.partners-registration__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #000000;
  margin-bottom: 60px;
}

.partners-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners-form__inputs {
  width: 100%;
  margin-bottom: 140px;
}
.partners-form__input {
  width: 100%;
  height: 60px;
  padding-left: 15px;
  padding-right: 15px;
  background: #f4f4f7;
  border: 1px solid #e2e5eb;
  box-sizing: border-box;
  border-radius: 5px;
}
.partners-form__input:not(:last-child) {
  margin-bottom: 20px;
}
.partners-form__button {
  max-width: 350px;
  margin: 0 auto;
  padding: 12px 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  background: #08297e;
  border-radius: 65px;
}

.about-banner {
  padding-top: 60px;
  padding-bottom: 70px;
}
.about-banner__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-banner__content-wrapper {
  position: relative;
  padding-left: 25px;
  padding-top: 25px;
  max-width: 540px;
  margin-left: 40px;
  background: #fff;
}
.about-banner__content-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url(/images/main-banner-dots.svg?8e8486f9100c101aa7c42cae5fe24305);
  background-repeat: no-repeat;
  z-index: -1;
}
.about-banner__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 20px;
}
.about-banner__text {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 35px;
}
.about-banner__button {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
}
.about-banner__img {
  position: relative;
  width: 614px;
  height: 510px;
}
.about-banner__img::before {
  content: "";
  position: absolute;
  width: 593px;
  height: 1110px;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
  border-radius: 296.891px;
  z-index: -1;
  transform: translateX(295px) translateY(-528px) rotate(46deg);
}
.about-banner__image {
  position: absolute;
  width: 614px;
  height: 510px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.about-banner__button-play {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #414042;
  opacity: 0.8;
}
.about-banner__button-play > img {
  margin-left: 10px;
}

.business {
  padding-bottom: 110px;
}
.business__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #000000;
  margin-bottom: 10px;
}
.business__info {
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #000000;
  margin-bottom: 60px;
}
.business__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.business__card {
  flex: 0 0 270px;
}

.business-card__count {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #08297e;
  margin-bottom: 10px;
}
.business-card__info {
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #777777;
}

.tech {
  position: relative;
  padding-top: 110px;
  padding-bottom: 125px;
  background: #08297e;
}
.tech__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tech::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 82px;
  height: 60px;
  background-image: url(/images/dots-mini-grey.svg?3be708e72b312cb2e5ab220532ccba22);
  background-repeat: no-repeat;
  opacity: 0.4;
  transform: translateX(-50%);
}
.tech::before {
  content: "";
  position: absolute;
  bottom: -65px;
  left: 50%;
  width: 82px;
  height: 60px;
  background-image: url(/images/dots-mini-pink.svg?56eda9e4385ecf2a6701212d76d4c956);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}
.tech__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 80px;
}
.tech__wrapper {
  max-width: 935px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 60px;
}
.tech__button {
  padding: 10px 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 65px;
  margin-top: 70px;
}

.tech-card {
  flex: 0 0 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tech-card__image {
  max-width: 100px;
  margin-bottom: 20px;
}
.tech-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tech-card__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 20px;
}
.tech-card__info {
  font-size: 12px;
  line-height: 15px;
  max-width: 200px;
}

.reset {
  padding-top: 110px;
  padding-bottom: 110px;
  background: linear-gradient(270deg, #cacae7 1.17%, #ebedf5 127.4%);
}
.reset__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reset__content {
  max-width: 550px;
}
.reset__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 10px;
}
.reset__info {
  max-width: 410px;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #414042;
}
.reset__image {
  width: 565px;
}
.reset__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reset__button {
  max-width: 300px;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.manual {
  padding-top: 110px;
  padding-bottom: 155px;
  background: #f1eeee;
}
.manual__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 35px;
}
.manual__info {
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 65px;
}
.manual__wrapper {
  display: flex;
  justify-content: space-between;
}
.manual__grid-wrapper {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(5, 1fr);
  width: 650px;
  height: 375px;
  margin-bottom: 50px;
}
.manual__button {
  border: 0.906024px solid #ffffff;
  border-radius: 5px;
}
.manual__button_white {
  background-color: #fff;
}
.manual__button_grey {
  background-color: #c4c4c4;
}
.manual__button_pink {
  background-color: #fe5166;
}
.manual__button:nth-child(1) {
  grid-column-start: 5;
  grid-column-end: 6;
  grid-row-start: 1;
  grid-row-end: 2;
}
.manual__button:nth-child(2) {
  grid-column-start: 4;
  grid-column-end: 5;
  grid-row-start: 2;
  grid-row-end: 3;
}
.manual__button:nth-child(3) {
  grid-column-start: 5;
  grid-column-end: 6;
  grid-row-start: 2;
  grid-row-end: 3;
}
.manual__button:nth-child(4) {
  grid-column-start: 6;
  grid-column-end: 7;
  grid-row-start: 2;
  grid-row-end: 3;
}
.manual__button:nth-child(5) {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 3;
  grid-row-end: 4;
}
.manual__button:nth-child(6) {
  grid-column-start: 4;
  grid-column-end: 7;
  grid-row-start: 3;
  grid-row-end: 5;
}
.manual__button:nth-child(7) {
  grid-column-start: 7;
  grid-column-end: 8;
  grid-row-start: 3;
  grid-row-end: 4;
}
.manual__button:nth-child(8) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
}
.manual__button:nth-child(9) {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 4;
  grid-row-end: 5;
}
.manual__button:nth-child(10) {
  grid-column-start: 7;
  grid-column-end: 8;
  grid-row-start: 4;
  grid-row-end: 5;
}
.manual__button:nth-child(11) {
  grid-column-start: 8;
  grid-column-end: 9;
  grid-row-start: 4;
  grid-row-end: 5;
}
.manual__button:nth-child(12) {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 5;
  grid-row-end: 6;
}
.manual__button:nth-child(13) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 5;
  grid-row-end: 6;
}
.manual__button:nth-child(14) {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 5;
  grid-row-end: 6;
}
.manual__button:nth-child(15) {
  grid-column-start: 4;
  grid-column-end: 5;
  grid-row-start: 5;
  grid-row-end: 6;
}
.manual__button:nth-child(16) {
  grid-column-start: 5;
  grid-column-end: 6;
  grid-row-start: 5;
  grid-row-end: 6;
}
.manual__button:nth-child(17) {
  grid-column-start: 6;
  grid-column-end: 7;
  grid-row-start: 5;
  grid-row-end: 6;
}
.manual__button:nth-child(18) {
  grid-column-start: 7;
  grid-column-end: 8;
  grid-row-start: 5;
  grid-row-end: 6;
}
.manual__button:nth-child(19) {
  grid-column-start: 8;
  grid-column-end: 9;
  grid-row-start: 5;
  grid-row-end: 6;
}
.manual__button:nth-child(20) {
  grid-column-start: 9;
  grid-column-end: 10;
  grid-row-start: 5;
  grid-row-end: 6;
}
.manual__pay-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.manual__pay-mobile {
  display: none;
}
.manual__text {
  display: block;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  margin-right: 30px;
}
.manual__total {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #fe5166;
  margin-right: 35px;
}
.manual__button-next {
  padding: 12px 25px;
  background: #fe5166;
  border-radius: 65px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.manual__right {
  flex: 0 0 395px;
  max-height: 475px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 20px;
}

.button__icon {
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service {
  padding: 25px;
}
.service__wrapper {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.service__wrapper:not(:last-child) {
  margin-bottom: 50px;
}
.service__image {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.service__img {
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__button {
  padding: 10px;
}
.service__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 15px;
  color: #414042;
  margin-bottom: 15px;
}
.service__list {
  font-size: 14px;
  line-height: 15px;
  color: #414042;
  padding-left: 15px;
}
.service__item {
  list-style-type: disc;
}
.service__item::marker {
  font-size: 12px;
}
.service__item:not(:last-child) {
  margin-bottom: 10px;
}

.start {
  padding-top: 110px;
  padding-bottom: 110px;
  text-align: center;
}
.start__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 35px;
}
.start__info {
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #414042;
  margin-bottom: 35px;
}
.start__button {
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 140px;
  max-width: 350px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  background: #fe5166;
  border-radius: 65px;
}

.realization {
  padding-top: 75px;
  padding-bottom: 65px;
  background: linear-gradient(270deg, #cacae7 1.17%, #ebedf5 127.4%);
}
.realization__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.realization__content {
  max-width: 545px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #414042;
}
.realization__text {
  max-width: 410px;
  margin-bottom: 30px;
  text-align: justify;
}
.realization__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 30px;
  color: #000;
}
.realization__info {
  max-width: 410px;
  margin-bottom: 30px;
  text-align: justify;
}
.realization__button {
  padding: 10px 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  background: #08297e;
  border-radius: 65px;
}
.realization__image {
  max-width: 575px;
}
.realization__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.investment {
  padding-top: 110px;
  padding-bottom: 110px;
}
.investment__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.investment__image {
  max-width: 587px;
}
.investment__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.investment__content {
  max-width: 545px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #414042;
}
.investment__text {
  max-width: 410px;
  margin-bottom: 30px;
}
.investment__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 30px;
}
.investment__info {
  max-width: 410px;
  margin-bottom: 30px;
  text-align: justify;
}
.investment__button {
  padding: 10px 25px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  background: #08297e;
  border-radius: 65px;
}

.support {
  padding-top: 135px;
  padding-bottom: 110px;
  background: linear-gradient(270deg, #cacae7 1.17%, #ebedf5 127.4%);
}
.support__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.support__content {
  max-width: 545px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #414042;
}
.support__text {
  margin-bottom: 30px;
  text-align: justify;
}
.support__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 30px;
  color: #000;
}
.support__info {
  margin-bottom: 30px;
  text-align: justify;
}
.support__button {
  padding: 10px 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  background: #08297e;
  border-radius: 65px;
}
.support__image {
  max-width: 575px;
}
.support__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-about {
  padding-top: 110px;
}

.niche-banner {
  padding-top: 60px;
  padding-bottom: 70px;
}
.niche-banner__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.niche-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.niche-banner__content-wrapper {
  position: relative;
  padding-left: 25px;
  padding-top: 25px;
  max-width: 540px;
  margin-left: 40px;
  background: #fff;
}
.niche-banner__content-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url(/images/main-banner-dots.svg?8e8486f9100c101aa7c42cae5fe24305);
  background-repeat: no-repeat;
  z-index: -1;
}
.niche-banner__info {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 30px;
}
.niche-banner__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 20px;
}
.niche-banner__text {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 35px;
}
.niche-banner__button {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
}
.niche-banner__img {
  position: relative;
  width: 614px;
  height: 510px;
}
.niche-banner__img::before {
  content: "";
  position: absolute;
  width: 593px;
  height: 1110px;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
  border-radius: 296.891px;
  z-index: -1;
  transform: translateX(295px) translateY(-528px) rotate(46deg);
}
.niche-banner__image {
  position: absolute;
  width: 614px;
  height: 510px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.niche-banner__button-play {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #414042;
  opacity: 0.8;
}
.niche-banner__button-play > img {
  margin-left: 10px;
}

.niche-business__title {
  margin-top: 60px;
}
.niche-business__title > span {
  display: block;
}

.case-niche {
  padding-top: 175px;
}

.tariffs-niche {
  padding-bottom: 0;
}

.support-banner {
  padding-top: 60px;
  padding-bottom: 70px;
}
.support-banner__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.support-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-banner__content-wrapper {
  position: relative;
  padding-left: 25px;
  padding-top: 25px;
  max-width: 540px;
  margin-left: 40px;
  background: #fff;
}
.support-banner__content-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url(/images/main-banner-dots.svg?8e8486f9100c101aa7c42cae5fe24305);
  background-repeat: no-repeat;
  z-index: -1;
}
.support-banner__info {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 30px;
}
.support-banner__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 20px;
}
.support-banner__text {
  font-size: 24px;
  line-height: 29px;
  color: #414042;
  margin-bottom: 35px;
}
.support-banner__button {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 15px 25px;
  background: #08297e;
  border-radius: 65px;
}
.support-banner__img {
  position: relative;
  width: 614px;
  height: 510px;
}
.support-banner__img::before {
  content: "";
  position: absolute;
  width: 593px;
  height: 1110px;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #08297e 1.17%, #4d6ec4 127.4%);
  border-radius: 296.891px;
  z-index: -1;
  transform: translateX(295px) translateY(-528px) rotate(46deg);
}
.support-banner__image {
  position: absolute;
  width: 614px;
  height: 510px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.support-banner__button-play {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #414042;
  opacity: 0.8;
}
.support-banner__button-play > img {
  margin-left: 10px;
}

.business-support__title {
  max-width: 730px;
  margin: 60px auto 0;
}

.support-support {
  background: #fff;
}

@media (max-width: 77.5em) {
  .main-banner {
    padding: 0;
  }
  .main-banner__img {
    flex: 0 0 470px;
    top: -45px;
  }
  .main-banner__img::before {
    width: 450px;
    height: 1095px;
  }

  .filds-banner {
    padding: 0;
  }
  .filds-banner__img {
    flex: 0 0 410px;
  }
  .filds-banner__img::before {
    width: 475px;
    height: 1020px;
  }
  .filds-banner__content-wrapper {
    max-width: 460px;
  }
  .filds-banner__title {
    font-size: 34px;
  }

  .tools__title {
    font-size: 32px;
  }
  .tools__subtitle {
    font-size: 32px;
  }
  .tools__list {
    height: 325px;
  }
  .tools__video {
    max-width: 510px;
    height: 325px;
  }
  .tools__video-button {
    width: 110px;
    height: 110px;
  }

  .card-system {
    flex: 0 0 405px;
  }

  .case-slider__top {
    margin-bottom: 90px;
  }
  .case-slider__content {
    max-width: 480px;
  }

  .offer__content {
    width: 480px;
  }
  .offer__title {
    font-size: 32px;
  }
  .offer__button {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .range__wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .range__quantity {
    margin-right: 20px;
  }
  .range__cost {
    margin-right: 20px;
    margin-left: 20px;
  }
  .range__total {
    margin-left: 20px;
  }
  .range-tabs__navigation {
    margin-right: 30px;
  }
  .range__titles {
    font-size: 20px;
  }
  .range__count {
    width: 100%;
  }

  .discount__image {
    width: 525px;
  }

  .leads {
    padding-top: 110px;
  }
  .leads__content {
    max-width: 565px;
  }
  .leads__image {
    max-width: 310px;
  }

  .opportunity__content {
    max-width: 495px;
  }
  .opportunity__wrapper {
    align-items: center;
  }
  .opportunity__image {
    max-width: 380px;
  }

  .process__content {
    max-width: 475px;
  }

  .vortex__content {
    max-width: 435px;
  }

  .education__content {
    max-width: 435px;
  }
  .education__image {
    max-width: 430px;
  }

  .niche-banner__img:before {
    width: 505px;
    height: 1050px;
  }
  .niche-banner__image, .niche-banner__img {
    width: 420px;
    height: 355px;
  }

  .partners-banner__content {
    max-width: 530px;
  }
  .partners-banner__img {
    width: 375px;
  }
  .partners-banner__img::before {
    width: 470px;
    height: 945px;
  }

  .for-partners__wrapper {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .for-partners__content {
    max-width: 460px;
  }
  .for-partners__image {
    width: 440px;
  }

  .partners-registration {
    padding-top: 0;
  }

  .support-banner__content {
    max-width: 485px;
  }
  .support-banner__img:before {
    width: 505px;
    height: 1050px;
  }
  .support-banner__image {
    width: 420px;
    height: 355px;
  }
  .support-banner__img {
    width: 418px;
    height: 355px;
  }

  .tariffs-banner__img:before {
    width: 505px;
    height: 1050px;
  }
  .tariffs-banner__image, .tariffs-banner__img {
    width: 495px;
    height: 400px;
  }

  .functional__wrapper {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .functional__card {
    flex: 0 0 30%;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }

  .about-banner__img:before {
    width: 505px;
    height: 1050px;
  }
  .about-banner__image, .about-banner__img {
    width: 420px;
    height: 355px;
  }

  .reset__content {
    max-width: 495px;
  }
  .reset__image {
    width: 440px;
  }

  .manual__grid-wrapper {
    width: 590px;
    height: 340px;
  }
  .manual__right {
    flex: 0 0 350px;
  }

  .investment__content,
.support__content {
    max-width: 515px;
  }
  .investment__image,
.support__image {
    max-width: 400px;
  }

  .case-banner__img {
    width: 370px;
  }
  .case-banner__img::before {
    width: 515px;
    height: 970px;
    transform: translateX(270px) translateY(-456px) rotate(46deg);
  }

  .info-banner__content {
    max-width: 445px;
  }
  .info-banner__img {
    width: 445px;
    height: 295px;
  }
  .info-banner__img::before {
    content: "";
    width: 588px;
    height: 967px;
    transform: translateX(346px) translateY(-528px) rotate(46deg);
  }
}
@media (max-width: 61.9375em) {
  .main-banner__wrapper {
    flex-direction: column-reverse;
  }
  .main-banner__img {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 100%;
    top: 0;
    right: 0;
    margin-bottom: 90px;
  }
  .main-banner__img::before {
    content: "";
    top: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    transform: translateX(0) translateY(0);
  }
  .main-banner__image {
    display: none;
  }
  .main-banner__image-mobile {
    display: block;
    max-width: 320px;
  }
  .main-banner__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
    margin-left: 0;
    padding-right: 40px;
    left: 40px;
  }
  .main-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-banner__button {
    margin-bottom: 50px;
  }

  .system {
    padding-top: 50px;
    padding-bottom: 75px;
  }
  .system::before {
    content: "";
    width: 50px;
    height: 35px;
  }
  .system::after {
    content: "";
    width: 50px;
    height: 35px;
  }
  .system__title {
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 44px;
  }
  .system__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 0;
  }

  .card-system {
    flex: 0 0 auto;
    max-width: 310px;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  .card-system:not(:last-child) {
    margin-bottom: 40px;
  }
  .card-system__image {
    align-self: center;
    margin: 30px;
  }
  .card-system__title {
    text-align: center;
    margin-bottom: 20px;
  }

  .decision {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .decision__wrapper {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }

  .card-decision {
    margin: 0 auto;
  }

  .advantage {
    padding-top: 45px;
    padding-bottom: 50px;
  }
  .advantage__title {
    margin-bottom: 50px;
  }
  .advantage::before {
    content: "";
    display: none;
  }
  .advantage::after {
    content: "";
    display: none;
  }
  .advantage__wrapper {
    flex-wrap: wrap;
    row-gap: 50px;
  }

  .card-advantage {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .tools {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .tools__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .tools__video {
    max-width: 100%;
    height: 400px;
    margin-bottom: 30px;
  }
  .tools__title {
    text-align: center;
  }
  .tools__subtitle {
    text-align: center;
  }
  .tools__contant {
    max-width: 440px;
  }

  .case {
    padding-right: 0;
    padding-left: 0;
  }
  .case-slider::before {
    display: none;
  }
  .case-slider::after {
    display: none;
  }
  .case-slider__slide {
    padding-top: 60px;
    padding-bottom: 80px;
    padding-right: 50px;
    padding-left: 50px;
  }
  .case-slider__content {
    max-width: 410px;
  }
  .case-card__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .case-card__image {
    margin-bottom: 20px;
  }

  .info {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .info__wrapper {
    row-gap: 40px;
  }
  .info__title {
    font-size: 20px;
    line-height: 24px;
    max-width: 315px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 45px;
  }
  .info__image {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .info__card {
    flex-direction: column;
    align-items: center;
  }
  .info__card-title {
    max-width: 100%;
  }
  .info__content {
    text-align: center;
  }

  .offer {
    padding-top: 50px;
    padding-bottom: 55px;
  }
  .offer__content {
    order: 2;
    max-width: 350px;
  }
  .offer__title {
    font-size: 24px;
  }
  .offer__button {
    font-size: 15px;
  }
  .offer__image {
    max-width: 310px;
    order: 1;
  }

  .computation {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .tariffs {
    max-width: 470px;
    padding-bottom: 0;
    margin: 0 auto;
  }
  .tariffs__title {
    max-width: 280px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 50px;
  }
  .tariffs__wrapper {
    flex-wrap: wrap;
    row-gap: 50px;
  }
  .tariffs__card {
    flex: 0 0 200px;
  }

  .range {
    display: none;
  }

  .discount {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .discount__content {
    max-width: 310px;
    order: 2;
  }
  .discount__title {
    font-size: 24px;
  }
  .discount__info {
    font-size: 12px;
  }
  .discount__button {
    font-size: 14px;
  }
  .discount__image {
    max-width: 360px;
    order: 1;
  }

  .social {
    padding-top: 50px;
    padding-bottom: 70px;
    max-width: 355px;
    margin: 0 auto;
  }
  .social__title {
    font-size: 20px;
    line-height: 24px;
  }
  .social__item {
    width: 50px;
    height: 50px;
  }

  .partners {
    padding: 50px 0 0;
  }
  .partners__wrapper::after {
    display: none;
  }
  .partners__wrapper::before {
    display: none;
  }
  .partners__image {
    max-width: 275px;
  }
  .partners__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .partners__content {
    max-width: 255px;
  }
  .partners__info {
    font-size: 14px;
    line-height: 18px;
  }
  .partners__title {
    font-size: 24px;
    line-height: 29px;
  }
  .partners-form__inputs {
    margin-bottom: 60px;
  }

  .filds-banner {
    padding-top: 70px;
  }
  .filds-banner__wrapper {
    flex-direction: column;
  }
  .filds-banner__img {
    display: flex;
    padding: 50px 0;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 100%;
    top: 0;
    right: 0;
  }
  .filds-banner__img::before {
    content: "";
    top: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    transform: translateX(0) translateY(0);
  }
  .filds-banner__image {
    width: 90%;
  }
  .filds-banner__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
    margin-left: 0;
    padding-right: 40px;
    left: 40px;
  }
  .filds-banner__button {
    margin-bottom: 50px;
  }

  .leads {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .leads__title {
    font-size: 20px;
    line-height: 24px;
  }
  .leads__content {
    max-width: 315px;
  }
  .leads__info, .leads__item {
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
  }
  .leads__image {
    max-width: 315px;
  }

  .opportunity {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .opportunity::before {
    content: "";
    display: none;
  }
  .opportunity::after {
    content: "";
    display: none;
  }
  .opportunity__image {
    order: 2;
    max-width: 305px;
  }
  .opportunity__content {
    order: 1;
    max-width: 315px;
  }
  .opportunity__title {
    font-size: 20px;
    line-height: 24px;
  }
  .opportunity__text {
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
  }

  .process {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .process__content {
    order: 2;
    max-width: 315px;
  }
  .process__title {
    font-size: 20px;
    line-height: 24px;
  }
  .process__about, .process__item, .process__text {
    font-size: 14px;
    line-height: 18px;
  }
  .process__image {
    order: 1;
    max-width: 315px;
  }

  .vortex {
    padding: 50px 0;
  }
  .vortex__wrapper {
    padding: 0;
  }
  .vortex__wrapper::before {
    content: "";
    display: none;
  }
  .vortex__wrapper::after {
    content: "";
    display: none;
  }
  .vortex__content {
    order: 1;
    max-width: 315px;
  }
  .vortex__item {
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
  }
  .vortex__title {
    font-size: 20px;
    line-height: 24px;
  }
  .vortex__image {
    order: 2;
    max-width: 315px;
  }

  .education {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .education__content {
    max-width: 315px;
  }
  .education__wrapper {
    padding: 0;
  }
  .education__title {
    font-size: 20px;
    line-height: 24px;
  }
  .education__item {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
  }
  .education__image {
    max-width: 365px;
  }

  .info-fields {
    padding-top: 50px;
  }

  .info-banner {
    padding-top: 70px;
    padding-bottom: 25px;
  }
  .info-banner__wrapper {
    flex-direction: column;
  }
  .info-banner__content {
    margin-bottom: 50px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .info-banner__button {
    align-self: center;
    font-size: 14px;
    line-height: 18px;
  }
  .info-banner__img {
    width: 100%;
    height: 470px;
  }
  .info-banner__img::before {
    content: "";
    display: none;
  }
  .info-banner__image {
    border-radius: 0;
  }

  .niche-banner {
    padding-bottom: 40px;
  }
  .niche-banner__wrapper {
    flex-direction: column;
  }
  .niche-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  .niche-banner__content-wrapper {
    max-width: 640px;
    margin-left: 25px;
  }
  .niche-banner__content-wrapper::before {
    top: -25px;
    left: -25px;
    background-image: url(/images/main-banner-dots-mobile.svg?93309bd0704492b002c372175f04bd37);
  }
  .niche-banner__info {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  .niche-banner__title {
    line-height: 24px;
  }
}
@media (max-width: 61.9375em) and (min-width: 77.5em) {
  .niche-banner__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 61.9375em) and (min-width: 20em) and (max-width: 77.5em) {
  .niche-banner__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 61.9375em) and (max-width: 20em) {
  .niche-banner__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 61.9375em) {
  .niche-banner__text {
    align-self: flex-start;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 61.9375em) {
  .niche-banner__img {
    width: 420px;
    height: 355px;
  }
  .niche-banner__img::before {
    display: none;
  }
}
@media (max-width: 61.9375em) {
  .niche-banner__button-play {
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
@media (max-width: 61.9375em) {
  .niche-banner__image {
    right: 0;
    width: 420px;
    height: 355px;
  }
}
@media (max-width: 61.9375em) {
  .niche-business__title {
    margin-top: 30px;
  }
}
@media (max-width: 61.9375em) {
  .partners-banner {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .partners-banner__wrapper {
    flex-direction: column;
  }
  .partners-banner__content {
    margin-bottom: 50px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .partners-banner__img {
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .partners-banner__img::before {
    content: "";
    top: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    transform: translateX(0) translateY(0);
  }
  .partners-banner__image {
    width: 440px;
  }
  .partners-banner__button {
    align-self: center;
    font-size: 14px;
    line-height: 18px;
    transform: translateX(-40px);
  }
}
@media (max-width: 61.9375em) {
  .program-card {
    flex: 0 0 240px;
  }
}
@media (max-width: 61.9375em) {
  .for-partners__content {
    flex: 0 0 47%;
  }
  .for-partners__image {
    flex: 0 0 47%;
  }
  .for-partners__subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .for-partners__info {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 61.9375em) {
  .support-banner {
    padding-bottom: 40px;
  }
  .support-banner__wrapper {
    flex-direction: column;
  }
  .support-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  .support-banner__content-wrapper {
    max-width: 640px;
    margin-left: 25px;
  }
  .support-banner__content-wrapper::before {
    left: -25px;
    top: -25px;
    background-image: url(/images/main-banner-dots-mobile.svg?93309bd0704492b002c372175f04bd37);
  }
  .support-banner__title {
    line-height: 24px;
  }
}
@media (max-width: 61.9375em) and (min-width: 77.5em) {
  .support-banner__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 61.9375em) and (min-width: 20em) and (max-width: 77.5em) {
  .support-banner__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 61.9375em) and (max-width: 20em) {
  .support-banner__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 61.9375em) {
  .support-banner__text {
    align-self: flex-start;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 61.9375em) {
  .support-banner__info {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 61.9375em) {
  .support-banner__img {
    width: 485px;
    height: 385px;
  }
  .support-banner__img::before {
    display: none;
  }
}
@media (max-width: 61.9375em) {
  .support-banner__button-play {
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
@media (max-width: 61.9375em) {
  .support-banner__image {
    right: 0;
    width: 485px;
    height: 385px;
  }
}
@media (max-width: 61.9375em) {
  .tariffs-banner {
    padding-bottom: 0;
  }
  .tariffs-banner__wrapper {
    flex-direction: column;
  }
  .tariffs-banner__content {
    margin-bottom: 30px;
  }
  .tariffs-banner__content-wrapper {
    max-width: 640px;
  }
  .tariffs-banner__text {
    align-self: flex-start;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
  }
  .tariffs-banner__img {
    width: 485px;
    height: 385px;
  }
  .tariffs-banner__img::before {
    display: none;
  }
  .tariffs-banner__button-play {
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  .tariffs-banner__image {
    right: 0;
    width: 485px;
    height: 385px;
  }
}
@media (max-width: 61.9375em) {
  .functional {
    padding-top: 50px;
    padding-bottom: 75px;
  }
  .functional::before {
    width: 50px;
    height: 35px;
    bottom: -40px;
    background-image: url(/images/dots-mini-pink-mb.svg?c66f8f49a79f51ca7ebe8ad618279afb);
  }
  .functional::after {
    width: 50px;
    height: 35px;
    background-image: url(/images/dots-mini-grey-mb.svg?fb9b5c4bc519e9a4e95259b53885ffca);
  }
  .functional__card {
    flex: 0 0 45%;
    margin: 0 auto;
  }
}
@media (max-width: 61.9375em) {
  .about-banner__wrapper {
    flex-direction: column;
  }
  .about-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  .about-banner__content-wrapper {
    max-width: 640px;
  }
  .about-banner__text {
    align-self: flex-start;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
  }
  .about-banner__img {
    width: 485px;
    height: 385px;
  }
  .about-banner__img::before {
    display: none;
  }
  .about-banner__button-play {
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  .about-banner__image {
    right: 0;
    width: 485px;
    height: 385px;
  }
}
@media (max-width: 61.9375em) {
  .business {
    padding-bottom: 50px;
  }
  .business__info {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 18px;
  }
  .business__wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .business__card {
    width: 270px;
    flex: 0 0 auto;
  }
  .business__card:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 61.9375em) {
  .tech-card {
    flex: 0 0 45%;
  }
}
@media (max-width: 61.9375em) {
  .reset {
    padding: 50px 0;
  }
  .reset__title {
    font-size: 24px;
    line-height: 29px;
  }
  .reset__info {
    font-size: 14px;
    line-height: 18px;
  }
  .reset__button {
    font-size: 14px;
    line-height: 18px;
  }
  .reset__image {
    max-width: 315px;
    order: 1;
  }
  .reset__content {
    max-width: 350px;
    order: 2;
  }
}
@media (max-width: 61.9375em) {
  .case-banner {
    padding: 50px 0;
  }
}
@media (max-width: 61.9375em) {
  .case-about {
    padding-top: 50px;
    padding-bottom: 0;
  }
}
@media (max-width: 61.9375em) {
  .manual__wrapper {
    flex-direction: column;
  }
  .manual__grid-wrapper {
    width: 100%;
    height: 380px;
    margin-bottom: 0;
  }
  .manual__pay {
    position: relative;
    margin-bottom: 30px;
  }
  .manual__pay-wrapper {
    position: absolute;
    flex-direction: column;
    justify-content: space-between;
    width: 315px;
    height: 170px;
    bottom: -250px;
    left: 0;
  }
  .manual__button-next {
    width: 100%;
  }
  .manual__right {
    width: 315px;
    align-self: flex-end;
    max-height: 220px;
  }
}
@media (max-width: 61.9375em) {
  .realization,
.support {
    padding: 50px 0;
  }
  .realization__image,
.support__image {
    max-width: 315px;
  }
  .realization__content,
.support__content {
    max-width: 330px;
  }
  .realization__title,
.support__title {
    font-size: 24px;
    line-height: 29px;
  }
  .realization__text, .realization__info,
.support__text,
.support__info {
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
  }
}
@media (max-width: 61.9375em) {
  .investment {
    padding: 50px 0;
  }
  .investment__image {
    max-width: 315px;
  }
  .investment__content {
    max-width: 330px;
  }
  .investment__title {
    font-size: 24px;
    line-height: 29px;
  }
  .investment__text, .investment__info {
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
  }
}
@media (max-width: 61.9375em) {
  .case-banner {
    padding-bottom: 0;
  }
  .case-banner__wrapper {
    flex-direction: column;
  }
  .case-banner__content {
    margin-bottom: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .case-banner__company {
    max-width: 460px;
  }
  .case-banner__button {
    align-self: center;
    font-size: 14px;
    line-height: 18px;
    display: block;
  }
  .case-banner__img {
    display: none;
  }
  .case-banner__img::before {
    content: "";
    display: none;
  }

  .manual-tablet {
    display: block;
    padding: 50px 0;
  }

  .start-tablet {
    display: block;
    padding: 50px 0;
  }

  .start {
    padding: 50px 0;
  }
  .start__title {
    line-height: 24px;
    margin-bottom: 10px;
  }
}
@media (max-width: 61.9375em) and (min-width: 77.5em) {
  .start__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 61.9375em) and (min-width: 20em) and (max-width: 77.5em) {
  .start__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 61.9375em) and (max-width: 20em) {
  .start__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 61.9375em) {
  .start__info {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 30px;
    text-transform: none;
  }
}
@media (max-width: 61.9375em) {
  .for-partners {
    padding: 50px 0;
  }
  .for-partners__wrapper:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (max-width: 47.9375em) {
  .main-banner__content-wrapper {
    left: 25px;
    padding-left: 20px;
  }
  .main-banner__content-wrapper::before {
    background-image: url(/images/main-banner-dots-mobile.svg?93309bd0704492b002c372175f04bd37);
    left: -25px;
    top: -25px;
  }
  .main-banner__text {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 20px;
  }
  .main-banner__title {
    margin-bottom: 15px;
  }
  .main-banner__img {
    margin-bottom: 60px;
  }
  .main-banner__button {
    margin-bottom: 40px;
  }

  .case-slider__top {
    flex-direction: column;
    align-items: center;
  }
  .case-slider__avatar {
    margin-bottom: 40px;
  }
  .case-slider__content {
    text-align: center;
  }

  .discount {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .discount__wrapper {
    flex-direction: column;
  }
  .discount__image {
    margin-bottom: 30px;
  }
  .discount__content {
    max-width: 310px;
    text-align: center;
  }
  .discount__info {
    font-size: 14px;
    font-weight: normal;
    line-height: 15px;
    text-align: center;
  }
  .discount__title {
    font-size: 20px;
    line-height: 24px;
  }

  .offer__wrapper {
    flex-direction: column;
  }
  .offer__image {
    margin-bottom: 60px;
  }
  .offer__content {
    text-align: center;
    max-width: 310px;
  }
  .offer__title {
    font-size: 20px;
    line-height: 24px;
  }

  .partners__wrapper {
    flex-direction: column;
  }
  .partners__content {
    order: 2;
    max-width: 250px;
  }
  .partners__title {
    font-size: 20px;
    line-height: 24px;
    max-width: 215px;
    margin: 0 auto 30px;
  }
  .partners__image {
    order: 1;
    min-width: 275px;
    margin-bottom: 30px;
  }
  .partners__button {
    font-size: 18px;
    line-height: 21px;
  }

  .case-niche {
    padding-top: 75px;
  }

  .partners-banner__content {
    margin-left: 25px;
  }
  .partners-banner__content::before {
    top: -25px;
    left: -25px;
    background-image: url(/images/main-banner-dots-mobile.svg?93309bd0704492b002c372175f04bd37);
  }
  .partners-banner__info {
    font-size: 14px;
    line-height: 19px;
  }
  .partners-banner__title {
    font-size: 20px;
    line-height: 24px;
  }
  .partners-banner__text {
    font-size: 14px;
    line-height: 19px;
  }
  .partners-banner__image {
    width: 315px;
  }

  .program__title {
    margin-bottom: 50px;
    font-size: 20px;
    line-height: 24px;
  }
  .program__wrapper {
    flex-direction: column;
  }

  .for-partners__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .for-partners__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 50px;
  }
  .for-partners__image {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
  .for-partners__content {
    width: 100%;
    order: 2;
  }

  .partners-registration {
    width: 100%;
  }
  .partners-registration__title {
    font-size: 20px;
    line-height: 24px;
  }
  .partners-form__inputs {
    margin-bottom: 60px;
  }

  .functional {
    padding-top: 50px;
    padding-bottom: 75px;
  }
  .functional__wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }
  .functional__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .functional__card {
    width: 280px;
    flex: 0 0 auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .functional__text {
    font-size: 14px;
    line-height: 18px;
  }

  .about-banner {
    padding-bottom: 30px;
  }
  .about-banner__content-wrapper {
    margin-left: 25px;
  }
  .about-banner__content-wrapper::before {
    top: -25px;
    left: -25px;
    background-image: url(/images/main-banner-dots-mobile.svg?93309bd0704492b002c372175f04bd37);
  }
  .about-banner__title {
    line-height: 24px;
  }
}
@media (max-width: 47.9375em) and (min-width: 77.5em) {
  .about-banner__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.9375em) and (min-width: 20em) and (max-width: 77.5em) {
  .about-banner__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 47.9375em) and (max-width: 20em) {
  .about-banner__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 47.9375em) {
  .realization__wrapper,
.support__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .realization__content,
.support__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    order: 2;
  }
  .realization__image,
.support__image {
    margin-bottom: 45px;
    order: 1;
  }
  .realization__info,
.support__info {
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .investment__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .investment__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    order: 2;
  }
  .investment__image {
    margin-bottom: 45px;
    order: 1;
  }
  .investment__info {
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .business__title {
    line-height: 24px;
  }
}
@media (max-width: 47.9375em) and (min-width: 77.5em) {
  .business__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.9375em) and (min-width: 20em) and (max-width: 77.5em) {
  .business__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 47.9375em) and (max-width: 20em) {
  .business__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 47.9375em) {
  .tech {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .tech::after {
    background-image: url(/images/dots-mini-grey-mb.svg?fb9b5c4bc519e9a4e95259b53885ffca);
    width: 50px;
    height: 35px;
  }
  .tech::before {
    background-image: url(/images/dots-mini-pink-mb.svg?c66f8f49a79f51ca7ebe8ad618279afb);
    width: 50px;
    height: 35px;
    bottom: -40px;
  }
  .tech__title {
    line-height: 24px;
    margin-bottom: 50px;
  }
}
@media (max-width: 47.9375em) and (min-width: 77.5em) {
  .tech__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.9375em) and (min-width: 20em) and (max-width: 77.5em) {
  .tech__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 47.9375em) and (max-width: 20em) {
  .tech__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 47.9375em) {
  .reset__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .reset__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .reset__title {
    font-size: 20px;
    line-height: 24px;
  }
  .reset__image {
    margin-bottom: 45px;
  }
}
@media (max-width: 47.9375em) {
  .manual {
    padding: 50px 0;
  }
  .manual__pay-wrapper {
    width: 40%;
  }
  .manual__title {
    line-height: 24px;
    text-align: center;
  }
}
@media (max-width: 47.9375em) and (min-width: 77.5em) {
  .manual__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.9375em) and (min-width: 20em) and (max-width: 77.5em) {
  .manual__title {
    font-size: clamp( 1.25rem , 0.902173913rem  +  1.7391304348vw , 2.25rem );
  }
}
@media (max-width: 47.9375em) and (max-width: 20em) {
  .manual__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 47.9375em) {
  .manual__info {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .manual__right {
    width: 55%;
  }
}
@media (max-width: 47.9375em) {
  .manual__text {
    text-align: center;
    font-size: 14px;
  }
}
@media (max-width: 47.9375em) {
  .filds-banner__content-wrapper {
    left: 25px;
  }
  .filds-banner__content-wrapper::before {
    top: -25px;
    left: -25px;
    background-image: url(/images/main-banner-dots-mobile.svg?93309bd0704492b002c372175f04bd37);
  }
  .filds-banner__title {
    font-size: 20px;
    line-height: 24px;
  }
  .filds-banner__text {
    font-size: 14px;
    line-height: 18px;
  }
  .filds-banner__button {
    max-width: 310px;
    font-size: 14px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 47.9375em) {
  .leads__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .leads__image {
    margin-bottom: 20px;
  }
  .leads__title {
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .opportunity {
    position: relative;
  }
  .opportunity__wrapper {
    flex-direction: column-reverse;
  }
  .opportunity__title {
    text-align: center;
  }
  .opportunity__text {
    text-align: center;
  }
  .opportunity__image {
    margin-bottom: 50px;
  }
}
@media (max-width: 47.9375em) {
  .education__wrapper {
    flex-direction: column;
  }
  .education__title {
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .tippy {
    display: none;
  }
}
@media (max-width: 47.9375em) {
  .process__wrapper {
    flex-direction: column;
  }
  .process__image {
    margin-bottom: 20px;
  }
  .process__title {
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .vortex__wrapper {
    flex-direction: column-reverse;
  }
  .vortex__image {
    margin-bottom: 50px;
  }
  .vortex__title {
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .education__wrapper {
    flex-direction: column;
  }
  .education__image {
    margin-bottom: 50px;
  }
  .education__title {
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .info-banner__title {
    font-size: 20px;
    line-height: 24px;
  }
  .info-banner__content-wrapper {
    margin: 0;
    margin-left: 25px;
  }
  .info-banner__content-wrapper::before {
    top: -25px;
    left: -25px;
    background-image: url(/images/main-banner-dots-mobile.svg?93309bd0704492b002c372175f04bd37);
  }
  .info-banner__text {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 47.9375em) {
  .business-support__title {
    margin-top: 30px;
  }
}
@media (max-width: 47.9375em) {
  .tippy {
    display: none;
  }
}
@media (max-width: 47.9375em) {
  .decision {
    padding-top: 50px;
  }

  .case-banner__content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }
  .case-banner__content-wrapper {
    padding-left: 25px;
    padding-top: 25px;
    margin-left: 25px;
    margin-right: 25px;
  }
  .case-banner__content-wrapper::before {
    left: -25px;
    top: -25px;
    background-image: url(/images/main-banner-dots-mobile.svg?93309bd0704492b002c372175f04bd37);
  }
  .case-banner__company {
    flex-direction: column;
    margin-bottom: 35px;
  }
  .case-banner__title {
    align-self: flex-start;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .case-banner__text {
    padding-left: 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
  .case-banner__name-company {
    font-size: 20px;
    line-height: 18px;
  }
  .case-banner__avatar {
    margin-bottom: 20px;
  }
  .case-banner__author {
    font-size: 14px;
    line-height: 18px;
  }

  .tariffs-banner__content-wrapper {
    margin-left: 25px;
  }
  .tariffs-banner__content-wrapper::before {
    top: -25px;
    left: -25px;
    background-image: url(/images/main-banner-dots-mobile.svg?93309bd0704492b002c372175f04bd37);
  }
  .tariffs-banner__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 35.5em) {
  .manual__right {
    width: 100%;
    max-height: 475px;
  }
  .manual__pay-wrapper {
    display: none;
  }
  .manual__right {
    margin-bottom: 40px;
  }
  .manual__pay-mobile {
    display: flex;
    position: static;
    width: 100%;
  }
  .manual__grid-wrapper {
    height: 575px;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  .manual__button:nth-child(1) {
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .manual__button:nth-child(2) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .manual__button:nth-child(3) {
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .manual__button:nth-child(4) {
    grid-column-start: 7;
    grid-column-end: 9;
    grid-row-start: 2;
    grid-row-end: 3;
    background-color: #fe5166;
  }
  .manual__button:nth-child(5) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .manual__button:nth-child(6) {
    grid-column-start: 3;
    grid-column-end: 9;
    background-color: #c4c4c4;
  }
  .manual__button:nth-child(7) {
    grid-column-start: 9;
    grid-column-end: 11;
  }
  .manual__button:nth-child(8) {
    grid-column-start: 9;
    grid-column-end: 11;
    grid-row-start: 5;
    grid-row-end: 6;
  }
  .manual__button:nth-child(9) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .manual__button:nth-child(10) {
    grid-column-start: 9;
    grid-column-end: 11;
  }
  .manual__button:nth-child(11) {
    grid-column-start: 6;
    grid-column-end: 8;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .manual__button:nth-child(12) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row: 6;
  }
  .manual__button:nth-child(13) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 6;
  }
  .manual__button:nth-child(14) {
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row: 6;
  }
  .manual__button:nth-child(15) {
    grid-column-start: 7;
    grid-column-end: 9;
    grid-row: 6;
  }
  .manual__button:nth-child(16) {
    grid-column-start: 9;
    grid-column-end: 11;
    grid-row: 6;
  }
  .manual__button:nth-child(17) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .manual__button:nth-child(18) {
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .manual__button:nth-child(19) {
    grid-column-start: 5;
    grid-column-end: 7;
  }
  .manual__button:nth-child(20) {
    grid-column-start: 7;
    grid-column-end: 9;
  }
}
@media (max-width: 33em) {
  .system::before {
    content: "";
    display: none;
  }
  .system::after {
    content: "";
    display: none;
  }
  .system-slider {
    display: block;
  }
  .system__wrapper {
    display: none;
  }
  .system__title {
    font-size: 20px;
    line-height: 24px;
  }

  .decision__title {
    margin-bottom: 30px;
  }
  .decision__wrapper {
    display: none;
  }
  .decision-slider {
    display: block;
  }

  .card-system {
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  .card-system__title {
    text-align: center;
  }
  .card-system__list {
    max-width: 310px;
    padding-left: 25px;
  }

  .range__wrapper-mobile {
    display: block;
  }

  .computation {
    padding-bottom: 0;
  }

  .advantage-slider {
    display: block;
  }
  .advantage__wrapper {
    display: none;
  }

  .card-advantage {
    margin: 0 auto;
    flex: 0 0 auto;
    max-width: 60%;
    min-height: auto;
  }
  .card-advantage__info {
    margin-bottom: 30px;
  }
  .card-advantage__button {
    margin-bottom: 5px;
  }

  .tools__title {
    font-size: 20px;
    line-height: 24px;
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
  }
  .tools__item {
    font-size: 14px;
    font-weight: normal;
  }
  .tools__video {
    height: 200px;
  }
  .tools__video-button {
    width: 65px;
    height: 65px;
  }
  .tools__video-button > img {
    width: 25px;
    height: 25px;
  }
  .tools__subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .case-slider__top {
    margin-bottom: 60px;
  }
  .case-slider__slide {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 60px;
  }
  .case-slider__button {
    font-size: 14px;
  }
  .case-card {
    display: none;
  }
  .case-card:nth-child(1) {
    display: block;
    width: 70%;
    margin: 0 auto;
  }

  .info__card {
    flex: 0 0 100%;
  }

  .niche-banner__title {
    font-size: 20px;
    line-height: 24px;
  }
  .niche-banner__text {
    margin-bottom: 45px;
  }
  .niche-banner__button {
    font-size: 14px;
  }
  .niche-banner__button-play {
    width: 50px;
    height: 50px;
  }
  .niche-banner__button-play > img {
    width: 25px;
    height: 25px;
    transform: translateX(-3px);
  }
  .niche-banner__img, .niche-banner__image {
    width: 310px;
    height: 245px;
  }

  .tariffs-banner__text {
    margin-bottom: 45px;
  }
  .tariffs-banner__button {
    font-size: 14px;
  }
  .tariffs-banner__button-play {
    width: 50px;
    height: 50px;
  }
  .tariffs-banner__button-play > img {
    width: 25px;
    height: 25px;
    transform: translateX(-3px);
  }
  .tariffs-banner__img, .tariffs-banner__image {
    width: 310px;
    height: 245px;
  }

  .about-banner__button {
    font-size: 14px;
  }
  .about-banner__button-play {
    width: 50px;
    height: 50px;
  }
  .about-banner__button-play > img {
    width: 25px;
    height: 25px;
    transform: translateX(-3px);
  }
  .about-banner__img, .about-banner__image {
    width: 310px;
    height: 245px;
  }

  .tech__wrapper {
    flex-direction: column;
  }
  .tech-card {
    width: 100%;
    flex: 0 0 auto;
  }

  .tariffs__wrapper {
    display: none;
  }
  .tariffs__text {
    max-width: 210px;
  }
  .tariffs-slider {
    display: block;
  }
  .tariffs-niche {
    padding-bottom: 50px;
  }

  .info-banner__img {
    height: 220px;
  }
  .info-banner__button-play {
    width: 80px;
    height: 80px;
  }
  .info-banner__button-play > img {
    width: 35px;
    height: 35px;
  }

  .support-banner__text {
    margin-bottom: 30px;
  }
  .support-banner__button {
    font-size: 14px;
  }
  .support-banner__button-play {
    width: 50px;
    height: 50px;
  }
  .support-banner__button-play > img {
    width: 25px;
    height: 25px;
    transform: translateX(-3px);
  }
  .support-banner__img {
    width: 310px;
    height: 245px;
  }
  .support-banner__image {
    width: 310px;
    height: 245px;
  }

  .manual-tablet {
    display: none;
  }
}
@media (max-width: 29.25em) {
  .discount__image {
    max-width: 100%;
  }
}
@media (max-width: 27.375em) {
  .manual__grid-wrapper {
    height: 420px;
  }
}
@media (max-width: 26.25em) {
  .decision-slider__pagging {
    width: 175px;
  }
}
@media (max-width: 23.25em) {
  .manual__grid-wrapper {
    height: 365px;
  }
}
@media (max-width: 22.5em) {
  .main-banner__image-mobile {
    max-width: 260px;
  }
}
@media (max-width: 22.1875em) {
  .case-slider__button {
    width: 100%;
  }
  .case-slider__button:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 21.25em) {
  .partners-banner__image {
    width: 255px;
  }
}
@media (min-width: 61.9375em) {
  .card-advantage__button {
    transition: all 0.3s;
  }
  .card-advantage__button:hover {
    border: 1px solid #fff;
    background: #fe5166;
    color: #fff;
    transition: all 0.3s;
  }

  .button-primary {
    transition: all 0.3s;
    border: 1px solid #08297e;
  }
  .button-primary:hover {
    background: #fff;
    color: #08297e;
    transition: all 0.3s;
  }

  .button-secondary {
    transition: all 0.3s;
  }
  .button-secondary:hover {
    border: 1px solid #fff;
    background: #fe5166;
    color: #fff;
    transition: all 0.3s;
  }

  .button-third {
    transition: all 0.3s;
  }
  .button-third:hover {
    background: #08297e;
    color: #fff;
    transition: all 0.3s;
  }

  .social__img {
    transition: transform 0.3s;
  }
  .social__img:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
  }
}
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 8px;
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  right: -17px;
  top: -7px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 7px;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #ffffff;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background: #fff;
  cursor: default;
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}

.noUi-active {
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

/* Handle stripes;
 */
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  color: #fff;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}
.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

#breadcrumbs {
  margin-top: 40px;
  color: black;
}

#breadcrumbs a {
  color: black;
}

#breadcrumbs li {
  display: inline;
}

#breadcrumbs li:not(:last-child)::after {
  color: black;
  display: inline-block;
  margin: 0 .25rem;
  content: "→";
}

.yt-frame {
  width: 100%;
  height: 100%;
  border: none;
}
