@font-face {
  font-family: Pushster;
  font-display: swap;
  src: url("../fonts/Pushster-Regular.woff2") format("woff2"), url("../fonts/Pushster-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#movingCar {
  background: url(../images/bgline.png) repeat-x 0 0;
  top: -30px;
  content: "";
  display: block;
  height: 73px;
  left: 0;
  position: absolute;
  width: 1000000%;
  z-index: 6;
  -webkit-animation: wave-animation-s 180s infinite linear;
  /* Safari 4+ */
  -moz-animation: wave-animation-s 180s infinite linear;
  /* Fx 5+ */
  -o-animation: wave-animation-s 180s infinite linear;
  /* Opera 12+ */
  animation: wave-animation-s 180s infinite linear;
  /* IE 10+ */
}

@keyframes wave-animation-s {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -10000px 0;
  }
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 15px;
}

html {
  box-sizing: border-box;
}

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

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class] {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
}

.header {
  background-image: url("../images/bg_main.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  max-width: 100%;
}

.header-top {
  background: #fff;
  max-width: 100%;
  padding: 10px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0px 0px 20px #bbb8b8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 850px) {
  .header-top .nav__menu {
    flex-wrap: wrap;
  }
}
@media (max-width: 650px) {
  .header__logo {
    width: 100px;
  }
  .header__logo img {
    max-width: 100px;
  }
}
.header__logo .logo {
  width: 150px;
  height: auto;
  padding: 0;
  margin-left: 40px;
}
@media (max-width: 650px) {
  .header__logo .logo {
    width: 100px;
    margin-left: 10px;
  }
}

.header-contact {
  margin-right: 0;
}
@media (max-width: 650px) {
  .header-contact {
    display: none;
  }
}
.header-contact__item {
  margin: 10px 10px;
}
.header-contact__item-icon {
  width: 25px;
  height: auto;
  margin-right: 5px;
}
.header-contact__item-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: sans-serif;
  color: #334964;
}
@media (max-width: 850px) {
  .header-contact__item-link span {
    display: none;
  }
}
.header-contact__item-link:hover {
  color: #5a80af;
}

.header-contact__item-icon {
  width: 25px;
  height: auto;
  margin-right: 5px;
}

.header__inner {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-height: 600px;
}
.header__inner-container {
  width: 100%;
  min-height: 300px;
  margin: 40px 0;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 770px) {
  .header__inner-container {
    display: block;
  }
}
.header__inner .smooth-box {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 40px;
}
@media (max-width: 770px) {
  .header__inner .smooth-box {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.header__inner-about {
  flex: 50% 0 1;
}
.header__inner-about__title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 770px) {
  .header__inner-about__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.header__inner-about__text {
  font-size: 18px;
}
@media (max-width: 770px) {
  .header__inner-about__text {
    font-size: 14px;
  }
}
.header__inner-about__text-item {
  text-indent: 20px;
  position: relative;
  margin-bottom: 10px;
}
.header__inner-about__text-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background-color: #00ff0e;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.header__inner .callback-form {
  flex: 40% 0 0;
}

.footer {
  padding: 70px 20px 40px;
  position: relative;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 550px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
  }
  .footer__inner .footer__menu {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.footer__contacts-address {
  font-size: 21px;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .footer__contacts-address {
    font-size: 16px;
  }
}
@media (max-width: 950px) {
  .footer__contacts-address {
    display: none;
  }
}

@media (max-width: 950px) {
  .footer__nav .nav__menu {
    display: flex;
    flex-direction: column;
  }
}
.footer__contacts-item__icon {
  width: 35px;
  height: auto;
  margin-right: 5px;
}

.footer__contacts-item__link {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: sans-serif;
  color: #334964;
}
.footer__contacts-item__link:hover {
  color: #5a80af;
}

.footer__contacts-text {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.nav__menu {
  display: flex;
  justify-content: center;
}
.nav__menu-item {
  padding: 8px;
  margin: 0 10px;
  transition: 0.2s linear;
  position: relative;
  overflow: hidden;
}
.nav__menu-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: -50%;
  bottom: 3px;
  transform: translateX(-50%);
  background: #000;
  transition: 0.2s linear;
}
.nav__menu-item:hover::before {
  left: 50%;
}

.nav__menu-item__link {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 16px;
}

.modal-content {
  width: 100%;
  position: relative;
}

.modal__title {
  color: #000;
  font-size: 24px;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .modal__title {
    font-size: 18px;
  }
}

.modal__text {
  color: #000;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.modal__subtext {
  font-size: 12px;
  color: rgb(92, 92, 92);
}

.input {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  padding: 15px;
  border: 2px solid #1db344;
  border-radius: 10px;
  outline: none;
  background: rgb(255, 255, 255);
  font-size: 16px;
  color: #1db344;
}
.input:last-child {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .input {
    padding: 8px;
    font-size: 15px;
  }
}

.btn--m {
  display: block;
  font-family: "Comfortaa", sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #4aad54;
  background: #6ef880;
  outline: none;
  transition: 0.3s linear;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px 25px;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.btn--m:hover {
  box-shadow: 0 0 5px rgb(0, 255, 98), 0 0 15px rgb(0, 255, 98);
  cursor: pointer;
  border: 2px solid #2dff42;
}
.btn--m:hover:before {
  left: 0;
}
.btn--m:hover:after {
  right: 0;
}

.main {
  max-width: 100%;
  min-height: 1000px;
  position: relative;
  padding: 140px 0;
  background-image: url(../images/bg-0.png);
}
.main__inner {
  display: flex;
  justify-content: space-between;
}
.main__icons {
  width: 40px;
  height: auto;
  margin-right: 20px;
}

.main__inner-left__title {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 770px) {
  .main__inner-left__title {
    font-size: 18px;
  }
}
.main__inner-left__items-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 5px;
}
@media (max-width: 770px) {
  .main__inner-left {
    padding-left: 20px;
  }
}

@media (max-width: 770px) {
  .main__inner-right {
    display: none;
  }
}
.documents {
  max-width: 100%;
  min-height: 1500px;
  background-image: url(../images/bg-0.png);
}
.documents__title {
  text-align: center;
  margin-bottom: 40px;
}
.documents-img {
  display: block;
  width: 600px;
  height: auto;
  margin: 0 auto;
}

.main2 {
  padding-top: -100px;
}

.documents__inner .documents__block-title {
  font-size: 21px;
  margin-bottom: 10px;
  text-decoration: underline;
}
.documents__inner .documents__item {
  padding-bottom: 20px;
}
.documents__inner .documents__item-text {
  margin-bottom: 20px;
}

.documents__inner .documents__item-text a {
  display: block;
  font-size: 14px;
  color: rgb(24, 97, 255);
  border-bottom: 1px solid rgb(216, 216, 216);
  margin: 5px 0;
  padding-left: 10px;
  margin-bottom: 10px;
}

.documents__inner .documents-link {
  display: block;
  font-size: 14px;
  color: rgb(24, 97, 255);
  border-bottom: 1px solid rgb(216, 216, 216);
  margin: 5px 0;
  padding-left: 10px;
}

.contacts {
  padding: 20px;
  margin-bottom: 150px;
}
@media (max-width: 570px) {
  .contacts {
    padding: 0;
  }
}
.contacts-left {
  padding-left: 20px;
  margin-bottom: 40px;
}
.contacts-left .contact {
  margin-bottom: 8px;
  font-weight: bold;
}
.contacts-left .contact span {
  font-weight: normal;
}
.contacts-right {
  max-width: 100%;
}

.about {
  min-height: 100vh;
  padding-bottom: 150px;
}

.about-title {
  margin-bottom: 25px;
  text-align: center;
}

.instructors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.instructor {
  margin: 0 10px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instructor-name {
  margin-bottom: 10px;
  max-width: 150px;
  text-align: center;
}

.instructor-img {
  width: 250px;
  height: 180px;
  margin-bottom: 10px;
}

.swiper {
  width: 700px;
  height: auto;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
@media (max-width: 800px) {
  .swiper {
    width: 500px;
  }
}
@media (max-width: 600px) {
  .swiper {
    width: 300px;
  }
  .swiper .swiper-button-next {
    display: none;
  }
  .swiper .swiper-button-prev {
    display: none;
  }
}

.swiper-wrapper {
  object-fit: cover;
}

.swiper-slide {
  object-fit: cover;
}

.swiper-img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 600px) {
  .swiper-img {
    width: 300px;
  }
}

.swiper2 {
  width: 700px;
  height: 400px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
@media (max-width: 800px) {
  .swiper2 {
    width: 500px;
  }
}
@media (max-width: 600px) {
  .swiper2 {
    width: 300px;
  }
  .swiper2 .swiper-button-next {
    display: none;
  }
  .swiper2 .swiper-button-prev {
    display: none;
  }
}

.swiper3 {
  width: 700px;
  height: 400px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
@media (max-width: 800px) {
  .swiper3 {
    width: 500px;
  }
}
@media (max-width: 600px) {
  .swiper3 {
    width: 300px;
  }
  .swiper3 .swiper-button-next {
    display: none;
  }
  .swiper3 .swiper-button-prev {
    display: none;
  }
}

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

.open-visually-impaired {
  background-image: url(../img/eye.svg);
}
