@keyframes fadeIn {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@keyframes fadeIn {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Verdana";
  src: url("../../fonts/Verdana/Verdana.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Verdana";
  src: url("../../fonts/Verdana/Verdana.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Verdana";
  src: url("../../fonts/Verdana/Verdana-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Verdana";
  src: url("../../fonts/Verdana/Verdana-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Verdana";
  font-style: normal;
  margin: 0;
  color: #000000;
}

main {
  position: relative;
}

section {
  display: flex;
  justify-content: center;
}

h1,
h2 {
  margin: 0;
}

.container {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.btn {
  cursor: pointer;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  padding: 10px 16px;
  outline: 1px solid #000000;
  transition: all 0.5s ease;
  text-transform: capitalize;
  border-radius: 40px;
  background: white;
  border: none;
}
.btn:hover {
  background: #3399FF;
  color: #fff;
  outline: 1px solid #0b80ec;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

a {
  -webkit-transition: color 500sms ease;
  -ms-transition: color 500ms ease;
  transition: color 500ms ease;
  color: #808080;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
a:hover {
  color: #000000;
}

p {
  font-size: 18px;
  line-height: 150%;
  color: #808080;
}

.space-100 {
  height: 100px;
}

@media (max-width: 1600px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 998px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 479px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .space-100 {
    height: 60px;
  }
}
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__logo-link {
  height: 32px;
  display: block;
}
.header__logo-name {
  font-weight: bold;
  display: block;
  font-family: "helvetica";
  text-transform: uppercase;
  font-size: 32px;
}
.header__logo-name:hover {
  color: #000000;
}
.header__menu-wrapper {
  display: flex;
  position: relative;
}
.header__menu {
  display: flex;
  list-style: none;
}
.header__menu-item {
  color: #808080;
  padding: 0 45px 0px 0;
  font-size: 14px;
}
.header__menu-btn-wrapper {
  display: flex;
  align-items: center;
}
.header__menu-burger {
  display: none;
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    background: #fff;
    z-index: 99;
  }
  .header__logo-name {
    font-size: 28px;
  }
  .header__menu {
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 0 0 0;
  }
  .header__menu-item {
    font-size: 16px;
    border-bottom: 1px solid #808080;
  }
  .header__menu-item:nth-last-of-type(1) {
    border-bottom: none;
  }
  .header__menu-btn-wrapper {
    display: none;
  }
  .header__menu-link {
    width: 100%;
    display: block;
    text-align: start;
    padding: 15px 0;
  }
  .header__menu-wrapper {
    z-index: 1;
    top: 60px;
    left: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    flex-direction: column;
    width: 100%;
    top: 46px;
  }
  .header__menu-wrapper.active {
    opacity: 1;
    padding: 0 20px;
    background: #fff;
    z-index: 99;
    height: auto;
  }
  .header__menu-burger {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(/wp-content/themes/edme/assets/images/burger-icon.svg);
    background-repeat: no-repeat;
  }
}
@media (max-width: 479px) {
  .header {
    height: 60px;
  }
  .header__logo {
    gap: 10px;
  }
  .header__logo-name {
    font-size: 20px;
  }
}
@keyframes fadeIn {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
.promo {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.promo__wrapper {
  display: flex;
}
.promo__tags {
  display: flex;
}
.promo__tag {
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid #3399FF;
  color: var(--Primary, #39f);
  text-align: center;
  font-family: Verdana;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  margin-right: 24px;
}
.promo__title {
  font-family: "Montserrat";
  padding-top: 24px;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 68px;
  text-align: left;
  max-width: 661px;
}
.promo__desc {
  padding-top: 24px;
  max-width: 500px;
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
@media (max-width: 767px) {
  .promo__desc {
    font-size: 14px;
  }
}
.promo__btns {
  padding-top: 24px;
  display: flex;
}
.promo__btn {
  width: auto;
  margin-right: 20px;
}
.promo__btn--arrow {
  position: relative;
  padding-right: 40px;
}
.promo__btn--arrow::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 11px;
  background-image: url(/wp-content/themes/edme/assets/images/arrow-icon-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  position: absolute;
  right: 13px;
  top: 13px;
  transition: all 0.5s ease;
}
.promo__btn--arrow:hover::after {
  background-image: url(/wp-content/themes/edme/assets/images/arrow-icon-white.svg);
}
.promo__image {
  max-width: 600px;
}

@keyframes anime-left {
  from {
    left: 0;
  }
  to {
    left: -10%;
  }
}
@keyframes anime-right {
  from {
    right: 0;
  }
  to {
    right: -10%;
  }
}
.about {
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f9f9fb;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__title {
  color: #000000;
  text-align: center;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 125% */
  letter-spacing: -0.96px;
}
.about__desc {
  padding-top: 24px;
  text-align: center;
  max-width: 730px;
  text-align: center;
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
@media (max-width: 767px) {
  .about__desc {
    font-size: 14px;
  }
}

.advantages {
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantages__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantages__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantages__item {
  padding-top: 35px;
  padding-left: 45px;
  text-align: left;
  width: 300px;
  cursor: pointer;
}
.advantages__item-title {
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  position: relative;
}
.advantages__item-title::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 82.609px;
  border: 1px solid #3399FF;
  background-image: url(/wp-content/themes/edme/assets/images/check-icon-primary.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  position: absolute;
  left: -45px;
  transition: all 0.5s ease;
}
.advantages__item-desc {
  padding-top: 16px;
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
.advantages__item:hover .advantages__item-title::before {
  background-image: url(/wp-content/themes/edme/assets/images/check-icon-white.svg);
  background-color: #3399FF;
}

.promoCareer {
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promoCareer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promoCareer__img {
  width: 275px;
}
.promoCareer__title {
  font-family: "Montserrat";
  padding-top: 25px;
  text-align: center;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 125% */
  letter-spacing: -0.96px;
}
.promoCareer__desc {
  padding-top: 20px;
  max-width: 723px;
  text-align: center;
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
@media (max-width: 767px) {
  .promoCareer__desc {
    font-size: 14px;
  }
}
.promoCareer__btn {
  margin-top: 24px;
  width: auto;
}

.courses {
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.courses__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.courses__title {
  font-family: "Montserrat";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 125% */
  letter-spacing: -0.96px;
}
.courses__desc {
  padding-top: 20px;
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
@media (max-width: 767px) {
  .courses__desc {
    font-size: 14px;
  }
}
.courses__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.courses .course {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #D6D6D6;
  max-width: 44%;
  margin-top: 3%;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
}
.courses .course__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.courses .course__title {
  font-family: "Montserrat";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 133.333% */
}
.courses .course__info {
  padding-top: 14px;
  display: flex;
}
.courses .course__period {
  padding-left: 20px;
}
.courses .course__period-title {
  color: #808080;
}
.courses .course__salary-title {
  color: #808080;
}
.courses .course__desc {
  padding-top: 14px;
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
.courses .course__icon {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 82.609px;
  border: 1px solid #000;
  background-image: url(/wp-content/themes/edme/assets/images/arrow-icon-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}
.courses .course:hover {
  background: #3399FF;
  color: #fff;
}
.courses .course:hover .course__icon {
  background-image: url(/wp-content/themes/edme/assets/images/arrow-icon-primary.svg);
  background-color: #fff;
  border: none;
}
.courses .course:hover .course__desc {
  color: #fff;
}
.courses .course:hover .course__period-title {
  color: #fff;
}
.courses .course:hover .course__salary-title {
  color: #fff;
}

.faq {
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq__wrapper {
  display: flex;
}
.faq__left {
  width: 35%;
}
.faq__right {
  padding-left: 150px;
  width: 65%;
}
.faq__title {
  font-family: "Montserrat";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 125% */
  letter-spacing: -0.96px;
}
.faq__desc {
  padding-top: 24px;
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
@media (max-width: 767px) {
  .faq__desc {
    font-size: 14px;
  }
}
.faq__contacts {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.faq__tel {
  padding-left: 40px;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
}
.faq__tel::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/wp-content/themes/edme/assets/images/phone-icon.svg);
  background-size: contain;
  position: absolute;
  left: 0;
}
.faq__mail {
  padding-top: 12px;
  padding-left: 40px;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
}
.faq__mail::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/wp-content/themes/edme/assets/images/mail-icon.svg);
  background-size: contain;
  position: absolute;
  left: 0;
}
.faq__img {
  padding-top: 24px;
  width: 240px;
}

.questions .question {
  padding: 24px 0 10px 0;
  border-bottom: 1px solid #D6D6D6;
  cursor: pointer;
}
.questions .question__title {
  font-family: "Montserrat";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 133.333% */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.questions .question__answer {
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  height: 0px;
  opacity: 0;
  padding-top: 14px;
  transition: 0.5s ease;
}
@media (max-width: 767px) {
  .questions .question__answer {
    font-size: 14px;
  }
}
.questions .question__toggle {
  width: 24px;
  height: 24px;
  background-image: url(/wp-content/themes/edme/assets/images/plus-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 30px;
  cursor: pointer;
}
.questions .question.active .question__toggle {
  background-image: url(/wp-content/themes/edme/assets/images/minus-icon.svg);
}
.questions .question.active .question__answer {
  height: 100%;
  opacity: 1;
}

.request {
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.request__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.request__title {
  font-family: "Montserrat";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  /* 125% */
  letter-spacing: -0.96px;
}
.request__desc {
  padding-top: 20px;
  max-width: 720px;
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
@media (max-width: 767px) {
  .request__desc {
    font-size: 14px;
  }
}
.request__form {
  width: 100%;
  background: #F9F9FB;
  border-radius: 30px;
  margin-top: 40px;
}

.requestForm {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 0 55px 25px 55px;
}
.requestForm__row {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
}
.requestForm .form__item {
  width: 48%;
}
.requestForm__btn {
  margin-top: 32px;
  width: fit-content;
}
.requestForm__item-padding {
  padding-top: 50px;
}

.subscribeForm {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.subscribeForm__row {
  display: flex;
  justify-content: space-between;
  width: 573px;
  align-items: center;
}
.subscribeForm .form__item {
  width: 330px;
}
.subscribeForm__btn {
  width: fit-content;
  margin-top: 10px;
}
.subscribeForm .wpcf7-spinner {
  display: none;
}

.default-block {
  text-align: center;
}
.default-block__container {
  background-color: white;
}
.default-block__inner {
  position: relative;
  z-index: 5;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.default-block__title {
  font-family: "Montserrat";
  font-size: 36px;
  font-weight: bold;
}
.default-block__desc {
  font-size: 20px;
}
.default-block__btn {
  margin-top: 15px;
  max-width: 245px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
.default-block__anime-left {
  background: url("../../images/default-amine-left.svg") no-repeat;
  background-size: contain;
  background-position-x: -100px;
  width: 477px;
  height: 247px;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: default-anime-left 3s linear infinite alternate;
}
.default-block__anime-right {
  background: url("../../images/default-anime-right.svg") no-repeat;
  background-size: contain;
  background-position-x: 100px;
  width: 477px;
  height: 247px;
  position: absolute;
  bottom: 0;
  right: 0;
  animation: default-anime-right 3s linear infinite alternate;
}

@keyframes default-anime-left {
  to {
    background-position-x: -150px;
  }
}
@keyframes default-anime-right {
  to {
    background-position-x: 150px;
  }
}
.footer {
  font-size: 16px;
  background: #f9f9fb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
  justify-content: space-between;
}
.footer__desc {
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  padding-top: 14px;
  color: #000;
}
@media (max-width: 767px) {
  .footer__desc {
    font-size: 14px;
  }
}
.footer__menu {
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  list-style-type: none;
}
.footer__menu-link {
  color: #808080;
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
@media (max-width: 767px) {
  .footer__menu-link {
    font-size: 14px;
  }
}
.footer__info {
  display: flex;
  justify-content: end;
}
.footer__contacts {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer__tel {
  padding-left: 40px;
  color: #808080;
  position: relative;
  display: flex;
  align-items: center;
}
.footer__tel::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/wp-content/themes/edme/assets/images/phone-icon-black.svg);
  background-size: contain;
  position: absolute;
  left: 0;
}
.footer__mail {
  padding-top: 12px;
  padding-left: 40px;
  color: #808080;
  position: relative;
  display: flex;
  align-items: center;
}
.footer__mail::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/wp-content/themes/edme/assets/images/mail-black-icon.svg);
  background-size: contain;
  position: absolute;
  left: 0;
}

@media (max-width: 1200px) {
  .footer__row {
    gap: 35px;
  }
  .footer__row:nth-child(2) {
    margin-bottom: 50px;
  }
}
@media (max-width: 998px) {
  .footer__inner {
    flex-wrap: wrap;
  }

  .footer__bottom {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
  }
  .footer__item {
    font-size: 14px;
  }
  .footer__menu {
    margin: 0;
    padding: 24px 0 0 0;
  }
  .footer__contacts {
    padding: 24px 0 0 0;
  }
  .footer__desc {
    font-size: 14px;
  }
  .footer__info {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer__row {
    gap: 10px;
  }
  .footer__row:nth-child(2) {
    margin-bottom: 30px;
  }
  .footer__item {
    font-size: 12px;
  }
  .footer__desc {
    font-size: 12px;
  }

  .footer__bottom {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .promo__image {
    max-width: 100%;
  }

  .advantages__items {
    justify-content: space-around;
  }
}
@media (max-width: 991px) {
  .promo__title {
    font-size: 32px;
    line-height: 38px;
    /* 118.75% */
    font-weight: 500;
  }
  .promo__anime-left {
    height: 300px;
  }
  .promo__anime-right {
    width: 536px;
    height: 227px;
  }

  .tariffs__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .default-block__anime-left {
    background-position-x: -200px;
  }
  .default-block__anime-right {
    background-position-x: 150px;
  }

  @keyframes default-anime-left {
    to {
      background-position-x: -250px;
    }
  }
  @keyframes default-anime-right {
    to {
      background-position-x: 200px;
    }
  }
}
@media (max-width: 767px) {
  .promo__wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .promo__image {
    max-width: 100%;
  }
  .promo__title {
    font-size: 32px;
    line-height: 38px;
    /* 118.75% */
    font-weight: 500;
  }
  .promo__tags {
    display: none;
  }
  .promo__btns {
    padding-top: 0px;
    flex-direction: column;
    align-items: self-start;
  }
  .promo__btn {
    margin-top: 15px;
  }

  .about__title {
    font-size: 30px;
  }

  .promoCareer__title {
    font-size: 30px;
    line-height: 34px;
  }

  .faq__wrapper {
    display: block;
  }
  .faq__title {
    padding-top: 30px;
    font-size: 30px;
    line-height: 34px;
  }
  .faq__desc {
    display: none;
  }
  .faq__contacts {
    display: none;
  }
  .faq__img {
    width: 152px;
  }
  .faq__left {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .faq__right {
    width: 100%;
    padding-left: 0;
  }

  .questions .question__title {
    font-size: 18px;
  }
  .questions .question__desc {
    font-size: 14px;
  }

  .courses__title {
    font-size: 30px;
    line-height: 34px;
  }
  .courses .course {
    max-width: 100%;
  }

  .advantages__item {
    padding-left: 30px;
  }
  .advantages__item-title {
    font-size: 20px;
  }

  .request__title {
    font-size: 30px;
    line-height: 34px;
  }

  .requestForm {
    padding: 0 0 30px 0;
  }
  .requestForm__row {
    flex-direction: column;
    padding: 20px 15px 0px 15px;
  }
  .requestForm .form__item {
    width: 100%;
    margin-top: 15px;
  }

  .subscribeForm__row {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .subscribeForm .form__item {
    width: 100%;
  }
}
@media (max-width: 480px) {
  @keyframes anime-left {
    from {
      left: -40%;
    }
    to {
      left: -70%;
    }
  }
  @keyframes anime-right {
    from {
      right: -60%;
    }
    to {
      right: -90%;
    }
  }
  .default-block__anime-left {
    background-position-x: -350px;
  }
  .default-block__anime-right {
    background-position-x: 300px;
  }

  @keyframes default-anime-left {
    to {
      background-position-x: -400px;
    }
  }
  @keyframes default-anime-right {
    to {
      background-position-x: 350px;
    }
  }
}
.contact-form {
  width: 390px;
  background: #ffffff;
  position: relative;
}
.contact-form__title {
  color: #000;
  font-size: 22px;
  font-weight: 700;
}

.form__input {
  padding: 12px;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
}
.form__input::placeholder {
  color: #808080;
}
.form__input:focus {
  border: 1px solid black;
}
.form__input--success {
  border: 1px solid green;
}
.form__input--error {
  border: 1px solid red;
}
.form__select {
  padding: 12px;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
}
.form__item {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.form label {
  font-family: Verdana;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
.form__btn {
  background: none;
  width: 100%;
}
.form__checkbox-wrapper {
  color: #d9d9d9;
  margin: 16px 0;
}

.modal-form {
  width: 100%;
}

.wpcf7-response-output {
  border-color: #3399FF !important;
  border-width: 1px !important;
  padding: 10px 0 !important;
  font-size: 16px;
}

@media (max-width: 1600px) {
  .modal-form {
    font-size: 14px;
  }
  .modal-form__input {
    font-size: 14px;
    padding: 10px;
    margin-top: 10px;
  }
  .modal-form__btn {
    font-size: 16px;
    padding: 15px 0;
  }
}
@media (max-width: 790px) {
  .form {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .contact-form {
    padding-top: 25px;
  }

  .modal-form .form__input {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
