* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ol, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: #FFFFFF;
  height: min-content;
  display: block;
}

* {
  scrollbar-color: #005C3D #878787;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #005C3D;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background-color: #878787;
}

.main {
  background-color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

._container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 10px;
}

._button-white {
  color: #009C68;
  background-color: white;
  width: 131px;
  height: 38px;
  border-radius: 5px;
  border: 1px solid #009C68;
  transition: all 0.8s ease;
}
._button-white:hover {
  color: white;
  background-color: #009C68;
}

._button-green {
  color: white;
  border-radius: 5px;
  transition: all 0.8s ease;
  background-color: #009C68;
}
._button-green:hover {
  background-color: #005C3D;
  cursor: pointer;
}

._link-green {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #009C68;
  width: 131px;
  height: 38px;
  border-radius: 5px;
  transition: all 0.8s ease;
}
._link-green:hover {
  background-color: #005C3D;
}

._link-white {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #009C68;
  background-color: white;
  border: 1px solid #009C68;
  border-radius: 5px;
  transition: all 0.8s ease;
}
._link-white:hover {
  background-color: #009C68;
  color: white;
}

.hidden {
  display: none;
}

.header {
  background-color: #000;
  max-width: 100%;
  height: 80px;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  padding: 0 200px;
  align-items: center;
}

.header__logo {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.header__span-green {
  color: #005C3D;
}

.header__medium-text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
}
.header__medium-text a:nth-child(2) {
  padding: 0 50px;
}
.header__medium-text a {
  transition: all 0.3s ease 0s;
}
.header__medium-text a:hover {
  color: #009C68;
}

.header__personal-cabinet {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}
.header__personal-cabinet a {
  transition: all 0.3s ease 0s;
}
.header__personal-cabinet a:hover {
  color: #009C68;
}

.header__backdropfilter {
  display: none;
  z-index: -1;
}

@media (max-width: 1200px) {
  .header {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .header__medium-text {
    display: none;
  }
  .header__personal-cabinet {
    display: none;
  }
  .header__cross {
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 100;
  }
  .header__cross::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.5s;
  }
  .header__cross::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.5s;
  }
  .header__cross .header__cross-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-1.5px);
    transition: all 0.5s;
  }
  .header__cross-click::before {
    transform: rotate(45deg);
    transition: all 0.5s;
  }
  .header__cross-click::after {
    display: none;
    transition: all 0.5s;
  }
  .header__cross-click .header__cross-line-click {
    top: 0;
    transform: translateY(-0.5px) rotate(-45deg);
    transition: all 0.5s;
  }
  .header__menu-burger {
    width: 360px;
    height: 341px;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    transition: opacity ease 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
  }
  .header__menu-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 20px;
  }
  .header__backdropfilter {
    width: 100%;
    height: 100vh;
    position: absolute;
    display: block;
    display: flex;
  }
}
@media (max-width: 480px) {
  .header {
    height: 60px;
  }
}
.hidden-abs {
  position: absolute;
  display: none;
}

.opacity-see {
  opacity: 1;
  transition: all 0.5s;
}

.blur-fon {
  backdrop-filter: blur(3px);
  z-index: 20;
}

.scroll-none {
  overflow: hidden;
}

.full-screen-wrapper {
  height: 100vh;
  min-height: fit-content;
  width: 100%;
  background-color: #000000;
  padding-bottom: 10px;
}

.full-screen {
  max-width: 1160px;
  margin: 0 auto;
}

.full-screen-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.full-screen__left-part {
  max-width: 50%;
  height: 100%;
  color: #FFFFFF;
  padding-top: 135px;
}

.full-screen_read-area {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.full-screen__text-big {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
}

.full-screen__text-small {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}

.full-screen__right-part {
  flex-basis: 565px;
  height: 100%;
  padding-top: 68px;
}

.full-screen__flex-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
}

.image-box-1 {
  width: 200px;
  border-radius: 100% 100% 100% 0;
  background-color: #009C68;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.full-screen__span {
  font-style: normal;
  font-weight: 700;
  font-size: 21.5537px;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.full-screen__link-size {
  width: 189px;
  height: 48px;
}

.image-box-2 {
  width: 350px;
  height: 150px;
  border-radius: 200px;
  background-image: url(img_1.94c04cdd.png);
  margin: 0 0 15px 0;
}

.image-box-3 {
  width: 350px;
  height: 150px;
  border-radius: 200px;
  background-image: url(img_2.09bfa327.png);
  margin-bottom: 15px;
}

.image-box-4 {
  width: 200px;
  height: 150px;
  border-radius: 200px 200px 200px 0px;
  border-radius: 200px 0px 200px 200px;
  background-image: url(img_3.43e91d22.png);
  margin: 0 0 0 0;
}

.image-box-5 {
  width: 200px;
  height: 150px;
  border-radius: 200px 200px 200px 0px;
  border-radius: 200px;
  background-image: url(img_4.cae64986.png);
}

.image-box-6 {
  width: 350px;
  height: 150px;
  border-radius: 0px 200px 200px 400px;
  background-image: url(img_5.81db853c.png);
  margin-right: 0;
}

@media (max-width: 1060px) {
  .full-screen-wrapper {
    height: 568px;
  }
  .full-screen__right-part {
    flex-basis: 470px;
  }
  .image-box-1 {
    width: 165px;
    height: 125px;
  }
  .image-box-2 {
    width: 290px;
    height: 125px;
  }
  .image-box-3 {
    width: 290px;
    height: 125px;
  }
  .image-box-4 {
    width: 165px;
    height: 125px;
  }
  .image-box-5 {
    width: 165px;
    height: 125px;
  }
  .image-box-6 {
    width: 290px;
    height: 125px;
  }
}
@media (max-width: 950px) {
  .full-screen__right-part {
    flex-basis: 353px;
  }
  .full-screen__text-big {
    font-size: 40px;
    line-height: normal;
  }
  .image-box-1 {
    width: 125px;
    height: 95px;
  }
  .image-box-2 {
    width: 220px;
    height: 95px;
  }
  .image-box-3 {
    width: 220px;
    height: 95px;
  }
  .image-box-4 {
    width: 125px;
    height: 95px;
  }
  .image-box-5 {
    width: 125px;
    height: 95px;
  }
  .image-box-6 {
    width: 220px;
    height: 95px;
  }
}
@media (max-width: 746px) {
  .full-screen__left-part {
    max-width: 100%;
    padding-top: 50px;
  }
  .full-screen__text-big {
    font-size: 50px;
    letter-spacing: 16px;
  }
  .full-screen__right-part {
    display: none;
  }
  .full-screen-content {
    display: block;
  }
}
@media (max-width: 670px) {
  .full-screen__text-big {
    font-size: 30px;
  }
}
@media (max-width: 496px) {
  .full-screen__left-part {
    max-width: 100%;
  }
  .full-screen__text-big {
    font-size: 40px;
    letter-spacing: 0px;
  }
  .full-screen__text-small {
    font-size: 14px;
  }
  .full-screen__right-part {
    display: none;
  }
  .full-screen-content {
    display: block;
  }
  .full-screen__link-size {
    width: 100%;
  }
}
@media (max-width: 373px) {
  .full-screen__left-part {
    max-width: 100%;
  }
  .full-screen__text-big {
    font-size: 35px;
    letter-spacing: 0px;
  }
  .full-screen__text-small {
    font-size: 14px;
  }
  .full-screen__right-part {
    display: none;
  }
  .full-screen-content {
    display: block;
  }
  .full-screen__link-size {
    width: 100%;
  }
}
.advantages {
  width: 100%;
  height: 100%;
  background-color: #F7F8F7;
}
.advantages__body {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0 60px 113px;
}
.advantages__card {
  position: relative;
  max-width: 50%;
  display: flex;
  padding: 25px 130px 25px 14px;
  flex-direction: column;
}
.advantages__img {
  height: 56px;
  position: absolute;
  top: 42px;
  left: -70px;
}
.advantages__title {
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 15px;
}
.advantages__subtitle {
  font-size: 18px;
  line-height: 140%;
}

@media (max-width: 844px) {
  .advantages__card {
    padding-right: 80px;
  }
  .advantages__title {
    font-size: 22px;
  }
  .advantages__subtitle {
    font-size: 14px;
  }
}
@media (max-width: 656px) {
  .advantages__body {
    flex-direction: column;
  }
  .advantages__card {
    max-width: 100%;
  }
}
@media (max-width: 411px) {
  .advantages__body {
    padding: 60px 0 60px 80px;
  }
  .advantages__card {
    padding-right: 20px;
  }
}
.footer {
  width: 100%;
  background-color: #3D3D3D;
  color: white;
  padding: 0 10px;
}
.footer__container {
  display: flex;
}
@media (max-width: 768px) {
  .footer__container {
    justify-content: space-between;
  }
}
.footer__logo {
  padding-right: 93px;
  margin: auto 0;
  transform: translateY(-50%);
}
@media (max-width: 1090px) {
  .footer__logo {
    padding-right: 25px;
  }
}
@media (max-width: 999px) {
  .footer__logo {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    display: block;
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .footer__logo {
    display: block;
    font-size: 25px;
  }
}
.footer__logo_adaptive {
  display: none;
}
@media (max-width: 999px) {
  .footer__logo_adaptive {
    display: block;
    padding: 0 0 30px 0;
  }
}
@media (max-width: 768px) {
  .footer__logo_adaptive {
    display: none;
  }
}
.footer__list {
  font-size: 14px;
  padding: 54px 76px 74px 0;
}
.footer__list li {
  padding: 20px 0;
  width: max-content;
}
.footer__list li a {
  transition: all 0.3s ease 0s;
}
.footer__list li a:hover {
  color: #009C68;
}
@media (max-width: 999px) {
  .footer__list {
    padding: 60px 65px 60px 0;
  }
}
@media (max-width: 768px) {
  .footer__list {
    padding: 25px 10px 25px 0;
  }
}
.footer__give-mail {
  padding: 90px 0 83px 0;
  width: 100%;
}
@media (max-width: 999px) {
  .footer__give-mail {
    padding: 75px 0 0 0;
  }
}
@media (max-width: 768px) {
  .footer__give-mail {
    display: none;
  }
}
.footer__form {
  display: flex;
}
.footer__input {
  width: 68%;
  height: 40px;
  border-radius: 5px 0 0 5px;
  padding-left: 30px;
  margin-bottom: 34px;
  transition: all 0.5s ease 0s;
}
.footer__input:focus {
  box-shadow: 0 0 15px #7a956b;
}
.footer__input._error {
  box-shadow: 0 0 15px red;
}
.footer__input._error::-webkit-input-placeholder {
  color: red;
}
.footer__input._error::-moz-placeholder {
  color: red;
}
.footer__button {
  width: 30%;
  height: 40px;
  border-radius: 0 5px 5px 0;
  transform: translateX(-4px);
}
.footer__text {
  font-size: 12px;
  line-height: 15px;
  max-width: 610px;
}
@media (max-width: 999px) {
  .footer__text {
    max-width: 100%;
  }
}
.footer__icons {
  display: flex;
  flex-direction: column;
  padding: 80px 0 78px 100px;
  justify-content: space-around;
}
.footer__icons a:nth-child(2) {
  margin: 35px 0;
}
@media (max-width: 999px) {
  .footer__icons a:nth-child(2) {
    margin: 0;
  }
}
.footer__icons img {
  cursor: pointer;
}
@media (max-width: 999px) {
  .footer__icons {
    display: none;
  }
}
.footer__icons_adaptive {
  display: none;
}
@media (max-width: 999px) {
  .footer__icons_adaptive {
    display: flex;
    flex-direction: row;
    width: 220px;
    padding: 0;
    margin: 30px 0 0 auto;
  }
}

.full-screen-wrapper {
  background-color: #000;
  height: 600px;
}

.full-screen_read-area {
  padding-top: 140px;
}
.full-screen__left-part {
  padding: 0;
}
.full-screen__link-size {
  width: 189px;
  height: 48px;
}
.full-screen__right-part {
  padding-top: 121px;
}
.choose-header__navigation {
  display: flex;
  padding-top: 20px;
}
.choose-header__navigation-main {
  color: #878787;
  font-weight: 400;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}
.choose-header__navigation-course {
  color: #878787;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}

.advantages {
  background-color: #FFFFFF;
}
.advantages__card:nth-child(3) {
  padding-bottom: 0;
}
.advantages__card:nth-child(4) {
  padding-bottom: 0;
}

.structure-lesson {
  background-color: #F7F8F7;
}
.structure-lesson__container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
@media (max-width: 999px) {
  .structure-lesson__container {
    flex-direction: column;
    align-items: center;
  }
}
.structure-lesson__left-part {
  width: 50%;
  padding: 0 20px;
}
@media (max-width: 999px) {
  .structure-lesson__left-part {
    width: 100%;
  }
}
.structure-lesson__title {
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  padding-top: 60px;
}
@media (max-width: 999px) {
  .structure-lesson__title {
    font-size: 40px;
    line-height: normal;
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .structure-lesson__title {
    font-size: 35px;
    padding-top: 20px;
  }
}
@media (max-width: 480px) {
  .structure-lesson__title {
    font-size: 30px;
  }
}
@media (max-width: 360px) {
  .structure-lesson__title {
    font-size: 25px;
  }
}
.structure-lesson__under-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  padding-top: 40px;
}
@media (max-width: 999px) {
  .structure-lesson__under-title {
    line-height: normal;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .structure-lesson__under-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .structure-lesson__under-title {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .structure-lesson__under-title {
    font-size: 16px;
  }
}
.structure-lesson__choose-data {
  display: flex;
}
.structure-lesson__data-number {
  padding-top: 20px;
  font-weight: 600;
  font-size: 200px;
  line-height: 244px;
  color: #005C3D;
}
@media (max-width: 999px) {
  .structure-lesson__data-number {
    font-size: 170px;
    line-height: normal;
  }
}
@media (max-width: 768px) {
  .structure-lesson__data-number {
    font-size: 140px;
  }
}
@media (max-width: 480px) {
  .structure-lesson__data-number {
    font-size: 110px;
  }
}
@media (max-width: 360px) {
  .structure-lesson__data-number {
    font-size: 80px;
  }
}
.structure-lesson__data-number-text {
  padding: 72px 0 0 19px;
  max-width: 346px;
}
.structure-lesson__choose-data-heading {
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
}
.structure-lesson__choose-data-text {
  padding-top: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
}
@media (max-width: 999px) {
  .structure-lesson__choose-data-text {
    font-size: 18px;
    line-height: normal;
  }
}
@media (max-width: 768px) {
  .structure-lesson__choose-data-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .structure-lesson__choose-data-text {
    font-size: 15px;
  }
}
.structure-lesson__arrow-right {
  width: 60px;
  height: 26px;
  cursor: pointer;
  float: right;
}
.structure-lesson__right-part {
  width: 50%;
  padding: 88px 0 50px 0;
  background-color: #F7F8F7;
}
@media (max-width: 999px) {
  .structure-lesson__right-part {
    width: 100%;
    padding: 0 0 50px 0;
  }
}
.structure-lesson__slider-line {
  margin-top: 85px;
  width: 100%;
  height: 1px;
  background-color: #0E110D;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 999px) {
  .structure-lesson__slider-line {
    margin-top: 35px;
  }
}
.structure-lesson__slider-line-snake {
  width: 33%;
  height: 3px;
  background-color: #005C3D;
  position: relative;
}
.structure-lesson__container-for-slide-bar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 560px;
  overflow: hidden;
}
@media (max-width: 1127px) {
  .structure-lesson__container-for-slide-bar {
    width: 500px;
  }
}
@media (max-width: 999px) {
  .structure-lesson__container-for-slide-bar {
    margin: 0 auto;
  }
}
@media (max-width: 635px) {
  .structure-lesson__container-for-slide-bar {
    width: 500px;
  }
}
@media (max-width: 505px) {
  .structure-lesson__container-for-slide-bar {
    width: 400px;
  }
}
@media (max-width: 405px) {
  .structure-lesson__container-for-slide-bar {
    width: 300px;
  }
}
.structure-lesson__snake-slide-bar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  right: 20px;
}
.structure-lesson__snake-slide-bar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.structure-lesson__slider-img {
  padding-top: 108px;
}
@media (max-width: 999px) {
  .structure-lesson__slider-img {
    padding-top: 35px;
  }
}

.animation-img__1 {
  right: 200%;
  transition: 0.5s;
}
.animation-img__2 {
  right: 100%;
  transition: 0.5s;
}
.animation-img__3 {
  right: 0;
  transition: 0.5s;
}

.animation-slider__1 {
  transform: translateX(0);
  transition: 0.5s;
}
.animation-slider__2 {
  transform: translateX(100%);
  transition: 0.5s;
}
.animation-slider__3 {
  transform: translateX(200%);
  transition: 0.5s;
}

._button-green-mod {
  color: white;
  border-radius: 5px;
  transition: all 0.8s ease;
  background-color: #009C68;
}
._button-green-mod:hover {
  background-color: #005C3D;
  cursor: pointer;
}

.rates {
  max-height: 435px;
  background-color: #0E110D;
  color: #FFFFFF;
}
.rates__container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
.rates__left-part {
  width: 50%;
}
.rates__heading {
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  padding-top: 40px;
}
.rates__text-first {
  max-width: 343px;
  max-height: 75px;
  margin-top: 40px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.rates__text-second {
  max-width: 343px;
  max-height: 75px;
  margin-top: 17px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.rates__btn {
  width: 197px;
  height: 48px;
  margin-bottom: 48px;
  background: #009C68;
  border-radius: 5px;
  margin-top: 27px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
}
.rates__happy-girl {
  margin-top: 52px;
  padding-right: 53px;
}

@media (max-width: 1163px) {
  .rates__container {
    padding: 0 15px;
  }
  .rates__left-part {
    width: fit-content;
  }
  .rates__right-part {
    flex-grow: 1;
  }
  .rates__happy-girl {
    padding-right: 0;
    margin: 52px 0 0 auto;
    display: block;
  }
}
@media (max-width: 938px) {
  .rates__container {
    padding: 0 15px;
  }
  .rates__heading {
    font-size: 35px;
  }
  .rates__text-first {
    font-size: 15px;
  }
  .rates__text-second {
    font-size: 15px;
  }
  .rates__left-part {
    width: fit-content;
  }
  .rates__right-part {
    flex-grow: 1;
  }
  .rates__happy-girl {
    padding-right: 0;
    margin-top: 0;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .rates__left-part {
    flex-shrink: 0;
  }
  .rates__heading {
    padding-top: 10px;
  }
}
@media (max-width: 645px) {
  .rates {
    max-height: fit-content;
  }
  .rates__left-part {
    width: 100%;
  }
  .rates__text-first {
    margin-right: 0;
    width: 100%;
    max-width: none;
    text-align: justify;
    font-size: 22px;
    max-height: fit-content;
  }
  .rates__text-second {
    margin-right: 0;
    width: 100%;
    max-width: none;
    text-align: justify;
    font-size: 22px;
    max-height: fit-content;
  }
  .rates__btn {
    margin-bottom: 20px;
    width: 100%;
  }
  .rates__right-part {
    display: none;
  }
}
.standarts {
  background-color: #FFFFFF;
  line-height: normal;
}
.standarts__container {
  max-width: 1140px;
  margin: 0 auto;
}
.standarts__heading {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  padding-top: 70px;
}
.standarts__container-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 51px;
}
.standarts__items {
  width: 367px;
  height: 408px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-width: 2px 0px;
  border-style: solid;
  border-color: #000000;
  transition: 0.5s;
}
.standarts__items:hover {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
}
.standarts__item-heading {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  padding: 30px 0 0 20px;
}
.standarts__item-description {
  padding-top: 40px;
  padding-left: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}
.standarts__item-description p {
  padding-bottom: 30px;
}
.standarts__price-btn {
  padding: 30px 0 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-right: 20px;
  padding-bottom: 15px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  justify-self: end;
}
.standarts__price-btn span {
  font-weight: 700;
}
.standarts__btn {
  width: 158px;
  height: 38px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  border-radius: 5px;
  background-color: #009C68;
  transition: all 0.8s ease;
}
.standarts__btn:hover {
  background-color: #005C3D;
  cursor: pointer;
}

@media (max-width: 1136px) {
  .standarts__container {
    padding: 0 10px;
  }
  .standarts__items {
    min-height: 412px;
    height: fit-content;
    padding-bottom: 15px;
    width: 333px;
  }
}
@media (max-width: 1031px) {
  .standarts__items {
    width: 276px;
    min-height: 343px;
  }
  .standarts__item-description {
    font-size: 12px;
    padding-top: 0;
  }
  .standarts__price-btn {
    padding-top: 0;
  }
  .standarts__price-btn p {
    font-size: 12px;
  }
  .standarts__btn {
    font-size: 12px;
  }
}
@media (max-width: 856px) {
  .standarts__container-items {
    flex-direction: column;
  }
  .standarts__items {
    width: 100%;
  }
  .standarts__item-heading {
    font-size: 30px;
  }
  .standarts__item-description {
    font-size: 20px;
    padding-top: 22px;
    line-height: normal;
  }
  .standarts__price-btn p {
    font-size: 18px;
  }
  .standarts__btn {
    font-size: 16px;
  }
}
@media (max-width: 340px) {
  .standarts__price-btn p {
    font-size: 15px;
  }
}
.feedbacks {
  max-height: 820px;
  background-color: #148596;
}
.feedbacks__container {
  max-width: 1140px;
  margin: 0 auto;
}
.feedbacks__heading-text {
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  padding-top: 60px;
}
.feedbacks__main-block {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}
.feedbacks__small-feedbacks {
  padding-right: 21px;
  display: flex;
  width: 100%;
}
.feedbacks__person-about {
  min-width: 145px;
}
.feedbacks__person-img {
  padding: 25px 0 0 25px;
}
.feedbacks__person-name {
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  padding-left: 40px;
  padding-top: 20px;
}
.feedbacks__person-target {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #CAC8C8;
  padding: 5px 0 0 41px;
}
.feedbacks__person-text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 25px;
}
.feedbacks__person-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  padding-left: 15px;
}
.feedbacks__person-data {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #CAC8C8;
  align-self: flex-end;
}
.feedbacks__big-feedbacks {
  display: flex;
  padding-top: 40px;
}
.feedbacks__kolhoz {
  padding-right: 38px;
}
.feedbacks__btn-more {
  width: 354px;
  height: 58px;
  background: #009C68;
  border-radius: 5px;
  color: #FFFFFF;
  margin: 50px auto 0 auto;
  display: block;
  margin-bottom: 60px;
}

.course-program {
  max-height: 1500px;
  background-color: #F7F8F7;
}
.course-program__container {
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.course-program__head {
  max-height: 290px;
}
.course-program__heading {
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  padding-top: 60px;
}
.course-program__heading-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  max-width: 552px;
  padding: 40px 0 57px 0;
}
.course-program__list-container {
  border-bottom: solid 2px #0E110D;
  margin-bottom: 60px;
}
@media (max-width: 432px) {
  .course-program__list-container {
    margin-top: 50px;
  }
}
@media (max-width: 355px) {
  .course-program__list-container {
    margin-top: 100px;
  }
}
.course-program__list-item {
  border-top: 2px solid #0E110D;
}
.course-program__list-item-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 21px 0;
}
.course-program__list-item-heading:hover {
  cursor: pointer;
}
.course-program__item-head-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
.course-program__img-check {
  width: 30px;
  height: 15px;
  transition: all 0.5s linear;
}
.course-program__big-number {
  overflow: hidden;
  max-height: 0px;
  transition: all 0.5s linear;
}

.structure-lesson__data-number-text {
  max-width: 485px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.animation-for-drop-down {
  max-height: 700px;
  padding-bottom: 32px;
  transition: all 0.5s linear;
}

.chekmark-rotate {
  transform: rotate(180deg);
  transition: all 0.5s linear;
}

.feedback {
  padding-bottom: 1px;
  background-color: #FFFFFF;
}
.feedback__title {
  font-weight: 700;
  font-size: 45px;
  padding-top: 60px;
}
.feedback__container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media (max-width: 999px) {
  .feedback__container {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.feedback__card {
  display: flex;
  padding-top: 65px;
  max-width: 50%;
}
.feedback__card:last-child {
  max-width: 100%;
}
@media (max-width: 999px) {
  .feedback__card {
    max-width: 100%;
  }
}
.feedback__user-information {
  padding-left: 54px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 999px) {
  .feedback__user-information {
    justify-content: space-between;
    padding-left: 0;
  }
}
.feedback__img {
  width: 100px;
  height: 100px;
}
@media (max-width: 768px) {
  .feedback__img {
    width: 80px;
    height: 80px;
  }
}
.feedback__name {
  font-weight: 700;
  font-size: 25px;
  padding: 25px 0 5px 0;
}
.feedback__direction {
  color: #CAC8C8;
  font-size: 12px;
  font-weight: 500;
  width: 105px;
}
.feedback__text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 999px) {
  .feedback__text-container {
    width: 100%;
  }
}
.feedback__text {
  padding-left: 40px;
  line-height: 140%;
}
@media (max-width: 384px) {
  .feedback__text {
    padding-left: 0;
  }
}
@media (max-width: 352px) {
  .feedback__text {
    font-size: 12px;
  }
}
.feedback__data {
  align-self: flex-end;
  color: #CAC8C8;
  font-size: 12px;
  font-weight: 500;
}
.feedback__link {
  width: 354px;
  height: 58px;
  margin: 50px auto 59px auto;
}
@media (max-width: 374px) {
  .feedback__link {
    width: 294px;
  }
}

.form {
  width: 100%;
  height: 100%;
  background-color: #0E110D;
  color: white;
  display: flex;
  padding-bottom: 110px;
  position: relative;
}
.form__container {
  display: flex;
}
.form__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.9) url(on.cd35ce9a.svg) center/150px no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
}
.form__container._sending::after {
  opacity: 1;
  visibility: visible;
}
.form__form {
  display: flex;
  flex-direction: column;
  padding-right: 10px;
}
@media (max-width: 999px) {
  .form__form {
    padding-right: 0;
  }
}
.form__title {
  font-weight: 700;
  font-size: 25px;
  padding: 50px 0 25px 0;
  line-height: 130%;
}
@media (max-width: 480px) {
  .form__title {
    font-size: 22px;
  }
}
.form__subtitle {
  font-size: 18px;
  line-height: 140%;
  padding-bottom: 52px;
  width: 54%;
}
@media (max-width: 999px) {
  .form__subtitle {
    width: 75%;
  }
}
@media (max-width: 480px) {
  .form__subtitle {
    font-size: 14px;
  }
}
.form__send-form {
  display: flex;
  flex-direction: column;
}
@media (max-width: 999px) {
  .form__send-form input {
    max-width: 100%;
  }
  .form__send-form textarea {
    max-width: 100%;
  }
}
.form__send-form input:focus, .form__send-form textarea:focus {
  box-shadow: 0 0 15px #7a956b;
}
.form__send-form input, .form__send-form textarea {
  transition: all 0.5s ease 0s;
}
.form__input-name {
  border-radius: 5px;
  max-width: 560px;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 30px;
}
.form__input-name._error {
  box-shadow: 0 0 15px red;
}
.form__input-name._error::-webkit-input-placeholder {
  color: red;
}
.form__input-name._error::-moz-placeholder {
  color: red;
}
.form__input-email {
  border-radius: 5px;
  max-width: 560px;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 30px;
}
.form__input-email._error {
  box-shadow: 0 0 15px red;
}
.form__input-email._error::-webkit-input-placeholder {
  color: red;
}
.form__input-email._error::-moz-placeholder {
  color: red;
}
.form__textarea {
  max-width: 560px;
  height: 120px;
  padding: 17px 0 0 30px;
  border-radius: 5px;
  resize: none;
  border: none;
  outline: none;
}
.form__textarea._error {
  box-shadow: 0 0 15px red;
}
.form__textarea._error::-webkit-input-placeholder {
  color: red;
}
.form__textarea._error::-moz-placeholder {
  color: red;
}
.form__footer {
  padding-top: 55px;
  max-width: 560px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 999px) {
  .form__footer {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .form__footer {
    flex-direction: column-reverse;
    padding-top: 20px;
  }
}
.form__icons {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .form__icons {
    padding-top: 20px;
  }
}
.form__icon:nth-child(2) {
  margin: 0 46px;
}
.form__icon:hover {
  cursor: pointer;
}
.form__button {
  width: 270px;
  height: 47px;
}
@media (max-width: 768px) {
  .form__button {
    width: 100%;
  }
}
.form__picture {
  display: flex;
  flex-direction: column;
}
.form__picture img:first-child {
  padding: 50px 0 30px 0;
}
@media (max-width: 999px) {
  .form__picture {
    display: none;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 50px 10px 0 10px;
  font-family: Montserrat, sans-serif;
}
.modal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.9) url(on.cd35ce9a.svg) center/150px no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
}
.modal._sending::after {
  opacity: 1;
  visibility: visible;
}
.modal__body {
  max-width: 940px;
  padding: 0;
  flex-direction: column;
  background-color: white;
  position: relative;
}
.modal__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.modal__title {
  font-size: 35px;
  font-weight: 700;
  padding: 50px 0;
}
@media (max-width: 999px) {
  .modal__title {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .modal__title {
    font-size: 30px;
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .modal__title {
    font-size: 25px;
    padding: 30px 0;
  }
}
@media (max-width: 360px) {
  .modal__title {
    font-size: 20px;
    padding: 20px 0;
  }
}
.modal__close {
  float: right;
  cursor: pointer;
}
.modal__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.modal__form input:focus, .modal__form textarea:focus {
  box-shadow: 0 0 15px #7a956b;
  border: none;
}
.modal__form input, .modal__form textarea {
  transition: all 0.5s ease 0s;
}
.modal__input-container {
  position: relative;
  width: 45%;
  margin: 20px;
}
.modal__input-container img {
  position: absolute;
  top: -25%;
  right: -10px;
}
@media (max-width: 850px) {
  .modal__input-container {
    width: 42%;
  }
}
@media (max-width: 550px) {
  .modal__input-container {
    width: 100%;
  }
}
.modal__input {
  border: 1px solid black;
  border-radius: 5px;
  padding: 16px 0 16px 25px;
  width: 100%;
}
.modal__input_name._error {
  box-shadow: 0 0 15px red;
  border: none;
}
.modal__input_name._error::-webkit-input-placeholder {
  color: red;
}
.modal__input_name._error::-moz-placeholder {
  color: red;
}
.modal__input_birthday._error {
  box-shadow: 0 0 15px red;
  border: none;
}
.modal__input_birthday._error::-webkit-input-placeholder {
  color: red;
}
.modal__input_birthday._error::-moz-placeholder {
  color: red;
}
.modal__input_password._error {
  box-shadow: 0 0 15px red;
  border: none;
}
.modal__input_password._error::-webkit-input-placeholder {
  color: red;
}
.modal__input_password._error::-moz-placeholder {
  color: red;
}
.modal__input_phone._error {
  box-shadow: 0 0 15px red;
  border: none;
}
.modal__input_phone._error::-webkit-input-placeholder {
  color: red;
}
.modal__input_phone._error::-moz-placeholder {
  color: red;
}
.modal__input_email._error {
  box-shadow: 0 0 15px red;
}
.modal__input_email._error::-webkit-input-placeholder {
  color: red;
}
.modal__input_email._error::-moz-placeholder {
  color: red;
}
.modal__input_textarea {
  width: 95%;
  height: 100px;
  margin-bottom: 18px;
  resize: none;
  outline: none;
}
.modal__input_textarea._error {
  box-shadow: 0 0 15px red;
}
.modal__input_textarea._error::-webkit-input-placeholder {
  color: red;
}
.modal__input_textarea._error::-moz-placeholder {
  color: red;
}
@media (max-width: 850px) {
  .modal__input_textarea {
    width: 91%;
  }
}
.modal__paragraph {
  width: 100%;
  padding: 0 0 0 20px;
}
.modal__button {
  width: 289px;
  height: 48px;
  margin: 32px 0 40px 0;
}
.modal__vector {
  position: absolute;
  top: 30%;
  left: 91%;
  cursor: pointer;
}
.modal__vector:hover {
  filter: brightness(0.5) invert(0.5);
}

.modal__body.disappearance {
  animation: zoomReverse 0.3s linear forwards;
}

.modal__body.open {
  animation: zoom 0.3s linear forwards;
}

.modal.open {
  animation: fade 0.3s linear forwards;
}

.modal.disappearance {
  animation: fadeReverse 0.3s linear forwards;
}

@keyframes zoomReverse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.1);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fade {
  0% {
    backdrop-filter: blur(0);
  }
  100% {
    backdrop-filter: blur(3px);
  }
}
@keyframes fadeReverse {
  0% {
    backdrop-filter: blur(3px);
  }
  100% {
    backdrop-filter: blur(0);
  }
}