: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.11
 * 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: August 28, 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 */
.container-header {
  background-color: #000000;
  position: relative;
  z-index: 3;
  width: 100%;
}

.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__link {
  height: 26px;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 18px;
}
.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__phone {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
}
.header-top__left {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 500px) {
  .header-top__left {
    display: none;
  }
}
.header-top__right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.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-between;
  align-items: center;
  border-radius: 20px;
  background-color: #FFFFFF;
  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);
}

.training-application {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  background-color: #00AB6D;
  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 iframe {
  height: 280px;
}
.training-application__form {
  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: 80%;
}
@media screen and (max-width: 710px) {
  .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__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;
  right: -50px;
  z-index: 1;
  bottom: 0;
  width: 150%;
}
@media screen and (max-width: 1279px) {
  .training-application__card-img {
    width: 200%;
    right: -60px;
    bottom: -30px;
  }
}
@media screen and (max-width: 999px) {
  .training-application__card-img {
    width: 300%;
  }
}
@media screen and (max-width: 700px) {
  .training-application__card-img {
    display: none;
  }
}
.training-application__card-conus1 {
  position: absolute;
  width: 180px;
  left: -100px;
  bottom: 180px;
  rotate: -33deg;
}
@media screen and (max-width: 1279px) {
  .training-application__card-conus1 {
    width: 144px;
  }
}
@media screen and (max-width: 999px) {
  .training-application__card-conus1 {
    bottom: 10px;
    left: -200px;
  }
}
@media screen and (max-width: 700px) {
  .training-application__card-conus1 {
    display: none;
  }
}
.training-application__card-conus3 {
  position: absolute;
  width: 125px;
  right: 33px;
  top: 50px;
  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 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1300px) {
  .benefits-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 999px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

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

.benefits-list__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 999px) {
  .benefits-list__item {
    align-items: center;
  }
}

.benefits-list__img {
  width: 56px;
}

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

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

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

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

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

.additional-session-block1,
.additional-session-block2,
.additional-session-block3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #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: #00AB6D;
  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;
}

.footer {
  margin-top: 60px;
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: space-around;
  padding: 45px 0 90px 0;
}
@media (max-width: 710px) {
  .footer {
    display: grid;
    grid-template-areas: "a b" "c b";
  }
  .footer__info:nth-child(2) {
    align-items: end;
    grid-area: "c";
  }
}
.footer__info:first-child {
  grid-area: "a";
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__info:last-child {
  align-items: end;
  grid-area: "b";
}
@media (max-width: 710px) {
  .footer__info:last-child {
    align-items: start;
  }
}
.footer__text {
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
}
.footer__text_bold {
  font-weight: 700;
}
.footer__link {
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
}
.footer__icon {
  width: 84px;
}
.footer__end {
  text-align: end;
}

.transmissions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 999px) {
  .transmissions {
    grid-template-columns: 1fr;
  }
}

.transmission-card {
  padding: 40px;
}
.transmission-card__title {
  text-transform: uppercase;
  font-family: "BN", sans-serif;
  margin-bottom: 40px;
  font-size: 46px;
}
.transmission-card__image {
  position: relative;
  width: 100%;
  height: 400px;
}
.transmission-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.transmission-card__list {
  list-style-type: circle;
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  font-size: 20px;
  flex-direction: column;
}
.transmission-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.transmission-card__list span {
  display: block;
  width: 5px;
  height: 5px;
  background-color: #000000;
  border-radius: 50%;
}
.transmission-card__description {
  margin-top: 40px;
}
.transmission-card__subtitle {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}
.transmission-card__text {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.green-button-small {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #00AB6D;
  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,
.green-button-mobile__small-2 {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #00AB6D;
  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);
}

.white-button {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 17px 40px;
  border: none;
  cursor: pointer;
  transition: 0.2s all linear;
  text-transform: uppercase;
}
@media screen and (max-width: 500px) {
  .white-button {
    width: 100%;
  }
}

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

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

.white-button:hover {
  background-color: #d5ff5c;
}

.white-button:active {
  background-color: #d5ff5c;
}

.price-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  background-color: #00AB6D;
  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;
  align-items: flex-start;
  padding: 20px;
  box-shadow: 0px -2px 6.2px 0px rgba(12, 48, 102, 0.1294117647) inset;
  border-radius: 30px;
  box-sizing: border-box;
  flex: 1;
  gap: 30px;
}

.way-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #060606;
  padding-bottom: 18px;
}

.way-card__text {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}
@media screen and (max-width: 600px) {
  .way-card__text {
    font-size: 15px;
  }
}

.instructor-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 30px;
  background-color: #00AB6D;
  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%;
  }
}

.price-card-a {
  width: 70%;
  margin-inline: auto;
  padding: 60px;
}
.price-card-a .price-card-item__text {
  font-size: clamp(22px, 3vw, 38px);
}

.prices {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media (max-width: 1100px) {
  .prices {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 999px) {
  .prices {
    grid-template-columns: 1fr;
  }
}

.prices-extreme {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media (max-width: 999px) {
  .prices-extreme {
    grid-template-columns: 1fr;
  }
}

.prices-extra-hours {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 60px;
  align-items: start;
}
@media (max-width: 1100px) {
  .prices-extra-hours {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 999px) {
  .prices-extra-hours {
    grid-template-columns: 1fr;
  }
}

.price-card-b {
  padding: 60px 20px;
}
.price-card-b .price-card-item__text {
  font-size: clamp(18px, 3vw, 20px);
}

.price-card {
  border: 2px solid #00AB6D;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.4s all linear;
  box-sizing: content-box;
  height: auto;
}
.price-card__category {
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 10px;
  font-family: "BN", sans-serif;
}
.price-card__price {
  font-size: 50px;
  color: #000000;
  font-weight: 700;
  font-family: "BN", sans-serif;
}
@media screen and (max-width: 999px) {
  .price-card {
    padding: 25px;
    position: relative;
  }
}
@media screen and (max-width: 600px) {
  .price-card {
    width: 100%;
    box-sizing: border-box;
  }
}

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

.price-card-item {
  border-bottom: 2px solid #00AB6D;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-block: 10px;
}
.price-card-item__rate {
  font-weight: 700;
  font-size: 50px;
  font-family: "BN", sans-serif;
}
.price-card-item__text {
  font-weight: 400;
  margin-bottom: 10px;
  width: 70%;
}
.price-card-item__img {
  width: 70px;
}
.price-card-item__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.price-card-item__post-price {
  font-weight: 700;
  font-size: 40px;
  line-height: 65px;
}

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

.price-card__button,
.price-card__button-mb {
  display: none;
  margin-top: 24px;
  width: 100%;
  background-color: #00AB6D;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  border: none;
  border-radius: 15px;
  padding: 12px 0;
}

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

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

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

.filials-item {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 14px;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 4px 9px 15.6px 0px rgba(209, 217, 230, 0.4784313725);
  padding: 40px;
  align-items: start;
  position: relative;
}
.filials-item__metro {
  font-size: 19px;
  font-weight: 700;
  color: #00AB6D;
  text-transform: uppercase;
}
@media screen and (max-width: 999px) {
  .filials-item {
    width: 100%;
  }
}
.filials-item__link-inner {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.filials-item__time {
  color: #8D8E94;
  font-size: 19px;
  font-weight: 400;
}
.filials-item__address {
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 19px;
}
.filials-item__link-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.filials-item__img {
  width: 32px;
}

.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;
  gap: 40px;
  align-items: flex-start;
  border-radius: 30px;
  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: 26px;
  margin-bottom: 18px;
  font-weight: 600;
}
.feedbacks-block__text {
  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%;
  }
}
.feedbacks-block__date {
  color: #00AB6D;
  margin-bottom: 10px;
}

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

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

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

@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: #00AB6D;
  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;
  }
}

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

.screen1-container {
  display: flex;
  justify-content: space-between;
}
.screen1-container__description {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 24px;
}

.screen1-container__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 70%;
  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: 100%;
  }
}
@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;
  text-transform: uppercase;
  font-family: "BN", sans-serif;
}
@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-not-main .screen1__conus1,
.screen1-not-main .screen1__conus2,
.screen1-not-main .screen1__conus3 {
  display: none;
}
.screen1-not-main .screen1__image {
  width: 30%;
}

.screen1__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  z-index: 2;
}
@media (max-width: 710px) {
  .screen1__image {
    right: -100px;
    width: 300px;
  }
}

.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: 30px;
  top: 32%;
  position: absolute;
  z-index: 1;
  width: 150px;
  transform: rotate(20deg);
}
@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: 60%;
  top: 22%;
  z-index: 0;
}
@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 {
    top: 0;
  }
}

.ways-license {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 80px;
}

.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;
  gap: 20px;
}
@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;
  }
}

.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-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-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-payment__text,
.benefits-education__text,
.benefits-exams__text {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
@media screen and (max-width: 500px) {
  .benefits-payment__text,
  .benefits-education__text,
  .benefits-exams__text {
    font-size: 24px;
    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-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;
}
.benefits-education h2 {
  font-family: BN, sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 50px;
}
.benefits-education button {
  margin-top: 40px;
  width: 60%;
}
@media screen and (max-width: 999px) {
  .benefits-education {
    flex-direction: column;
  }
}

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

.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: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1290px) {
  .filials-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 999px) {
  .filials-container {
    grid-template-columns: 1fr;
    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%;
  }
}

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

.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: #00AB6D;
  border-radius: 30px;
  height: 390px;
  width: 40%;
}
@media screen and (max-width: 999px) {
  .distance-price-block {
    width: 100%;
    height: auto;
  }
}

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

.distance-price-block__blue {
  background-color: #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: #00AB6D;
}

.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: #00AB6D;
  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: #00AB6D;
  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: #00AB6D;
  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: #00AB6D;
  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;
  flex-direction: column;
  gap: 20px;
}

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

.section-title {
  text-transform: uppercase;
  font-weight: 700;
  font-family: BN, Arial, Helvetica, sans-serif;
  font-size: clamp(40px, 3vw, 60px);
  margin-top: 100px;
  margin-bottom: 40px;
}

.certificate {
  background-color: #F5F5F5;
  border-radius: 40px;
  padding: 40px 46px;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.certificate__title {
  font-size: 40px;
  font-family: "BN", sans-serif;
  font-weight: 700;
}
.certificate__info {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1000px) {
  .certificate__info {
    flex-direction: column;
  }
}
.certificate__img {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 1000px) {
  .certificate__img {
    max-width: 100%;
  }
}
.certificate .green-button {
  text-transform: uppercase;
  font-family: BN;
  font-size: clamp(20px, 3vw, 40px);
  padding: 24px;
  max-width: 300px;
  width: 100%;
  border-radius: 60px;
  margin-top: 16px;
}
@media (max-width: 1000px) {
  .certificate .green-button {
    margin-inline: auto;
  }
}

.why-we {
  display: flex;
  gap: 4%;
  align-items: start;
  margin-top: 160px;
}
@media (max-width: 500px) {
  .why-we {
    flex-direction: column;
  }
}
.why-we__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 999px) {
  .why-we__cards {
    grid-template-columns: 1fr;
  }
}
.why-we__title {
  margin: 0;
  display: block;
  width: 40%;
}
@media (max-width: 500px) {
  .why-we__title {
    width: 100%;
  }
}

.why-we-card {
  box-shadow: 3px 5px 12.3px 0px rgba(209, 217, 230, 0.4);
  padding: 20px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  height: 125px;
}
.why-we-card__text {
  font-family: BN, sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.way-card-branch__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;
}
@media (max-width: 743px) {
  .way-card-branch__container {
    width: 100%;
    height: auto;
    padding: 40px 20px 40px 20px;
  }
}

.way-card-branch__number {
  font-size: 100px;
  font-weight: 800;
  color: #00AB6D;
}
@media (max-width: 1279px) {
  .way-card-branch__number {
    padding-right: 20px;
  }
}

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

.way-card-branch__text {
  font-size: 17px;
  font-weight: 500;
  color: #616161;
}
@media (max-width: 600px) {
  .way-card-branch__text {
    font-size: 15px;
  }
}

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

.ways-card-branch {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  gap: 20px;
  padding: 35px 0 120px 0;
}
@media (max-width: 1000px) {
  .ways-card-branch {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .ways-card-branch {
    grid-template-columns: 1fr;
  }
}

.slider-card {
  width: 100%;
  overflow: hidden;
  box-shadow: 2px 3px 11.6px 0px rgba(30, 33, 55, 0.1803921569);
  border-radius: 40px;
  padding: 20px;
  margin-top: 80px;
  position: relative;
}
.slider-card .swiper-container {
  width: 90%;
  margin-left: 30px;
  overflow-x: hidden;
}
.slider-card .slider-button__back {
  position: absolute;
  left: 10px;
  top: 66%;
  background: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 22 38%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M19.3333 3L3.33325 19L19.3333 35%27 stroke=%27%2300AB6D%27 stroke-width=%275%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E") no-repeat center/20px #F7F8FA;
}
.slider-card .slider-button__next {
  position: absolute;
  right: 10px;
  top: 65%;
  background: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 22 38%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.66675 3L18.6667 19L2.66675 35%27 stroke=%27%2300AB6D%27 stroke-width=%275%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E") no-repeat center/20px #F7F8FA;
}
.slider-card .slider-button__next, .slider-card .slider-button__back {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.slider-card .section-title {
  margin-top: 0;
}
.slider-card__card {
  width: 110px;
  height: 110px;
  position: relative;
}
.slider-card__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center;
}
.slider-card__name {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  padding: 25px 0 0 25px;
}
.slider-card__transmission {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  padding: 10px 0 25px 25px;
}

.gallery__card {
  width: 200px;
  height: 150px;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Black.ttf);
  font-weight: 900;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: BN;
  src: url(/assets/fonts/BebasNeueBold.ttf);
  font-weight: 700;
}
body {
  background-color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

.container {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  padding-inline: 10px;
}

.green-text {
  color: #00AB6D;
}

.section-subtitle {
  font-weight: 500;
  font-size: 33px;
  margin-bottom: 40px;
}

.gray-text {
  font-weight: 400;
  font-size: 20px;
  color: #616161;
  margin-top: 40px;
}

.swiper-slide__item {
  height: 100px !important;
}

@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: 1100px) {
  .container {
    width: 1150px;
  }
}
@media (min-width: 1290px) {
  .container {
    width: 1280px;
  }
}