@charset "UTF-8";
:root {
  --font-family: "ProximaNova", sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* stylelint-disable */
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Extrabld.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  line-height: 1.5;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.spacer {
  margin-bottom: 60px;
}

.spacer48 {
  margin-bottom: 48px;
}

.title {
  font-size: 32px;
  margin: 0;
  color: #000000;
  font-weight: 800;
  text-align: center;
  margin-bottom: 26px;
}

.title mark {
  color: #41a63e;
  background-color: rgba(0, 0, 0, 0);
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 24px;
    text-align: center !important;
  }
}
.consultation {
  border-radius: 30px;
  font-size: 20px;
  font-weight: 800;
  padding-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  background: #41a63e;
  color: #fff;
  margin-top: 50px;
  margin-bottom: 52px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .consultation {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .consultation span {
    display: none;
  }
}
.source-img {
  font-size: 12px;
  line-height: 14px;
}

strong {
  font-weight: 800;
}

.green {
  color: #41a63e;
}

input[type=submit] {
  background-color: #41a63e;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  outline: none;
  padding: 16px;
  text-align: center;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  width: auto;
  border-radius: 30px;
}

/*к ютубу*/
.html5-info-bar {
  display: none;
}

.ytp-large-play-button {
  -webkit-transform: scale(0.8) !important;
  -ms-transform: scale(0.8) !important;
  transform: scale(0.8) !important;
  width: 68px !important;
  height: 48px !important;
}

.ytp-thumbnail {
  position: relative;
  height: 100%;
}

.ytp-thumbnail::before {
  content: "";
  width: 100%;
  height: 100px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
  position: absolute;
  left: 0;
  top: 0;
}

/*якоря*/
#benefits2,
#why-us2,
#video-reviews2,
#masters2,
#faq2,
#contact-form2 {
  position: absolute;
  bottom: 40px;
}

/*потом удалить*/
.site-container {
  min-height: 100vh;
}

.header .logo-ua {
  background-image: url(../img/logo-ua2.webp);
}

.logo {
  display: block;
  width: 210px;
  height: 57px;
  background: url(../img/logo.webp) no-repeat;
  background-size: contain;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.header {
  height: 70px;
  padding: 7px 0;
  position: fixed;
  background-color: #fff;
  width: 100%;
  right: 0;
  top: 0;
  left: 0;
  z-index: 2;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-btn,
.close-btn {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu-btn span,
.close-btn span,
.menu-btn span:before,
.close-btn span:before,
.menu-btn span:after,
.close-btn span:after {
  display: block;
  width: 20px;
  height: 2px;
  background: #969696;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -1px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.menu-btn span:before,
.close-btn span:before,
.menu-btn span:after,
.close-btn span:after {
  content: "";
}

.menu-btn span:before,
.close-btn span:before {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.menu-btn span:after,
.close-btn span:after {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.navigation {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5px;
  gap: 30px;
}

.header-info a {
  display: none;
  color: #000;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-email::before, .header-phone::before {
  content: "";
  width: 23px;
  display: block;
}

.header-phone::before {
  background: url(../img/h_tel.webp) no-repeat;
  background-size: contain;
  height: 23px;
}

.header-email::before {
  background: url(../img/h_mail.png) no-repeat;
  background-size: contain;
  height: 17px;
}

.main-nav {
  display: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.main-nav a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  margin-right: 10px;
  position: relative;
}

.main-nav :last-child {
  margin-right: 0px;
}

.main-nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  border-bottom: 5px solid #00ab28;
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
  transform: translateY(25px);
  opacity: 0;
}

.main-nav a:hover::before {
  opacity: 1;
}

@media screen and (min-width: 501px) {
  .header-info a:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .container {
    padding-left: 4%;
  }
  /*.header .container::before{
    content: "";
    flex-grow: 1;
  }*/
}
@media screen and (min-width: 739px) {
  .header-info a:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 879px) {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-btn {
    display: none;
  }
  .header-info {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 12px;
  }
  .header .container {
    padding-right: 4%;
  }
  .header {
    min-height: 108px;
    padding-top: 23px;
  }
  .logo {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@media screen and (min-width: 1169px) {
  .main-nav a {
    font-size: 20px;
    margin-right: 25px;
  }
  .header {
    min-height: 120px;
    padding-top: 31px;
  }
  .header .container {
    max-width: 1530px;
  }
  .main-nav a::before {
    -webkit-transform: translateY(23px);
    -ms-transform: translateY(23px);
    transform: translateY(23px);
  }
}
.header-fixed {
  -webkit-box-shadow: 0 0 8px 1px #ccc;
  box-shadow: 0 0 8px 1px #ccc;
}

.header-fixed .header-info {
  display: none;
}

@media screen and (min-width: 879px) {
  .header-fixed {
    min-height: 84px;
    padding-top: 13px;
  }
  .header-fixed .logo {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .header-fixed .main-nav a::before {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@media screen and (min-width: 1169px) {
  .header-fixed .main-nav a::before {
    -webkit-transform: translateY(27px);
    -ms-transform: translateY(27px);
    transform: translateY(27px);
  }
}
@media screen and (max-width: 878px) {
  .main-nav.menu-active {
    visibility: visible;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    background: #2d8736;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .menu-btn.menu-active span:after {
    content: "";
    width: 20px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    background: #fff;
  }
  .menu-btn.menu-active span::before {
    display: none;
  }
  .menu-btn.menu-active span {
    width: 20px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    background: #fff;
  }
  .main-nav.menu-active a {
    color: #fff;
    margin-bottom: 21px;
    font-size: 20px;
  }
  .main-nav.menu-active a::before {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
}
.ionicon-new {
  background-color: #41a63e;
  color: #fff;
}

.ionicon-new :not(svg) {
  -webkit-transform-origin: 0px 0px;
  -ms-transform-origin: 0px 0px;
  transform-origin: 0px 0px;
}

.modal.fade .modal-header .ionicon-fill-none,
.reviews-slider-video--button-prev .ionicon-fill-none,
.reviews-slider-video--button-next .ionicon-fill-none,
.specialists-slider--button-next .ionicon-fill-none,
.specialists-slider--button-prev .ionicon-fill-none,
.reviews-slider-extended--button-prev .ionicon-fill-none,
.reviews-slider-extended--button-next .ionicon-fill-none,
.scans-slider--button-prev .ionicon-fill-none,
.scans-slider--button-next .ionicon-fill-none,
.ionicon-new .ionicon-fill-none {
  fill: none;
}

.ionicon-new {
  stroke: currentcolor;
}

.ionicon-new .hydrated {
  visibility: inherit;
}

.to-top .icon-inner,
.modal.fade .modal-header .icon-inner,
.reviews-slider-video--button-prev .icon-inner,
.reviews-slider-video--button-next .icon-inner,
.specialists-slider--button-next .icon-inner,
.specialists-slider--button-prev .icon-inner,
.reviews-slider-extended--button-prev .icon-inner,
.reviews-slider-extended--button-next .icon-inner,
.scans-slider--button-prev .icon-inner,
.scans-slider--button-next .icon-inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.to-top .icon-inner svg {
  width: 16px;
  height: 16px;
}

.modal.fade .modal-header .icon-inner svg,
.reviews-slider-video--button-prev .icon-inner svg,
.reviews-slider-video--button-next .icon-inner svg,
.specialists-slider--button-next .icon-inner svg,
.specialists-slider--button-prev .icon-inner svg,
.reviews-slider-extended--button-prev .icon-inner svg,
.reviews-slider-extended--button-next .icon-inner svg,
.scans-slider--button-prev .icon-inner svg,
.scans-slider--button-next .icon-inner svg {
  stroke: currentcolor;
  width: 24px;
  height: 24px;
}

.modal.fade .modal-header .icon-inner .ionicon-stroke-width {
  stroke-width: 32px;
}

.lazyYT-container {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1400px) {
  .lazyYT-container {
    width: inherit !important;
    padding-bottom: 56.25% !important;
  }
}
@media screen and (max-width: 992px) {
  .lazyYT-container {
    width: inherit !important;
    padding-bottom: 56.25% !important;
  }
}
.ytp-large-play-button {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  width: 68px !important;
  height: 48px !important;
}

.ytp-large-play-button {
  -webkit-transform: scale(0.8) !important;
  -ms-transform: scale(0.8) !important;
  transform: scale(0.8) !important;
}

/*footer*/
.footer {
  background: #434242;
  padding: 20px 20px;
  min-height: 120px;
  font-size: 20px;
  color: #fff;
}

.footer a{
  background: #434242 !important;
  min-height: 120px;
  font-size: 20px;
  color: #fff !important;
  text-decoration: underline;
}

.popbutton {
  cursor: pointer;
  text-decoration: underline;
}

.popbutton2 {
  cursor: pointer;
  text-decoration: underline;
}

.to-top {
  width: 36px;
  height: 36px;
  position: fixed;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #41a63e;
  bottom: 128px;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  position: fixed;
  right: 16px;
  text-align: center;
  -webkit-transition: opacity 0.15s ease-in-out, background-color 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out, background-color 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out, background-color 0.15s ease-in-out;
  z-index: 1000;
  cursor: pointer;
  background-image: url(../img/svg/up.svg);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

.to-top:hover {
  background-color: #6f6f6f;
}

.to-top.to-top--visible {
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  .to-top {
    right: 64px;
  }
}
footer img {
  height: 47px;
}

/*1 Первый экран*/
.banner-wrap {
  padding-top: 70px;
}

@media screen and (min-width: 879px) {
  .banner-wrap {
    padding-top: 108px;
  }
}
@media screen and (min-width: 1169px) {
  .banner-wrap {
    padding-top: 120px;
  }
}
.banner {
  height: 495px;
  padding: 120px 3% 20px;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #bcbcbc;
}

.img .banner {
  background-image: url(../img/background_head_max.webp);
}

@media screen and (min-width: 769px) {
  .banner {
    height: 550px;
    padding: 11% 6% 50px;
  }
}
@media screen and (max-width: 768px) {
  .banner-text {
    margin-bottom: 90px;
  }
}
.banner-text h1 {
  font-size: 30px;
  width: 100%;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .banner-text h1 br {
    display: none;
  }
}
@media screen and (min-width: 501px) {
  .banner-text h1 {
    font-size: 39px;
    width: 100%;
  }
}
@media screen and (min-width: 601px) {
  .banner-text h1 {
    width: 80%;
  }
}
@media screen and (min-width: 769px) {
  .banner-text h1 {
    font-size: 60px;
    line-height: 70px;
    width: 100%;
  }
}
.banner-text p {
  font-style: italic;
  font-size: 22px;
  line-height: 28px;
  padding: 0px 15px 0px 10px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-transform: none;
  background-color: #00ab28;
  color: #fff;
  margin: 0;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .banner-text p {
    font-size: 32px;
    line-height: 45px;
  }
}
.banner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: 0px;
  margin-top: 35px;
}

@media screen and (min-width: 769px) {
  .banner-buttons {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 50px;
  }
}
.banner-buttons a {
  display: block;
  width: 340px;
  font-size: 24px;
  line-height: 1.5;
  padding: 9px 0px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  background-color: #00ab28;
}

@media screen and (max-width: 768px) {
  .banner-buttons a {
    width: 300px;
    font-size: 22px;
    line-height: 22px;
    padding: 15px 0px;
  }
}
/*2 Как поступить в ВУЗы Словении*/
.how-proceed {
  position: relative;
}

.how-proceed .lazyYT-container {
  width: inherit !important;
  padding-bottom: 56.25% !important;
}

@media screen and (min-width: 1024px) {
  .how-proceed .lazyYT-container {
    width: 31.25em !important;
    height: 17.563em;
    font-size: 28px;
    padding-bottom: 0 !important;
    margin: 0 auto;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }
}
/*3 Преимущества выбора Словении*/
.benefits {
  font-size: 20px;
}

@media only screen and (min-width: 768px) {
  .benefits {
    margin-bottom: 64px;
  }
}
@media only screen and (min-width: 992px) {
  .benefits {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 767px) {
  .benefits {
    font-size: 16px;
  }
}
.benefits .title {
  text-align: left;
}

.benefits-blocks {
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 992px) {
  .benefits-blocks {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.benefits-column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 992px) {
  .benefits-column:only-child {
    max-width: 33.33%;
  }
  .benefits-column {
    -webkit-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
  }
}
.benefits-column img {
  width: 80px;
  height: 80px;
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
}

@media screen and (max-width: 767px) {
  .benefits-column img {
    width: 76px;
    height: 76px;
    -ms-flex-preferred-size: 76px;
    flex-basis: 76px;
  }
}
.benefits-column p {
  margin: 0;
}

@media only screen and (max-width: 991px) {
  .benefits-column p br {
    display: none;
  }
  .benefits-blocks {
    row-gap: 16px;
    margin-bottom: 16px;
  }
}
/*4 Записаться 	на бесплатную консультацию*/
.enroll-img {
  position: relative;
  background-color: #c4ebcd;
}

.enroll-img .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.enroll-img__block {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  position: relative;
}

.enroll-img__block img {
  position: absolute;
  width: 80%;
  right: 0px;
  bottom: 0px;
}

.enroll-img .source-img {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.enroll-img__block:first-child {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  text-align: center;
}

.enroll-img__block:last-child {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (min-width: 992px) {
  .enroll-img__block:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .enroll-img__block:last-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .enroll-img .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .enroll-img__block img {
    max-width: 320px;
    min-width: auto;
    margin-right: auto;
    margin-left: auto;
    left: 0;
  }
  .enroll-img__block {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .enroll-img::before {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #c4ebcd;
    display: none;
  }
  .enroll-img {
    position: relative;
    background: none;
  }
  .source-img {
    text-align: center;
    width: 100%;
  }
  .enroll-img__block:last-child {
    padding-top: 100px;
    display: none;
  }
  .enroll-img .consultation {
    margin-top: 25px;
    margin-bottom: 0;
  }
}
/*5 Этапы работы с нами*/
.stage .title {
  text-align: left;
}

.stage {
  position: relative;
}

.stage__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  row-gap: 40px;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.stage__flex img {
  display: block;
}

.stage__colomn:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.stage__colomn {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .stage__colomn:last-child {
    display: none;
  }
}
.stage__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.75em;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  gap: 2em;
}

.stage__item:last-child {
  margin-bottom: 0;
}

.stage__text p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .stage__text p {
    font-size: 16px;
  }
}
.stage__numbers {
  font-size: 64px;
  color: #13b23a;
  line-height: 64px;
  font-weight: 300;
  -ms-flex-preferred-size: 40px;
  flex-basis: 40px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

@media screen and (max-width: 991px) {
  .stage__numbers {
    font-size: 50px;
  }
}
/*6 отзывы*/
.reviews .title {
  text-align: left;
}

.reviews {
  margin-bottom: 48px;
}

.reviews-main {
  position: relative;
}

.reviews-main--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

.reviews-main--list-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 32px;
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-main--list-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-bottom: 48px;
    max-width: 50%;
  }
}
.reviews-main--list-item--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 100%;
}

.reviews-main--list-item--content--bubble {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 16px;
  line-height: 24px;
  padding: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-main--list-item--content--bubble {
    padding: 32px;
  }
}
.reviews-main--list-item--content--bubble p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-main--list-item--content--bubble p:last-child {
  margin-bottom: 0;
}

.reviews-main--list-item--content--bubble-tail {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 12px;
  height: 0;
  margin-left: 35px;
  width: 0;
}

.reviews-main--list-item--content--user {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 16px;
}

.reviews-main--list-item--content--avatar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 50px;
  margin-left: 8px;
  margin-right: 8px;
  overflow: hidden;
  width: 50px;
}

.reviews-main--list-item--content--avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-main--list-item--content--name {
  color: #000;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
}

.reviews-secondary {
  position: relative;
}

.reviews-slider {
  margin: 0 24px;
  position: static;
}

.reviews-slider--button-next,
.reviews-slider--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  height: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
}

@media screen and (min-width: 992px) {
  .reviews-slider--button-next,
  .reviews-slider--button-prev {
    font-size: 24px;
    height: 40px;
    width: 40px;
  }
}
.reviews-slider--button-prev {
  left: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-slider--button-prev {
    left: 24px;
  }
}
.reviews-slider--button-next {
  right: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-slider--button-next {
    right: 24px;
  }
}
.reviews-slider--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
}

.reviews-slider--pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
  height: 10px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 10px;
}

.reviews-slider--pagination .swiper-pagination-bullet-active,
.reviews-slider--pagination .swiper-pagination-bullet:hover {
  background-color: #fff;
}

.reviews-slider--slide {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
}

.reviews-slider--item,
.reviews-slider--slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews-slider--item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  max-width: 600px;
}

.reviews-slider--item-text {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 24px;
  text-align: center;
}

.reviews-slider--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider--item-avatar {
  background-color: hsla(0, 0%, 100%, 0.2);
  border-radius: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100px;
  margin: 0 auto 16px;
  overflow: hidden;
  width: 100px;
}

.reviews-slider--item-avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-slider--item-name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  text-align: center;
}

.reviews-more {
  position: relative;
}

.reviews-more--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -16px;
  margin-right: -16px;
  padding-top: 32px;
}

@media screen and (min-width: 992px) {
  .reviews-more--list {
    padding-top: 48px;
  }
}
.reviews-more--list-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 32px;
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (min-width: 576px) {
  .reviews-more--list-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .reviews-more--list-item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    margin-bottom: 48px;
    max-width: 25%;
  }
}
.reviews-more--list-item--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.reviews-more--list-item--avatar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 200px;
  margin: 0 auto 16px;
  overflow: hidden;
  width: 200px;
}

.reviews-more--list-item--avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-more--list-item--name {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 16px;
  text-align: center;
}

.reviews-more--list-item--text {
  color: #6f6f6f;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.reviews-more--list-item--text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-more--list-item--text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-double {
  margin: 0;
  padding-bottom: 64px;
  position: relative;
}

.reviews-slider-double--slide {
  height: auto;
}

.reviews-slider-double--button-next,
.reviews-slider-double--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #41a63e;
  border-radius: 100%;
  bottom: 0;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  height: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 50px;
}

.reviews-slider-double--button-prev {
  left: 0;
}

.reviews-slider-double--button-next {
  right: 0;
}

.reviews-slider-double--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 16px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  padding: 0 64px;
  position: absolute;
  right: 0;
}

.reviews-slider-double--pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #41a63e;
  border-radius: 16px;
  height: 16px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 16px;
}

.reviews-slider-double--pagination .swiper-pagination-bullet-active {
  background-color: #41a63e;
}

.reviews-slider-double--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding-right: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-double--item {
    border-right: 3px solid rgba(19, 178, 58, 0.5);
    margin-right: -3px;
    padding-right: 64px;
  }
}
.reviews-slider-double--item-quotes {
  height: 83px;
  margin-bottom: 16px;
}

.reviews-slider-double--item-text {
  color: #000;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 24px;
}

.reviews-slider-double--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider-double--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-double--item-meta {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

.reviews-slider-double--item-avatar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 120px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 120px;
  margin-right: 32px;
  overflow: hidden;
  width: 120px;
}

.reviews-slider-double--item-avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-slider-double--item-name {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
}

.reviews-slider-single {
  margin: 0;
  padding-bottom: 64px;
  position: relative;
}

.reviews-slider-single--slide {
  height: auto;
}

.reviews-slider-single--button-next,
.reviews-slider-single--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #41a63e;
  border-radius: 100%;
  bottom: 0;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  height: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 50px;
}

.reviews-slider-single--button-prev {
  left: 0;
}

.reviews-slider-single--button-next {
  right: 0;
}

.reviews-slider-single--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 16px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  padding: 0 64px;
  position: absolute;
  right: 0;
}

.reviews-slider-single--pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #41a63e;
  border-radius: 16px;
  height: 16px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 16px;
}

.reviews-slider-single--pagination .swiper-pagination-bullet-active {
  background-color: #41a63e;
}

.reviews-slider-single--item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .reviews-slider-single--item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.reviews-slider-single--item-text {
  color: #000;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 24px;
  max-height: 190px;
  overflow-x: hidden;
  overflow-y: auto;
}

.reviews-slider-single--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider-single--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-single--item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .reviews-slider-single--item-meta {
    width: auto;
  }
}
.reviews-slider-single--item-avatar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100px;
  margin-bottom: 16px;
  margin-right: 0;
  overflow: hidden;
  width: 100px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-single--item-avatar {
    border-radius: 120px;
    height: 120px;
    margin-bottom: 0;
    margin-right: 32px;
    width: 120px;
  }
}
.reviews-slider-single--item-avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-slider-single--item-name {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 24px;
}

.reviews-slider-extended {
  position: relative;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.reviews-slider-extended--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0 !important;
}

.reviews-slider-extended--slide {
  height: auto;
}

.reviews-slider-extended--item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.reviews-slider-extended--item,
.reviews-slider-extended--item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews-slider-extended--item-top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 16px;
}

.reviews-slider-extended--item-avatar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0;
  margin-right: 16px;
  max-width: 100px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--item-avatar {
    max-width: 190px;
  }
}
.reviews-slider-extended--item-meta {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.reviews-slider-extended--item-name {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--item-name {
    font-size: 20px;
    line-height: 24px;
  }
}
.reviews-slider-extended--item-subtitle {
  color: #41a63e;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 8px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--item-subtitle {
    font-size: 20px;
    line-height: 24px;
  }
}
.reviews-slider-extended--item-text {
  color: #000;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--item-text {
    font-size: 20px;
    line-height: 24px;
  }
}
.reviews-slider-extended--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider-extended--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-extended--button-next,
.reviews-slider-extended--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e2e2e2;
  border-radius: 100%;
  color: #41a63e;
  cursor: pointer;
  display: none;
  font-size: 24px;
  height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  z-index: 1;
}

.reviews-slider-extended--button-next.swiper-button-disabled,
.reviews-slider-extended--button-prev.swiper-button-disabled {
  opacity: 0.5;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--button-next,
  .reviews-slider-extended--button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.reviews-slider-extended--button-prev {
  left: 0;
}

.reviews-slider-extended--button-next {
  right: 0;
}

.reviews-slider-extended--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
}

.reviews-slider-extended--pagination .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #41a63e;
  border-radius: 10px;
  height: 10px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 10px;
}

.reviews-slider-extended--pagination .swiper-pagination-bullet-active,
.reviews-slider-extended--pagination .swiper-pagination-bullet:hover {
  background-color: #41a63e;
}

.reviews-slider-video {
  position: relative;
}

@media screen and (min-width: 992px) {
  .reviews-slider-video {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.reviews-slider-video--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0 !important;
}

.reviews-slider-video--slide {
  height: 100%;
}

.reviews-slider-video--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.reviews-slider-video--item-avatar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 16px;
  overflow: hidden;
  width: 100%;
}

.reviews-slider-video--item-avatar > div {
  position: relative;
}

.reviews-slider-video--item-avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-slider-video--item-text {
  color: #000;
  font-size: 16px;
  font-size: 20px;
  line-height: 20px;
  line-height: 24px;
  margin-top: 16px;
}

.reviews-slider-video--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider-video--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-video--item-name {
  color: #000;
  font-size: 16px;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  line-height: 24px;
}

.reviews-slider-video--item-name > span {
  font-weight: 700;
}

.reviews-slider-video--button-next,
.reviews-slider-video--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e2e2e2;
  border-radius: 100%;
  color: #41a63e;
  cursor: pointer;
  display: none;
  font-size: 24px;
  height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  z-index: 1;
}

.reviews-slider-video--button-next.swiper-button-disabled,
.reviews-slider-video--button-prev.swiper-button-disabled {
  opacity: 0.5;
}

@media screen and (min-width: 992px) {
  .reviews-slider-video--button-next,
  .reviews-slider-video--button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.reviews-slider-video--button-prev {
  left: 0;
}

.reviews-slider-video--button-next {
  right: 0;
}

.reviews-slider-video--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
}

.reviews-slider-video--pagination .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #41a63e;
  border-radius: 10px;
  height: 10px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 10px;
}

.reviews-slider-video--pagination .swiper-pagination-bullet-active,
.reviews-slider-video--pagination .swiper-pagination-bullet:hover {
  background-color: #41a63e;
}

/*7 Доверьтесь нам и вы.*/
.enroll {
  background-color: #c4ebcd;
  padding-top: 40px;
  padding-bottom: 40px;
}

.enroll p {
  font-size: 20px;
  margin: 0;
}

.enroll strong {
  font-weight: bold;
}

.enroll .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.enroll__block {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  position: relative;
}

.enroll .consultation {
  margin-bottom: 0;
  margin-top: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .enroll .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 16px;
  }
  .enroll__block {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .enroll p {
    font-size: 16px;
    text-align: center;
  }
}
/*8 Поступая в ВУЗ с нами */
.doing {
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 12px;
  border-radius: 36px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 19px 3px rgba(196, 235, 205, 0.3);
  box-shadow: 0px 0px 19px 3px rgba(196, 235, 205, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  row-gap: 16px;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  font-size: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.doing-column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.doing img {
  display: block;
  height: 100%;
  margin: 0;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.doing-item {
  border-radius: 16px;
  overflow: hidden;
  border-style: solid;
  border-color: #41a63e;
  border-width: 1px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  margin-bottom: 32px;
}

.doing-item:last-child {
  margin-bottom: 0;
}

.doing .source-img {
  margin-left: 15%;
  margin-top: -4px;
}

@media screen and (max-width: 991px) {
  .doing {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .doing-column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .doing {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 16px;
  }
  .doing .source-img {
    margin-top: 0;
    text-align: left;
  }
  .doing-item {
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    margin-bottom: 16px;
  }
}
/*9 Наши специалисты*/
.specialists {
  position: relative;
}

.specialists-slider {
  position: relative;
}

@media screen and (min-width: 992px) {
  .specialists-slider {
    margin-left: 60px;
    margin-right: 60px;
  }
}
.specialists-slider--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
}

.specialists-slider--pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #41a63e;
  border-radius: 10px;
  height: 10px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 10px;
}

.specialists-slider--pagination .swiper-pagination-bullet-active {
  background-color: #41a63e;
}

.specialists-slider--button-next,
.specialists-slider--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e2e2e2;
  border-radius: 100%;
  color: #41a63e;
  cursor: pointer;
  font-size: 24px;
  height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  z-index: 1;
    margin: 0 10px;
}

.specialists-slider--button-next.swiper-button-disabled,
.specialists-slider--button-prev.swiper-button-disabled {
  opacity: 0.5;
}

@media screen and (min-width: 992px) {
  .specialists-slider--button-next,
  .specialists-slider--button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.specialists-slider--button-prev {
  left: 0;
}

.specialists-slider--button-next {
  right: 0;
}

.specialists-slider--wrapper {
  grid-row-gap: 16px;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: (minmax(0, 1fr))[2];
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

@media screen and (min-width: 992px) {
  .specialists-slider--wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.specialists-slider--slide {
  height: 100%;
  margin-top: 0 !important;
}

.specialists-slider--item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #41a63e;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
  padding: 6px;
}

@media screen and (min-width: 992px) {
  .specialists-slider--item {
    background-color: transparent;
    border-radius: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}
.specialists-slider--item-avatar {
  background-color: hsla(0, 0%, 100%, 0.2);
  border: 1px solid #fff;
  border-radius: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0;
  margin-right: 16px;
  overflow: hidden;
  width: 75px;
}

@media screen and (min-width: 992px) {
  .specialists-slider--item-avatar {
    border: none;
    margin-bottom: 16px;
    margin-right: 0;
    width: auto;
  }
}
.specialists-slider--item-meta {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.specialists-slider--item-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

@media screen and (min-width: 992px) {
  .specialists-slider--item-name {
    color: #000;
    font-size: 20px;
    line-height: 24px;
  }
}
.specialists-slider--item-title {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

@media screen and (min-width: 992px) {
  .specialists-slider--item-title {
    color: #000;
    font-size: 20px;
    line-height: 24px;
  }
}
.specialists-slider--item-description {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

@media screen and (min-width: 992px) {
  .specialists-slider--item-description {
    color: #6f6f6f;
    font-size: 20px;
    line-height: 24px;
  }
}
/*начало стыдливый хак*/
.specialists-slider .specialists-slider--pagination {
  position: relative;
  top: 0;
}

.specialists-slider .swiper-pagination-bullet:nth-child(7) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-54px);
  -ms-transform: translateX(-54px);
  transform: translateX(-54px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(8) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-36px);
  -ms-transform: translateX(-36px);
  transform: translateX(-36px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(9) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-18px);
  -ms-transform: translateX(-18px);
  transform: translateX(-18px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(10) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(11) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(12) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(36px);
  -ms-transform: translateX(36px);
  transform: translateX(36px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(13) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(54px);
  -ms-transform: translateX(54px);
  transform: translateX(54px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(14) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(72px);
  -ms-transform: translateX(72px);
  transform: translateX(72px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(15) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(90px);
  -ms-transform: translateX(90px);
  transform: translateX(90px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(16) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(108px);
  -ms-transform: translateX(108px);
  transform: translateX(108px);
  border: 1px solid transparent;
}

.specialists-slider .swiper-pagination-bullet:nth-child(17) {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(126px);
  -ms-transform: translateX(126px);
  transform: translateX(126px);
  border: 1px solid transparent;
}


.specialists-slider .swiper-pagination-bullet-active {
  border: 1px solid #41a63e !important;
}

/*конец стыдливый хак*/
/*==============*/
@media screen and (max-width: 993px) {
  .specialists .specialists-slider--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: transparent;
    border-radius: none;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
  .specialists .specialists-slider--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: transparent;
    border-radius: none;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .specialists .specialists-slider--item-avatar {
    border: none;
    margin-bottom: 16px;
    margin-right: 0;
    width: auto;
    width: 268px;
    height: 268px;
  }
  .specialists .specialists-slider--item-name {
    color: #000;
    font-size: 20px;
    line-height: 24px;
  }
  .specialists .specialists-slider--item-title {
    color: #000;
    font-size: 20px;
    line-height: 24px;
  }
  .specialists .specialists-slider--slide {
    width: 50%;
  }
  .specialists .specialists-slider--item-meta {
    text-align: center;
  }
}
.specialists .specialists-slider--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*10 с 2015 г.*/
.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  row-gap: 8px;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  text-align: center;
}

.advantages .title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  white-space: nowrap;
}

.advantages p {
  margin: 0;
}

.advantages-item {
  margin: 12px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

@media only screen and (min-width: 992px) {
  .advantages {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .advantages {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .advantages-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
  }
  .advantages-item:nth-child(2) {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .advantages-item:nth-child(2) .title {
    margin-right: 3px;
  }
  .advantages .wp-block-stackable-column:first-child .stk-block-text__text strong {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .advantages .title {
    min-width: 130px;
    width: 160px;
    margin-bottom: 0;
    text-align: right !important;
  }
  .advantages p {
    max-width: 130px;
    width: 100%;
  }
  .advantages p {
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
    margin-left: 9px;
  }
}
/* отзывы */
.reviews-main {
  position: relative;
}

.reviews-main--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

.reviews-main--list-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 32px;
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-main--list-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-bottom: 48px;
    max-width: 50%;
  }
}
.reviews-main--list-item--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 100%;
}

.reviews-main--list-item--content--bubble {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 16px;
  line-height: 24px;
  padding: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-main--list-item--content--bubble {
    padding: 32px;
  }
}
.reviews-main--list-item--content--bubble p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-main--list-item--content--bubble p:last-child {
  margin-bottom: 0;
}

.reviews-main--list-item--content--bubble-tail {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 12px;
  height: 0;
  margin-left: 35px;
  width: 0;
}

.reviews-main--list-item--content--user {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 16px;
}

.reviews-main--list-item--content--avatar {
  -ms-flex-negative: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  flex-shrink: 0;
  height: 50px;
  margin-left: 8px;
  margin-right: 8px;
  overflow: hidden;
  width: 50px;
}

.reviews-main--list-item--content--avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-main--list-item--content--name {
  color: #000;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
}

.reviews-secondary {
  position: relative;
}

.reviews-slider {
  margin: 0 24px;
  position: static;
}

.reviews-slider--button-next,
.reviews-slider--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  height: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
}

@media screen and (min-width: 992px) {
  .reviews-slider--button-next,
  .reviews-slider--button-prev {
    font-size: 24px;
    height: 40px;
    width: 40px;
  }
}
.reviews-slider--button-prev {
  left: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-slider--button-prev {
    left: 24px;
  }
}
.reviews-slider--button-next {
  right: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-slider--button-next {
    right: 24px;
  }
}
.reviews-slider--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
}

.reviews-slider--pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
  height: 10px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 10px;
}

.reviews-slider--pagination .swiper-pagination-bullet-active,
.reviews-slider--pagination .swiper-pagination-bullet:hover {
  background-color: #fff;
}

.reviews-slider--slide {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
}

.reviews-slider--item,
.reviews-slider--slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews-slider--item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  max-width: 600px;
}

.reviews-slider--item-text {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 24px;
  text-align: center;
}

.reviews-slider--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider--item-avatar {
  background-color: hsla(0, 0%, 100%, 0.2);
  border-radius: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100px;
  margin: 0 auto 16px;
  overflow: hidden;
  width: 100px;
}

.reviews-slider--item-avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-slider--item-name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  text-align: center;
}

.reviews-more {
  position: relative;
}

.reviews-more--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -16px;
  margin-right: -16px;
  padding-top: 32px;
}

@media screen and (min-width: 992px) {
  .reviews-more--list {
    padding-top: 48px;
  }
}
.reviews-more--list-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 32px;
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (min-width: 576px) {
  .reviews-more--list-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .reviews-more--list-item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    margin-bottom: 48px;
    max-width: 25%;
  }
}
.reviews-more--list-item--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.reviews-more--list-item--avatar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 200px;
  margin: 0 auto 16px;
  overflow: hidden;
  width: 200px;
}

.reviews-more--list-item--avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-more--list-item--name {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 16px;
  text-align: center;
}

.reviews-more--list-item--text {
  color: #6f6f6f;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.reviews-more--list-item--text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-more--list-item--text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-double {
  margin: 0;
  padding-bottom: 64px;
  position: relative;
}

.reviews-slider-double--slide {
  height: auto;
}

.reviews-slider-double--button-next,
.reviews-slider-double--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #41a63e;
  border-radius: 100%;
  bottom: 0;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  height: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 50px;
}

.reviews-slider-double--button-prev {
  left: 0;
}

.reviews-slider-double--button-next {
  right: 0;
}

.reviews-slider-double--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 16px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  padding: 0 64px;
  position: absolute;
  right: 0;
}

.reviews-slider-double--pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #41a63e;
  border-radius: 16px;
  height: 16px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 16px;
}

.reviews-slider-double--pagination .swiper-pagination-bullet-active {
  background-color: #41a63e;
}

.reviews-slider-double--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding-right: 16px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-double--item {
    border-right: 3px solid rgba(19, 178, 58, 0.5);
    margin-right: -3px;
    padding-right: 64px;
  }
}
.reviews-slider-double--item-quotes {
  height: 83px;
  margin-bottom: 16px;
}

.reviews-slider-double--item-text {
  color: #000;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 24px;
}

.reviews-slider-double--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider-double--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-double--item-meta {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

.reviews-slider-double--item-avatar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 120px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 120px;
  margin-right: 32px;
  overflow: hidden;
  width: 120px;
}

.reviews-slider-double--item-avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-slider-double--item-name {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
}

.reviews-slider-single {
  margin: 0;
  padding-bottom: 64px;
  position: relative;
}

.reviews-slider-single--slide {
  height: auto;
}

.reviews-slider-single--button-next,
.reviews-slider-single--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #41a63e;
  border-radius: 100%;
  bottom: 0;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  height: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 50px;
}

.reviews-slider-single--button-prev {
  left: 0;
}

.reviews-slider-single--button-next {
  right: 0;
}

.reviews-slider-single--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 16px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  padding: 0 64px;
  position: absolute;
  right: 0;
}

.reviews-slider-single--pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #41a63e;
  border-radius: 16px;
  height: 16px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 16px;
}

.reviews-slider-single--pagination .swiper-pagination-bullet-active {
  background-color: #41a63e;
}

.reviews-slider-single--item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .reviews-slider-single--item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.reviews-slider-single--item-text {
  color: #000;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 24px;
  max-height: 190px;
  overflow-x: hidden;
  overflow-y: auto;
}

.reviews-slider-single--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider-single--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-single--item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .reviews-slider-single--item-meta {
    width: auto;
  }
}
.reviews-slider-single--item-avatar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100px;
  margin-bottom: 16px;
  margin-right: 0;
  overflow: hidden;
  width: 100px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-single--item-avatar {
    border-radius: 120px;
    height: 120px;
    margin-bottom: 0;
    margin-right: 32px;
    width: 120px;
  }
}
.reviews-slider-single--item-avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-slider-single--item-name {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 24px;
}

.reviews-slider-extended {
  position: relative;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.reviews-slider-extended--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0 !important;
}

.reviews-slider-extended--slide {
  height: auto;
}

.reviews-slider-extended--item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.reviews-slider-extended--item,
.reviews-slider-extended--item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews-slider-extended--item-top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 16px;
}

.reviews-slider-extended--item-avatar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0;
  margin-right: 16px;
  max-width: 100px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--item-avatar {
    max-width: 190px;
  }
}
.reviews-slider-extended--item-meta {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.reviews-slider-extended--item-name {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--item-name {
    font-size: 20px;
    line-height: 24px;
  }
}
.reviews-slider-extended--item-subtitle {
  color: #41a63e;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 8px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--item-subtitle {
    font-size: 20px;
    line-height: 24px;
  }
}
.reviews-slider-extended--item-text {
  color: #000;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--item-text {
    font-size: 20px;
    line-height: 24px;
  }
}
.reviews-slider-extended--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider-extended--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-extended--button-next,
.reviews-slider-extended--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e2e2e2;
  border-radius: 100%;
  color: #41a63e;
  cursor: pointer;
  display: none;
  font-size: 24px;
  height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  z-index: 1;
}

.reviews-slider-extended--button-next.swiper-button-disabled,
.reviews-slider-extended--button-prev.swiper-button-disabled {
  opacity: 0.5;
}

@media screen and (min-width: 992px) {
  .reviews-slider-extended--button-next,
  .reviews-slider-extended--button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.reviews-slider-extended--button-prev {
  left: 0;
}

.reviews-slider-extended--button-next {
  right: 0;
}

.reviews-slider-extended--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
}

.reviews-slider-extended--pagination .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #41a63e;
  border-radius: 10px;
  height: 10px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 10px;
}

.reviews-slider-extended--pagination .swiper-pagination-bullet-active,
.reviews-slider-extended--pagination .swiper-pagination-bullet:hover {
  background-color: #41a63e;
}

.reviews-slider-video {
  position: relative;
}

@media screen and (min-width: 992px) {
  .reviews-slider-video {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.reviews-slider-video--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0 !important;
}

.reviews-slider-video--slide {
  height: 100%;
}

.reviews-slider-video--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.reviews-slider-video--item-avatar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 16px;
  overflow: hidden;
  width: 100%;
}

.reviews-slider-video--item-avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.reviews-slider-video--item-text {
  color: #000;
  font-size: 16px;
  font-size: 20px;
  line-height: 20px;
  line-height: 24px;
  margin-top: 16px;
}

.reviews-slider-video--item-text p {
  margin-bottom: 8px;
  margin-top: 0;
}

.reviews-slider-video--item-text p:last-child {
  margin-bottom: 0;
}

.reviews-slider-video--item-name {
  color: #000;
  font-size: 16px;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  line-height: 24px;
}

.reviews-slider-video--item-name > span {
  font-weight: 700;
}

.reviews-slider-video--button-next,
.reviews-slider-video--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e2e2e2;
  border-radius: 100%;
  color: #41a63e;
  cursor: pointer;
  display: none;
  font-size: 24px;
  height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  z-index: 1;
}

.reviews-slider-video--button-next.swiper-button-disabled,
.reviews-slider-video--button-prev.swiper-button-disabled {
  opacity: 0.5;
}

@media screen and (min-width: 992px) {
  .reviews-slider-video--button-next,
  .reviews-slider-video--button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.reviews-slider-video--button-prev {
  left: 0;
}

.reviews-slider-video--button-next {
  right: 0;
}

.reviews-slider-video--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
}

.reviews-slider-video--pagination .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #41a63e;
  border-radius: 10px;
  height: 10px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 10px;
}

.reviews-slider-video--pagination .swiper-pagination-bullet-active,
.reviews-slider-video--pagination .swiper-pagination-bullet:hover {
  background-color: #41a63e;
}

/******************/
.stk-9b2b160 .stk-block-text__text {
  font-size: 16px !important;
}

@media screen and (max-width: 1023px) {
  .stk-9b2b160 .stk-block-text__text {
    font-size: 16px !important;
  }
}
/*13сканы*/
.scans img {
  display: block;
}

.scans {
  position: relative;
}

.scans-slider {
  position: relative;
  padding-bottom: 1px;
}

@media screen and (min-width: 992px) {
  .scans-slider {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.scans-slider > div {
  overflow: hidden;
}

.scans-slider .scans-slider--wrapper {
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0 !important;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.scans-slider .scans-slider--wrapper .scans-slider--slide {
  height: 100%;
}

.scans-slider .scans-slider--wrapper .scans-slider--slide figure {
  border: 1px solid #41a63e;
  border-radius: 5px;
  overflow: hidden;
  margin: 0;
}

@media screen and (min-width: 992px) {
  .scans-slider .scans-slider--wrapper .scans-slider--slide figure {
    border-color: #000;
    border-radius: 0;
  }
}
.scans-slider--button-next,
.scans-slider--button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e2e2e2;
  border-radius: 100%;
  color: #41a63e;
  cursor: pointer;
  display: none;
  font-size: 24px;
  height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  z-index: 1;
}

.scans-slider--button-next.swiper-button-disabled,
.scans-slider--button-prev.swiper-button-disabled {
  opacity: 0.5;
}

@media screen and (min-width: 992px) {
  .scans-slider--button-next,
  .scans-slider--button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.scans-slider--button-prev {
  left: 0;
}

.scans-slider--button-next {
  right: 0;
}

.scans-slider--pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
}

.scans-slider--pagination .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #41a63e;
  border-radius: 10px;
  height: 10px;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  width: 10px;
}

.scans-slider--pagination .swiper-pagination-bullet-active,
.scans-slider--pagination .swiper-pagination-bullet:hover {
  background-color: #41a63e;
}

.questions {
  font-size: 20px;
  position: relative;
}

.questions summary {
  background-color: #41a63e;
  color: #fff;
  font-weight: 700;
  padding-top: 28px;
  padding-right: 60px;
  padding-bottom: 28px;
  padding-left: 36px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.questions summary::after {
  content: "";
  background-image: url(../img/svg/plus.svg);
  width: 16px;
  height: 16px;
  display: block;
  background-size: contain;
  position: absolute;
  right: 36px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.questions [open] summary::after {
  background-image: url(../img/svg/minus.svg);
}

.questions__text {
  padding-top: 58px;
  padding-right: 36px;
  padding-bottom: 28px;
  padding-left: 36px;
  margin-top: -30px;
  margin-right: 32px;
  margin-left: 32px;
  background-color: #eeeeee;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .questions {
    font-size: 16px;
  }
  .questions summary {
    padding-top: 22px;
    padding-right: 60px;
    padding-bottom: 22px;
    padding-left: 22px;
    border-radius: 12px;
  }
  .questions summary::after {
    right: 22px;
  }
  .questions__text {
    padding-top: 30px;
    padding-right: 10px;
    padding-bottom: 18px;
    padding-left: 18px;
    margin-top: -12px;
    margin-right: 16px;
    margin-left: 16px;
    border-radius: 12px;
  }
}
/* Убираем стандартный маркер Chrome */
details summary::-webkit-details-marker {
  display: none;
}

/* Убираем стандартный маркер Firefox */
details > summary {
  list-style: none;
}

.questions details {
  padding-bottom: 24px;
}

.questions details:last-child {
  padding-bottom: 0;
}

/*Контакты*/
.contact .title {
  margin-bottom: 10px;
}

.contact {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  width: 100%;
  max-width: 780px !important;
  line-height: 19px;
}

.contact h3 {
  margin-bottom: 24px;
  font-size: 20px;
  text-align: center;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .contact .title {
    font-size: 24px;
    line-height: 1.1em;
  }
  .contact h3 {
    font-size: 16px;
    line-height: 1.5;
  }
}
.contact__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.contact__grid textarea {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  margin-bottom: 16px;
}

.contact__grid label {
  margin-bottom: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

@media screen and (max-width: 991px) {
  .contact__grid label {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.contact input[type=date],
.contact input[type=email],
.contact input[type=tel],
.contact input[type=text],
.contact input[type=time],
.contact textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  outline: none;
  padding: 6px 16px;
  width: 100%;
  font-family: "ProximaNova", sans-serif;
}

.contact textarea {
  height: 70px;
  min-height: 48px;
  padding-bottom: 0;
  resize: vertical;
}

.contact__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact__column {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 16px;
}

.contact__column > * {
  display: block;
}

.contact__column label span {
  margin-left: 8px;
}

.contact-form--link {
  line-height: 20px;
  padding-top: 16px !important;
  color: #41a63e;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
}

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

.contact-form--block {
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-form--row a {
  padding-left: 8px;
  padding-right: 8px;
  display: block;
}

.contact-form--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal-header {
  background-color: #41a63e;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 18px 16px;
  color: #fff;
  font-weight: 700;
  text-align: left !important;
  line-height: 20px;
  margin: 0;
  position: relative;
}

.modal-backdrop {
  background-color: #000;
  bottom: 0;
  opacity: 0;
  right: 0;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}

.modal.fade.in .modal-backdrop {
  opacity: 0.5;
}

.modal, .modal-backdrop {
  left: 0;
  position: fixed;
  top: 0;
}

.modal {
  height: 100%;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  z-index: -1;
  padding-left: 16px;
  padding-right: 16px;
}

.fade.in {
  opacity: 1;
  z-index: 100;
  -webkit-transform: scale(100%);
  -ms-transform: scale(100%);
  transform: scale(100%);
}

@media screen and (min-width: 576px) {
  .modal-header {
    padding-right: 32px;
  }
}
.modal .contact {
  position: relative;
  z-index: 5;
  padding: 0;
  min-height: calc(100% - 64px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-wrapper {
  background-color: #fff;
  padding: 16px;
}

@media screen and (min-width: 576px) {
  .modal .contact {
    margin: 32px auto;
    max-width: 600px;
  }
}
.modal .close-btn {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.modal-header .close-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  cursor: pointer;
}

.modal .close-btn span:after {
  content: "";
  width: 20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background: #fff;
}

.modal .close-btn span::before {
  display: none;
}

.modal .close-btn span {
  width: 20px;
  -webkit-transform: rotate(45deg) scale(0.8);
  -ms-transform: rotate(45deg) scale(0.8);
  transform: rotate(45deg) scale(0.8);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background: #fff;
}

.modal .contact__column {
  width: 100%;
}

/*========= ПОЛИТИКА ===========*/
/*модальное окно*/
.box_window2 {
  position: fixed;
  left: 50%;
  top: 2%;
  max-height: 90vh;
  width: 550px;
  margin-left: -275px;
  /*padding: 25px 0px 30px;*/
  display: none;
  -webkit-box-shadow: 0px 0px 1px 0px #ccc;
  box-shadow: 0px 0px 1px 0px #ccc;
  border-radius: 10px;
  background: #f8f8f8;
  border-radius: 10px;
  z-index: 99999;
  overflow-y: auto;
}

.bw_close {
  display: none;
}

.id6 {
  max-height: 80vh;
  overflow: auto;
  position: relative;
  z-index: 13;
  background: #fff;
  padding: 25px 0px 30px;
  line-height: 1;
}

.box_window2 h2 {
  font-size: 16px;
  text-align: center;
  font-weight: 800;
  color: #000;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 0;
}

.box_window2 p {
  font-size: 14px;
  color: #000;
  display: block;
  padding: 0px 10px;
  text-align: left;
  margin: 0;
}

p.black {
  font-weight: bold;
  padding: 10px 10px 3px;
}

.mask {
  position: fixed;
  background: rgba(0, 0, 0, 0.38);
  display: none;
  height: 100%;
  width: 100%;
  z-index: 12;
  left: 0;
  top: 0;
}

.box_window2.windactiv {
  display: block;
}

.box_window2.windactiv .mask {
  display: block;
}

.popbutton {
  cursor: pointer;
}

.popbutton2 {
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .box_window2.windactiv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    padding-top: 15px;
    min-height: 100vh;
  }
  .box_window2 {
    width: 100%;
    margin: 0;
    left: 0;
  }
  .box_window2 .id6 {
    margin: 0 20px;
    border-radius: 10px;
  }
}

/*========= ПОЛИТИКА ===========*/
/*модальное окно*/
.box_window {
  position: fixed;
  left: 50%;
  top: 2%;
  max-height: 90vh;
  width: 550px;
  margin-left: -275px;
  /*padding: 25px 0px 30px;*/
  display: none;
  -webkit-box-shadow: 0px 0px 1px 0px #ccc;
  box-shadow: 0px 0px 1px 0px #ccc;
  border-radius: 10px;
  background: #f8f8f8;
  border-radius: 10px;
  z-index: 99999;
  overflow-y: auto;
}

.bw_close {
  display: none;
}

.id6 {
  max-height: 80vh;
  overflow: auto;
  position: relative;
  z-index: 13;
  background: #fff;
  padding: 25px 0px 30px;
  line-height: 1;
}

.box_window h2 {
  font-size: 16px;
  text-align: center;
  font-weight: 800;
  color: #000;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 0;
}

.box_window p {
  font-size: 14px;
  color: #000;
  display: block;
  padding: 0px 10px;
  text-align: left;
  margin: 0;
}

p.black {
  font-weight: bold;
  padding: 10px 10px 3px;
}

.mask {
  position: fixed;
  background: rgba(0, 0, 0, 0.38);
  display: none;
  height: 100%;
  width: 100%;
  z-index: 12;
  left: 0;
  top: 0;
}

.box_window.windactiv {
  display: block;
}

.box_window.windactiv .mask {
  display: block;
}

.popbutton {
  cursor: pointer;
}

.popbutton2 {
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .box_window.windactiv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    padding-top: 15px;
    min-height: 100vh;
  }
  .box_window {
    width: 100%;
    margin: 0;
    left: 0;
  }
  .box_window .id6 {
    margin: 0 20px;
    border-radius: 10px;
  }
}

/*модалное окно благодарности*/
.modal-backdrop {
  background-color: #000;
  bottom: 0;
  opacity: 0.5;
  right: 0;
  z-index: 2;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.fade.in {
  opacity: 0.5;
}

.modal-dialog {
  margin: 16px;
  pointer-events: none;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  width: auto;
}

.modal.fade .modal-dialog {
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.modal-dialog.modal-dialog-centered {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100% - 32px);
  z-index: 5;
}

@media screen and (min-width: 576px) {
  .modal-dialog.modal-dialog-centered {
    min-height: calc(100% - 64px);
  }
  .modal-dialog {
    margin: 32px auto;
    max-width: 600px;
  }
  .modal-dialog.modal-dialog-md {
    max-width: 900px;
  }
}
.modal-content {
  -webkit-box-orient: vertical;
  background-clip: padding-box;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -ms-flex-direction: column;
  flex-direction: column;
  outline: 0;
  pointer-events: auto;
  position: relative;
  width: 100%;
}

.modal-content,
.modal-header {
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #41a63e;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 16px;
}

#webinar-modal .modal-header {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (min-width: 576px) {
  #webinar-modal .modal-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
#webinar-modal .modal-header div {
  display: none;
}

@media screen and (min-width: 576px) {
  #webinar-modal .modal-header div {
    display: block;
  }
}
.modal-content, .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-body {
  padding: 16px;
}

.form-information--icon,
.form-information--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-information--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-information--icon__success {
  color: #41a63e;
}

.form-information--icon {
  font-size: 80px;
  margin-bottom: 16px;
}

.form-information--title {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 16px;
  padding: 0;
  text-align: center;
}

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

.modal-footer {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal .cancel, .modal .ok {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #41a63e;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 8px;
  padding: 12px 24px;
}
/*# sourceMappingURL=main.css.map */

input.error,
textarea.error{
    border: 1px solid red!important;
    transition: .3s all ease-in-out;
}

label.error{
    color: red!important;
    transition: .3s all ease-in-out;
}

form{
    position: relative;
}
  
.form--load{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(256, 256, 256, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s all ease-in-out;
}
  
.form--load img{
    width: 40px;
    height: 40px;
    animation: rotating 2s linear infinite;
    transform-origin: center center;
}
  
@keyframes rotating {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
  
form.load .form--load{
    opacity: 1;
    pointer-events: inherit;
}


.rud--study{
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 1;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  padding-top: 120px;
}

.container{
  max-width: 1330px;
  width: 100%;
  padding: 0 20px;
}

.rud--study__wrap{
  display: flex;
  width: 100%;
}

.rud--study .container{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0px 0px!important;
  min-height: 500px;
  overflow: hidden;
}

.rud--study__item{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rud--study__item--wrap{
  width: 100%;
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rud--study__img{
  display: flex;
  width: calc(50% - 65px);
  height: 100%;
  left: 0;
}

.rud--study__img img{
  width: 100%;
  min-width: 760px;
  position: relative;
  top: 10px;
  left: 10px;
}

.rud--study__info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20px;
  margin: 0 0 0 auto;
}

.rud--study__info--title{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #41A63E !important;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 64.8px */
  width: 100%;
  max-width: 486px;
}


.rud--study__info h1{
  display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #41A63E !important;
    font-size: 72px !important;
    font-style: normal;
    font-weight: 800 !important;
    line-height: 90% !important;
    width: 100%;
    max-width: 486px;
    margin-bottom: 24px;
    margin-top: 0px;
}

.rud--study__info p{
  color: #1E1E1E;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 36px */
  margin-bottom: 16px; 
}

.rud--study__info--avantages{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 486px;
  margin-bottom: 24px;
}

.rud--study__info--avantages__wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rud--study__info--avantages__wrap .rud--study__info--avantages--item:nth-child(1){
  margin-bottom: 12px;
}

.rud--study__info--avantages--item{
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
}

.rud--study__info--avantages--item svg{
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 8px;
}

.rud--study__info--avantages--item span{
  display: flex;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rud--study__info a{
  padding: 16px 36px;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  background-color: #41A63E;
  border-radius: 64px;
  transition: .3s all ease-in-out;
  cursor: pointer;
}

.rud--study__info a:hover{
  background-color: #238D20;
}

.rud--family{
  background-color: #CEF2DF;
}

.rud--family .rud--study__img img{
  top: 35px;
}

.rud--family_two{
  background: #E5FFE4;
}


.rud--family_eight .rud--study__img img{
  top: 40px;
}

.rud--family_eight .rud--study__info p{
  color: #fff;
}

.rud--family_nine{
  background-color: #E1EFFF;
}

.rud--family_nine .rud--study__img img{
  top: 40px;
}

.rud--study__info p{
  display: flex;
  margin-bottom: 16px;
  color: #000;
  font-size: 36px;
  line-height: 90%; 
  margin-top: 0px;
}

@media screen and (max-width: 1330px){
  .rud--study__img{
      position: relative;
      left: -5px;
  }
}

@media screen and (max-width: 1300px){
  .rud--study{
      height: auto;
  }

  .rud--study .container{
      min-height: auto;
  }
}

@media screen and (max-width: 1265px){
  .rud--study .container{
      min-height: 430px;
  }

  .rud--study__img img{
      right: 100px;
      min-width: 650px;
      top: 38px;
  }

  .rud--study__info--title{
      font-size: 54px;
  }

  .rud--study__info p{
      font-size: 24px!important;
  }

}

@media screen and (max-width: 1100px){
  .rud--study__info h1{
      font-size: 36px !important;
  } 

  .rud--study__info p{
      font-size: 32px;
  }

  .rud--study__img img {
      right: 125px;
  }
}

@media screen and (max-width: 1070px){
  .rud--study__info{
      width: calc(50% - 20px);
  }
}

@media screen and (max-width: 1100px){
  .rud--study__img img {
      right: 160px;
      min-width: 550px;
 
  }
}

@media screen and (max-width: 972px){
  .rud--study__item--wrap{
      flex-direction: column;
      align-items: center;
  }

  .rud--study__img{
      width: 100%;
      margin-bottom: 30px;
  }

  .rud--study__img img{
      right: unset;
      width: 100%;
      top: unset;
      left: 5px;
  }

  .rud--study__info{
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      padding-right: unset;
      padding: 0 20px 49px 0;
  }
}

@media screen and (max-width: 800px){
  .rud--study__img img{
      right: unset;
      width: 100%;
      top: unset;
  }
}

@media screen and (max-width: 768px){
  .rud--study{
      margin-bottom: 60px;
      padding-top: 70px;
  }

  .rud--study__item--wrap{
      padding-bottom: 40px;
  }

  .rud--study__info{
      padding: 0 24px;
  }

  .rud--study__info--title{
      font-size: 36px;
  }

  .rud--study__info p{
      font-size: 24px;
      margin-bottom: 16px;
  }

  .rud--study__info--avantages{
      margin-bottom: 16px;
  }

  .rud--study__info--avantages{
      flex-direction: column;
      align-items: flex-start;
  }

  .rud--study__info--avantages{
      margin-bottom: 8px;
  }

  .rud--study__info--avantages__wrap .rud--study__info--avantages--item:nth-child(2){
      margin-bottom: 12px;
  }



}

@media screen and (max-width: 600px){
  .rud--study__img img{
          width: 100%;
          min-width: 500px;
          position: unset;
          height: unset;
      }
}

@media screen and (max-width: 500px){
  .rud--study__info a{
      display: flex;
      justify-content: center;
      width: 100%;
  }
}

@media screen and (max-width: 478px){
  .rud--study__img img{
          min-width: 370px;
      }
      
}




.rud--study__prev{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  max-width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-35%) translateX(-100%);
  left: 35px;
  z-index: 2;
  transition: .3s all ease-in-out;
  cursor: pointer;
  z-index: 2;
}

.rud--study__next{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  max-width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-35%) translateX(100%);
  right: 35px;
  z-index: 2;
  transition: .3s all ease-in-out;
  cursor: pointer;
}

.rud--study__next svg{
  transform: rotate(180deg);
  width: 15px;
  height: 26px;
  stroke: #000;
}

.rud--study__prev svg{
  width: 15px;
  height: 26px;
  stroke: #000;
}

.rud--study__prev:hover svg{
  stroke: #fff;
}

.rud--study__prev:hover{
  background-color: #41A63E;
}

.rud--study__next:hover{
  background-color: #41A63E;
}

.rud--study__next:hover svg{
  stroke: #fff;
}

.rud--slider--item{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}

.swiper-slide{
  display: flex;
  flex-direction: column;

}

.rud--slider--item iframe{
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1.1;
}

.rud--swiper{
  width: 100%;
  overflow: hidden;
}

.rud--slider--title{
  display: flex;
  color: #1E1E1E;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 48px */
  margin-bottom: 36px;
}


.rud--skider--wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 48px;
}

.rud--link--wrap{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rud--slider__link{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 64px;
  background: #41A63E;
  padding: 16px 36px;
  margin: 0 auto;
  transition: .3s all ease-in-out;
  position: relative;
  z-index: 1;
}

.rud--link--wrap::after,
.rud--link--wrap::before{
  content: '';
  display: block;
  width: calc(50% - 150px);
  height: 1px;
  background: #E2E2E2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.rud--link--wrap::after{
  left: 0;
}

.rud--link--wrap::before{
  right: 0;
}

.rud--slider__link:hover{
  background-color: #238D20;
}

.rud--slider__link span{
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 10px;
}

.rud--slider__link svg{
  width: 4px;
  height: 12px;
}

.rud--link--wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  background-color: #fff;
}

@media screen and (max-width: 1365px){
  .rud--study__next{
      right: 45px;
  }

  .rud--study__prev{
      left: 45px;
  }
}

@media screen and (max-width: 768px){
  .rud--slider{
      margin-bottom: 80px;
  }

  .rud--slider .container{
      padding: 0 24px!important;
  }

  .rud--slider--title{
      font-size: 36px;
      margin-bottom: 36px;
  }

  .rud--study__prev,
  .rud--study__next{
      width: 48px;
      height: 48px;
      min-width: 48px;
  }

  .rud--study__next{
      right: 25px;
      transform: translateY(-95%) translateX(100%);
  }

  .rud--study__prev{
      left: 25px;
      transform: translateY(-95%) translateX(-100%);
  }

  .rud--study__prev svg,
  .rud--study__next svg{
      width: 9px;
      height: 18px;
  }

  .rud--link--wrap{
      padding: 0 16px;
  }
  
}

@media screen and (max-width: 380px){
  .rud--slider{
      margin-bottom: 80px;
  }

  .rud--slider .container{
      padding: 0 24px!important;
  }

  .rud--slider--title{
      font-size: 36px;
      margin-bottom: 36px;
  }

  .rud--study__prev,
  .rud--study__next{
      width: 48px;
      height: 48px;
      min-width: 48px;
  }

  .rud--study__next{
      right: 25px;
      transform: translateY(-75%) translateX(100%);
  }

  .rud--study__prev{
      left: 25px;
      transform: translateY(-75%) translateX(-100%);
  }

  .rud--study__prev svg,
  .rud--study__next svg{
      width: 9px;
      height: 18px;
  }

  .rud--link--wrap{
      padding: 0 16px;
  }
  
}









