@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "Muller";
  font-weight: 300;
  src: local("Muller Light"), url("../fonts/MullerLight.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Muller";
  font-weight: 400;
  src: local("Muller Regular"), url("../fonts/MullerRegular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Muller";
  font-weight: 500;
  src: local("Muller Medium"), url("../fonts/MullerMedium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Muller";
  font-weight: 800;
  src: local("Muller Extra Bold"), url("../fonts/MullerExtraBold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-weight: 400;
  src: local("Inter-Regular"), url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-weight: 500;
  src: local("Inter-Medium"), url("../fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-weight: 600;
  src: local("Inter-SemiBold"), url("../fonts/Inter-SemiBold.woff2") format("woff2");
}
:root {
  scroll-behavior: smooth;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

html {
  position: relative;
  box-sizing: border-box;
  min-height: 100%;
}

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

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  max-height: 100%;
}

button {
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
p,
figure,
fieldset {
  margin: 0;
}

iframe {
  border: none;
}

.visually-hidden {
  position: fixed;
  transform: scale(0);
}

:root {
	--fon: #fcfcf7;
	--text: #000;
	--white: #fff;
	--blue: #456db1;
}

body {
  min-width: 320px;
  background-color: var(--fon);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 870px;
  background-image: -webkit-image-set(url("../images/bg/bgtop.avif") type("image/avif"), url("../images/bg/bgtop.webp") type("image/webp"), url("../images/bg/bgtop.png"));
  background-image: image-set(url("../images/bg/bgtop.avif") type("image/avif"), url("../images/bg/bgtop.webp") type("image/webp"), url("../images/bg/bgtop.png"));
  color: var(--text);
  font-family: "Muller", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.container {
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

.title {
  color: var(--text);
  text-align: center;
  font-family: Muller, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 60px;
}

h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 115%;
  letter-spacing: 0.64px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: var(--white);
  margin-bottom: 32px;
}

.button {
  border-radius: 100px;
  padding: 16px 22px;
  background: linear-gradient(90deg, #4776e6 0%, #8e54e9 100%);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  text-align: right;
  color: var(--text);
  text-align: center;
}
.button:hover {
  background: linear-gradient(90deg, rgba(71, 118, 230, 0.7) 0%, rgba(142, 84, 233, 0.7) 100%);
}
.button:focus, .button:active {
  background: linear-gradient(90deg, rgba(31, 73, 173, 0.7) 0%, rgba(95, 45, 174, 0.7) 100%);
}

@media (max-width: 1440px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 1140px) {
  .subtitle {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  .container {
    max-width: 100%;
  }
  .title {
    font-size: 34px;
    margin-bottom: 40px;
  }
  .subtitle {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.375;
    margin-bottom: 24px;
  }
  h1 {
    font-size: 44px;
    line-height: 115%;
  }
  .button {
    font-size: 14px;
    line-height: 1.14286;
  }
}
@media (max-width: 650px) {
  h1 {
    font-size: 34px;
  }
  .title {
    font-size: 28px;
  }
}
@media (max-width: 379px) {
  .container {
    padding: 0 10px;
  }
}
:root {
  --fon: #f8f8f8;
  --text: #000;
  --white: #fff;
  --blue: #456db1;
  --blue-dark: #253ea7;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
}
.header__btn {
  padding: 9px 17px;
  border-radius: 6px;
  background-color: var(--blue);
  box-shadow: 0px 2px 4px 0px rgba(58, 58, 68, 0.2), 0px 4px 8px 0px rgba(90, 91, 106, 0.2);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}
.header__btn:hover {
  background-color: #1d56b7;
}

.promo__information {
  max-width: 800px;
}
.promo__text {
  font-size: 24px;
  line-height: 115%;
  max-width: 760px;
}

.platform__row {
  display: flex;
  gap: 20px;
}
.platform__item {
  position: relative;
  display: flex;
  flex-basis: 440px;
  padding: 40px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 40px;
  background: var(--white);
  box-shadow: 0px 1px 2px 0px rgba(58, 58, 68, 0.24), 0px 2px 4px 0px rgba(90, 91, 106, 0.24);
}
.platform__item::before {
  content: "";
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #c9dfeb;
}
.platform__item::after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  left: 29px;
  top: 40px;
  background-repeat: no-repeat;
  background-position: left top;
}
.platform__item--1::after {
  background-image: url("../images/platform/icons-1.svg");
}
.platform__item--2::after {
  background-image: url("../images/platform/icons-2.svg");
}
.platform__item--3::after {
  background-image: url("../images/platform/icons-3.svg");
}
.platform__subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}
.platform__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
}

@media (max-width: 768px) {
  .platform__row {
    flex-direction: column;
  }
  .platform__item {
    flex-basis: auto;
  }
}
.directions__row {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;  
  gap: 20px;
}
.directions__item {
  color: var(--white);
  border-radius: 40px;
  box-shadow: 0px 1px 2px 0px rgba(58, 58, 68, 0.24), 0px 2px 4px 0px rgba(90, 91, 106, 0.24);
  padding: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
	position: relative;
	overflow: hidden;
}
.directions__item::before {
	content: "";
	inset: 0;
	position: absolute;
	background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
	transition: all 0.3s ease-in-out;
	transform: scale(1);
}
.directions__item:hover {
	text-decoration: none;
	color: var(--white);
}
.directions__item:hover::before {
	transform: scale(1.1);
}
.directions__item--1 {
  flex-basis: 49.2%;
	height: 633px;
}
.directions__item--1::before {
	background-image: url("../images/directions/1.jpg");
}
.directions__item--2 {  
  flex-basis: 49.2%;
	height: 633px;
}
.directions__item--2::before {
  background-image: url("../images/directions/2.jpg");
}
.directions__item--3 {  
  flex-basis: 32.2%;
	height: 440px;
}
.directions__item--3::before {
  background-image: url("../images/directions/3.jpg");
}
.directions__item--4 {  
  flex-basis: 32.2%;
	height: 440px;
}
.directions__item--4::before {
  background-image: url("../images/directions/4.jpg");
}
.directions__item--5 {  
  flex-basis: 32.2%;
	height: 440px;
}
.directions__item--5::before {
  background-image: url("../images/directions/5.jpg");
}
.directions__subtitle {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
	position: relative;
	z-index: 99;
}
.directions__quantity {
  display: inline-flex;
  padding: 11px 25px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #fff;
  -webkit-backdrop-filter: blur(4.6999998093px);
          backdrop-filter: blur(4.6999998093px);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 0.8;
}
@media (max-width: 1290px) {
	.directions__item--1 {
		flex-basis: 48.3%;
		height: 472px;
	}
	.directions__item--2 {
		flex-basis: 48.3%;
		height: 472px;
	}
	.directions__item--3 {
		flex-basis: 31.3%;
		height: 325px;
	}
	.directions__item--4 {
		flex-basis: 31.3%;
		height: 325px;
	}
	.directions__item--5 {
		flex-basis: 31.3%;
		height: 325px;
	}
}
@media (max-width: 1140px) {
  .directions__item {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
	.directions__item {
		border-radius: 20px;
		padding: 20px 10px;
	}
  .directions__subtitle {
    font-size: 22px;
  }
	.directions__item--1 {		
		height: 316px;
	}
	.directions__item--2 {		
		height: 316px;
	}
	.directions__item--3 {		
		height: 205px;
	}
	.directions__item--4 {		
		height: 205px;
	}
	.directions__item--5 {		
		height: 205px;
	}
}
@media (max-width: 650px) {
  .directions__row {
		justify-content: center;
	}
  .directions__item {
    background-position: center top;
		flex-basis: 280px;
		height: 280px;
  }
}
.teachers {
  padding-bottom: 120px;
}
.teachers__container {
  max-width: 100%;
  padding: 0;
}
.teachers__item {
  padding: 10px;
}
.teachers__row {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 1px 2px 0px rgba(58, 58, 68, 0.24), 0px 2px 4px 0px rgba(90, 91, 106, 0.24);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  max-width: 800px;
  min-height: 321px;
}
.teachers__image {
  border-radius: 12px;
}
.teachers__image img {
  min-width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.05);
}
.teachers__fio {
  font-size: 24px;
  font-weight: 500;
  line-height: 115%;
  margin-bottom: 8px;
}
.teachers__work {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 24px;
}
.teachers__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}
.teachers .slick-prev {
  left: calc(50% - 55px);
  top: inherit;
  bottom: -90px;
  background: url("../images/teachers/arrow-left.svg") no-repeat center;
  width: 52px;
  height: 52px;
  z-index: 999;
}
.teachers .slick-prev::before {
  font-size: 0;
}
.teachers .slick-next {
  right: calc(50% - 55px);
  top: inherit;
  bottom: -90px;
  background: url("../images/teachers/arrow-right.svg") no-repeat center;
  width: 52px;
  height: 52px;
  z-index: 999;
}
.teachers .slick-next::before {
  font-size: 0;
}

@media (max-width: 768px) {
  .teachers__row {
    max-width: 450px;
    min-height: 623.2px;
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .teachers__row {
    max-width: 350px;
    flex-direction: column;
    padding: 15px;
  }
  .teachers__text {
    font-size: 18px;
  }
}
.footer {
  background: #2d3d89;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  color: var(--white);
}
.footer__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 400px;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}
.footer__text {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.footer__text:not(:last-child) {
  margin-bottom: 16px;
}
.footer__information {
  padding-top: 24px;
}
.footer__link {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.footer__copy--mobile {
  display: none;
}
.footer__contacts {
  flex: 0 0 397px;
  padding-top: 24px;
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 1140px) {
  .footer__container {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer__row {
    flex-direction: column;
    justify-content: center;
  }
  .footer__logo {
    text-align: left;
    margin: 0 auto 24px;
  }
  .footer__contacts {
    flex: 0 0 auto;
    margin: 0 auto;
  }
  .footer__copy {
    display: none;
  }
  .footer__copy--mobile {
    display: block;
    text-align: center;
  }
  .social {
    justify-content: center;
  }
}

.request_forms_modal.form-status--error .modal__header,
.request_forms_modal.form-status--success .modal__header,
.request_forms_modal.form-status--error .form,
.request_forms_modal.form-status--success .form {
  display: none;
}
.request_forms_modal .form__container {
  text-align: center;
}
.request_forms_modal .form__container img {
  margin: 0px auto 20px auto;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 5px solid #3498db;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.request_forms_modal .form__btn .form__btn__content--submit {
  display: block;
}
.request_forms_modal .form__btn .form__btn__content--submitted {
  display: none;
}

.request_forms_modal.form-status--processing .form__btn .form__btn__content--submit {
  display: none;
}
.request_forms_modal.form-status--processing .form__btn .form__btn__content--submitted {
  display: block;
}
