:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/**
 * Swiper 11.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 30, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.header-top {
  padding: 11px 0;
  background-color: rgb(28, 26, 28);
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 1279px) {
  .header-top {
    display: none;
  }
}
.header-top__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.header-top__sicial-list {
  display: flex;
  gap: 20px;
}

.header {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .header {
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.0509803922);
  }
}
.header__wrapper {
  max-width: 1240px;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1279px) {
  .header__wrapper {
    display: none;
  }
}
.header__container {
  background-color: rgb(255, 255, 255);
  margin-bottom: 23px;
}
@media screen and (max-width: 1279px) {
  .header__container {
    margin-bottom: 0;
  }
}
.header__list {
  display: flex;
  align-items: center;
  gap: 76px;
}
.header__link {
  color: rgb(28, 26, 28);
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  cursor: pointer;
}
.header__button {
  background-color: rgb(50, 132, 255);
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  line-height: 22.4px;
  text-align: center;
  cursor: pointer;
}

.application-form {
  padding: 35px 30px 0 30px;
  background-color: #14146C;
  border-radius: 30px;
  color: rgb(255, 255, 255);
  width: 495px;
}
@media screen and (max-width: 1279px) {
  .application-form {
    width: 435px;
    height: auto;
    padding: 80px 30px 0 27px;
  }
}
@media screen and (max-width: 999px) {
  .application-form {
    width: 100%;
    padding: 30px 30px 10px 30px;
    height: auto;
  }
}

.application-form__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.application-form__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 47px;
  padding-bottom: 10px;
  width: 92%;
}
@media screen and (max-width: 1279px) {
  .application-form__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 34px;
  }
}

.application-form__text {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 20px;
  width: 92%;
}

.application-form__wrapper {
  display: flex;
  flex-direction: column;
  width: 358px;
}
@media screen and (max-width: 1279px) {
  .application-form__wrapper {
    width: 380px;
  }
}
@media screen and (max-width: 500px) {
  .application-form__wrapper {
    width: 100%;
  }
}

.application-form__name,
.application-form__phone {
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  border: 1px solid #D7DAE2;
  font-size: 16px;
  font-weight: 400;
  padding: 13px 16px;
  margin-bottom: 15px;
}

.application-form__policy {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}
@media screen and (max-width: 999px) {
  .application-form__policy {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .application-form__policy {
    width: 100%;
    font-size: 10px;
  }
}

.training-application {
  max-width: 1240px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(50, 132, 255);
  border-radius: 30px;
  padding: 50px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .training-application {
    padding: 20px;
    margin: 0 30px 40px 30px;
  }
}
.training-application__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 38.4px;
  color: rgb(255, 255, 255);
  padding-bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 500px) {
  .training-application__title {
    width: 50%;
    font-size: 20px;
    line-height: 24pz;
    padding-bottom: 10px;
  }
}
.training-application__text {
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .training-application__text {
    width: 70%;
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 400;
  }
}
.training-application__icon {
  width: 50%;
}
@media screen and (max-width: 999px) {
  .training-application__icon {
    width: 220px;
    position: absolute;
    right: 0;
    top: 20px;
  }
}
@media screen and (max-width: 680px) {
  .training-application__icon {
    width: 155px;
    top: 26px;
    right: -16px;
  }
}
.training-application__images_1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
}
.training-application__images_2 {
  position: absolute;
  right: 0;
  bottom: 115px;
  width: 37%;
}
@media screen and (max-width: 999px) {
  .training-application__images_2 {
    display: none;
  }
}

.training-application__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.training-application__form-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.training-application__text-modal {
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 999px) {
  .training-application__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
  }
}

.training-application__title-modal {
  text-align: center;
  width: 100%;
}

.training-application__wrapper {
  display: flex;
  flex-direction: column;
  width: 360px;
}
@media screen and (max-width: 500px) {
  .training-application__wrapper {
    width: 100%;
    margin: 0 auto;
  }
}

.training-application__wrapper-modal {
  width: 100%;
}

.training-application__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  padding-bottom: 20px;
  color: rgb(255, 255, 255);
}

.training-application__policy {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: rgb(255, 255, 255);
  width: 80%;
}
@media screen and (max-width: 500px) {
  .training-application__policy {
    width: 100%;
  }
}

.benefits-list-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 999px) {
  .benefits-list-container {
    flex-direction: column;
  }
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 999px) {
  .benefits-list {
    margin: 0 30px;
  }
}

@media screen and (max-width: 999px) {
  .benefits-list__second {
    margin-top: 0px;
  }
}

.benefits-list__item {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-start;
}
.benefits-list__img {
  width: 90px;
}
@media screen and (max-width: 500px) {
  .benefits-list__img {
    width: 75px;
  }
}

.benefits-list__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.benefits-list__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: rgb(28, 26, 28);
  width: 95%;
}
@media screen and (max-width: 500px) {
  .benefits-list__title {
    font-size: 20px;
    line-height: 26px;
  }
}

.benefits-list__text {
  font-size: 16px;
  line-height: 22.4px;
  color: rgb(28, 26, 28);
  font-weight: 400;
}
@media screen and (max-width: 500px) {
  .benefits-list__text {
    font-size: 16px;
    line-height: 21px;
  }
}

.benefits-list__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 35px;
  margin-left: 120px;
  border-radius: 20px;
  background-color: rgb(50, 132, 255);
}
@media screen and (max-width: 1279px) {
  .benefits-list__form {
    margin-left: 0;
  }
}
@media screen and (max-width: 999px) {
  .benefits-list__form {
    display: none;
  }
}

.benefits-list__title-last {
  color: rgb(255, 255, 255);
  text-align: center;
}

.start-learn-mobile {
  display: none;
}
@media screen and (max-width: 999px) {
  .start-learn-mobile {
    display: block;
  }
}

.benefits-list__button {
  background-color: rgb(255, 255, 255);
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  color: rgb(28, 26, 28);
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}

.benefits-list__icon {
  background-color: rgb(50, 132, 255);
  padding: 10px;
  border-radius: 12.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.as-description {
  margin-top: 120px;
}

.as-description__title {
  font-size: 30px;
  font-weight: 800;
  color: rgb(28, 26, 28);
  padding-bottom: 40px;
}

.as-description__text {
  font-size: 20px;
  font-weight: 400;
  color: rgb(28, 26, 28);
  padding-bottom: 10px;
}

.attention-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 2px solid rgb(50, 132, 255);
  border-radius: 30px;
  padding: 20px;
  margin: 20px 0;
}

.attention-block__text {
  font-size: 20px;
  font-weight: 500;
  color: #100F15;
}
@media screen and (max-width: 900px) {
  .attention-block__text {
    font-size: 14px;
  }
}

.attention-block__img {
  width: 60px;
}

.price-page {
  margin-top: 40px;
  display: flex;
}
@media screen and (max-width: 999px) {
  .price-page {
    margin: 0;
  }
}
@media screen and (max-width: 700px) {
  .price-page {
    flex-direction: column;
    gap: 10px;
  }
}

.price-page__info {
  margin-right: 20px;
  padding: 20px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 2px 3px 12px 0px rgba(30, 33, 55, 0.1803921569);
}
@media screen and (max-width: 999px) {
  .price-page__info {
    width: 49%;
    margin-right: 10px;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 700px) {
  .price-page__info {
    width: 100%;
  }
}

.price-page__container {
  width: 100%;
}

.price-page__img {
  width: 390px;
}
@media screen and (max-width: 999px) {
  .price-page__img {
    width: 49%;
  }
}
@media screen and (max-width: 700px) {
  .price-page__img {
    width: 100%;
  }
}

.price-page__title {
  font-size: 36px;
  font-weight: 900;
  color: rgb(28, 26, 28);
  padding-bottom: 24px;
}
@media screen and (max-width: 999px) {
  .price-page__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .price-page__title {
    font-size: 36px;
  }
}

.price-page__text {
  font-size: 20px;
  font-weight: 400;
  color: rgb(28, 26, 28);
}
@media screen and (max-width: 999px) {
  .price-page__text {
    font-size: 14px;
  }
}

.price-page__text:last-child {
  padding-top: 10px;
}

.price-category__title {
  font-size: 36px;
  font-weight: 900;
  color: rgb(28, 26, 28);
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .price-category__title {
    margin-top: 60px;
    font-size: 26px;
  }
}

.price-category__text,
.additional-session__text {
  font-size: 26px;
  font-weight: 500;
  color: #020202;
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .price-category__text,
  .additional-session__text {
    font-size: 14px;
  }
}

.price-category-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0 80px 0;
  gap: 40px;
}
@media screen and (max-width: 999px) {
  .price-category-container {
    align-items: flex-end;
    gap: 20px;
    margin: 40px 0 140px 0;
  }
}
@media screen and (max-width: 600px) {
  .price-category-container {
    flex-direction: column;
    gap: 110px;
  }
}

.additional-session-blocks {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
}
@media screen and (max-width: 1279px) {
  .additional-session-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 700px) {
  .additional-session-blocks {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

.additional-session-block1,
.additional-session-block2,
.additional-session-block3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgb(50, 132, 255);
  border-radius: 30px;
  padding: 30px;
  width: 33%;
}

.additional-session__title {
  font-size: 40px;
  font-weight: 900;
  color: rgb(28, 26, 28);
}
@media screen and (max-width: 999px) {
  .additional-session__title {
    font-size: 26px;
    font-weight: 900;
  }
}

.additional-session-block1 {
  height: 295px;
}
@media screen and (max-width: 1279px) {
  .additional-session-block1 {
    grid-area: 1/1/2/2;
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .additional-session-block1 {
    grid-area: 1/1/2/3;
  }
}

.additional-session-block2 {
  height: 332px;
}
@media screen and (max-width: 1279px) {
  .additional-session-block2 {
    grid-area: 1/2/2/3;
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .additional-session-block2 {
    grid-area: 2/1/3/3;
  }
}

.additional-session-block3 {
  height: 393px;
}
@media screen and (max-width: 1279px) {
  .additional-session-block3 {
    grid-area: 2/1/3/3;
    height: auto;
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width: 700px) {
  .additional-session-block3 {
    grid-area: 3/1/4/3;
  }
}

.additional-session-block__title {
  font-size: 26px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  padding-bottom: 10px;
}

.additional-session-block__price {
  font-size: 50px;
  font-weight: 800;
  color: #B6F600;
  padding-bottom: 24px;
}
@media screen and (max-width: 999px) {
  .additional-session-block__price {
    font-size: 40px;
  }
}

@media screen and (max-width: 1279px) {
  .additional-session-block__price-expanded {
    position: absolute;
    right: 120px;
  }
}
@media screen and (max-width: 999px) {
  .additional-session-block__price-expanded {
    right: 10px;
  }
}
@media screen and (max-width: 999px) {
  .additional-session-block__price-expanded {
    position: static;
  }
}

@media screen and (max-width: 1279px) {
  .additional-session-block__title-expanded {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 700px) {
  .additional-session-block__title-expanded {
    padding-bottom: 10px;
  }
}

.additional-session-block__item {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
}

.additional-session-block__text {
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.learn-now {
  width: 100%;
  background-color: rgb(50, 132, 255);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .learn-now {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .learn-now {
    flex-direction: column;
    gap: 10px;
  }
}

.learn-now__title {
  font-size: 24px;
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.filials-advantages {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 120px;
}
@media screen and (max-width: 999px) {
  .filials-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 500px) {
  .filials-advantages {
    grid-template-columns: 1fr;
  }
}

.filials-advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 17px 40px 17px;
  box-shadow: 2px 3px 11.6px 0px rgba(30, 33, 55, 0.1803921569);
  border-radius: 18px;
  width: 24%;
  gap: 24px;
}
@media screen and (max-width: 1279px) {
  .filials-advantages__item {
    height: 270px;
  }
}

@media screen and (max-width: 999px) {
  .filials-advantages__item1 {
    width: 100%;
    grid-area: 1/1/2/2;
  }
}
@media screen and (max-width: 500px) {
  .filials-advantages__item1 {
    grid-area: 1/1/2/2;
  }
}

@media screen and (max-width: 999px) {
  .filials-advantages__item2 {
    width: 100%;
    grid-area: 1/2/2/3;
  }
}
@media screen and (max-width: 500px) {
  .filials-advantages__item2 {
    grid-area: 2/1/3/2;
  }
}

@media screen and (max-width: 999px) {
  .filials-advantages__item3 {
    width: 100%;
    grid-area: 2/1/3/2;
  }
}
@media screen and (max-width: 500px) {
  .filials-advantages__item3 {
    grid-area: 3/1/4/2;
  }
}

@media screen and (max-width: 999px) {
  .filials-advantages__item4 {
    width: 100%;
    grid-area: 2/2/3/3;
  }
}
@media screen and (max-width: 500px) {
  .filials-advantages__item4 {
    grid-area: 4/1/5/2;
  }
}

.filials-advantages__img {
  width: 92px;
}

.filials-advantages__text {
  font-size: 20px;
  font-weight: 600;
  color: #060606;
  text-align: center;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  padding: 100px 200px;
  width: 50%;
  z-index: 12;
  margin: 0;
  display: none;
}
@media screen and (max-width: 1400px) {
  .modal {
    padding: 50px 100px;
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .modal {
    padding: 30px !important;
  }
}
@media screen and (max-width: 500px) {
  .modal {
    width: 93%;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3;
}

.modal__text {
  font-size: 20px;
  line-height: 26px;
}
@media screen and (max-width: 999px) {
  .modal__text {
    font-size: 16px;
    line-height: 22px;
  }
}

.modal-card__img1 {
  width: 470px;
  left: -80px;
  bottom: 30px;
}
@media screen and (max-width: 999px) {
  .modal-card__img1 {
    width: 400px;
    left: -185px;
    bottom: 25px;
  }
}
@media screen and (max-width: 850px) {
  .modal-card__img1 {
    display: none;
  }
}

.modal-card__img2 {
  width: 200px;
  left: -140px;
  bottom: -37px;
}
@media screen and (max-width: 999px) {
  .modal-card__img2 {
    z-index: 2;
    width: 150px;
  }
}
@media screen and (max-width: 850px) {
  .modal-card__img2 {
    display: none;
  }
}

.modal-card__img3 {
  width: 99px;
  left: -12px;
  top: 11px;
}
@media screen and (max-width: 999px) {
  .modal-card__img3 {
    left: -50px;
    top: -20px;
  }
}
@media screen and (max-width: 850px) {
  .modal-card__img3 {
    display: none;
  }
}

.modal-card__img4 {
  width: 110px;
  right: -23px;
  top: 105px;
}
@media screen and (max-width: 1279px) {
  .modal-card__img4 {
    top: 50px;
  }
}
@media screen and (max-width: 850px) {
  .modal-card__img4 {
    display: none;
  }
}

.burger-menu {
  justify-content: space-between;
  align-items: center;
  display: none;
  width: 100%;
  padding: 12px 30px;
  position: relative;
  z-index: 3;
}
.burger-menu_open {
  background-color: rgb(50, 132, 255);
}
@media screen and (max-width: 1279px) {
  .burger-menu {
    display: flex;
    margin-bottom: 20px;
  }
}
.burger-menu__mobile {
  background-color: rgb(50, 132, 255);
}

.burger {
  width: 42px;
  height: 42px;
  z-index: 3;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.drop-down-menu {
  padding-top: 56px;
  padding: 56px 30px 0 30px;
  position: absolute;
  background-color: rgb(50, 132, 255);
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.drop-down-menu__nav {
  width: 100%;
  margin-bottom: 40px;
}
.drop-down-menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drop-down-menu__item {
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 14px 0;
  border-bottom: 1px solid rgb(255, 255, 255);
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 700;
  cursor: pointer;
}
.drop-down-menu__link {
  color: inherit;
}
.drop-down-menu__button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.drop-down-menu__button {
  width: 100%;
  max-width: 320px;
  padding: 10px;
  border: none;
  border-radius: 50px;
  margin-bottom: 40px;
  background-color: rgb(255, 255, 255);
  color: rgb(28, 26, 28);
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  display: flex;
  justify-content: center;
}
.drop-down-menu__socials {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 56px;
}
.drop-down-menu__footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.drop-down-menu__location {
  color: rgb(255, 255, 255);
  font-size: 10px;
  line-height: 14px;
  font-weight: 400;
}
.drop-down-menu__location-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drop-down-menu__contacts {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.drop-down-menu__form {
  align-items: center;
}
.drop-down-menu__form_text {
  text-align: center;
}

.drop-down-menu__form-title {
  text-align: center;
}

.benefits-cars__mobile {
  display: none;
}
@media screen and (max-width: 1279px) {
  .benefits-cars__mobile {
    display: block;
  }
}

.benefits-cars {
  background-color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 50px;
  margin-bottom: 60px;
  width: 100%;
  overflow: hidden;
}

.benefits-cars__mobile {
  margin-top: 20px;
  gap: 0 !important;
}

.swiper {
  width: 100%;
  height: 630px;
}
@media screen and (max-width: 700px) {
  .swiper {
    height: 500px;
  }
}
@media screen and (max-width: 500px) {
  .swiper {
    height: 390px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.benefits-cars__img {
  width: 80%;
}

.benefits-cars-park {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefits-cars-park__title {
  font-size: 20px;
  font-weight: 400;
  color: #3284FF;
}
@media screen and (max-width: 700px) {
  .benefits-cars-park__title {
    font-size: 16px;
  }
}

.benefits-cars__transmission {
  font-size: 16px;
  font-weight: 400;
  color: #090909;
}

.benefits-cars__content {
  margin-bottom: 30px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1279px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 998px) {
  .swiper-button-next {
    position: absolute;
    top: 75%;
  }
}

@media screen and (max-width: 998px) {
  .swiper-button-prev {
    position: absolute;
    top: 75%;
  }
}

.reviews-modal {
  width: 50%;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 40px 40px 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: white;
}
@media screen and (max-width: 650px) {
  .reviews-modal {
    padding: 25px;
    width: 90%;
  }
}

.reviews-modal__info {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding-bottom: 20px;
}

.reviews-modal__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reviews-modal__info-name {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
}
@media screen and (max-width: 650px) {
  .reviews-modal__info-name {
    font-size: 22px;
  }
}

.reviews-modal__info-data {
  font-size: 20px;
  font-weight: 400;
  color: #7D7D7D;
}
@media screen and (max-width: 650px) {
  .reviews-modal__info-data {
    font-size: 18px;
  }
}

.reviews-modal__info-text {
  font-size: 20px;
  font-weight: 400;
  color: #1C1A1C;
  width: 100%;
}
@media screen and (max-width: 650px) {
  .reviews-modal__info-text {
    font-size: 16px;
  }
}

.reviews-modal__info-img {
  border-radius: 20px;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 650px) {
  .reviews-modal__info-img {
    display: none;
  }
}

.footer {
  width: 100%;
  background-color: rgb(50, 132, 255);
  margin-top: 23px;
}
@media screen and (max-width: 1240px) {
  .footer__logo {
    display: none;
  }
}
.footer__content {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 20px 0 31px 0;
}
@media screen and (max-width: 1240px) {
  .footer__content {
    padding: 20px 30px;
  }
}
.footer__locationWrapper {
  max-width: 1240px;
  width: 100%;
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 999px) {
  .footer__locationWrapper {
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
    margin: 0;
  }
}
.footer__location-icon {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 999px) {
  .footer__location-text {
    max-width: 149px;
  }
}
.footer__title {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .footer__title {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .footer__nav {
    display: none;
  }
}

.footer-nav__content {
  display: flex;
  gap: 40px;
}
.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
}

.footer-contact__content {
  margin-bottom: 20px;
}
.footer-contact__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact__item {
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
}
.footer-contact__item a {
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
}
@media screen and (max-width: 999px) {
  .footer-contact__item {
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
  }
}
.footer-contact__social {
  display: flex;
  gap: 20px;
}

.green-button-small {
  font-size: 16px;
  font-weight: 600;
  color: rgb(28, 26, 28);
  background-color: #B6F600;
  border-radius: 14px;
  padding: 10px 20px;
  border: none;
  transition: 0.2s all linear;
}
@media screen and (max-width: 1279px) {
  .green-button-small {
    display: none;
  }
}

.green-button,
.green-button-submit,
.green-button-mobile__small {
  font-size: 20px;
  font-weight: 600;
  color: rgb(28, 26, 28);
  background-color: #B6F600;
  color: #12124E;
  border-radius: 20px;
  padding: 17px 40px;
  border: none;
  transition: 0.2s all linear;
}

@media screen and (max-width: 500px) {
  .green-button {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .green-button-mobile__small {
    font-size: 12px;
    padding: 10px 23px;
  }
}

.green-button-submit {
  padding: 17px 92px;
}
@media screen and (max-width: 500px) {
  .green-button-submit {
    padding: 17px 40px;
  }
}

.green-button:hover,
.green-button-submit:hover,
.green-button-small:hover,
.green-button-mobile__small:hover {
  background-color: rgb(213, 255, 92);
}

.green-button:active,
.green-button-submit:active,
.green-button-small:active,
.green-button-mobile__small:active {
  background-color: rgb(162, 226, 0);
}

.blue-button {
  font-size: 20px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  background-color: rgb(50, 132, 255);
  border-radius: 20px;
  padding: 17px 40px;
  border: none;
  cursor: pointer;
  transition: 0.2s all linear;
}
@media screen and (max-width: 500px) {
  .blue-button {
    width: 100%;
  }
}

.way-price__title {
  margin: 40px 0 20px 0;
}

.blue-button__link,
.blue-button__link:hover,
.blue-button__link:active {
  text-decoration: none;
}

.blue-button:hover {
  background-color: rgb(98, 94, 245);
}

.blue-button:active {
  background-color: rgb(58, 54, 205);
}

.slider-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100px;
}

.price-block {
  background-color: rgb(255, 255, 255);
  padding: 40px 23px 40px 40px;
  border-radius: 50px;
  display: flex;
  gap: 60px;
  width: 49%;
}
.price-block:hover {
  background-color: rgb(241, 247, 255);
}
@media screen and (max-width: 1280px) {
  .price-block {
    gap: 25px;
  }
}
@media screen and (max-width: 999px) {
  .price-block {
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px;
  }
}
@media screen and (max-width: 550px) {
  .price-block {
    width: 100%;
  }
}
.price-block__wrapper {
  width: 100%;
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 700;
  color: rgb(50, 132, 255);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .price-block__content {
    width: 40%;
  }
}
@media screen and (max-width: 999px) {
  .price-block__content {
    width: 100%;
  }
}
.price-block__title {
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 700;
  color: rgb(28, 26, 28);
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .price-block__title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 800;
  }
}
.price-block__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: rgb(28, 26, 28);
  margin-bottom: 71px;
}
@media screen and (max-width: 999px) {
  .price-block__text {
    margin-bottom: 20px;
  }
}
.price-block__price {
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 700;
  color: rgb(50, 132, 255);
}
@media screen and (max-width: 999px) {
  .price-block__price {
    font-size: 20px;
    line-height: 24px;
    font-weight: 800;
  }
}
.price-block__button {
  background-color: rgb(50, 132, 255);
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .price-block__button {
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 999px) {
  .price-block__button {
    font-size: 16px;
    line-height: 20.8px;
  }
}
.price-block__icon {
  box-shadow: -4px 2px 10px 0px rgba(209, 217, 230, 0.1);
  box-shadow: -17px 7px 18px 0px rgba(209, 217, 230, 0.09);
  box-shadow: -37px 16px 24px 0px rgba(209, 217, 230, 0.05);
  box-shadow: -66px 29px 29px 0px rgba(209, 217, 230, 0.01);
  box-shadow: -104px 45px 32px 0px rgba(209, 217, 230, 0);
}
@media screen and (max-width: 1280px) {
  .price-block__icon {
    width: 54%;
  }
}
@media screen and (max-width: 999px) {
  .price-block__icon {
    margin: 0 auto;
    width: 100%;
  }
}

.way-card__container {
  max-width: 295px;
  height: 100%;
  background-color: rgb(255, 255, 255);
  padding: 40px 40px 62px 40px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 999px) {
  .way-card__container {
    max-width: 100%;
    padding: 20px;
    border-radius: 20px;
    margin: 0 30px;
  }
}
.way-card__header {
  border-radius: 10px;
  display: flex;
  width: 80px;
}
.way-card__num {
  background-color: rgb(50, 132, 255);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 500;
  line-height: 28.8px;
  text-align: center;
  display: flex;
  padding: 5px 14px;
}
.way-card__icon {
  background-color: rgb(241, 247, 255);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  align-items: center;
  padding: 10px;
  display: flex;
}
.way-card__title {
  font-size: 20px;
  font-family: 700;
  line-height: 24px;
  color: rgb(28, 26, 28);
}
.way-card__text {
  font-size: 16px;
  line-height: 22.4px;
}

.indicators {
  display: flex;
  width: 160px;
  gap: 15px;
}

.indicator__item,
.indicator__item-active {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #D9D9D9;
}

.indicator__item-active {
  background-color: #2055E5;
}

.instructor-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 50px;
  background-color: rgb(50, 132, 255);
  flex-shrink: 0;
  max-width: 295px;
  width: 100%;
}

.instructor-card__img {
  width: 100%;
  max-height: 399px;
  border-radius: 50px;
  background-color: rgb(255, 255, 255);
  object-fit: cover;
  object-position: top;
}

.instructor-card__name {
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
}

.instructor-card__text {
  font-size: 20px;
  font-weight: 500;
  color: #F1F1FD;
  bottom: 40px;
}

.instructor-card__img-container {
  width: 100%;
  height: 216px;
  position: relative;
}

.instructor-card-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 20px 0 40px 0;
  margin: 0 auto;
}

.accordion-wrapper {
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  padding: 50px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 12.57px 10.06px 10px 0px rgba(209, 217, 230, 0.2);
}
@media screen and (max-width: 999px) {
  .accordion-wrapper {
    margin: 0 30px;
    padding: 20px;
    border-radius: 20px;
  }
}

.accordion {
  cursor: pointer;
  width: 100%;
  padding-bottom: 20px;
  border: none;
  border-bottom: 1px solid rgb(125, 125, 125);
  text-align: left;
  transition: 0.5s;
  background: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color: #2B2D33;
  position: relative;
}

.accordion__title {
  width: 75%;
}
@media screen and (max-width: 999px) {
  .accordion__title {
    font-size: 18px;
    line-height: 21.6px;
  }
}

.active, .accordion:hover {
  cursor: pointer;
}

.accordion:after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: rgb(50, 132, 255);
  color: rgb(255, 255, 255);
  content: url(/assets/fonts/accordion-open.svg);
  padding: 6px;
  border-radius: 50%;
  rotate: -90deg;
  right: 0;
  top: -5px;
}

.active:after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: rgb(50, 132, 255);
  color: rgb(255, 255, 255);
  content: url(/assets/fonts/accordion-close.svg);
  padding: 6px;
  rotate: 90deg;
  right: 0;
}

.accordion-block {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-top: 20px;
}

.accordion-block__paragraph,
.accordion-block__text {
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  color: rgb(28, 26, 28);
  line-height: 26px;
}
@media screen and (max-width: 500px) {
  .accordion-block__paragraph,
  .accordion-block__text {
    font-size: 14px;
    line-height: 18px;
  }
}

.accordion-block__instruction {
  font-size: 20px;
  font-weight: 800;
  color: rgb(28, 26, 28);
  padding-bottom: 20px;
}

.accordion-block__items {
  padding: 20px 0;
}

.accordion-block__item {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.accordion-block__items-list {
  padding: 20px 0;
}

.accordion-block__stages {
  font-size: 22px;
  font-weight: 500;
  color: rgb(28, 26, 28);
  padding-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .accordion-block__stages {
    font-size: 20px;
  }
}

.accordion-block__link {
  font-weight: 600;
  color: rgb(50, 132, 255);
}

.accordion-block__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(50, 132, 255);
  color: rgb(255, 255, 255);
}

.price-card {
  border: 2px solid rgb(50, 132, 255);
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 43%;
  height: 763px;
  transition: 0.4s all linear;
  box-sizing: content-box;
  height: auto;
}
@media screen and (max-width: 999px) {
  .price-card {
    padding: 25px;
    position: relative;
  }
}
@media screen and (max-width: 600px) {
  .price-card {
    width: 100%;
    box-sizing: border-box;
  }
}

.price-card__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 999px) {
  .price-card__title {
    flex-direction: column;
    align-items: flex-start;
  }
}

.price-card__transmission {
  background-color: #B6F600;
  padding: 4px 16px;
  font-size: 30px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  border-radius: 24px;
}
@media screen and (max-width: 999px) {
  .price-card__transmission {
    font-size: 24px;
  }
}

.price-card__course {
  font-size: 22px;
  font-weight: 700;
  color: rgb(50, 132, 255);
}
@media screen and (max-width: 999px) {
  .price-card__course {
    font-size: 20px;
  }
}

.price-card__number {
  font-size: 50px;
  font-weight: 800;
  color: #14146C;
}
@media screen and (max-width: 999px) {
  .price-card__number {
    font-size: 40px;
  }
}

.price-card-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-card-item {
  border-bottom: 2px solid #B8B7FF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10px;
}

.price-card-item__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.price-card-item__img {
  width: 30px;
}

.price-card-item__price {
  font-size: 18px;
  font-weight: 700;
  color: #14146C;
}

.price-card-item__text {
  font-size: 16px;
  font-weight: 500;
  color: rgb(50, 132, 255);
}

.price-card__button,
.price-card__button-mb {
  display: none;
  margin-top: 24px;
  width: 100%;
  background-color: #B6F600;
  font-size: 20px;
  font-weight: 600;
  color: rgb(28, 26, 28);
  border: none;
  border-radius: 15px;
  padding: 12px 0;
}

.price-card__button-mb {
  display: block;
}

@media screen and (min-width: 999px) {
  .price-card:hover {
    transition: 0.4s all linear;
    border: 11px solid rgb(50, 132, 255);
  }
}

@media screen and (min-width: 999px) {
  .price-card:hover .price-card__button {
    display: block;
  }
}

.price-card__button-desctop {
  width: 100%;
}
@media screen and (max-width: 999px) {
  .price-card__button-desctop {
    display: none;
  }
}

.price-card__button-mobile {
  display: none;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .price-card__button-mobile {
    display: block;
    position: absolute;
    bottom: -10%;
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  .price-card__button-mobile {
    bottom: -9%;
  }
}

.filials-item {
  box-sizing: border-box;
  width: 288px;
  display: flex;
  justify-content: flex-start;
  gap: 9px;
  border-radius: 20px;
  background-color: #14146C;
  padding: 16px 0 16px 20px;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .filials-item {
    width: 100%;
  }
}

.filials-item__img {
  width: 32px;
}

.filials-item__metro {
  font-size: 16px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.filials-item__link {
  text-decoration: none;
}
@media screen and (max-width: 999px) {
  .filials-item__link {
    width: 49%;
  }
}
@media screen and (max-width: 650px) {
  .filials-item__link {
    width: 100%;
  }
}

.feedbacks__title {
  font-size: 32px;
  font-weight: 700;
  padding-top: 50px;
  margin-bottom: 60px;
}

.feedbacks {
  margin-bottom: 60px;
}

@media screen and (max-width: 743px) {
  .feedbacks2-desctop {
    display: none;
  }
}

.feedbacks2-mobile {
  display: none !important;
}
@media screen and (max-width: 743px) {
  .feedbacks2-mobile {
    display: flex !important;
  }
}

.feedbacks2-block {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 999px) {
  .feedbacks2-block {
    margin-top: 20px;
  }
}
@media screen and (max-width: 743px) {
  .feedbacks2-block {
    flex-direction: row;
    width: 100%;
    gap: 20px;
  }
}

.feedbacks2-block__item {
  height: auto;
}
@media screen and (max-width: 743px) {
  .feedbacks2-block__item {
    flex-direction: column;
    justify-content: flex-start;
    width: 500px !important;
  }
}
@media screen and (max-width: 550px) {
  .feedbacks2-block__item {
    width: 350px !important;
  }
}

.feedbacks2-block__text {
  width: 610px;
}
@media screen and (max-width: 1279px) {
  .feedbacks2-block__text {
    width: 450px;
  }
}
@media screen and (max-width: 743px) {
  .feedbacks2-block__text {
    width: 100%;
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .feedbacks2-block__text {
    font-size: 14px;
    line-height: 18px;
  }
}

.banner {
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 95px 50px;
  border-radius: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 999px) {
  .banner {
    padding: 20px;
    margin: 0 30px 40px 30px;
  }
}
.banner__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .banner__container {
    flex-direction: column;
  }
}
.banner__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 999px) {
  .banner__info {
    order: 2;
  }
}
.banner__title {
  font-size: 40px;
  font-weight: 900;
  color: rgb(28, 26, 28);
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .banner__title {
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    font-weight: 800;
  }
}
.banner__text {
  margin-bottom: 58px;
  font-size: 16px;
  font-family: 400;
  line-height: 22.4px;
  color: rgb(28, 26, 28);
}
@media screen and (max-width: 999px) {
  .banner__text {
    text-align: center;
    margin-bottom: 20px;
  }
}
.banner__location {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: rgb(28, 26, 28);
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 999px) {
  .banner__location {
    font-size: 16px;
    margin: 0 auto 30px auto;
    margin-bottom: 20px;
  }
}
.banner__button {
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: white;
  background-color: rgb(50, 132, 255);
  border-radius: 50px;
  font-size: 20px;
  font-family: 600;
  line-height: 26px;
  cursor: pointer;
}
@media screen and (max-width: 999px) {
  .banner__button {
    width: 16px;
    line-height: 20.8px;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.banner__img {
  width: 100%;
}

.advantages {
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 30px;
  padding: 50px 50px 60px 50px;
  background-image: url(/assets/img/advantages-preview..webp);
  background-repeat: no-repeat;
  background-position: right 6px top -5px;
  background-clip: padding-box;
}
@media screen and (max-width: 999px) {
  .advantages {
    padding: 20px;
    margin: 0 30px;
    display: flex;
    justify-content: center;
    background-position: left -100px top -50px;
  }
}
.advantages__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.advantages__title {
  font-size: 32px;
  font-family: 800;
  line-height: 38.4px;
  color: rgb(28, 26, 28);
}
@media screen and (max-width: 999px) {
  .advantages__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.advantages__text {
  font-size: 20px;
  font-family: 400;
  line-height: 28px;
  color: rgb(28, 26, 28);
}
@media screen and (max-width: 999px) {
  .advantages__text {
    font-size: 16px;
    line-height: 22.4px;
  }
}
.advantages__button {
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  background-color: rgb(50, 132, 255);
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}
@media screen and (max-width: 999px) {
  .advantages__button {
    display: none;
  }
}

.ways-license {
  display: flex;
  max-width: 1240px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .ways-license {
    padding: 20px 0 40px 0;
  }
}

.way-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 20px 0 63px 0;
}
@media screen and (max-width: 999px) {
  .way-card {
    margin: 0 auto;
  }
}
@media screen and (max-width: 999px) {
  .way-card {
    flex-direction: column;
  }
}

.price {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 76px;
}
@media screen and (max-width: 999px) {
  .price {
    margin: 0 30px;
  }
}
.price__title {
  font-size: 32px;
  color: rgb(28, 26, 28);
  font-weight: 800;
  line-height: 38.4px;
}
@media screen and (max-width: 999px) {
  .price__title {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 700;
  }
}
.price__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  margin-bottom: 20px;
  color: rgb(28, 26, 28);
}
.price__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 550px) {
  .price__wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.benefits {
  max-width: 1240px;
  width: 100%;
  padding-top: 50px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1280px) {
  .benefits {
    margin: 40px 20px;
  }
}
.benefits__title {
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 800;
  line-height: 38.4px;
}
@media screen and (max-width: 1280px) {
  .benefits__title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 800;
    margin-bottom: 20px;
  }
}
.benefits__content {
  padding: 50px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  box-shadow: 2px 3px 11.6px 0px rgba(30, 33, 55, 0.1803921569);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
}
@media screen and (max-width: 998px) {
  .benefits__content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 550px) {
  .benefits__content {
    padding: 10px;
  }
}
.benefits__location {
  background-color: rgb(241, 247, 255);
  border-radius: 50px;
  padding: 40px 0 40px 40px;
  display: flex;
  justify-content: space-between;
  grid-area: 1/1/2/3;
  width: 100%;
  height: fit-content;
}
@media screen and (max-width: 1280px) {
  .benefits__location {
    padding: 20px;
    gap: 20px;
  }
}
@media screen and (max-width: 998px) {
  .benefits__location {
    grid-area: 1/1/2/2;
  }
}
@media screen and (max-width: 750px) {
  .benefits__location {
    flex-direction: column;
    align-items: center;
  }
}
.benefits__nstallment {
  background-color: rgb(241, 247, 255);
  padding: 40px;
  border-radius: 59px;
  max-width: 1240px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  height: fit-content;
  grid-area: 2/1/3/3;
}
@media screen and (max-width: 998px) {
  .benefits__nstallment {
    grid-area: 2/1/3/2;
  }
}
@media screen and (max-width: 750px) {
  .benefits__nstallment {
    flex-direction: column-reverse;
  }
}
.benefits__about {
  max-width: 1240px;
  width: 100%;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1280px) {
  .benefits__about {
    flex-direction: column;
  }
}

.benefits-location {
  display: flex;
  flex-direction: column;
}
.benefits-location__info {
  display: flex;
  flex-direction: column;
  grid-area: 1/1/2/3;
}
@media screen and (max-width: 750px) {
  .benefits-location__info {
    align-items: center;
  }
}
.benefits-location__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .benefits-location__title {
    font-size: 18px;
    line-height: 21.6px;
  }
}
@media screen and (max-width: 750px) {
  .benefits-location__title {
    width: 100%;
  }
}
.benefits-location__text {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .benefits-location__text {
    margin-bottom: 0;
  }
}
.benefits-location__stations {
  margin-bottom: 40px;
}
.benefits-location__station {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid rgb(50, 132, 255);
}
@media screen and (max-width: 1280px) {
  .benefits-location__station {
    display: none;
  }
}
.benefits-location__name {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 500;
  color: #12124E;
}
@media screen and (max-width: 1280px) {
  .benefits-location__name {
    font-size: 16px;
  }
}
.benefits-location__button {
  max-width: 240px;
  padding: 17px 40px;
  border: none;
  border-radius: 50px;
  background-color: rgb(50, 132, 255);
  color: rgb(255, 255, 255);
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .benefits-location__button {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  .benefits-location__button {
    font-size: 16px;
    line-height: 20.8px;
  }
}
.benefits-location__img {
  padding: 40px;
  max-width: 500px;
}
@media screen and (max-width: 1280px) {
  .benefits-location__img {
    order: -1;
    padding: 0;
    max-width: 260px;
    height: 160px;
    margin: 0 auto 20px auto;
  }
}

.benefits-nstallment__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 55%;
}
@media screen and (max-width: 1280px) {
  .benefits-nstallment__content {
    width: 48%;
  }
}
@media screen and (max-width: 998px) {
  .benefits-nstallment__content {
    width: 91%;
  }
}
@media screen and (max-width: 998px) {
  .benefits-nstallment__content {
    width: 100%;
  }
}
.benefits-nstallment__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color: rgb(28, 26, 28);
}
@media screen and (max-width: 1280px) {
  .benefits-nstallment__title {
    font-size: 18px;
    line-height: 21.6px;
  }
}
.benefits-nstallment__text {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  color: rgb(28, 26, 28);
}
@media screen and (max-width: 1280px) {
  .benefits-nstallment__icons {
    margin: 0 auto;
    margin-bottom: 16px;
    width: 50%;
  }
}
@media screen and (max-width: 998px) {
  .benefits-nstallment__icons {
    width: 67%;
  }
}
@media screen and (max-width: 998px) {
  .benefits-nstallment__icons_card {
    width: 100%;
  }
}

.benefits-about__content {
  background-color: rgb(241, 247, 255);
  padding: 30px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-area: 3/1/4/2;
  height: fit-content;
}
@media screen and (max-width: 998px) {
  .benefits-about__content {
    grid-area: 4/1/5/2;
  }
}
.benefits-about__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color: rgb(28, 26, 28);
}
.benefits-about__text {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  color: rgb(28, 26, 28);
}
.benefits-about__icon {
  width: 100%;
  grid-area: 3/2/4/3;
}
@media screen and (max-width: 998px) {
  .benefits-about__icon {
    width: 100%;
    margin: 0 auto;
    grid-area: 3/1/4/2;
  }
}
.benefits-about__icon_mobile {
  display: none;
}

.benefits-exams__title {
  font-size: 32px;
  line-height: 38.4px;
  margin-bottom: 20px;
  font-weight: 800;
  color: rgb(28, 26, 28);
}
@media screen and (max-width: 500px) {
  .benefits-exams__title {
    font-size: 24px;
    line-height: 31px;
  }
}

@media screen and (max-width: 1279px) {
  .benefits-education__title {
    padding-bottom: 30px;
  }
}

.benefits-payment__title {
  width: 50%;
}
@media screen and (max-width: 1279px) {
  .benefits-payment__title {
    width: 100%;
  }
}

.benefits-exams__text {
  font-size: 20px;
  font-weight: 400;
  color: #020202;
  line-height: 28px;
}
@media screen and (max-width: 500px) {
  .benefits-exams__text {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 500px) {
  .benefits-location__text {
    font-size: 14px;
    line-height: 21px;
  }
}

.benefits-payment__text:last-child,
.benefits-exams__text:last-child {
  padding-top: 10px;
}

.benefits-location__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
  gap: 40px;
}
@media screen and (max-width: 1279px) {
  .benefits-location__wrapper {
    width: 100%;
  }
}

.benefits-location__stations {
  max-width: 570px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefits-location__pin {
  width: 24px;
}

.benefits-payment {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .benefits-payment {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.benefits-payment__info {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 30px;
  box-shadow: 2px 3px 12px 0px rgba(30, 33, 55, 0.1803921569);
  padding: 55px 30px 60px 30px;
  width: 60%;
}
@media screen and (max-width: 1279px) {
  .benefits-payment__info {
    padding: 35px 30px;
  }
}
@media screen and (max-width: 1280px) {
  .benefits-payment__info {
    width: 100%;
  }
}

.benefits-education {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  border-radius: 30px;
  box-shadow: 2px 3px 12px 0px rgba(30, 33, 55, 0.1803921569);
  gap: 60px;
  padding: 60px 25px 60px 25px;
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .benefits-education {
    flex-direction: column-reverse;
  }
}

.benefits-education__img {
  width: 495px;
}
@media screen and (max-width: 1279px) {
  .benefits-education__img {
    width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .benefits-education__img {
    width: 100%;
  }
}

.benefits-education__title {
  width: 80%;
}
@media screen and (max-width: 1279px) {
  .benefits-education__title {
    width: 100%;
  }
}

.benefits-education__text:not(:first-child) {
  padding-top: 10px;
}

.benefits-instructors {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 120px;
  position: relative;
  width: 1215px;
  overflow-x: hidden;
}

.benefits-instructors__cards {
  display: flex;
  gap: 10px;
  width: 1215px;
  overflow-x: hidden;
}

.benefits-instructors__buttons {
  position: absolute;
  right: 0;
  top: -50px;
}

.benefits-instructors__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 10px 30px 25px;
  background-color: #14146C;
  border-radius: 30px;
  margin-right: 10px;
}
@media screen and (max-width: 743px) {
  .benefits-instructors__form {
    height: auto;
    justify-content: center;
    padding: 60px 21px 30px 21px;
    width: 290px;
    box-sizing: content-box;
  }
}

.benefits-instructors__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 41px;
  color: rgb(255, 255, 255);
  padding-bottom: 38px;
}
@media screen and (max-width: 743px) {
  .benefits-instructors__title {
    font-size: 22px;
    line-height: 31px;
  }
}

.benefits-instructors__btn {
  color: #B6F600;
  border-radius: 20px;
  background-color: #14146C;
  border: 3px solid #B6F600;
  padding: 20px 64px;
}
@media screen and (max-width: 743px) {
  .benefits-instructors__btn {
    width: 100%;
  }
}

.benefits-cars {
  width: 100%;
  position: relative;
}

.benefits-cars__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: rgb(248, 247, 248);
  padding: 20px 84px;
  border-radius: 20px;
  margin: 10px auto 0 auto;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 12.57px 10.06px 10px 0px rgba(209, 217, 230, 0.2);
}

.benefits-cars__title {
  font-size: 32px;
  line-height: 38.4px;
  font-weight: 800;
  color: rgb(28, 26, 28);
  width: 60%;
  margin-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  .benefits-cars__title {
    width: 100%;
  }
}

.benefits-cars__cards {
  position: relative;
  overflow: hidden;
}

.benefits-cars__slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.benefits-cars__cardWrapper {
  display: flex;
}

.benefits-cars__card {
  width: 250px;
  margin-right: 20px;
}

.benefits-cars__img {
  max-width: 780px;
  width: 100%;
}

.benefits-cars__name {
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  color: rgb(28, 26, 28);
}
@media screen and (max-width: 700px) {
  .benefits-cars__name {
    font-size: 24px;
  }
}
@media screen and (max-width: 400px) {
  .benefits-cars__name {
    font-size: 20px;
  }
}

.benefits-cars__transmission {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  color: rgb(28, 26, 28);
}

.benefits-cars__arrow_right {
  position: absolute;
  bottom: 60%;
  left: 50px;
  cursor: pointer;
}
.benefits-cars__arrow_left {
  position: absolute;
  bottom: 60%;
  right: 50px;
  cursor: pointer;
}

.benefits-exams {
  padding: 50px 0;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .benefits-exams {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
}
.benefits-exams__info {
  margin: 40px 30px 0 30px;
}

@media screen and (max-width: 1279px) {
  .benefits-exams__img {
    width: 395px;
  }
}
@media screen and (max-width: 500px) {
  .benefits-exams__img {
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .benefits-exams__imgWrapper {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1280px) {
  .benefits__img {
    position: absolute;
    right: 0;
    bottom: -80px;
  }
}
@media screen and (max-width: 700px) {
  .benefits__img {
    width: 112px;
    bottom: -64px;
  }
}

.ways-license__img {
  width: 160px;
}
@media screen and (max-width: 999px) {
  .ways-license__img {
    display: none;
  }
}

.ways-price__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 100px;
  gap: 100px;
}
@media screen and (max-width: 999px) {
  .ways-price__info {
    margin-top: 60px;
  }
}

.ways-price__title {
  font-size: 32px;
  font-weight: 700;
  color: rgb(28, 26, 28);
  line-height: 41px;
  width: 50%;
}
@media screen and (max-width: 999px) {
  .ways-price__title {
    font-size: 28px;
    line-height: 36px;
    width: 100%;
  }
}

.way-price__title,
.way-price-advantages__title {
  font-size: 30px;
  font-weight: 800;
  color: rgb(28, 26, 28);
  padding-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .way-price__title,
  .way-price-advantages__title {
    font-size: 26px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 999px) {
  .way-price-advantages__title {
    padding-bottom: 20px;
  }
}

.way-price__text,
.way-price-advantages__text {
  font-size: 20px;
  font-weight: 400;
  color: rgb(28, 26, 28);
  padding-top: 15px;
}
@media screen and (max-width: 999px) {
  .way-price__text,
  .way-price-advantages__text {
    font-size: 14px;
  }
}

.way-price-advantages__text {
  padding: 0 0 15px 0;
}

.way-price-advantages-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .way-price-advantages-container {
    flex-direction: column;
  }
}

.way-price-advantages {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.way-price-advantages__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.way-price-advantages__img {
  width: 40%;
}
@media screen and (max-width: 999px) {
  .way-price-advantages__img {
    width: 48%;
  }
}
@media screen and (max-width: 600px) {
  .way-price-advantages__img {
    width: 100%;
  }
}

.way-price-advantages__icon {
  width: 30px;
}

.way-price__text-last {
  padding-bottom: 40px;
}
@media screen and (max-width: 999px) {
  .way-price__text-last {
    padding-bottom: 0;
  }
}

.way-to-autoschool {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 999px) {
  .way-to-autoschool {
    gap: 10px;
  }
}

.way-to-autoschool__title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 40px;
}

.way-to-autoschool__text,
.way-to-autoschool__paragraph {
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 999px) {
  .way-to-autoschool__text,
  .way-to-autoschool__paragraph {
    font-size: 14px;
  }
}

.way-to-autoschool__item {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 650px) {
  .way-to-autoschool__item {
    align-items: flex-start;
  }
}

.way-to-autoschool__link {
  font-size: 20px;
  font-weight: 600;
  color: #4E4AFF;
  padding-bottom: 10px;
}
@media screen and (max-width: 650px) {
  .way-to-autoschool__link {
    font-size: 16px;
  }
}

.way-card__btn-mobile {
  display: none;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .way-card__btn-mobile {
    display: block;
  }
}

@media screen and (max-width: 999px) {
  .way-card__btn {
    display: block;
    padding: 20px 0;
  }
}

.filials {
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 12.57px 10.06px 10px 0px rgba(209, 217, 230, 0.2);
}
@media screen and (max-width: 700px) {
  .filials {
    margin: 0 30px 60px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 375px) {
  .filials {
    margin: 0 0 60px 0;
  }
}
.filials__img {
  width: 451px;
}
@media screen and (max-width: 1280px) {
  .filials__img {
    margin: 0 auto;
    width: 320px;
  }
}
@media screen and (max-width: 700px) {
  .filials__img {
    width: 65%;
  }
}
@media screen and (max-width: 700px) {
  .filials__info {
    width: 100%;
  }
}
.filials__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .filials__wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 700px) {
  .filials__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .filials__wrapper {
    margin-bottom: 10px;
  }
}
.filials__title {
  font-size: 32px;
  line-height: 38.4px;
  font-weight: 800;
  color: #1C1A1C;
}
.filials__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
}
.filials__button-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 700px) {
  .filials__button-wrapper {
    width: 100%;
    flex-direction: column;
  }
}
.filials__button {
  padding: 23px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 20px;
  background-color: #FFFFFF;
  color: #1C1A1C;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
.filials__button_active {
  padding: 24px 92px;
  background-color: rgb(50, 132, 255);
  color: rgb(255, 255, 255);
}
.filials__tags {
  background-color: #F1F7FF;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
}
.filials__stations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filials__station {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid rgb(50, 132, 255);
}
.filials__station-icon {
  width: 24px;
  height: 24px;
}

.distance {
  display: block;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.distance-first-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .distance-first-block {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
  }
}

.distance-first-block__container {
  padding: 40px 60px 50px 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 2px 3px 12px 0px rgba(30, 33, 55, 0.1803921569);
  width: 100%;
}
@media screen and (max-width: 1278px) {
  .distance-first-block__container {
    padding: 40px 60px 20px 20px;
  }
}

.distance-first-block__question {
  font-size: 30px;
  font-weight: 800;
  padding-bottom: 30px;
}
@media screen and (max-width: 1278px) {
  .distance-first-block__question {
    font-size: 22px;
  }
}

.distance-first-block__title {
  font-size: 40px;
  font-weight: 900;
  padding-bottom: 30px;
}
@media screen and (max-width: 1278px) {
  .distance-first-block__title {
    font-size: 31px;
  }
}

.distance-first-block__text {
  font-size: 16px;
  font-weight: 600;
  color: #14146C;
  line-height: 20px;
  padding-bottom: 15px;
}

.distance-first-block__img {
  width: 39%;
}
@media screen and (max-width: 1278px) {
  .distance-first-block__img {
    width: 38%;
    height: 290px;
  }
}
@media screen and (max-width: 999px) {
  .distance-first-block__img {
    width: 100%;
    height: auto;
  }
}

.distance-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .distance-info {
    margin-top: 60px;
  }
}

.distance-info-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 999px) {
  .distance-info-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .distance-info-container {
    grid-template-columns: 1fr;
  }
}

.distance-info__item {
  padding: 50px 20px 55px 20px;
  background-color: #EAEEFF;
  border-radius: 30px;
  height: 315px;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .distance-info__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    height: 170px;
  }
}
@media screen and (max-width: 500px) {
  .distance-info__item {
    padding: 40px 10px 40px 10px;
  }
}

.distance-info__item1 {
  grid-area: 1/1/2/2;
}

.distance-info__item2 {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 600px) {
  .distance-info__item2 {
    grid-area: 2/1/3/2;
  }
}

.distance-info__item3 {
  grid-area: 1/3/2/4;
}
@media screen and (max-width: 999px) {
  .distance-info__item3 {
    grid-area: 2/1/3/2;
  }
}
@media screen and (max-width: 600px) {
  .distance-info__item3 {
    grid-area: 3/1/4/2;
  }
}

.distance-info__item4 {
  grid-area: 2/1/3/2;
}
@media screen and (max-width: 999px) {
  .distance-info__item4 {
    grid-area: 2/2/3/3;
  }
}
@media screen and (max-width: 600px) {
  .distance-info__item4 {
    grid-area: 4/1/5/2;
  }
}

.distance-info__item5 {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 999px) {
  .distance-info__item5 {
    grid-area: 3/1/4/2;
  }
}
@media screen and (max-width: 600px) {
  .distance-info__item5 {
    grid-area: 5/1/6/2;
  }
}

.distance-info__item6 {
  grid-area: 2/3/3/4;
}
@media screen and (max-width: 999px) {
  .distance-info__item6 {
    grid-area: 3/2/4/3;
  }
}
@media screen and (max-width: 600px) {
  .distance-info__item6 {
    grid-area: 6/1/7/2;
  }
}

.distance-info__img-container {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .distance-info__img-container {
    margin-bottom: 0;
    margin-right: 10px;
  }
}

.distance-info__img {
  width: 80px;
}
@media screen and (max-width: 500px) {
  .distance-info__img {
    width: 64px;
  }
}

.distance-info__text {
  font-size: 24px;
  font-weight: 600;
  color: #14146C;
  line-height: 31px;
}
@media screen and (max-width: 500px) {
  .distance-info__text {
    font-size: 18px;
    line-height: 23px;
  }
}

.distance-info__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 20px 60px 20px;
  background-color: rgb(50, 132, 255);
  border-radius: 30px;
  gap: 38px;
  height: 300px;
  box-sizing: border-box;
}
@media screen and (max-width: 500px) {
  .distance-info__block {
    align-items: center;
  }
}

.distance-info__block-text {
  font-size: 24px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.distance-stages {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.distance-stages__title {
  font-size: 40px;
  font-weight: 900;
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .distance-stages__title {
    margin-top: 60px;
    font-size: 30px;
  }
}

.distance-stages__blocks {
  display: flex;
  justify-content: space-between;
  gap: 13px;
  align-items: center;
  margin-top: 120px;
}
@media screen and (max-width: 999px) {
  .distance-stages__blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 500px) {
  .distance-stages__blocks {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}

@media screen and (max-width: 550px) {
  .distance-stages__img {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .distance-stages__img {
    width: 217px;
  }
}

.distance-stages__block {
  border-radius: 18px;
  padding: 20px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 3px 12px 0px rgba(30, 33, 55, 0.1803921569);
  width: 24%;
  height: 340px;
}
@media screen and (max-width: 1279px) {
  .distance-stages__block {
    height: 400px;
  }
}
@media screen and (max-width: 999px) {
  .distance-stages__block {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .distance-stages__block {
    height: auto;
  }
}

@media screen and (max-width: 999px) {
  .distance-stages__block1 {
    grid-area: 1/1/2/2;
  }
}

@media screen and (max-width: 999px) {
  .distance-stages__block2 {
    grid-area: 1/2/2/3;
  }
}
@media screen and (max-width: 500px) {
  .distance-stages__block2 {
    grid-area: 2/1/3/2;
  }
}

@media screen and (max-width: 999px) {
  .distance-stages__block3 {
    grid-area: 2/1/3/2;
  }
}
@media screen and (max-width: 500px) {
  .distance-stages__block3 {
    grid-area: 3/1/4/2;
  }
}

@media screen and (max-width: 999px) {
  .distance-stages__block4 {
    grid-area: 2/2/3/3;
  }
}
@media screen and (max-width: 500px) {
  .distance-stages__block4 {
    grid-area: 4/1/5/2;
  }
}

.distance-stages__text {
  font-size: 16px;
  font-weight: 700;
  color: #14146C;
}

.distance-stages__dotted-img1 {
  position: absolute;
  top: 198px;
  left: 43%;
}
@media screen and (max-width: 999px) {
  .distance-stages__dotted-img1 {
    display: none;
  }
}

.distance-stages__dotted-img2 {
  position: absolute;
  bottom: -65px;
  rotate: 180deg;
  left: 210px;
}
@media screen and (max-width: 999px) {
  .distance-stages__dotted-img2 {
    display: none;
  }
}

.distance-stages__dotted-img3 {
  position: absolute;
  bottom: -65px;
  rotate: 180deg;
  right: 210px;
}
@media screen and (max-width: 999px) {
  .distance-stages__dotted-img3 {
    display: none;
  }
}

.distance-price {
  display: flex;
  flex-direction: column;
}

.distance-price__title {
  font-size: 50px;
  font-weight: 900;
  color: rgb(28, 26, 28);
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .distance-price__title {
    margin-top: 60px;
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .distance-price__title {
    font-size: 30px;
  }
}

.distance-price-blocks {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .distance-price-blocks {
    flex-direction: column;
  }
}

.distance-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background-color: #14146C;
  border-radius: 30px;
  height: 390px;
  width: 40%;
}
@media screen and (max-width: 999px) {
  .distance-price-block {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 999px) {
  .distance-price-block__categories {
    display: none;
  }
}

.distance-price-block__blue {
  background-color: rgb(50, 132, 255);
  width: 65%;
}
@media screen and (max-width: 999px) {
  .distance-price-block__blue {
    width: 100%;
  }
}

.distance-price-block__text {
  font-size: 24px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.distance-price-block__text-mobile {
  display: none;
}
@media screen and (max-width: 999px) {
  .distance-price-block__text-mobile {
    display: block;
    font-size: 20px;
    font-weight: 700;
  }
}

.distance-price-block__marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #B6F600;
}

.distance-price__text {
  font-size: 26px;
  font-weight: 500;
  color: #020202;
  margin: 40px 0 60px 0;
}
@media screen and (max-width: 999px) {
  .distance-price__text {
    font-size: 20px;
  }
}

.distance-price-block__item {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
}

.distance-price-block__item-plus {
  margin-top: 30px;
}

.distance-price-block__title {
  font-size: 26px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin: 0;
}

.distance-price-block__text-crossedout {
  font-size: 20px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-decoration: line-through;
}

.distance-price-block__text-blue {
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.distance-discont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .distance-discont {
    flex-direction: column;
    margin-top: 60px;
  }
}

.distance-discont__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 97px 30px 140px 30px;
  border-radius: 30px;
  box-shadow: 2px 3px 12px 0px rgba(30, 33, 55, 0.1803921569);
  width: 60%;
}
@media screen and (max-width: 1279px) {
  .distance-discont__container {
    padding: 75px 30px 89px 30px;
  }
}
@media screen and (max-width: 999px) {
  .distance-discont__container {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .distance-discont__container {
    padding: 30px 10px 30px 10px;
  }
}

.distance-discont__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
  color: #14146C;
  margin-bottom: 40px;
}
@media screen and (max-width: 1279px) {
  .distance-discont__title {
    font-size: 43px;
    line-height: 62px;
  }
}
@media screen and (max-width: 550px) {
  .distance-discont__title {
    font-size: 25px;
    font-weight: 900;
    line-height: 32px;
    margin-bottom: 20px;
  }
}

.distance-discont__text {
  font-size: 18px;
  font-weight: 400;
  color: #14146C;
  margin-bottom: 20px;
}

.distance-timer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 400px) {
  .distance-timer {
    gap: 5px;
  }
}

.distance-timer__item {
  width: 85px;
  height: 85px;
  background-color: #EAEEFF;
  border-radius: 20px;
  color: #14146C;
  font-size: 50px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .distance-timer__item {
    width: 66px;
    height: 66px;
    font-size: 39px;
  }
}

.distance-timer__colon {
  color: #14146C;
  font-size: 50px;
  font-weight: 700;
}

.distance-pluses {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  border-radius: 30px;
  padding: 60px 25px 60px 25px;
  box-shadow: 2px 3px 12px 0px rgba(30, 33, 55, 0.1803921569);
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .distance-pluses {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
  }
}
@media screen and (max-width: 600px) {
  .distance-pluses {
    padding: 40px 10px 40px 10px;
    gap: 20px;
  }
}

.distance-pluses__img {
  width: 495px;
}
@media screen and (max-width: 600px) {
  .distance-pluses__img {
    width: 100%;
  }
}

.distance-pluses__title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .distance-pluses__title {
    font-size: 26px;
    font-weight: 800;
  }
}

.distance-pluses__text {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
  line-height: 26px;
}
@media screen and (max-width: 600px) {
  .distance-pluses__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}

.distance-facts__title {
  margin-top: 100px;
  font-size: 44px;
  font-weight: 700;
}
@media screen and (max-width: 999px) {
  .distance-facts__title {
    font-size: 34px;
    margin-top: 60px;
  }
}

.distance-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 50px 0 23px;
  border-radius: 30px;
  position: relative;
  margin-top: 65px;
}
@media screen and (max-width: 999px) {
  .distance-form {
    padding: 50px 50px 50px 23px;
  }
}
@media screen and (max-width: 500px) {
  .distance-form {
    display: none;
  }
}

.distance-form__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -2;
}

.distance-form-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: rgba(18, 18, 78, 0.8);
  z-index: -1;
}

.distance-form-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 93px;
  margin-top: 73px;
}
@media screen and (max-width: 999px) {
  .distance-form-content {
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }
}

.distance-form-info__title {
  font-size: 40px;
  font-weight: 900;
  color: rgb(255, 255, 255);
  line-height: 52px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .distance-form-info__title {
    text-align: left;
    font-size: 30px;
    line-height: 45px;
  }
}

.distance-form-info__text {
  font-size: 30px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-align: center;
}
@media screen and (max-width: 999px) {
  .distance-form-info__text {
    text-align: left;
    font-size: 25px;
  }
}

.distance-form-content__title {
  font-size: 40px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 52px;
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .distance-form-content__title {
    font-size: 40px;
    line-height: 45px;
  }
}

.distance-form-content__info {
  width: 55%;
}
@media screen and (max-width: 999px) {
  .distance-form-content__info {
    width: 100%;
  }
}

.distance-form-content__text {
  font-size: 26px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 38px;
}

.application-form__policy-white {
  color: rgb(255, 255, 255);
  width: 400px;
}

.contacts {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0 40px 0;
}
@media screen and (max-width: 999px) {
  .contacts {
    flex-direction: column-reverse;
    width: 100%;
    margin: 20px 30px 40px 30px;
  }
}
.contacts__content {
  padding: 40px 111px 116px 40px;
  border-radius: 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 12.57px 10.06px 10px 0px rgba(209, 217, 230, 0.2);
}
@media screen and (max-width: 1280px) {
  .contacts__content {
    padding: 30px 20px 115px 20px;
  }
}
@media screen and (max-width: 999px) {
  .contacts__content {
    width: 100%;
    padding: 30px 20px;
  }
}
.contacts__title {
  font-size: 32px;
  line-height: 38.4px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1C1A1C;
}
@media screen and (max-width: 999px) {
  .contacts__title {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .contacts__title {
    font-size: 20px;
  }
}
.contacts__item {
  display: flex;
  gap: 20px;
  align-items: center;
}
.contacts__item_time {
  display: flex;
  flex-direction: column;
}
.contacts__item_time-container {
  display: flex;
  gap: 20px;
}
.contacts__text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #1C1A1C;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 999px) {
  .contacts__list {
    gap: 10px;
  }
}

.reviews {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .reviews {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.reviews__title {
  font-size: 40px;
  font-weight: 900;
  width: 25%;
}
@media screen and (max-width: 999px) {
  .reviews__title {
    width: 100%;
  }
}

.about {
  padding-top: 50px;
  margin: 0 30px 60px 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about__content-cards {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .about__content-cards {
    flex-direction: column;
  }
}
.about__title {
  margin-bottom: 40px;
  font-size: 32px;
  line-height: 38.4px;
  font-weight: 800;
  color: #1C1A1C;
}
@media screen and (max-width: 700px) {
  .about__title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.about-card {
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  padding: 40px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 12.57px 10.06px 10px 0px rgba(209, 217, 230, 0.2);
  height: 700px;
  width: 48%;
}
@media screen and (max-width: 999px) {
  .about-card {
    width: 100%;
    height: fit-content;
    padding: 20px;
  }
}
.about-card__img {
  max-width: 100%;
  border-radius: 20px;
}
.about-card__icon {
  margin-bottom: 20px;
}
.about-card__title {
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 700;
  color: #1C1A1C;
}
@media screen and (max-width: 700px) {
  .about-card__title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 600px) {
  .about-card__title-long {
    word-break: break-all;
  }
}
.about-card__text {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  color: #1C1A1C;
  margin-top: 20px;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.gallery-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .gallery-block {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .gallery-block {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
  }
}

.gallery__img1 {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 1279px) {
  .gallery__img1 {
    width: 100%;
    grid-area: 1/1/2/2;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img1 {
    grid-area: 1/1/2/2;
  }
}

.gallery__img2 {
  grid-area: 2/1/3/2;
}
@media screen and (max-width: 1279px) {
  .gallery__img2 {
    width: 100%;
    grid-area: 1/2/2/3;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img2 {
    grid-area: 2/1/3/2;
  }
}

.gallery__img3 {
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 1279px) {
  .gallery__img3 {
    width: 100%;
    grid-area: 3/1/5/2;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img3 {
    grid-area: 3/1/5/2;
  }
}

.gallery__img4 {
  grid-area: 1/3/3/4;
}
@media screen and (max-width: 1279px) {
  .gallery__img4 {
    width: 100%;
    grid-area: 3/2/5/3;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img4 {
    grid-area: 7/1/9/2;
  }
}

.gallery__img5 {
  grid-area: 3/1/4/2;
}
@media screen and (max-width: 1279px) {
  .gallery__img5 {
    width: 100%;
    grid-area: 2/1/3/2;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img5 {
    grid-area: 5/1/6/2;
  }
}

.gallery__img6 {
  grid-area: 3/2/4/3;
}
@media screen and (max-width: 1279px) {
  .gallery__img6 {
    width: 100%;
    grid-area: 2/2/3/3;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img6 {
    grid-area: 6/1/7/2;
  }
}

.gallery__img7 {
  grid-area: 3/3/4/4;
}
@media screen and (max-width: 1279px) {
  .gallery__img7 {
    width: 100%;
    grid-area: 5/1/6/2;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img7 {
    grid-area: 9/1/10/2;
  }
}

.gallery__title {
  font-size: 40px;
  font-weight: 900;
  margin: 40px 0 80px 0;
}
@media screen and (max-width: 500px) {
  .gallery__title {
    margin: 0 0 40px 0;
  }
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.gallery-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .gallery-block {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .gallery-block {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
  }
}

.gallery__img1 {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 1279px) {
  .gallery__img1 {
    width: 100%;
    grid-area: 1/1/2/2;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img1 {
    grid-area: 1/1/2/2;
  }
}

.gallery__img2 {
  grid-area: 2/1/3/2;
}
@media screen and (max-width: 1279px) {
  .gallery__img2 {
    width: 100%;
    grid-area: 1/2/2/3;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img2 {
    grid-area: 2/1/3/2;
  }
}

.gallery__img3 {
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 1279px) {
  .gallery__img3 {
    width: 100%;
    grid-area: 3/1/5/2;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img3 {
    grid-area: 3/1/5/2;
  }
}

.gallery__img4 {
  grid-area: 1/3/3/4;
}
@media screen and (max-width: 1279px) {
  .gallery__img4 {
    width: 100%;
    grid-area: 3/2/5/3;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img4 {
    grid-area: 7/1/9/2;
  }
}

.gallery__img5 {
  grid-area: 3/1/4/2;
}
@media screen and (max-width: 1279px) {
  .gallery__img5 {
    width: 100%;
    grid-area: 2/1/3/2;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img5 {
    grid-area: 5/1/6/2;
  }
}

.gallery__img6 {
  grid-area: 3/2/4/3;
}
@media screen and (max-width: 1279px) {
  .gallery__img6 {
    width: 100%;
    grid-area: 2/2/3/3;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img6 {
    grid-area: 6/1/7/2;
  }
}

.gallery__img7 {
  grid-area: 3/3/4/4;
}
@media screen and (max-width: 1279px) {
  .gallery__img7 {
    width: 100%;
    grid-area: 5/1/6/2;
  }
}
@media screen and (max-width: 500px) {
  .gallery__img7 {
    grid-area: 9/1/10/2;
  }
}

.gallery__title {
  font-size: 40px;
  font-weight: 900;
  margin: 40px 0 80px 0;
}
@media screen and (max-width: 500px) {
  .gallery__title {
    margin: 0 0 40px 0;
  }
}

.instructors-cards {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1240px;
}
.instructors-cards__wrapper {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.instructors-block {
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 999px) {
  .instructors-block {
    margin: 0 30px;
  }
}
@media screen and (max-width: 400px) {
  .instructors-block {
    max-width: 320px;
  }
}
.instructors-block__title {
  font-size: 32px;
  line-height: 38.4px;
  font-weight: 800;
  margin: 60px 0;
}
@media screen and (max-width: 650px) {
  .instructors-block__title {
    font-size: 26px;
    line-height: 30px;
  }
}

.swiper-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 30px;
}
@media screen and (max-width: 999px) {
  .swiper-1 {
    margin-top: 80px;
  }
}

.swiper-3,
.swiper-4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 30px;
}

.swiper-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.swiper-slide__item {
  width: 290px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
}

.swiper-buttons {
  width: 100px;
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  margin-left: 91%;
}
@media screen and (max-width: 1279px) {
  .swiper-buttons {
    margin-left: 89%;
  }
}
@media screen and (max-width: 999px) {
  .swiper-buttons {
    display: none;
    margin-left: 85%;
  }
}
@media screen and (max-width: 680px) {
  .swiper-buttons {
    margin-left: 80%;
  }
}
@media screen and (max-width: 500px) {
  .swiper-buttons {
    margin-left: 69%;
    margin-top: 20px;
  }
}

.swiper-pagination {
  position: static !important;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  background-color: rgb(217, 217, 217) !important;
}

.swiper-pagination-bullet-active {
  background-color: rgb(32, 85, 229) !important;
}

.priceBlock {
  padding-top: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 999px) {
  .priceBlock {
    margin: 0 30px 60px 30px;
  }
}
.priceBlock__title {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 38.4px;
  font-weight: 800;
  width: 100%;
}
.priceBlock__text {
  padding-bottom: 50px;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  width: 100%;
}
.priceBlock__button-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
  gap: 15px;
}
@media screen and (max-width: 1000px) {
  .priceBlock__button-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.priceBlock__button {
  background-color: rgb(255, 255, 255);
  padding: 20px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
@media screen and (max-width: 999px) {
  .priceBlock__button {
    padding: 20px;
    font-size: 18px;
  }
}
.priceBlock__button:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(50, 132, 255);
}
@media screen and (max-width: 1000px) {
  .priceBlock__button {
    width: 100%;
  }
}
.priceBlock__content {
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .priceBlock__content {
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.priceBlock__img {
  width: 610px;
  height: 620px;
}
@media screen and (max-width: 1280px) {
  .priceBlock__img {
    width: 314px;
    height: 280px;
  }
}

@media screen and (max-width: 1000px) {
  .priceBlock__button-list li {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .priceBlock-price__hours li,
  .priceBlock-price__hours-button {
    width: 100%;
    border-radius: 10px;
  }
}

.priceBlock-info__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 38.4px;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .priceBlock-info__title {
    display: none;
  }
}
.priceBlock-info__title_tab {
  display: none;
}
@media screen and (max-width: 999px) {
  .priceBlock-info__title_tab {
    display: block;
    font-size: 24px;
    line-height: 28.8px;
    font-weight: 800;
    margin-bottom: 10px;
  }
}
.priceBlock-info__category {
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 700;
}
@media screen and (max-width: 999px) {
  .priceBlock-info__category {
    display: none !important;
  }
}
.priceBlock-info__category_tab {
  display: none;
}
@media screen and (max-width: 999px) {
  .priceBlock-info__category_tab {
    display: block;
    font-size: 20px;
    line-height: 24px;
    font-weight: 800;
    margin-bottom: 10px;
  }
}
.priceBlock-info__text {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .priceBlock-info__text {
    display: none;
  }
}
.priceBlock-info__text_tab {
  display: none;
}
@media screen and (max-width: 999px) {
  .priceBlock-info__text_tab {
    display: block;
    font-size: 18px;
    line-height: 25.2px;
    font-weight: 400;
    margin-bottom: 20px;
  }
}

.priceBlock-price {
  background-color: #F1F7FF;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
}
.priceBlock-price__hours {
  background-color: #F8F7F8;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .priceBlock-price__hours {
    flex-direction: column;
    align-items: flex-start;
  }
}
.priceBlock-price__hours li :hover {
  background-color: rgb(50, 132, 255);
  color: rgb(255, 255, 255);
}
.priceBlock-price__hours li:first-child .priceBlock-price__hours-button {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.priceBlock-price__hours li:last-child .priceBlock-price__hours-button {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.priceBlock-price__hours-button {
  padding: 5px 37px;
  border: none;
  background-color: inherit;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  cursor: pointer;
}
.priceBlock-price__info {
  margin-top: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.priceBlock-price__info-item {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
}
.priceBlock-price__info-item_tab {
  display: none;
}
@media screen and (max-width: 999px) {
  .priceBlock-price__info-item_tab {
    display: block;
  }
}
.priceBlock-price__text {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  color: #1C1A1C;
  margin-bottom: 10px;
}
.priceBlock-price__price {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  color: rgb(50, 132, 255);
}
.priceBlock-price__button {
  padding: 15px;
  border: none;
  border-radius: 50px;
  width: 100%;
  background-color: rgb(50, 132, 255);
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
}

.instructorsBanner {
  margin-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .instructorsBanner {
    margin: 0 30px 20px 30px;
  }
}
.instructorsBanner__content {
  background-color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 12.57px 10.06px 10px 0px rgba(209, 217, 230, 0.2);
}
@media screen and (max-width: 1280px) {
  .instructorsBanner__content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media screen and (max-width: 998px) {
  .instructorsBanner__content {
    padding: 20px;
  }
}
.instructorsBanner__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 38.4px;
  color: #1C1A1C;
}
@media screen and (max-width: 1280px) {
  .instructorsBanner__title {
    margin-top: 20px;
  }
}
.instructorsBanner__text {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  color: #1C1A1C;
  margin-top: 20px;
}
.instructorsBanner__img {
  width: 508px;
  border-radius: 50px;
}
@media screen and (max-width: 999px) {
  .instructorsBanner__img {
    width: 100%;
  }
}

.feedbacksBlock {
  margin-bottom: 60px;
}
@media screen and (max-width: 999px) {
  .feedbacksBlock {
    margin: 20px 30px 60px 30px;
  }
}
.feedbacksBlock__title {
  padding-top: 50px;
  margin-bottom: 60px;
  font-size: 32px;
  line-height: 38.4px;
  font-weight: 800;
  color: #1C1A1C;
}
@media screen and (max-width: 700px) {
  .feedbacksBlock__title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-top: 0;
    line-height: 26px;
  }
}
.feedbacksBlock__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 20px;
}
@media screen and (max-width: 700px) {
  .feedbacksBlock__content {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}

.feedbacksBlock-card {
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 12.57px 10.06px 10px 0px rgba(209, 217, 230, 0.2);
}
@media screen and (max-width: 700px) {
  .feedbacksBlock-card {
    padding: 20px;
  }
}
.feedbacksBlock-card__header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.feedbacksBlock-card__title {
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1C1A1C;
}
@media screen and (max-width: 700px) {
  .feedbacksBlock-card__title {
    font-size: 18px;
  }
}
.feedbacksBlock-card__date {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #7D7D7D;
}
@media screen and (max-width: 700px) {
  .feedbacksBlock-card__date {
    font-size: 16px;
  }
}
.feedbacksBlock-card__text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #1C1A1C;
  margin-bottom: 20px;
  height: 110px;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .feedbacksBlock-card__text {
    font-size: 16px;
    line-height: 22px;
  }
}
.feedbacksBlock-card__link {
  color: blue;
  text-decoration: underline;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .feedbacksBlock-card__link {
    font-size: 16px;
  }
}
.feedbacksBlock-card__icon {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.feedbacksBlock-card__img {
  border-radius: 20px;
  width: 100px;
  height: 100px;
}

.contacts-map {
  border-radius: 50px;
}
@media screen and (max-width: 999px) {
  .contacts-map {
    width: 100%;
  }
}

body {
  background-color: rgb(255, 255, 255);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background-color: rgb(248, 247, 248) !important;
  z-index: -1;
}

.container {
  display: flex;
  margin: 0 auto;
}

@media (min-width: 400px) {
  .container {
    width: 390px;
  }
}
@media (min-width: 500px) {
  .container {
    width: 95%;
  }
}
@media (min-width: 744px) {
  .container {
    width: 704px;
  }
}
@media (min-width: 1000px) {
  .container {
    width: 962px;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1240px;
  }
}