@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

html {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: #000;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}

.burger-mobile {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: rgb(91, 68, 157);
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 12;
}
@media (max-width: 992px) {
  .burger-mobile {
    display: flex;
  }
}

.burger {
  display: none;
  position: relative;
  width: 14px;
  height: 12px;
  top: -3px;
  cursor: pointer;
  z-index: 111;
}
.burger.open:before {
  background: rgb(232, 224, 56);
  transform: rotate(-45deg);
  top: 8px;
  height: 2px;
  border-radius: 2px;
}
.burger.open:after {
  background: rgb(232, 224, 56);
  top: 8px;
  transform: rotate(45deg);
  height: 2px;
  border-radius: 2px;
}
.burger.open span:before {
  display: none;
}
.burger:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 2px;
  background: rgb(232, 224, 56);
  transition: 0.5s;
  border-radius: 2px;
}
.burger:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 14px;
  height: 2px;
  background: rgb(232, 224, 56);
  transition: 0.5s;
  border-radius: 2px;
}
.burger span {
  position: relative;
  display: block;
  width: 14px;
  height: 12px;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 14px;
  height: 2px;
  background: rgb(232, 224, 56);
  border-radius: 2px;
}
@media (max-width: 992px) {
  .burger {
    display: block;
  }
}

.wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .wrapper {
    flex-direction: column;
  }
}

.aside {
  position: fixed;
  width: 325px;
  min-width: 325px;
  background: rgb(91, 68, 157);
  height: 100vh;
  z-index: 13;
}
@media (max-width: 992px) {
  .aside {
    width: 100%;
    height: auto;
    position: relative;
  }
}

.logo-block {
  padding: 25px 30px;
  margin-bottom: 10px;
  width: 100%;
}
@media (max-width: 992px) {
  .logo-block {
    background: #fff;
    text-align: center;
    margin-bottom: 0;
  }
}

.logo {
  font-weight: 700;
  line-height: 32px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  white-space: nowrap;
}
.logo svg {
  width: 100%;
  color: #fff;
}
@media (max-width: 992px) {
  .logo {
    color: #000;
  }
}
.logo small {
  font-family: "Commissioner", sans-serif;
  display: block;
  text-transform: none;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
}

.main {
  width: 100%;
  padding-left: 325px;
}
@media (max-width: 992px) {
  .main {
    padding-left: 0;
  }
}

.side-menu {
  position: relative;
}
@media (max-width: 992px) {
  .side-menu ul.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgb(91, 68, 157);
  }
}
.side-menu ul.mobile-menu.open {
  display: block;
}
.side-menu ul.top-menu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 992px) {
  .side-menu ul.top-menu li {
    position: relative;
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .side-menu ul.top-menu li .icon {
    display: none;
  }
}
@media (max-width: 992px) {
  .side-menu ul.top-menu li a {
    justify-content: center;
    background: rgb(82, 58, 152);
  }
}
.side-menu ul .arrow {
  display: none;
}
@media (max-width: 992px) {
  .side-menu ul .arrow {
    display: block;
    margin-left: 10px;
    position: relative;
    top: -2px;
  }
}
.side-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.side-menu ul li:last-child {
  border-bottom: 0;
}
.side-menu ul li.active a {
  background: rgb(83, 62, 144);
}
.side-menu ul li a {
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 2%;
  text-transform: uppercase;
  height: 64px;
  padding: 12px 28px;
  cursor: pointer;
  transition: 0.5s;
}
@media (max-width: 992px) {
  .side-menu ul li a {
    height: 50px;
    padding-left: 18px;
  }
}
.side-menu ul li a:hover {
  background: rgb(83, 62, 144);
}
.side-menu ul li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-right: 16px;
}
.side-menu ul li a .icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

h2 {
  font-size: 39px;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  h2 {
    text-align: center;
    font-size: 26px;
    line-height: 32px;
  }
}

h3 {
  font-size: 23px;
  font-weight: 700;
  line-height: 52px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  h3 {
    text-align: center;
    font-size: 18px;
    line-height: 22px;
  }
}

.description-title {
  color: rgb(96, 91, 109);
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .description-title {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
  }
}

.main-section__content {
  position: relative;
  height: 660px;
  padding: 80px 30px 70px 80px;
}
@media (max-width: 1440px) {
  .main-section__content {
    height: 500px;
  }
}
@media (max-width: 1280px) {
  .main-section__content {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .main-section__content {
    height: auto;
    padding: 20px 15px;
  }
}
.main-section__img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 992px) {
  .main-section__img {
    position: relative;
    display: flex;
    justify-content: flex-end;
    right: -15px;
  }
}
.main-section__img img {
  height: 660px;
}
@media (max-width: 1440px) {
  .main-section__img img {
    height: 500px;
  }
}
@media (max-width: 1280px) {
  .main-section__img img {
    height: 400px;
  }
}
.main-section h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .main-section h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
  }
}
.main-section h1 span {
  display: block;
  font-size: 39px;
  font-weight: 500;
  line-height: 44px;
  padding-top: 10px;
}
@media (max-width: 992px) {
  .main-section h1 span {
    font-size: 32px;
  }
}
.main-section p {
  color: rgb(96, 91, 109);
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .main-section p {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .main-section .btn {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0;
    height: 55px;
  }
}
@media (max-width: 390px) {
  .main-section .btn {
    bottom: 0px;
  }
}

/* 8 */
.btn {
  height: 40px;
  color: #000;
  border-radius: 5px;
  position: relative;
  z-index: 9;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  align-items: center;
  outline: none;
  border-radius: 2px;
  background: linear-gradient(97.41deg, rgb(237, 219, 55) 0.233%, rgb(210, 247, 60) 99.828%);
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: 0.5s;
}
.btn--lg {
  height: 55px;
}
.btn--full {
  width: 100%;
}
.btn i {
  margin-left: 16px;
}
.btn span {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 16px 0 16px;
  justify-content: center;
}
.btn span:hover:before {
  height: 100%;
}
.btn span:hover:after {
  width: 100%;
}
.btn span:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  background: rgb(68, 46, 131);
  transition: all 0.3s ease;
  width: 2px;
  height: 0%;
}
.btn span:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  background: rgb(68, 46, 131);
  transition: all 0.3s ease;
  height: 2px;
  width: 0%;
}
.btn:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: rgb(68, 46, 131);
  transition: all 0.3s ease;
  height: 0%;
  width: 2px;
}
.btn:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: rgb(68, 46, 131);
  transition: all 0.3s ease;
  width: 0%;
  height: 2px;
}
.btn:hover:before {
  height: 100%;
}
.btn:hover:after {
  width: 100%;
}

.preparation-section {
  padding: 70px 20px 70px 80px;
  border-bottom: 1px dashed rgb(196, 197, 218);
  margin-bottom: 4px;
}
@media (max-width: 992px) {
  .preparation-section {
    padding: 40px 15px 20px 15px;
  }
}

.preparation-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media (max-width: 1280px) {
  .preparation-content {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .preparation-content {
    margin-bottom: 20px;
  }
}
@media (max-width: 1280px) {
  .preparation-content__text {
    margin-bottom: 20px;
    width: 100%;
  }
}
.preparation-content__img {
  position: relative;
  width: 600px;
}
@media (max-width: 1280px) {
  .preparation-content__img {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 992px) {
  .preparation-content__img {
    right: -15px;
    padding-left: 0px;
  }
}
.preparation-content__img:before {
  content: "";
  width: 75px;
  height: 75px;
  position: absolute;
  top: calc(50% - 38px);
  left: -38px;
  background: url(../img/snow-1.svg) 0 0 no-repeat;
  z-index: 9;
}
@media (max-width: 992px) {
  .preparation-content__img:before {
    left: -15px;
    width: 35px;
    height: 35px;
    background-size: 35px auto;
    top: calc(50% - 18px);
  }
}
.preparation-content__img img {
  width: 100%;
}

.preparation-items {
  display: flex;
}
@media (max-width: 992px) {
  .preparation-items {
    flex-direction: column;
    align-items: center;
  }
}

.preparation-item {
  width: 262px;
  margin-right: 70px;
}
@media (max-width: 992px) {
  .preparation-item {
    text-align: center;
    width: 100%;
    max-width: 360px;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 0 20px;
  }
  .preparation-item:last-child {
    margin-bottom: 0;
  }
}
.preparation-item .icon {
  width: 92px;
  height: 92px;
  display: block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .preparation-item .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
  }
}
.preparation-item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.preparation-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.school-section {
  background: rgb(255, 239, 243);
  position: relative;
  padding: 60px 80px 130px 80px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .school-section {
    padding: 25px 30px 125px 30px;
  }
}
.school-section__img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .school-section__img {
    transform: rotate(90deg);
    top: auto;
    bottom: -30px;
    width: 100%;
  }
  .school-section__img img {
    width: 100%;
  }
}

.school-items {
  display: flex;
  padding-top: 60px;
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .school-items {
    flex-direction: column;
    padding-top: 20px;
  }
}

.school-item {
  width: 255px;
  margin-right: 80px;
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
@media (max-width: 768px) {
  .school-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.school-item__number {
  height: 52px;
  background-image: linear-gradient(121.04deg, rgb(255, 98, 64), rgb(252, 147, 71));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 39px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: 0%;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgb(196, 197, 218);
  margin-bottom: 10px;
}
.school-item__number span {
  font-size: 18px;
  text-transform: none;
}

.benefits-section {
  padding: 60px 80px;
}
@media (max-width: 992px) {
  .benefits-section {
    padding: 35px 15px;
  }
}

.benefits {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
@media (max-width: 1280px) {
  .benefits {
    flex-direction: column;
  }
}

.benefits-col {
  width: calc(50% - 10px);
}
@media (max-width: 1280px) {
  .benefits-col {
    width: 100%;
  }
}

.benefits-item {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefits-item--blue {
  width: 100%;
  height: 245px;
  margin-bottom: 20px;
  padding-left: 60px;
  padding-right: 30px;
}
@media (max-width: 1280px) {
  .benefits-item--blue {
    padding-left: 25px;
    margin-bottom: 15px;
  }
}
.benefits-item--blue:after {
  content: "";
  width: calc(100% - 360px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(37, 85, 179);
  z-index: 2;
}
.benefits-item--blue:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  background: linear-gradient(90deg, rgb(37, 85, 179), rgb(37, 85, 179) 47.5%, rgba(37, 85, 179, 0) 100%);
  z-index: 2;
}
@media (min-width: 1921px) {
  .benefits-item--blue:before {
    left: calc(100% - 500px);
    width: 500px;
  }
}
.benefits-item--blue .benefits-item__img {
  right: 0;
  top: 0;
  height: 100%;
}
.benefits-item--blue .benefits-item__img img {
  height: 100%;
  background-size: cover;
  display: block;
}
.benefits-item--green {
  width: 100%;
  height: 245px;
  margin-bottom: 20px;
  padding-left: 60px;
  padding-right: 30px;
}
@media (max-width: 1280px) {
  .benefits-item--green {
    padding-left: 25px;
    margin-bottom: 15px;
  }
}
.benefits-item--green:after {
  content: "";
  width: calc(100% - 395px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(4, 162, 114);
  z-index: 2;
}
.benefits-item--green:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  background: linear-gradient(90deg, rgb(4, 162, 114), rgb(4, 162, 114) 47.5%, rgba(4, 162, 114, 0) 100%);
  z-index: 2;
}
@media (min-width: 1921px) {
  .benefits-item--green:before {
    left: calc(100% - 500px);
    width: 500px;
  }
}
.benefits-item--green .benefits-item__img {
  right: 0;
  top: 0;
  height: 100%;
}
.benefits-item--green .benefits-item__img img {
  height: 100%;
  background-size: cover;
  display: block;
}
.benefits-item--purple {
  width: 100%;
  height: 510px;
  padding: 60px;
  justify-content: flex-start;
}
@media (max-width: 1280px) {
  .benefits-item--purple {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 40px;
    height: 310px;
  }
}
.benefits-item--purple:after {
  content: "";
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(170, 53, 137);
  z-index: 2;
}
@media (min-width: 1921px) {
  .benefits-item--purple:after {
    height: 10%;
  }
}
@media (max-width: 1280px) {
  .benefits-item--purple:after {
    height: 10%;
  }
}
@media (max-width: 566px) {
  .benefits-item--purple:after {
    height: 30%;
  }
}
.benefits-item--purple:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  background: linear-gradient(-185deg, rgb(170, 53, 137), rgb(170, 53, 137) 47.5%, rgba(170, 53, 137, 0) 100%);
  z-index: 2;
}
@media (min-width: 1921px) {
  .benefits-item--purple:before {
    background: linear-gradient(-185deg, rgb(170, 53, 137), rgb(170, 53, 137) 27.5%, rgba(170, 53, 137, 0) 100%);
  }
}
@media (max-width: 1280px) {
  .benefits-item--purple:before {
    background: linear-gradient(-185deg, rgb(170, 53, 137), rgb(170, 53, 137) 27.5%, rgba(170, 53, 137, 0) 100%);
  }
}
@media (max-width: 566px) {
  .benefits-item--purple:before {
    background: linear-gradient(-185deg, rgb(170, 53, 137), rgb(170, 53, 137) 47.5%, rgba(170, 53, 137, 0) 100%);
  }
}
.benefits-item--purple .benefits-item__img {
  right: 0;
  bottom: 0;
  width: 100%;
}
.benefits-item--purple .benefits-item__img img {
  width: 100%;
  display: block;
}
.benefits-item__img {
  position: absolute;
  z-index: 0;
}
.benefits-item__title {
  color: rgb(255, 255, 255);
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 9;
}
.benefits-item p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  position: relative;
  z-index: 9;
  max-width: 310px;
}

.about-section {
  position: relative;
  padding: 110px 80px 70px 80px;
}
@media (max-width: 1280px) {
  .about-section {
    padding: 30px 15px 0 15px;
    background: rgb(83, 61, 145);
  }
}
.about-section__figures {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  z-index: 11;
  height: 100%;
}
@media (max-width: 1280px) {
  .about-section__figures {
    display: none;
  }
}
.about-section__figures:before {
  content: "";
  width: 58px;
  height: 60px;
  background: url(../img/snow-3.svg) 0 0 no-repeat;
  top: 10px;
  right: 95px;
  position: absolute;
  z-index: 11;
}
.about-section__figures:after {
  content: "";
  width: 26px;
  height: 26px;
  background: url(../img/snow-4.svg) 0 0 no-repeat;
  bottom: 92px;
  right: 35px;
  position: absolute;
  z-index: 11;
}
.about-section__figures span {
  display: block;
  width: 100%;
  height: 100%;
}
.about-section__figures span:before {
  content: "";
  width: 87px;
  height: 84px;
  background: url(../img/figure-3.svg) 0 0 no-repeat;
  bottom: -20px;
  right: 416px;
  position: absolute;
  z-index: 11;
}
@media (max-width: 768px) {
  .about-section__figures span:before {
    right: auto;
    left: -135px;
  }
}
.about-section__figures span:after {
  content: "";
  width: 29px;
  height: 9px;
  background: rgb(234, 222, 56);
  top: 36px;
  right: 567px;
  position: absolute;
  z-index: 11;
}
@media (max-width: 768px) {
  .about-section__figures span:after {
    right: auto;
    left: -150px;
  }
}
.about-section .btn {
  position: relative;
  z-index: 9;
}
.about-section:after {
  content: "";
  width: calc(100% - 580px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(83, 61, 145);
  z-index: 2;
}
@media (max-width: 1280px) {
  .about-section:after {
    display: none;
  }
}
.about-section:before {
  content: "";
  width: 65%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 35%;
  background: linear-gradient(90deg, rgb(83, 61, 145), rgb(83, 61, 145) 46.5%, rgba(83, 61, 145, 0) 100%);
  z-index: 2;
}
@media (max-width: 1280px) {
  .about-section:before {
    display: none;
  }
}
@media (max-width: 1280px) {
  .about-section .btn {
    display: none;
  }
}
@media (max-width: 1280px) {
  .about-section h2 {
    text-align: left !important;
  }
}
.about-section__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  display: block;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .about-section__img {
    overflow: hidden;
  }
}
.about-section__img:after {
  content: "";
  width: calc(100% - 580px);
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  background: rgb(83, 61, 145);
  z-index: 2;
  display: none;
}
@media (max-width: 1280px) {
  .about-section__img:after {
    display: block;
  }
}
@media (max-width: 768px) {
  .about-section__img:after {
    display: none;
  }
}
.about-section__img:before {
  content: "";
  width: 65%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 35%;
  background: linear-gradient(90deg, rgb(83, 61, 145), rgb(83, 61, 145) 46.5%, rgba(83, 61, 145, 0) 100%);
  z-index: 2;
  display: none;
}
@media (max-width: 1280px) {
  .about-section__img:before {
    display: block;
  }
}
@media (max-width: 768px) {
  .about-section__img:before {
    width: 100%;
    left: 0%;
  }
}
.about-section__img .about-section__figures {
  display: none;
}
@media (max-width: 1280px) {
  .about-section__img .about-section__figures {
    display: block !important;
    z-index: 101;
  }
}
@media (max-width: 1280px) {
  .about-section__img {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
    height: 325px;
    display: flex;
    justify-content: flex-end;
  }
}
.about-section__img img {
  height: 100%;
  display: block;
}
.about-section h2 {
  color: #fff;
  position: relative;
  z-index: 9;
}
.about-section p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #FFF;
  margin-bottom: 30px;
  position: relative;
  z-index: 9;
  max-width: 500px;
}
@media (max-width: 1280px) {
  .about-section p {
    max-width: 100%;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 20px;
  }
}

footer {
  padding: 30px 80px;
  background: rgb(68, 46, 131);
  position: relative;
  z-index: 11;
}
@media (max-width: 768px) {
  footer {
    padding: 30px;
  }
}
footer .logo {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.course-section {
  padding: 60px 80px;
  border-top: 1px dashed rgb(196, 197, 218);
}
@media (max-width: 992px) {
  .course-section {
    padding: 25px 15px;
  }
}

.courses {
  padding-top: 38px;
}
@media (max-width: 992px) {
  .courses {
    padding-top: 25px;
  }
}

.course {
  border: 1px solid rgb(196, 197, 218);
  background: rgb(250, 250, 250);
  display: flex;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .course {
    flex-direction: column;
  }
}
.course__image {
  width: 370px;
  border-right: 1px solid rgb(196, 197, 218);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1280px) {
  .course__image {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .course__image {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgb(196, 197, 218);
    padding: 60px 20px 40px 20px;
  }
}
.course__img {
  width: 260px;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
}
@media (max-width: 1280px) {
  .course__img {
    width: 180px;
  }
}
@media (max-width: 768px) {
  .course__img {
    width: 220px;
  }
}
.course__choice {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  background: rgb(255, 222, 222);
  height: 24px;
  align-items: center;
  padding: 0 10px;
  color: rgb(255, 113, 113);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
}
.course__rating {
  position: absolute;
  right: 20px;
  top: 20px;
}
.course__rating ul {
  display: flex;
}
.course__rating ul li.star {
  width: 12px;
  height: 12px;
  background: url(../img/star-full.svg) 0 0 no-repeat;
  margin-right: 4px;
}
.course__rating ul li.star--empty {
  background: url(../img/star-empty.svg) 0 0 no-repeat;
}
@media (max-width: 1280px) {
  .course .btn {
    width: 100%;
    justify-content: center;
  }
}
.course .btn span {
  justify-content: center;
}
.course__content {
  width: calc(100% - 370px);
  padding: 45px;
}
@media (max-width: 1280px) {
  .course__content {
    width: calc(100% - 250px);
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .course__content {
    width: 100%;
  }
}
.course__content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.course__content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  max-width: 365px;
  margin-bottom: 20px;
}
.course__info {
  display: flex;
}
@media (max-width: 1280px) {
  .course__info {
    flex-direction: column;
  }
}

.course-info-item {
  width: 33.3333333333%;
  padding-right: 20px;
  margin-bottom: 25px;
}
@media (max-width: 1280px) {
  .course-info-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgb(210, 210, 210);
    margin-bottom: 0;
    padding: 8px 0 8px 0;
  }
  .course-info-item:last-child {
    border-bottom: 0;
  }
}
.course-info-item__title {
  display: block;
  color: rgb(106, 106, 106);
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
  margin-bottom: 4px;
}
@media (max-width: 1280px) {
  .course-info-item__title {
    max-width: 110px;
  }
}
.course-info-item__number {
  display: block;
  color: rgb(37, 37, 38);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 4px;
}
@media (max-width: 1280px) {
  .course-info-item__number {
    width: 110px;
    font-size: 14px;
  }
}
.course-info-item__old {
  display: block;
  color: rgb(227, 113, 113);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  text-decoration: line-through;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: -78px;
}
@media (max-width: 1280px) {
  .partners-slider {
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .partners-slider {
    margin-top: 10px;
    padding-top: 20px;
  }
}
.partners-slider h3 {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .partners-slider h3 {
    padding-left: 15px;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
  padding-left: 80px;
}
@media (max-width: 992px) {
  .swiper-container {
    padding-left: 15px;
  }
}

.swiper-wrapper {
  padding-left: initial;
  margin: 0;
}

.partners-slider .swiper-slide {
  margin-right: 20px;
  text-align: center;
  font-size: 18px;
  border-radius: 2px;
  background: rgb(240, 240, 240);
  width: 305px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-slider .swiper-slide img {
  padding: 8px 20px;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  max-width: 100%;
  mix-blend-mode: multiply;
}

.swiper-wrapper-nav {
  position: relative;
  display: flex;
  overflow: hidden;
  padding-top: 48px;
}

.swiper-button-prev {
  position: relative;
  width: 34px;
  height: 34px;
  background: rgb(235, 221, 56) url(../img/slider-arrow.svg) 50% 50% no-repeat;
  display: flex;
  align-items: center;
  left: 0;
  right: 0;
  justify-content: center;
  margin-right: 10px;
}
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next {
  position: relative;
  width: 34px;
  height: 34px;
  background: rgb(235, 221, 56) url(../img/slider-arrow.svg) 50% 50% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  transform: rotate(-180deg);
}
.swiper-button-next:after {
  display: none;
}

.popular-section {
  padding: 60px 0;
  position: relative;
  background: rgb(250, 246, 232);
  overflow: hidden;
}
.popular-section:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 366px;
  height: 456px;
  background: url(../img/popular-right-img.svg) no-repeat;
  z-index: 0;
}
@media (max-width: 992px) {
  .popular-section:before {
    display: none;
  }
}
.popular-section:after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -120px;
  width: 392px;
  height: 400px;
  background: url(../img/popular-left-img.svg) no-repeat;
  z-index: 0;
}
@media (max-width: 992px) {
  .popular-section:after {
    bottom: -250px;
    left: -220px;
  }
}
@media (max-width: 992px) {
  .popular-section {
    padding: 25px 0;
  }
}
.popular-section h2 {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .popular-section h2 {
    padding-left: 15px;
  }
}

.popular-slider {
  position: relative;
  z-index: 9;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.popular-slider .swiper-slide {
  margin-right: 30px;
  width: 400px;
}
@media (max-width: 768px) {
  .popular-slider .swiper-slide {
    width: 275px;
    margin-right: 8px;
  }
}
.popular-slider .swiper-wrapper-nav {
  padding-top: 78px;
}
@media (max-width: 768px) {
  .popular-slider .swiper-wrapper-nav {
    padding-top: 48px;
  }
}

.popular-item {
  width: 100%;
  padding: 20px;
  border-radius: 2px;
  background: rgb(255, 255, 255);
}
.popular-item__top {
  display: flex;
  padding-bottom: 8px;
  border-bottom: 1px solid rgb(196, 197, 218);
  align-items: center;
}
@media (max-width: 768px) {
  .popular-item__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.popular-item__img {
  width: 120px;
  height: 60px;
  min-width: 120px;
  margin-right: 16px;
}
@media (max-width: 768px) {
  .popular-item__img {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.popular-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-item__name {
  display: block;
  width: 100%;
}
.popular-item__name h4 {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.popular-item__name p {
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 0;
}
.popular-item__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
}
.popular-item__info {
  width: 50%;
  padding-right: 10px;
}
.popular-item__title {
  display: block;
  color: rgb(133, 133, 133);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 4px;
}
.popular-item__cost {
  color: rgb(37, 37, 38);
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}
.popular-item__cost span {
  display: block;
  color: rgb(227, 113, 113);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  text-decoration-line: line-through;
  padding-top: 4px;
}

.company-section {
  padding: 60px 0 45px;
}
@media (max-width: 992px) {
  .company-section {
    padding: 25px 0;
  }
}
.company-section__top {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .company-section__top {
    padding: 0 15px;
  }
}

.company-slider {
  position: relative;
  z-index: 9;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 32px;
}
.company-slider .swiper-slide {
  margin-right: 10px;
  width: 200px;
  border-radius: 2px;
  background: rgb(240, 240, 240);
  padding: 16px;
  color: rgb(25, 24, 33);
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
}
.company-slider .swiper-wrapper-nav {
  padding-top: 68px;
}
@media (max-width: 768px) {
  .company-slider .swiper-wrapper-nav {
    padding-top: 48px;
  }
}/*# sourceMappingURL=styles.css.map */