: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-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: 63px;
  gap: 30px;
  margin: 10px 0;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .header-wrapper {
    padding-right: 10px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 600px) {
  .header-wrapper {
    margin: 0;
  }
}

.header-top__link {
  height: 26px;
}

.container-header {
  background-color: #FFFFFF;
  position: relative;
  z-index: 3;
  width: 100%;
}

.header-top__info {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .header-top__info {
    flex-direction: column;
    gap: 10px;
  }
}

.header-top__icons {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .header-top__icons {
    gap: 10px;
  }
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .header-top {
    padding: 5px 0;
  }
}

.header-top__mail,
.header-top__phone {
  font-size: 16px;
  font-weight: 700;
  color: #12124E;
  text-decoration: none;
}

.green-button__top {
  display: none;
}
@media screen and (max-width: 1279px) {
  .green-button__top {
    display: block !important;
  }
}
@media screen and (max-width: 999px) {
  .green-button__top {
    display: none !important;
  }
}

.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 20px;
  background-color: #FFFFFF;
  width: 100%;
  margin: 0px 30px;
  padding: 10px 0;
}
@media screen and (max-width: 1279px) {
  .header {
    margin: 0px 15px;
  }
}
@media screen and (max-width: 999px) {
  .header {
    display: none;
  }
}

.header-nav__list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.header-nav__link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: 0.2s all linear;
}

li:last-of-type {
  margin-right: 0;
}

.header-logo__link {
  text-decoration: none;
}

.has-submenu {
  margin-bottom: -15px;
  position: relative;
}

.has-submenu:hover .sub-menu {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -20px;
  background-color: #fff;
  border-radius: 20px;
  margin-top: 15px;
  transform: translateY(5px);
  transition: 0.35s;
  border: 1px solid rgb(217, 217, 217);
}

.header-nav__submenu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
}

.header-nav__link:hover {
  cursor: pointer;
  color: rgb(78, 74, 255);
}

.application-form {
  padding: 35px 30px 0 30px;
  background-color: #14146C;
  border-radius: 30px;
  color: #FFFFFF;
  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: #FFFFFF;
  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 {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  background-color: #14146C;
  border-radius: 30px;
  padding: 60px 50px 0 36px;
}
@media screen and (max-width: 1279px) {
  .training-application {
    padding: 30px 60px 30px 36px;
  }
}
@media screen and (max-width: 999px) {
  .training-application {
    margin-top: 60px;
  }
}
@media screen and (max-width: 600px) {
  .training-application {
    margin-top: 40px;
    padding: 20px 20px 30px 20px;
  }
}
@media screen and (max-width: 500px) {
  .training-application {
    width: 100%;
  }
}

.training-application__form {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 999px) {
  .training-application__form {
    width: 70%;
  }
}
@media screen and (max-width: 700px) {
  .training-application__form {
    width: 100%;
  }
}

.training-application__title {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
  padding-bottom: 20px;
}
@media screen and (max-width: 1279px) {
  .training-application__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 26px;
  }
}
@media screen and (max-width: 600px) {
  .training-application__title {
    line-height: 38px;
  }
}

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

.training-application__text {
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 20px;
  color: #FFFFFF;
  line-height: 34px;
}
@media screen and (max-width: 1279px) {
  .training-application__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
  }
}

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

.training-application__images {
  width: 44%;
  position: relative;
}
@media screen and (max-width: 999px) {
  .training-application__images {
    width: 28%;
  }
}
@media screen and (max-width: 700px) {
  .training-application__images {
    width: 0;
  }
}

.training-application__card-img {
  position: absolute;
  left: -62px;
  z-index: 1;
  bottom: -6px;
  width: 114%;
}
@media screen and (max-width: 1279px) {
  .training-application__card-img {
    width: 413px;
    left: -38px;
    bottom: 45px;
  }
}
@media screen and (max-width: 999px) {
  .training-application__card-img {
    width: 336px;
    left: -97px;
    bottom: 94px;
  }
}
@media screen and (max-width: 700px) {
  .training-application__card-img {
    display: none;
  }
}

.training-application__card-conus1 {
  position: absolute;
  width: 180px;
  left: -100px;
  bottom: 0px;
  rotate: -33deg;
}
@media screen and (max-width: 1279px) {
  .training-application__card-conus1 {
    width: 144px;
    left: -66px;
    bottom: 32px;
  }
}
@media screen and (max-width: 999px) {
  .training-application__card-conus1 {
    left: -110px;
    bottom: -4px;
  }
}
@media screen and (max-width: 700px) {
  .training-application__card-conus1 {
    display: none;
  }
}

.training-application__card-conus2 {
  position: absolute;
  width: 112px;
  left: 56px;
  top: -16px;
  filter: blur(4px);
  rotate: -32deg;
}
@media screen and (max-width: 1279px) {
  .training-application__card-conus2 {
    width: 98px;
    left: 0px;
    top: 39px;
  }
}
@media screen and (max-width: 999px) {
  .training-application__card-conus2 {
    left: -43px;
    top: 66px;
  }
}
@media screen and (max-width: 700px) {
  .training-application__card-conus2 {
    display: none;
  }
}

.training-application__card-conus3 {
  position: absolute;
  width: 125px;
  right: 33px;
  top: 117px;
  filter: blur(2px);
}
@media screen and (max-width: 1279px) {
  .training-application__card-conus3 {
    width: 96px;
    right: 6px;
  }
}
@media screen and (max-width: 999px) {
  .training-application__card-conus3 {
    right: -52px;
    top: 157px;
  }
}
@media screen and (max-width: 700px) {
  .training-application__card-conus3 {
    display: none;
  }
}

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

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

@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;
}
@media screen and (max-width: 999px) {
  .benefits-list__item {
    align-items: center;
  }
}

.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: 15px;
}

.benefits-list__title {
  font-size: 25px;
  color: #12124E;
  font-weight: 900;
  line-height: 32px;
  width: 95%;
}
@media screen and (max-width: 500px) {
  .benefits-list__title {
    font-size: 20px;
    line-height: 26px;
  }
}

.benefits-list__text {
  font-size: 18px;
  color: #383838;
  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: flex-start;
  gap: 15px;
  margin-left: 109px;
}
@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 {
  width: 100%;
}

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

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

.as-description__title {
  font-size: 30px;
  font-weight: 800;
  color: #000000;
  padding-bottom: 40px;
}

.as-description__text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  padding-bottom: 10px;
}

.attention-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 2px solid #4E4AFF;
  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: #000000;
  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: #000000;
}
@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: #000000;
  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: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  margin: 40px 0 80px 0;
  gap: 10px;
}
@media screen and (max-width: 999px) {
  .price-category-container {
    margin: 40px 0 140px 0;
  }
}
@media screen and (max-width: 600px) {
  .price-category-container {
    grid-template-columns: 100%;
    gap: 40px;
  }
}

.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: #4E4AFF;
  border-radius: 30px;
  padding: 30px;
  width: 33%;
}

.additional-session__title {
  font-size: 40px;
  font-weight: 900;
  color: #000000;
}
@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: #FFFFFF;
  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: #FFFFFF;
}

.learn-now {
  width: 100%;
  background-color: #4E4AFF;
  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: #FFFFFF;
  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: 60px 0 30px 36px;
  z-index: 12;
  margin: 0;
  display: none;
}
@media screen and (max-width: 999px) {
  .modal {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .modal {
    width: 93%;
    padding: 30px;
  }
}

.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;
}

.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%;
  margin-bottom: 45px;
  margin-top: 15px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 999px) {
  .burger-menu {
    display: flex;
  }
}

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

.burger {
  width: 42px;
  height: 42px;
  z-index: 3;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.green-button__burger {
  display: block !important;
}

.burger-container {
  position: relative;
  height: 24px;
  width: 30px;
}

.burger-line {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: rgb(18, 18, 78);
  position: absolute;
  transition: 0.1s all linear;
}

.burger-line1 {
  top: 0;
  left: 0;
}

.burger-line2 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.burger-line3 {
  bottom: 0;
  left: 0;
}

.burger-line1-active {
  transform: rotate(45deg);
  top: 10px;
}

.burger-line2-active {
  display: none;
}

.burger-line3-active {
  transform: rotate(-45deg);
  bottom: 10px;
}

.burger-submenu {
  position: absolute;
  top: 45px;
  right: 0;
  z-index: 2;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 20px 15px 20px 15px;
  display: none;
}

.burger-submenu__item {
  font-size: 18px;
  font-weight: 500;
  padding-left: 10px;
}

.burger-submenu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.benefits-cars {
  width: 100%;
  overflow: hidden;
}

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

.footer {
  margin-top: 60px;
  width: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 45px 0 90px 0;
}
@media screen and (max-width: 1479px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    justify-content: center;
    position: relative;
    padding: 45px 0 40px 0;
  }
}

.footer-info__container {
  display: flex;
  flex-direction: column;
}

.footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1479px) {
  .footer-info {
    align-items: center;
    justify-content: flex-start;
    width: 962px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 999px) {
  .footer-info {
    width: 704px;
  }
}
@media screen and (max-width: 743px) {
  .footer-info {
    width: 95%;
  }
}

.footer-info__icon {
  padding-right: 5px;
}

.footer-info__text {
  font-size: 20px;
  font-weight: 600;
  color: #8D8E94;
}

.green-button-small {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  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: #000000;
  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: #FFFFFF;
  background-color: #4E4AFF;
  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 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  background-color: #14146C;
  border-radius: 20px;
}
@media screen and (max-width: 1279px) {
  .price-block {
    width: 470px;
  }
}
@media screen and (max-width: 999px) {
  .price-block {
    width: 100%;
  }
}

.price-block__title,
.price-block__price {
  font-size: 32px;
  color: #FFFFFF;
  font-weight: 700;
  padding-bottom: 36px;
}

@media screen and (max-width: 500px) {
  .price-block__title {
    font-size: 28px;
  }
}

.price-block__img {
  position: absolute;
  bottom: 5px;
  right: 70px;
  width: 140px;
}
@media screen and (max-width: 1279px) {
  .price-block__img {
    bottom: 66px;
    right: 28px;
    width: 151px;
  }
}
@media screen and (max-width: 999px) {
  .price-block__img {
    bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .price-block__img {
    display: none;
  }
}

.way-card__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 20px 60px 20px;
  -webkit-box-shadow: 6px 14px 15px 2px rgba(161, 161, 161, 0.54);
  -moz-box-shadow: 6px 14px 15px 2px rgba(161, 161, 161, 0.54);
  box-shadow: 6px 14px 15px 2px rgba(161, 161, 161, 0.54);
  border-radius: 17px;
  box-sizing: border-box;
  height: 410px;
}
@media screen and (max-width: 1279px) {
  .way-card__container {
    width: 48%;
    flex-direction: row;
    height: 230px;
  }
}
@media screen and (max-width: 999px) {
  .way-card__container {
    height: 340px;
  }
}
@media screen and (max-width: 743px) {
  .way-card__container {
    width: 100%;
    height: auto;
    padding: 40px 20px 40px 20px;
  }
}

.way-card__number {
  font-size: 100px;
  font-weight: 800;
  color: #B6F600;
}
@media screen and (max-width: 1279px) {
  .way-card__number {
    padding-right: 20px;
  }
}

.way-card__title {
  font-size: 24px;
  font-weight: 800;
  color: #060606;
  width: 250px;
  padding-bottom: 15px;
}
@media screen and (max-width: 1279px) {
  .way-card__title {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .way-card__title {
    font-size: 22px;
  }
}

.way-card__text {
  font-size: 17px;
  font-weight: 500;
  color: #616161;
  width: 250px;
}
@media screen and (max-width: 1279px) {
  .way-card__text {
    width: 90%;
  }
}
@media screen and (max-width: 999px) {
  .way-card__text {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .way-card__text {
    font-size: 15px;
  }
}

.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: 30px;
  background-color: #14146C;
  position: relative;
}

@media screen and (max-width: 1279px) {
  .instructor-card__full {
    width: 49%;
  }
}
@media screen and (max-width: 999px) {
  .instructor-card__full {
    width: 48%;
  }
}
@media screen and (max-width: 700px) {
  .instructor-card__full {
    width: 100%;
  }
}

.instructor-card__img-container-full {
  width: 100%;
  height: 295px;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .instructor-card__img-container-full {
    width: 100%;
    height: 380px;
  }
}
@media screen and (max-width: 999px) {
  .instructor-card__img-container-full {
    height: 295px;
  }
}
@media screen and (max-width: 700px) {
  .instructor-card__img-container-full {
    height: 420px;
  }
}
@media screen and (max-width: 450px) {
  .instructor-card__img-container-full {
    height: 257px;
  }
}

.instructor-card__img-full,
.instructor-card__img {
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 0 0;
  position: relative;
  object-fit: cover;
  object-position: top;
}

.instructor-card__name {
  font-size: 24px;
  font-weight: 500;
  color: #F1F1FD;
  padding: 15px 0 50px 20px;
}

.instructor-card__experienceDriver {
  font-size: 20px;
  font-weight: 500;
  color: #F1F1FD;
  position: absolute;
  left: 20px;
  bottom: 40px;
}
@media screen and (max-width: 743px) {
  .instructor-card__experienceDriver {
    bottom: 10px;
  }
}

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

.instructor-card-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 25px 50px 25px;
}

.instructor-card__experienceDriver-full,
.instructor-card__experienceInstructor,
.instructor-card__gratitude {
  font-size: 20px;
  font-weight: 500;
  color: #F1F1FD;
  position: static;
}
@media screen and (max-width: 700px) {
  .instructor-card__experienceDriver-full,
  .instructor-card__experienceInstructor,
  .instructor-card__gratitude {
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .instructor-card__experienceDriver-full,
  .instructor-card__experienceInstructor,
  .instructor-card__gratitude {
    font-size: 16px;
  }
}

.instructor-card__name-full {
  padding: 0;
}
@media screen and (max-width: 700px) {
  .instructor-card__name-full {
    font-size: 26px;
    font-weight: 800;
  }
}
@media screen and (max-width: 400px) {
  .instructor-card__name-full {
    font-size: 20px;
  }
}

.instructor-card__img-full {
  width: 394px;
}
@media screen and (max-width: 1279px) {
  .instructor-card__img-full {
    width: 100%;
  }
}

.accordion-wrapper {
  margin-top: 120px;
}
@media screen and (max-width: 999px) {
  .accordion-wrapper {
    margin-top: 90px;
  }
}

.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  border-bottom: 1px solid #D7DAE2;
  text-align: left;
  transition: 0.5s;
  background: #FFFFFF;
  font-size: 30px;
  font-weight: 800;
  color: #2B2D33;
  padding: 32px 0;
  position: relative;
}
@media screen and (max-width: 999px) {
  .accordion {
    width: 99%;
  }
}
@media screen and (max-width: 500px) {
  .accordion {
    font-size: 26px;
    padding: 20px 0;
  }
}

.accordion__title {
  width: 90%;
}

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

.accordion:after {
  position: absolute;
  content: url(/assets/img/back-btn..png);
  rotate: -90deg;
  right: 0;
  top: 20px;
}

.active:after {
  content: url(/assets/img/back-btn..png);
  rotate: 90deg;
  right: 7px;
}

.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: #000000;
  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: #000000;
  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: #000000;
  padding-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .accordion-block__stages {
    font-size: 20px;
  }
}

.accordion-block__link {
  font-weight: 600;
  color: #4E4AFF;
}

.price-card {
  border: 2px solid #4E4AFF;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 763px;
  transition: 0.4s all linear;
  box-sizing: border-box;
  height: auto;
}
@media screen and (max-width: 999px) {
  .price-card {
    padding: 25px;
    position: relative;
  }
}
@media screen and (max-width: 600px) {
  .price-card {
    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: #FFFFFF;
  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: #4E4AFF;
}
@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: #4E4AFF;
}

.price-card__button,
.price-card__button-mb {
  display: none;
  margin-top: 24px;
  width: 100%;
  background-color: #B6F600;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  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 #4E4AFF;
  }
}

@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;
  }
}

.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: #FFFFFF;
}

.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;
  margin-top: 120px;
}

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

.feedbacks-slider {
  position: absolute;
  top: 200px;
  right: 0;
}

.feedbacks-block {
  display: flex;
  justify-content: space-between;
  width: 1251px;
}

.feedbacks-block__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 743px) {
  .feedbacks-block__info {
    align-items: flex-start;
  }
}

.feedbacks-block__item {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  border-radius: 30px;
  box-shadow: 2px 3px 12px 0px rgba(30, 33, 55, 0.1803921569);
  padding: 30px;
  margin: 20px 2px;
}

.feedbacks-block__slide {
  width: 592px !important;
  height: auto !important;
  display: flex !important;
}
@media screen and (max-width: 550px) {
  .feedbacks-block__slide {
    width: 350px !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
}

.feedbacks-block__img {
  border-radius: 10px;
  width: 90px;
  margin-bottom: 18px;
}

.feedbacks-block__name {
  font-size: 16px;
  font-weight: 500;
}

.feedbacks-block__text {
  width: 390px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 550px) {
  .feedbacks-block__text {
    font-size: 14px;
    line-height: 18px;
    width: 100%;
  }
}

.swiper-buttons__feedback {
  display: flex !important;
}

@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;
  }
}

.screen1 {
  width: 100%;
  background-color: #14146C;
  border-radius: 30px;
  padding: 77px 12px 110px 30px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .screen1 {
    padding: 88px 0 63px 17px;
  }
}
@media screen and (max-width: 600px) {
  .screen1 {
    padding: 88px 0 140px 17px;
  }
}
@media screen and (max-width: 500px) {
  .screen1 {
    padding: 45px 0 60px 17px;
  }
}

.screen1__header {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.screen1-container {
  display: flex;
  justify-content: space-between;
}

.screen1-container__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 80%;
  margin-top: 95px;
}
@media screen and (max-width: 999px) {
  .screen1-container__info {
    margin-top: 0;
  }
}
@media screen and (max-width: 710px) {
  .screen1-container__info {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .screen1-container__info {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .screen1-container__info {
    gap: 20px;
  }
}

.screen1-container__text {
  font-size: 26px;
  font-weight: 600;
  color: #FFFFFF;
}
@media screen and (max-width: 999px) {
  .screen1-container__text {
    font-size: 20px;
  }
}

.screen1-container__title {
  font-size: 40px;
  font-weight: 900;
  color: #FFFFFF;
}
@media screen and (max-width: 1279px) {
  .screen1-container__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 999px) {
  .screen1-container__title {
    font-size: 23px;
    line-height: 23px;
  }
}

.screen1-container__title p {
  margin-bottom: 5px;
}
@media screen and (max-width: 500px) {
  .screen1-container__title p {
    font-size: 20px;
  }
}

.screen1__image {
  position: absolute;
  top: 90px;
  right: -25px;
  width: 600px;
}
@media screen and (max-width: 1279px) {
  .screen1__image {
    width: 535px;
    top: 104px;
    right: -33px;
  }
}
@media screen and (max-width: 999px) {
  .screen1__image {
    width: 373px;
    top: 80px;
    right: -26px;
  }
}
@media screen and (max-width: 630px) {
  .screen1__image {
    width: 50%;
    left: 53%;
    top: 40%;
  }
}
@media screen and (max-width: 500px) {
  .screen1__image {
    top: 60%;
  }
}

.screen1__conus1 {
  width: 130px;
  position: absolute;
  bottom: 0;
  left: 38%;
}
@media screen and (max-width: 630px) {
  .screen1__conus1 {
    width: 100px;
    left: 43%;
  }
}
@media screen and (max-width: 500px) {
  .screen1__conus1 {
    left: 37%;
    width: 67px;
  }
}

.screen1__conus2 {
  right: 0;
  top: 140px;
  position: absolute;
}
@media screen and (max-width: 999px) {
  .screen1__conus2 {
    width: 60px;
    top: 110px;
  }
}
@media screen and (max-width: 700px) {
  .screen1__conus2 {
    display: none;
  }
}

.screen1__conus3 {
  width: 130px;
  rotate: -50deg;
  filter: blur(3px);
  position: absolute;
  left: 50%;
  top: 22%;
}
@media screen and (max-width: 999px) {
  .screen1__conus3 {
    width: 100px;
    top: 10%;
  }
}
@media screen and (max-width: 630px) {
  .screen1__conus3 {
    left: 80%;
  }
}
@media screen and (max-width: 500px) {
  .screen1__conus3 {
    left: 68%;
  }
}

.advantages {
  margin-top: 60px;
  width: 100%;
  background-color: #14146C;
  border-radius: 30px;
  padding: 23px 30px 47px 30px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .advantages {
    padding: 30px 20px;
    margin-top: 40px;
  }
}

.advantages-container {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  width: 85%;
}
@media screen and (max-width: 1279px) {
  .advantages-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .advantages-container {
    width: 100%;
  }
}

.advantages-wrapper {
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 743px) {
  .advantages-wrapper {
    flex-direction: column;
    gap: 28px;
  }
}

.advantages-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.advantages__title {
  font-size: 44px;
  font-weight: 900;
  color: #FFFFFF;
  width: 30%;
  line-height: 57px;
}
@media screen and (max-width: 500px) {
  .advantages__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 34px;
    width: 100%;
    margin-bottom: 40px;
  }
}

.advantages-info__number {
  font-size: 60px;
  font-weight: 900;
  color: #FFFFFF;
}

.advantages-info__text {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}

.advantages__traffic-light {
  position: absolute;
  right: -70px;
  top: -75px;
}
@media screen and (max-width: 1279px) {
  .advantages__traffic-light {
    right: 30px;
    top: 6px;
    width: 340px;
  }
}
@media screen and (max-width: 999px) {
  .advantages__traffic-light {
    right: -4px;
    top: -8px;
    width: 250px;
  }
}
@media screen and (max-width: 743px) {
  .advantages__traffic-light {
    flex-direction: column;
    top: 35%;
    right: 37px;
  }
}
@media screen and (max-width: 500px) {
  .advantages__traffic-light {
    width: 177px;
    top: 34%;
    right: 0;
  }
}
@media screen and (max-width: 360px) {
  .advantages__traffic-light {
    right: 0;
  }
}

.advantages__plus-img {
  position: absolute;
  bottom: 10px;
  left: 23%;
}
@media screen and (max-width: 1279px) {
  .advantages__plus-img {
    left: 40%;
    top: 74px;
  }
}
@media screen and (max-width: 999px) {
  .advantages__plus-img {
    left: 53%;
    top: 82px;
  }
}
@media screen and (max-width: 743px) {
  .advantages__plus-img {
    flex-direction: column;
    left: 57%;
    top: 132px;
  }
}
@media screen and (max-width: 500px) {
  .advantages__plus-img {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .way-license-btn__desctop {
    display: none;
  }
}

.way-license-btn__mobile {
  display: none;
}
@media screen and (max-width: 600px) {
  .way-license-btn__mobile {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .way-license-btn {
    display: block;
    padding: 20px 91px;
    margin-bottom: 80px;
  }
}

.ways-license {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ways-license__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 120px;
}
@media screen and (max-width: 999px) {
  .ways-license__info {
    padding-top: 100px;
  }
}
@media screen and (max-width: 500px) {
  .ways-license__info {
    padding-top: 80px;
  }
}

.ways-license__title {
  font-size: 32px;
  font-weight: 900;
  color: #000000;
  width: 50%;
}
@media screen and (max-width: 1279px) {
  .ways-license__title {
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  .ways-license__title {
    font-size: 28px;
  }
}

.way-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 35px 0 120px 0;
}
@media screen and (max-width: 1279px) {
  .way-card {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 999px) {
  .way-card {
    padding: 35px 0 80px 0;
  }
}
@media screen and (max-width: 900px) {
  .way-card {
    padding: 35px 0 35px 0;
  }
}
@media screen and (max-width: 743px) {
  .way-card {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .way-card {
    padding-bottom: 35px;
  }
}

.price {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.price__title {
  font-size: 32px;
  color: #000000;
  font-weight: 900;
  padding-bottom: 40px;
  width: 60%;
}
@media screen and (max-width: 1279px) {
  .price__title {
    width: 70%;
  }
}
@media screen and (max-width: 999px) {
  .price__title {
    width: 100%;
  }
}

.price-wrapper {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .price-wrapper {
    grid-template-columns: 100%;
  }
}

.benefits {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.benefits-start {
  margin-top: 125px;
  margin-bottom: 65px;
  display: flex;
  justify-content: flex-start;
  gap: 50px;
}
@media screen and (max-width: 999px) {
  .benefits-start {
    position: relative;
  }
}
@media screen and (max-width: 500px) {
  .benefits-start {
    margin-top: 80px;
  }
}

.benefits__title {
  font-size: 60px;
  font-weight: 900;
  color: #000000;
  width: 58%;
}
@media screen and (max-width: 1279px) {
  .benefits__title {
    width: 61%;
  }
}
@media screen and (max-width: 999px) {
  .benefits__title {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .benefits__title {
    font-size: 32px;
  }
}

.benefits-location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 20px;
  box-shadow: 2px 3px 11.6px 0px rgba(30, 33, 55, 0.1803921569);
  padding: 20px 20px 45px 20px;
}
@media screen and (max-width: 1279px) {
  .benefits-location {
    flex-direction: column;
  }
}

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

.benefits-location__title,
.benefits-payment__title,
.benefits-education__title,
.benefits-exams__title {
  font-size: 32px;
  font-weight: 900;
  color: #000000;
  line-height: 42px;
  padding-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .benefits-location__title,
  .benefits-payment__title,
  .benefits-education__title,
  .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-location__text,
.benefits-payment__text,
.benefits-education__text,
.benefits-exams__text {
  font-size: 20px;
  font-weight: 500;
  color: #020202;
  line-height: 26px;
}
@media screen and (max-width: 500px) {
  .benefits-location__text,
  .benefits-payment__text,
  .benefits-education__text,
  .benefits-exams__text {
    font-size: 24px;
    line-height: 21px;
  }
}

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

@media screen and (max-width: 500px) {
  .benefits-payment__text,
  .benefits-exams__text,
  .benefits-education__text {
    font-size: 16px;
  }
}

.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 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 1279px) {
  .benefits-location__stations {
    padding-top: 20px;
  }
}

.benefits-location__station {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 10px;
  background-color: #B6F600;
  border-radius: 50px;
}

.benefits-location__pin {
  width: 24px;
}

.benefits-location__name {
  font-size: 24px;
  font-weight: 500;
  color: #12124E;
}
@media screen and (max-width: 500px) {
  .benefits-location__name {
    font-size: 16px;
  }
}

.benefits-payment {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 999px) {
  .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: 999px) {
  .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: 999px) {
  .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;
  justify-content: space-between;
  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: #FFFFFF;
  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%;
  }
}

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

.benefits-cars__title {
  font-size: 36px;
  font-weight: 900;
  color: #000000;
  width: 60%;
  margin: 80px 0 40px 0;
  line-height: 47px;
}
@media screen and (max-width: 999px) {
  .benefits-cars__title {
    width: 100%;
  }
}

.benefits-cars__cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1279px) {
  .benefits-cars__cards {
    margin-top: 40px !important;
  }
}

.benefits-cars__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefits-cars__img {
  width: 289px;
}

.benefits-cars__name {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  padding: 25px 0 0 25px;
}

.benefits-cars__transmission {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  padding: 10px 0 25px 25px;
}

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

.benefits-exams__img {
  width: 495px;
}
@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: 999px) {
  .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: #000000;
  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: #000000;
  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: #000000;
  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 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.filials__title {
  font-size: 40px;
  font-weight: 900;
  color: #000000;
  padding: 40px 0;
}
@media screen and (max-width: 743px) {
  .filials__title {
    font-size: 30px;
    padding: 0 0 40px 0;
  }
}

.filials__text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  padding-bottom: 40px;
}

.filials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .filials-container {
    width: 100%;
    gap: 10px;
  }
}

.filials-consultation {
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-start;
}
@media screen and (max-width: 743px) {
  .filials-consultation {
    flex-direction: column;
    margin-top: 80px;
  }
}

.filials-consultation__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.filials-consultation__title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  padding-bottom: 40px;
}
@media screen and (max-width: 743px) {
  .filials-consultation__title {
    font-size: 30px;
  }
}

.filials-consultation__text,
.filials-consultation__text-last {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 25px;
}
@media screen and (max-width: 743px) {
  .filials-consultation__text,
  .filials-consultation__text-last {
    font-size: 14px;
    font-weight: 500;
  }
}

.filials-consultation__text-last {
  padding-bottom: 60px;
}
@media screen and (max-width: 743px) {
  .filials-consultation__text-last {
    padding-bottom: 20px;
  }
}

.filials-consultation__text {
  padding-bottom: 10px;
}

.filials-consultation__link {
  font-size: 18px;
  font-weight: 700;
  color: #4E4AFF;
}

.filials-consultation__img {
  width: 40%;
}
@media screen and (max-width: 743px) {
  .filials-consultation__img {
    width: 100%;
  }
}

.show-more-btn {
  width: 290px;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  background-color: #B6F600;
  color: #12124E;
  border-radius: 20px;
  padding: 17px 40px;
  border: none;
  transition: 0.2s all linear;
  margin: 20px auto;
}
@media screen and (max-width: 500px) {
  .show-more-btn {
    width: 100%;
  }
}

.show-more-btn:hover {
  background-color: rgb(213, 255, 92);
}

.show-more-btn:active {
  background-color: rgb(162, 226, 0);
}

.show-more-btn:disabled {
  background-color: rgb(141, 142, 148);
  color: #FFFFFF;
}

.hide-btn {
  font-size: 22px;
  color: rgb(141, 142, 148);
  font-weight: 400;
  border: none;
  border-bottom: 1px solid rgb(141, 142, 148);
  padding: 10px;
  width: 125px;
  background-color: transparent;
  margin: 0 auto;
}

.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: #4E4AFF;
  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: #FFFFFF;
}

.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: #000000;
  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: 290px;
  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: #4E4AFF;
  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: #FFFFFF;
}

.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: #FFFFFF;
  margin: 0;
}

.distance-price-block__text-crossedout {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: line-through;
}

.distance-price-block__text-blue {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
}

.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: #FFFFFF;
  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: #FFFFFF;
  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: #FFFFFF;
  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: #FFFFFF;
  line-height: 38px;
}

.application-form__policy-white {
  color: #FFFFFF;
  width: 400px;
}

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

.contacts__title {
  font-size: 40px;
  font-weight: 900;
  margin: 40px 0;
}
@media screen and (max-width: 600px) {
  .contacts__title {
    font-size: 30px;
    margin: 0 0 40px 0;
  }
}

.contacts-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 999px) {
  .contacts-container {
    flex-direction: column;
    gap: 20px;
  }
}

.contacts-info__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 50%;
}
@media screen and (max-width: 999px) {
  .contacts-info {
    width: 100%;
  }
}

.contacts-info__text {
  font-size: 24px;
  font-weight: 500;
  color: rgb(61, 62, 67);
  line-height: 34px;
}
@media screen and (max-width: 600px) {
  .contacts-info__text {
    font-size: 20px;
    line-height: 26px;
  }
}

.contacts-form__title {
  font-size: 30px;
  font-weight: 600;
  color: rgb(61, 62, 67);
  margin-top: 80px;
  margin-bottom: 10px;
}

.contacts-form__wrapper {
  width: 360px;
}

.contacts-form__policy {
  width: 540px;
  color: rgb(61, 62, 67);
}

.contacts-schedule {
  margin-left: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

@media screen and (max-width: 600px) {
  .contacts-form__desktop {
    display: none;
  }
}

.contacts-form__mobile {
  display: none;
}
@media screen and (max-width: 600px) {
  .contacts-form__mobile {
    display: block;
  }
}

.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 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__title {
  font-size: 40px;
  font-weight: 900;
  margin: 40px 0 40px 0;
}
@media screen and (max-width: 999px) {
  .about__title {
    margin: 0 0 40px 0;
  }
}
@media screen and (max-width: 600px) {
  .about__title {
    font-size: 30px;
  }
}

.way-to-autoschool__title {
  margin-bottom: 20px;
}

.way-price__subtitle {
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 20px;
}
@media screen and (max-width: 650px) {
  .way-price__subtitle {
    font-size: 20px;
  }
}

.way-price__text-check {
  padding-top: 0;
}

.about-block__title {
  font-size: 30px;
  font-weight: 800;
  margin: 40px 0;
}
@media screen and (max-width: 600px) {
  .about-block__title {
    font-size: 28px;
    padding: 20px 0;
    margin: 0;
  }
}

.way-price__subtitle-padding {
  padding-top: 20px;
}

.about__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  padding-bottom: 10px;
}
@media screen and (max-width: 650px) {
  .about__text {
    font-size: 16px;
    line-height: 23px;
  }
}

.way-price__text-about1 {
  margin-top: 20px;
}

.instructors-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 700px) {
  .instructors-cards {
    flex-direction: column;
  }
}

.instructors-block__text {
  font-size: 20px;
}

.instructors-block__title {
  font-size: 30px;
  font-weight: 800;
  padding-bottom: 5px;
}

.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;
  }
}

.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;
}

body {
  background-color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.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: 1215px;
  }
}