/* FONTS */

@font-face {
  font-family: "Сompact-Rounded";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/compact-rounded-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Сompact-Rounded";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/compact-rounded-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Сompact-Rounded";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/compact-rounded-medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Сompact-Rounded";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/compact-rounded-bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PT-Serif";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/pt-serif-bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Veles-Bold";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/veles-bold.woff2") format("woff2");
  font-display: swap;
}

/* BASE STYLES */

html {
  font-family: "Сompact-Rounded", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  color: #3a3939;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
}

body.overflow {
  overflow: hidden;
}

input, textarea {
  display: block;
  width: 100%;
  border: 3px solid #7eab2d;
  border-radius: 8px;
  padding: 10px;
  font-size: 18px;
  font-family: "Сompact-Rounded", sans-serif;
  font-weight: 300;
  margin-bottom: 30px;
  box-shadow: 0 0 10px grey;
  outline-color: #ffaf45;
}

strong {
  font-weight: 500;
}

input::placeholder, textarea::placeholder {
  font-family: "Сompact-Rounded";
}

input:focus::placeholder, textarea:focus::placeholder {
  color: transparent;
}

img {
  max-width: 100%;
}

.main-container {
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.owl-carousel {
  position: relative;
  z-index: 0 !important;
}

.owl-theme .owl-dots {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}

.owl-theme .owl-dots .owl-dot  {
  width: 20px !important;
  height: 20px !important;
  margin-right: 15px;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: rgb(126, 171, 45);
  width: 20px;
  height: 20px;
  box-shadow: 0 0 5px grey;
  margin: 0 !important;
  border-radius: 50% !important;
}

.owl-theme .owl-dots .owl-dot span:hover {
  background-color: #ffaf45;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #ffaf45;
}

.owl-theme .owl-nav {
  position: absolute;
  left: 0;
  width: 100%;
  top: 46%;
  transform: translateY(-50%);
  margin-top: 0;
}

.owl-theme .owl-nav button.owl-next, .owl-theme .owl-nav button.owl-prev {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icons/arrow.svg");
  border: 2px solid #fff;
  cursor: pointer;
  border-radius: 6px;
}

.owl-theme .owl-nav button.owl-prev {
  transform: translateY(-50%) rotate(180deg);
}

.owl-theme .owl-nav button.owl-next:hover, .owl-theme .owl-nav button.owl-prev:hover {

  border-color: rgb(126, 171, 45);
  transition: 0.1s border-color linear;
}

.owl-theme .owl-nav button span {
  display: none;
}

.owl-theme .owl-nav button.owl-next {
  right: -100px;
}

.owl-theme .owl-nav button.owl-prev {
  left: -100px;
}

.big-letters {
  font-weight: 400;
  font-size: 40px;
  color: rgb(126, 171, 45);
  text-transform: uppercase;
}

.hash {
  font-weight: 400;
  font-size: 50px;
  color: rgb(227, 122, 68);
  text-transform: uppercase;
}

.section-content {
  padding: 50px 0;
}

.section-text-intro {
  font-family: "Veles-Bold";
  color: rgb(231, 105, 42);
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.section-title-bloc {
  color: #fff;
  background-color: #7eab2d;
  padding: 15px 10px;
  box-shadow: 0 0 15px grey;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title {
  color: #fff;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
}

.section-title-image  {
  display: block;
  max-width: 100px;
  margin-right: 10px;
  flex-shrink: 0;
}

.text-accent {
  font-weight: 500;
  color: rgb(255, 234, 60);
}

.btn {
  display: block;
  border-radius: 8px;
  padding: 10px 20px;
  background-color: rgb(255, 175, 69);
  color:#fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  box-shadow: 0 0 10px grey;
}

.btn.disable {
  background-color: rgb(179, 179, 179);
  color:#fff;
}

.btn.disable:hover {
  background-color: rgb(179, 179, 179);
}

.btn:hover {
  background-color: rgb(211, 126, 13);
  transition: 0.1s background-color linear;
}

/* HEADER */

.header {
  position: relative;
  background-color: #5c792b;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}

.header-logo-link {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  top:25px;
  display: block;
  background-color: #5c792b;
  margin-right: 50px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.header-logo-link img {
  display: block;
  max-width: 150px;
}

.header-menu-items {
  position: relative;
  display: flex;
  list-style: none;
}

.header-menu-item:not(:last-child) {
  margin-right: 20px;
}

.header-menu-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}

.header-menu-link {
  width: 0%;
}

.header-menu-link:after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  background-color: #ffea3c;
  width: 0%;
  transition: 0.2s width linear;
}

.header-menu-link.active {
  color: rgb(255, 234, 60);
  font-weight: 400;
}

.header-menu-link.active:after {
  width: 100%;
}

.header-menu-link:hover::after {
  width: 100%;
}

.header-btn {
  display: none;
  border: none;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 22px;
  background-color: transparent;
  z-index: 15;
  margin-right: 10px;
}

.header-btn span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 4px;
  left: 0;
  right: 0;
  background-color: #ffea3c;
  transition: 0.15s background-color linear;
}

.header-btn::before, .header-btn::after {
  display: block;
  position: absolute;
  content: "";
  height: 4px;
  left: 0;
  right: 0;
  background-color: #ffea3c;
  transition: 0.15s transform linear, 0.15s background-color linear;
}

.header-btn::before {
  top: 0;
}

.header-btn::after {
  bottom: 0;
}

.header-btn.active span {
  display: none;
}

.header-btn.active::before {
  top: auto;
  transform: rotate(45deg);
}

.header-btn.active::after {
  bottom: auto;
  transform: rotate(-45deg);
}

/* BANNER */

.banner-content {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.banner-tex-bloc {
  position: relative;
}

.banner-hashteg {
  font-weight: 400;
  font-size: 35px;
}

.banner-image-autor {
  max-width: 450px;
}

.banner-image-autor--mobile {
  display: none;
}

.banner-title-bloc {
  border-top: 4px solid #7eab2d;
  border-bottom: 4px solid #7eab2d;
  padding: 10px 0;
  margin-bottom: 30px;
}

.banner-title {
  font-family: "PT-Serif";
  font-weight: 600;
  font-size: 80px;
  color: rgb(227, 122, 68);
  text-transform: uppercase;
  line-height: 1.3;
}

.banner-subtitle {
  font-weight: 500;
  font-size: 50px;
  color: rgb(227, 122, 68);
  text-transform: uppercase;
}

.banner-list-bloc {
  display: flex;
  align-items: flex-start;
}

.banner-list {
  list-style: none;
  margin-right: 200px;
}

.banner-list-item {
  position: relative;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.3;
  padding-left: 40px;
}

.banner-list-item:before {
  position: absolute;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/check-green.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.banner-list-bloc-image {
  position: relative;
  top: -20px
}

.banner-image-decor {
  max-width: 230px;
}

/* WHY-CHOOSE-US */

.why-choose-us-content {
  padding-bottom: 20px;
}

.why-choose-us-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.why-choose-us-list-item {
  position: relative;
  padding-left: 110px;
  flex-basis: 48%;
  margin-bottom: 30px;
}

.why-choose-us-list-item-title {
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: 28px;
  color: rgb(227, 122, 68);
}

.why-choose-us-list-item:before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 100px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.why-choose-us-list-item:first-child:before {
  background-image: url("../images/icons/why-choose-us/01.svg");
}

.why-choose-us-list-item:nth-child(2):before {
  background-image: url("../images/icons/why-choose-us/02.svg");
}

.why-choose-us-list-item:nth-child(3):before {
  background-image: url("../images/icons/why-choose-us/03.svg");
}

.why-choose-us-list-item:nth-child(4):before {
  background-image: url("../images/icons/why-choose-us/04.svg");
}

.why-choose-us-list-item:nth-child(5):before {
  background-image: url("../images/icons/why-choose-us/05.svg");
}

.why-choose-us-list-item:last-child:before {
  background-image: url("../images/icons/why-choose-us/06.svg");
}

/* COURSES (PARENTS and KIDS) and PRESENT */

.courses-slider {
  list-style: none;
}
.courses-slider {
  list-style: none;
}

.courses-slider-item {
  padding: 20px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 0 15px grey;
}

.owl-carousel .owl-item {
  padding: 10px!important;
}

.courses-slider .owl-item:nth-child(2n) .courses-slider-item {
  background-color: rgb(255, 234, 60);
}

.courses-slider .owl-item:nth-child(2n+1) .courses-slider-item {
  background-color: #789641;
}

.courses-slider-item-image {
  display: block;
  width: 200px;
  margin-bottom: 20px;
  border: 3px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px grey;
}

/* STAGES */

.stages-content {
  padding-bottom: 20px;
}

.stages-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.stages-list-item {
  position: relative;
  padding-top: 120px;
  flex-basis: 23%;
  margin-bottom: 30px;
  text-align: center;
}

.stages-list-item-title {
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: 24px;
  color: #e37a44;
}

.stages-list-item:before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 100px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.stages-list-item:first-child:before {
  background-image: url("../images/icons/stages/01.svg");
}

.stages-list-item:nth-child(2):before {
  background-image: url("../images/icons/stages/02.svg");
}

.stages-list-item:nth-child(3):before {
  background-image: url("../images/icons/stages/03.svg");
}

.stages-list-item:nth-child(4):before {
  background-image: url("../images/icons/stages/04.svg");
}

.stages-list-item:not(:last-child):after {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 70px;
  right: -50px;
  top: 20px;
  background-image: url("../images/icons//arrow-red.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* REVIEWS */

.reviews-slider {
  list-style: none;
}

.reviews-slider-item {
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 10px;
}

.reviews-slider-item-link {
  display: block;
  box-shadow: 0 0 15px grey;
  border-radius: 10px;
  border:4px solid #fff;
  overflow: hidden;
  transition: 0.1s border-color linear;
}

.reviews-slider-item-link:hover {
  border-color: #ffea3c;
}

.reviews-slider-item-image {
  width: 200px;
}

/* NEUROGYMNASTICS */

.neurogymnastics-slider {
  list-style: none;
}
.neurogymnastics-slider {
  list-style: none;
}

.neurogymnastics-slider-item {
  width: 100%;
  padding: 20px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 0 15px grey;
  margin-right: 0;
}

.neurogymnastics-slider .owl-item:nth-child(2n) .neurogymnastics-slider-item {
  background-color: #ffea3c;
}

.neurogymnastics-slider .owl-item:nth-child(2n+1) .neurogymnastics-slider-item {
  background-color: #789641;
}

.neurogymnastics-slider-item-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  border: 3px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px grey;
}

/* FUNNY (MATHEMATICS, SPEECH, READING) */

.funny-list {
  padding-left: 10px;
  padding-right: 10px;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.funny-list-item {
  flex-basis: 22%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px grey;
  margin-bottom: 30px;
}

.funny-list-item:nth-child(2n) {
  background-color: rgb(255, 234, 60);
}

.funny-list-item:nth-child(2n+1) {
  background-color: #789641;
}

.funny-list-item-title {
  margin-bottom: 15px;
  text-align: center;
  font-weight: 400;
  font-size: 24px;
}

.funny-list-item:nth-child(2n) .funny-list-item-title {
  color: #3a3939;
}

.funny-list-item:nth-child(2n+1) .funny-list-item-title {
  color: #fff;
}

.funny-list-item-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border: 3px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px grey;
}

/* QUESTIONS */

.questions-list-bloc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.questions-list {
  margin-right: 30px;
  list-style: none;
}

.questions-list-item {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 3px solid #7eab2d;
  box-shadow: 0 0 15px grey;
}

.questions-list-item:nth-child(2n) {
  border-color: #ffea3c;
}

.questions-list-item-title-bloc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.questions-list-item-title {
  font-size: 22px;
  font-weight: 400;
  margin-right: 20px;
  line-height: 1.2;
  padding-top: 5px;
  padding-left: 5px;
  padding-bottom: 5px;
}

.questions-list-item-text {
  display: none;
  position: relative;
  padding-top: 5px;
  padding-left: 5px;
  border-top: 2px solid #b4b4b4;
}

.questions-btn {
  position: relative;
  top: -5px;
  width: 45px;
  height: 45px;
  background-image: url("../images/icons/arrow-down.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s transform linear, 0.1s border-color linear;
  border: 3px solid transparent;
  border-radius: 8px;
}

.questions-btn.active {
  transform: rotate(180deg);
}

.questions-btn:hover {
  border-color:rgb(110, 138, 60);
}

.questions-image {
  border: 3px solid #ffea3c;
  border-radius: 10px;
  box-shadow: 0 0 15px grey;
}

/* FEEDBACK */

.feedback-form {
  position: relative;
  max-width: 800px;
  padding: 50px;
  border: 3px solid #7eab2d;
  border-radius: 12px;
  margin: 0 auto;
  background-image: url("../images/icons/bg-mail.png");
  background-position: 0 0;
  background-repeat: repeat;
  box-shadow: 0 0 15px grey;
}

.feedback-form.response::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.feedback-form-message {
  resize: none;
  height: 250px;
}

.feedback-form-btn {
  position: relative;
  padding: 15px;
  padding-left: 55px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  cursor: pointer;
}

.feedback-form-btn::before {
  display: block;
  position: absolute;
  font-weight: 500;
  content: "";
  width: 40px;
  height: 30px;
  left: 10px;
  top: 55%;
  transform: translateY(-50%);
  background-image: url("../images/icons/mail-send.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.feedback-response {
  position: absolute;
  display: none;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 350px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.feedback-response--ok {
  border: 3px solid #789641;
}

.feedback-response--error {
  border: 3px solid #dc3002;
}

.feedback-response-title, .feedback-response-text {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 30px;
}

.feedback-response-text {
  position: relative;
  font-size: 20px;
  padding-left: 50px;
}

.feedback-response-text::before {
  position: absolute;
  content: "";
  display: block;
  width: 80px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.feedback-response--ok .feedback-response-text::before {
  background-image: url("../images/icons/bug.png");
}

.feedback-response--error .feedback-response-text::before {
  background-image: url("../images/icons/error.png");
}

.feedback-response-title--ok, .feedback-response-text--ok {
  color: #789641;
}

.feedback-response-title--error, .feedback-response-text--error {
  color: #dc3002;
}

.feedback-response-title {
  margin-bottom: 20px;
}

.feedback-response-btn {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  border: none;
  cursor: pointer;
  left: 50%;
  transform: translateX(-50%);
}

/* FOOTER */

.footer {
  background-color: #5c792b;
  box-shadow: 0 0 15px grey;
}

.footer-content {
  padding: 30px 20px;
}

.footer-logo-link {
  position: relative;
  display: inline-block;
  left: -10px;
  top: -10px
}

.footer-logo-link img {
  width: 155px;
}

.footer-items {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.footer-item-title {
  position: relative;
  font-size: 22px;
  font-weight: 400;
  color: #ffea3c;
  margin-bottom: 25px;
}

.footer-item-title:after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  background-color: #ffea3c;
  bottom: -5px;
  left: 0;
  right: 0;
}

.footer-menu-items {
  list-style: none;
}

.footer-menu-item {
  margin-bottom: 15px;
}

.footer-menu-link {
  text-decoration: none;
  color: #fff;
}

.footer-menu-link:hover, .footer-contacts-link:hover {
  color: #ffea3c;
}

.footer-menu-link, .footer-contacts-link {
  transition: 0.15s color linear;
}

.footer-contacts-items {
  list-style: none;
} 

.footer-contacts-item {
  position: relative;
  margin-bottom: 15px;
  padding-left: 50px;
}

.footer-contacts-item::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-contacts-item:first-child::before {
  background-image: url("../images/icons/mail.svg");
}

.footer-contacts-item:nth-child(2)::before {
  background-image: url("../images/icons/whatsapp.svg");
}

.footer-contacts-item:nth-child(3)::before {
  background-image: url("../images/icons/telegram.svg");
}

.footer-contacts-item:last-child::before {
  background-image: url("../images/icons/viber.svg");
}

.footer-contacts-link {
  text-decoration: none;
  color: #fff;
}

.footer-contacts-link--viber {
  color: #fff;
}

.footer-item-insta-link {
  display: inline-block;
  border: 10px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.1s border-color linear;
}

.footer-item-insta-link:hover {
  border-color:#ffea3c;
}

.footer-item-image img {
  max-width: 185px;
}

/* FUNNY PAGE */

.funny-page-list-item-answer-bloc {
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 10px !important;
  box-shadow: 0 0 15px grey;
}

.funny-page-list-item:nth-child(2n) {
  border-color: #ffea3c;
}

.funny-page-list-item-answer-title-bloc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.funny-page-list-item-answer-title {
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-right: 20px;
}

.funny-page-list-item-answer-text {
  display: none;
  position: relative;
  padding-top: 5px;
  border-top: 2px solid #b4b4b4;
  font-size: 20px;
  font-weight: 400;
  color: rgba(218, 16, 16, 0.71);
}

.funny-page-list-item-answer-text img {
  display: inline-block;
  max-width: 75px;
  border-radius: 8px;
}

.funny-page-list-item-answer-btn {
  width: 35px;
  height: 35px;
  background-image: url("../images/icons/arrow-down.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s transform linear, 0.1s border-color linear;
  border: 3px solid transparent;
  border-radius: 8px;
}

.funny-page-list-item-answer-btn.active {
  transform: rotate(180deg);
}

.funny-page-list-item-answer-btn:hover {
  border-color:rgb(110, 138, 60);
}

.funny-page-title-bloc {
  margin-bottom: 30px;
  background-color: #7eab2d;
  border-radius: 10px;
}

.funny-page-list {
  list-style: none;

}

.funny-page-list-item-image {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px grey;
  display: block;
}

.funny-page-mathematics .funny-page-list-item-image {
  margin-bottom: 25px;
}

.funny-page-list-item-image img {
  border: 5px solid #fff;
  display: inline-block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: 0.1s transform linear;
}

.funny-page-list-item-image img:hover {
  transform: scale(1.05);
  cursor: zoom-in;
}

.funny-page-list .owl-item:nth-child(2n) .funny-page-list-item-image {
  background-color: #ffea3c;
}

.funny-page-list .owl-item:nth-child(2n+1) .funny-page-list-item-image {
  background-color: #789641;
}

/* PAGE-COURSES */

.page-courses {
  color: #263714;
}

.page-courses-list-item {
  position: relative;
  padding-left: 60px;
  font-size: 30px;
  line-height: 1.3;
}

.page-courses-list-item:not(:last-child) {
  margin-bottom: 10px;
}

.page-courses-list-item::before {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  content: "";
  left: 0;
  top: 0;
  background-image: url("../images/icons/check.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.page-courses-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page-courses-banner-text-bloc {
  margin-right: 10px;
}

.page-courses-banner-title {
  font-weight: 600;
  font-size: 55px;
  color: #369820;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
}

.page-courses-banner-subtitle {
  font-weight: 500;
  text-align: center;
  font-size: 40px;
  color:rgb(187, 79, 7);
  margin-bottom: 15px;
}

.page-courses-banner-list-bloc {
  text-align: center;
}

.page-courses-banner-list {
  position: relative;
  flex-direction: column;
  display: inline-flex;
  list-style: none;
  margin-bottom: 50px;
  width: 100%;
  max-width: 600px;
}

.page-courses-banner-list-item {
  display: inline-block;
  position: relative;
  text-align: left;
  color:#bb4f07;
  font-size: 35px;
  font-style: italic;
  font-weight: 500;
}

.page-courses-banner-list-item:first-child {
  margin-right: auto;
}

.page-courses-banner-list-item:nth-child(2) {
  margin-left: 50%;
  transform: translateX(-50%);
}

.page-courses-banner-list-item:last-child {
  margin-left: auto;
}

.page-courses-banner-img--mobile {
  display: none;
}

.page-courses-banner-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.page-courses-banner-price-title {
  position: relative;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 15px;
}

.page-courses-banner-price-title--red {
  font-weight: 600;
  font-size: 30px;
  color: #f04549;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.page-courses-banner-price-title--green {
  position: relative;
  font-weight: 600;
  font-size: 30px;
  color:#369820;
  padding: 10px 10px;
  text-align: center;
}

.page-courses-banner-price-title--green::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 4px dashed #f04549;
  border-radius: 10px;
  animation: pulse 1.5s infinite;
}

.page-courses-banner-price-text {
  position: relative;
  display: inline-block;
  position: relative;
  font-size: 30px;
  font-weight: 500;
}

.page-courses-banner-price-text::before {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  content: "";
  left: 30%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("../images/icons/cross.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}


.page-courses-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-courses-counter-title {
  position: relative;
  margin-bottom: 10px;
  font-size: 22px;
  text-align: right;
  font-weight: 500;
}

.page-courses-counter-title::before {
  position: absolute;
  display: block;
  width: 90px;
  height: 60px;
  content: "";
  left: -10px;
  top: -17px;
  background-image: url("../images/icons/bug.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.page-courses-counter-segment {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 35px;
  color: #fff;
  font-weight: 500;
  width: 60px;
  height: 60px;
  background-color: rgb(67, 168, 44);
  box-shadow: 0 0 10px grey;
}

.page-courses-counter-segment:after {
  font-size: 14px;
  color: #3a3939;
  position: absolute;
  display: block;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.page-courses-counter-segment:first-of-type::after {
  content: "години";
}

.page-courses-counter-segment:nth-of-type(3)::after {
  content: "хвилини";
}

.page-courses-counter-segment:last-of-type::after {
  content: "секунди";
}

.page-courses-counter-double-dots {
  display: block;
  font-size: 35px;
  color: #73a668;
  font-weight: 500;
  padding: 10px;
} 

/* PAGE-COURSES-INFO-UNITS */

.left {
  margin-right: 30px;
}

.right {
  margin-left: 30px;
}

.page-courses-info-unit-1-text-bloc, .page-courses-info-unit-3-text-bloc, .page-courses-info-unit-5-text-bloc   {
  order: 2;
}

.page-courses-info-unit-1-image-bloc, .page-courses-info-unit-3-image-bloc, .page-courses-info-unit-5-image-bloc {
  order: 1;
}

.page-courses-info-unit-4-text-bloc, .page-courses-info-unit-6-text-bloc  {
  order: 1;
}

.page-courses-info-unit-4-image-bloc, .page-courses-info-unit-6-image-bloc {
  order: 2;
}

.page-courses-info-unit-1-image-bloc, .page-courses-info-unit-2-image-bloc, .page-courses-info-unit-3-image-bloc, .page-courses-info-unit-4-image-bloc, .page-courses-info-unit-5-image-bloc, .page-courses-info-unit-6-image-bloc {
  margin-bottom: 0 !important;
}

.page-courses-info-unit-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-courses-info-unit-text-bloc {
  flex-basis: 49%;
}

.page-courses-info-unit-list {
  list-style: none;
}

.page-courses-info-unit-1-list {
  position: relative;
  display: flex;
  flex-direction: column;
}

.page-courses-info-unit-1-list-item:first-child {
  margin-right: auto;
}

.page-courses-info-unit-1-list-item:nth-child(2) {
  left: 22%;
}

.page-courses-info-unit-1-list-item:last-child {
  margin-left: auto;
}

.page-courses-info-unit-title {
  color: #bb4f07;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-courses-info-unit-subtitle {
  color: rgb(108, 197, 167);
  font-size: 35px;
  margin-bottom: 15px;
}

.page-courses-button-buy-bloc {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 95px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px grey;
  padding: 10px;
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.page-courses-info-bonus-image-bloc {
  position: relative;
}

.page-courses-button-buy {
  font-size: 24px;
  font-weight: 500;
  border: 2px solid #fff;
  padding-left: 50px;
  padding-right: 50px;
}

.page-courses-bottom-counter-bloc {
  margin-left: 30px;
  display: none;
}

.page-courses-bottom-counter {
  z-index: 1;
}

.page-courses-bottom-counter .page-courses-bottom-counter-double-dots {
  color: #fff;
}

.page-courses-bottom-counter .page-courses-counter-segment {
  border: 2px solid #fff;
}

.page-courses-bottom-counter .page-courses-counter-segment:after {
  display: none;
}

.page-courses-reviews-title, .page-courses-reviews-subtitle {
  text-align: center;
}

.page-courses-reviews-subtitle {
  margin-bottom: 30px;
}

.page-courses-reviews-slider.owl-carousel .owl-stage {
  display: flex;
}

.page-courses-reviews-slider-item {
  position: relative;
  height: 100%;
  width: 98%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px grey;
}

.page-courses-reviews-slider .owl-nav {
  top: 41%;
}

.page-courses-reviews-slider {
  list-style: none;
}

.page-courses-reviews-slider-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 15px;
  font-size: 28px;
  cursor: pointer;
}

.page-courses-reviews-author {
  font-weight: 500;
}

.page-courses-info-bonus-content {
  flex-wrap: wrap;
}

.page-courses-info-bonus-title {
  flex-basis: 100%;
  padding-bottom: 50px;
}

.page-courses-info-bonus-image {
  position: relative;
  z-index: 1;
}

.page-courses-info-bonus-image-text {
  position: absolute;
  padding: 10px;
  right: 0;
  font-size: 24px;
  width: 60%;
  background-color: rgb(255, 249, 243);
  border-radius: 10px;
  z-index: 0;
}

.page-courses-info-bonus-title {
  text-align: center;
  margin-bottom: 0;
}

.page-courses-author-content {
  flex-wrap: wrap;
}

.page-courses-author-title {
  flex-basis: 100%;
  padding-bottom: 50px;
}

.page-courses-author-list-item:first-child {
  padding-left: 0;
  margin-bottom: 30px !important;
}

.page-courses-author-list-item:first-child::before {
  display: none;
}

.page-courses-author-title {
  text-align: center;
  margin-bottom: 0;
}

.page-courses-author-link {
  cursor: pointer;
  position: relative;
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: #263714;
  font-weight: 500;
  padding-left: 75px;
  transition: 0.1s color linear;
}

.page-courses-author-link:hover {
  color: #bb4f07;
}

.page-courses-author-link::before {
  position: absolute;
  display: block;
  width: 90px;
  height: 60px;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/instagram.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.page-courses-author-image-bloc {
  position: relative;
}

.page-courses-author-image {
  position: relative;
  top: -20px;
}

.page-courses-promise-content {
  padding-top: 0;
  display: block;
}

.page-courses-promise-title {
  display: none;
}

.page-courses-promise-text {
  position: relative;
  padding-left: 200px;
  font-size: 35px;
  max-width: 800px;
  color: #05924e;
  font-weight: 400;
  line-height: 1.3;
  left: 50%;
  transform: translateX(-50%);
}

.page-courses-promise-text::before {
  position: absolute;
  display: block;
  width: 175px;
  height: 200px;
  content: "";
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/promise.webp");
  background-repeat: no-repeat;
  background-size: contain;
}

.page-courses-questions-title {
  margin-bottom: 35px;
}

.page-courses-questions-list-item {
  font-weight: 500;
  padding-left: 65px;
}

.page-courses-questions-list-item::before {
  background-image: url("../images/icons/question.png");
  width: 50px;
  height: 50px;
  opacity: 0.8;
}

.page-courses-questions-answer {
  font-weight: 300;
}

.page-courses-form {
  position: relative;
  background-image: none;
  max-width: 500px;
  left: 50%;
  transform: translateX(-50%);
}

.page-courses-form-header {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column-reverse;
  margin-bottom: 30px;
  align-items: center;
}

.page-courses-popup {
  padding: 20px 15px;
  padding-bottom: 10px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  max-width: 800px;
  border: 5px solid #05924e;
  border-radius: 15px;
}


.page-courses-form-price-bloc {
  margin-right: 0;
}

.page-courses-form-price-title--green {
  text-align: center;
}

.page-courses-form-title {
  position: relative;
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
  color: #bb4f07;
  line-height: 1.2;
}

.page-courses-form-email {
  margin-bottom: 30px;
}

.page-courses-form-counter-bloc {
  margin-bottom: 40px;
}

.page-courses-form-footer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.page-courses-form-btn {
  padding-left: 15px;
  transform: none;
  left: auto;
}

.page-courses-form-btn:before {
  display: none;
}

.page-courses-form-agree-block {
  flex-basis: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-courses-form-label span {
  opacity: 0.7;
}

.page-courses-form-message {
  resize: none;
  height: 150px;
}

.page-courses-form-label-agree {
  flex-basis: 90%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

.page-courses-form-agree {
  position: relative;
  width: 20px;
  margin: 0;
  margin-right: 20px;
  transform: scale(1.5);
  cursor: pointer;
  margin-left: 10px;
  box-shadow: none;
}

.mfp-close {
  display: block;
  top: 10px;
  right: 10px;
  border: 2px solid #3a3939 !important;
  border-radius: 6px;
  color: transparent !important;
  width: 30px;
  height: 30px;

}

.mfp-close::before, .mfp-close::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  height: 4px;
  width: 80%;
  background-color: #333;
}

.mfp-close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.mfp-close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.mfp-close:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.mfp-close:active {
  top: 10px
}

.page-courses-footer {
  padding-bottom: 85px;
}

.page-courses-footer-content {
  display: flex;
  justify-content: space-between;
}

.page-courses-footer-image-bloc {
  margin-right: 100px;
}

.page-courses-footer-text-bloc {
  width: 100%;
}

.page-courses-footer-item {
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}

.page-courses-footer-item::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.page-courses-footer-item-email::before {
  background-image: url("../images/icons/mail.svg");
}

.page-courses-footer-item-wahtsapp::before {
  background-image: url("../images/icons/whatsapp.svg");
}

.page-courses-footer-links {
  border-bottom: 2px solid #ffea3c;
}

.page-courses-footer-text {
  padding-top: 10px;
}

.page-courses-footer-links-pages-item {
  padding-left: 0 !important;
}

.page-courses-footer-links-contacts-item:first-child, .page-courses-footer-links-contacts-item:nth-child(2) {
  padding-left: 0;
  text-align: right;
}

.page-courses-footer-links {
  display: flex;
  color: #fff;
  justify-content: space-between;
}

.page-courses-footer-links-pages-list, .page-courses-footer-links-contacts-list {
  list-style: none;
}

.page-courses-footer-text {
  color: #fff;
}

.page-courses-footer-text-en {
  margin-bottom: 15px;
}

.page-courses-footer-text-ua {
  padding-bottom: 10px;
}

.page-courses-footer-rights {
  padding-top: 10px;
  border-top: 2px solid #ffea3c;
}

.confidentiality-content, .mailing-agree-content, .offer-agree-content, .site-rules-content {
  padding-top: 30px;
  padding-bottom: 20px;
}

.confidentiality-title, .mailing-agree-title, .offer-agree-title, .site-rules-title {
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 30px;
}

.confidentiality-text, .mailing-agree-text, .offer-agree-text, .site-rules-text  {
  margin-bottom: 15px;
  font-size: 20px;
}

.confidentiality-footer, .mailing-agree-footer, .offer-agree-footer, .site-rules-footer {
  padding-bottom: 0 !important;
}

.offer-agree-subtitle, .site-rules-subtitle {
  font-weight: 500;
}

.offer-agree-list, .site-rules-list  {
  list-style: none;
}

.mailing-agree-list-item {
  margin-left: 50px;
}

/* REGARDA & ERROR PAGES */


.regards .page-courses-footer-rights, .error .page-courses-footer-rights {
  border-top: none;
  padding-top: 0;
}

.regards-content, .error-content {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.regards-img-bloc, .error-img-bloc {
  flex-basis: 32%;
  text-align: right;
}

.regards-text-bloc, .error-text-bloc {
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-basis: 68%;
}

.recards-text-bloc-inner, .error-text-bloc-inner {
  max-width: 600px;
}

.regards-title, .error-title {
  font-size: 50px;
  color: #05924e;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.error-title {
  color:#dc3002;
}

.regards-text, .error-text {
  font-size: 20px;
  font-weight: 400;
  color:#263714;
  text-align: center;
  line-height: 1.5;
}

.regards-btn-bloc, .error-btn-bloc {
  text-align: center;
  margin-top: 50px;
  flex-basis: 100%;
}

.regards-btn, .error-btn {
  display: inline-block;
}

.error-text span {
  display: inline-block;
  color:#dc3002;
  font-weight: 500;
  font-size: 22px;
  margin-top: 20px;
}

.regards-img-bloc-text, .error-img-bloc-text {
  display: block;
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 500;
  color:#05924e;
}

.regards-img-bloc--mobile, .error-img-bloc--mobile {
  display: none;
}

.regards-img-bloc img {
  margin-bottom: 30px;
}

.regards-img-bloc-link, .error-img-bloc-link {
  position: relative;
  padding-left: 60px;
  color:#263714;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.1s color linear;
}

.regards-img-bloc-link::before, .error-img-bloc-link::before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/instagram.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.regards .page-courses-footer, .error .page-courses-footer {
  padding-bottom: 0;
}

.regards-img-bloc-link:hover, .error-img-bloc-link:hover {
  color:#bb4f07;
}

.site-rules-link {
  text-decoration: none;
  transition: 0.1s color linear;
  color: #3a3939;
}

.site-rules-link:hover {
  color:#bb4f07;
}

/* MEDIA */

@media all and (max-width : 1440px) {
  
  html {
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1440 - 320)));
  }

  input, textarea {
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .container {
    padding-left: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-right: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .section-content {
    padding-top: calc(25px + (50 - 25) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: calc(25px + (50 - 25) * ((100vw - 320px) / (1440 - 320)));
  }

  .section-text-intro {
    font-size: calc(20px + (28 - 20) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(20px + (40 - 20) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .section-title-bloc {
    padding-top: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .section-title {
    font-size: calc(22px + (40 - 22) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .section-title-image  {
    max-width: calc(75px + (100 - 75) * ((100vw - 320px) / (1440 - 320)));
  }

  .owl-nav {
    display: none !important;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: calc(15px + (20 - 15) * ((100vw - 320px) / (1440 - 320)));
    height: calc(15px + (20 - 15) * ((100vw - 320px) / (1440 - 320)));
  }


  .big-letters {
    font-size: calc(15px + (50 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  .hash {
    font-size: calc(17px + (50 - 17) * ((100vw - 320px) / (1440 - 320)));
  }

  /* HEADER */

  .header-content {
    padding-right: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .header-logo-link {
    top: calc(14px + (25 - 14) * ((100vw - 320px) / (1440 - 320)));
    margin-right: calc(20px + (50 - 20) * ((100vw - 320px) / (1440 - 320)));
    border-bottom-right-radius: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
    border-bottom-left-radius: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: 0;
  }
  
  .header-logo-link img {
    max-width: calc(80px + (150 - 80) * ((100vw - 320px) / (1440 - 320)));
  }

  .header-menu-item:not(:last-child) {
    margin-right: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .header-menu-link {
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1440 - 320)));
  }

  /* BANNER */

  .banner-content {
    padding-top: calc(15px + (30 - 15) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: calc(10px + (30 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .banner-hashteg {
    font-size: calc(14px + (35 - 14) * ((100vw - 320px) / (1440 - 320)));
  }

  .banner-image-autor {
    max-width: calc(180px + (450 - 180) * ((100vw - 320px) / (1440 - 320)));
  }

  .banner-title-bloc {
    padding-top: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(10px + (30 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .banner-title {
    font-size: calc(25px + (80 - 25) * ((100vw - 320px) / (1440 - 320)));
    line-height: 1.2;
  }

  .banner-subtitle {
    font-size: calc(20px + (50 - 20) * ((100vw - 320px) / (1440 - 320)));
  }

  .banner-list {
    list-style: none;
    margin-right: calc(50px + (200 - 50) * ((100vw - 320px) / (1440 - 320)));
  }

  .banner-list-item {
    font-size: calc(14px + (25 - 14) * ((100vw - 320px) / (1440 - 320)));
    line-height: 1.2;
    padding-left: calc(25px + (40 - 25) * ((100vw - 320px) / (1440 - 320)));
  }

  .banner-list-item:before {
    width: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
    height: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }

  .banner-image-decor {
    max-width: calc(100px + (230 - 100) * ((100vw - 320px) / (1440 - 320)));
  }

  /* WHY-CHOOSE-US, STAGES */

  .why-choose-us-content, .stages-content {
    padding-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .why-choose-us-list-item {
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  .why-choose-us-list-item-title {
    line-height: 1.2;
    margin-bottom: calc(5px + (20 - 5) * ((100vw - 320px) / (1440 - 320)));
    font-size: calc(18px + (28 - 18) * ((100vw - 320px) / (1440 - 320)));
  }

  .stages-list-item {
    padding-top: calc(110px + (120 - 110) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  .stages-list-item-title {
    margin-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
    font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1440 - 320)));
  }

  /* COURSES (PARENTS and KIDS) and PRESENT */

  .courses-slider {
    list-style: none;
  }

  .courses-slider-item {
    padding-top: calc(15px + (20 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  .courses-slider-item-image {
    margin-bottom: calc(15px + (20 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  /* REVIEWS */

  .reviews-slider-item {
    padding-top: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
    padding-left: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-right: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  /* NEUROGYMNASTICS */

  .neurogymnastics-slider-item {
    padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  /* FUNNY */

  .funny-list-item {
    padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  .funny-list-item-title {
    font-size: calc(22px + (24 - 22) * ((100vw - 320px) / (1440 - 320)));
  }

  /* QUESTIONS */

  .questions-list-item-title {
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1440 - 320)));
  }

  /* FEEDBACK */
  
  .feedback-form {
    padding: calc(10px + (50 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-top: calc(15px + (50 - 15) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: calc(15px + (50 - 15) * ((100vw - 320px) / (1440 - 320)));
  }
    
  /* FOOTER */

  .footer-logo-link img {
    width: calc(100px + (155 - 100) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .footer-content {
    padding-top: calc(10px + (30 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: calc(10px + (30 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-left: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-right: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .footer-item-title {
    font-size: calc(20px + (22 - 20) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(15px + (25 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  .footer-menu-item {
    margin-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .footer-contacts-item {
    position: relative;
    margin-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-left: calc(30px + (50 - 30) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .footer-contacts-item::before {
    width: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
    height: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }


  .funny-page-mathematics .funny-page-list-item-image {
    padding: calc(15px + (25 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  /* PAGE-COURSES */

  .page-courses-list-item {
    padding-left: calc(30px + (60 - 30) * ((100vw - 320px) / (1440 - 320)));
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
    line-height: 1.3;
  }

  .page-courses-list-item::before {
    width: calc(25px + (50 - 25) * ((100vw - 320px) / (1440 - 320)));
    height: calc(25px + (50 - 25) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-content {
    margin-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-title {
    font-size: calc(34px + (55 - 34) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-subtitle {
    font-size: calc(26px + (40 - 26) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-list {
    margin-bottom: calc(30px + (50 - 30) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-list-item {
    font-size: calc(18px + (35 - 18) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-price-title {
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-price-title--red {
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-price-title--green {
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-price-bloc {
    margin-right: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-banner-price-text {
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-counter-title {
    margin-bottom: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
    font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-counter-title::before {
    width: calc(60px + (90 - 60) * ((100vw - 320px) / (1440 - 320)));
    height: calc(40px + (60 - 40) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-counter-segment {
    font-size: calc(25px + (35 - 25) * ((100vw - 320px) / (1440 - 320)));
    width: calc(45px + (60 - 45) * ((100vw - 320px) / (1440 - 320)));
    height: calc(45px + (60 - 45) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-counter-segment:after {
    font-size: calc(10px + (14 - 10) * ((100vw - 320px) / (1440 - 320)));
    bottom: calc((20px + (30 - 20) * ((100vw - 320px) / (1440 - 320))) * -1);
  }

  .page-courses-counter-double-dots {
    font-size: calc(25px + (35 - 25) * ((100vw - 320px) / (1440 - 320)));
    padding: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
  } 

  .page-courses-bottom-counter-bloc {
    margin-left: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-button-buy-bloc {
    height: calc(65px + (95 - 65) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-button-buy {
    font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1440 - 320)));
    padding-left: calc(10px + (50 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-right: calc(10px + (50 - 10) * ((100vw - 320px) / (1440 - 320)));
    font-weight: 500;
    border: 2px solid #fff;
  }

  /* PAGE-COURSES-POPUP */

  .page-courses .section-content {
    padding-top: calc(15px + (50 - 15) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: calc(15px + (50 - 15) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .page-courses-form-header {
    margin-bottom: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .page-courses-popup {
    border-width: calc(3px + (5 - 3) * ((100vw - 320px) / (1440 - 320)));

  }
  
  .page-courses-form-title {
    font-size: calc(25px + (35 - 25) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .page-courses-form-counter-bloc {
    margin-bottom: 40px;
  }
  
  .page-courses-form-btn {
    padding-left: 15px;
    font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1440 - 320)));
  }

  .left {
    margin-right: calc(10px + (30 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .right {
    margin-left: calc(10px + (30 - 10) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-image-bloc {
    width: calc(250px + (550 - 250) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-info-unit-title {
    font-size: calc(26px + (40 - 26) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .page-courses-info-unit-subtitle {
    font-size: calc(24px + (35 - 24) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-list-item:not(:last-child) {
    margin-bottom: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-reviews-slider-item {
    padding-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1440 - 320)));
    padding-left: calc(15px + (30 - 15) * ((100vw - 320px) / (1440 - 320)));
    padding-right: calc(15px + (30 - 15) * ((100vw - 320px) / (1440 - 320)));
    font-size: calc(20px + (28 - 20) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-info-bonus-title {
    padding-bottom: calc(15px + (50 - 15) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-author-title {
    padding-bottom: calc(25px + (50 - 25) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-info-bonus-image-text {
    padding: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
    font-size: calc(17px + (24 - 17) * ((100vw - 320px) / (1440 - 320)));
    width: 56%;
    border-radius: calc(5px + (10 - 5) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-promise-text {
    padding-left: calc(100px + (200 - 100) * ((100vw - 320px) / (1440 - 320)));
    font-size: calc(22px + (35 - 22) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .page-courses-promise-text::before {
    width: calc(88px + (175 - 88) * ((100vw - 320px) / (1440 - 320)));
    height: calc(100px + (200 - 100) * ((100vw - 320px) / (1440 - 320)));
  }

  .page-courses-footer-item {
    padding-left: calc(25px + (40 - 25) * ((100vw - 320px) / (1440 - 320)));
  }  

  .page-courses-footer-item::before {
    width: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
    height: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }  

  .confidentiality-content, .mailing-agree-content, .offer-agree-content, .site-rules-content {
    padding-bottom: calc(5px + (20 - 5) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .confidentiality-title, .mailing-agree-title, .offer-agree-title, .site-rules-title {
    font-size: calc(23px + (35 - 23) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(20px + (30 - 20) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .confidentiality-text, .mailing-agree-text, .offer-agree-text, .site-rules-text {
    margin-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1440 - 320)));
    font-size: calc(17px + (20 - 17) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .mailing-agree-list-item {
    margin-left: calc(30px + (50 - 30) * ((100vw - 320px) / (1440 - 320)));
  }

  /* REGARDA & ERROR PAGES */
  
  .regards-title, .error-title {
    font-size: calc(30px + (50 - 30) * ((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .regards-text, .error-text {
    font-size: calc(17px + (20 - 17) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .regards-btn-bloc, .error-btn-bloc {
    margin-top: calc(30px + (50 - 30) * ((100vw - 320px) / (1440 - 320)));
  }

  .regards-img-bloc-text, .error-img-bloc-text {
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (1440 - 320)));
    font-size: calc(20px + (22 - 20) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .regards-img-bloc img {
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .regards-img-bloc-link, .error-img-bloc-link {

    font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1440 - 320)));
  }
  
  .regards-img-bloc-link::before, .error-img-bloc-link::before {
    width: calc(30px + 50 - 30) * ((100vw - 320px) / (1440 - 320));
    height: calc(30px + 50 - 30) * ((100vw - 320px) / (1440 - 320));
  }
  


}

@media all and (max-width : 1200px) {
  .funny-page-list {
    margin-bottom: 0;
  }

  .regards-text-bloc, .error-text-bloc {
    padding-right: 20px;
    flex-basis: 60%;
  }

  .regards-img-bloc, .error-img-bloc {
    flex-basis: 40%;
  }
  
}


@media all and (max-width : 1080px) {
  .funny-list {
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .funny-list-item {
    flex-basis: 45%;
  }


  .funny-list-item-image {
    max-width: 100%;
    height: auto;
  }

  .question-list-item-title, .question-list-item-text {
    line-height: 1.2;
  }

  /* PAGE-COURSES */

  .mfp-content {
    max-height: 90vh; 
    overflow-y: auto; 
}

  .page-courses-banner-content {
    position: relative;
    display: block;
    max-width: 800px;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-courses-banner-image {
    display: none;
  }

  .page-courses-banner-img--mobile {
    display: block;
    max-width: calc(200px + (300 - 200) * ((100vw - 320px) / (1080 - 320)));
  }

  .page-courses-banner-list-bloc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(20px + (50 - 20) * ((100vw - 320px) / (1080 - 320)));
  }

  .page-courses-banner-list {
    margin-right: calc(10px + (30 - 10) * ((100vw - 320px) / (1080 - 320)));
    margin-bottom: 0;
  }

  .page-courses-footer-image-bloc {
    margin-right: 40px;
  }
}

@media all and (max-width : 950px) {
  
  .btn:hover {
    background-color: #ffaf45;
  }

  .owl-theme .owl-dots {
    left: 0;
    right: 0;
    transform: none;
    bottom: -10px
  }

  .owl-theme .owl-dots .owl-dot  {
    margin-right: 10px;
  }

  html {
    line-height: 1.3;
  }

  .header-menu-link:hover::after {
    width: 0;
  }

  .footer-menu-link:hover, .footer-contacts-link:hover {
    color: #fff;
  }


  .banner-list {
    margin-right: 0;
  }

  .banner-list-bloc {
    display: flex;
    justify-content: space-between;
  }

  .banner-list-bloc-image {
    top: -10px;
  }

  .banner-title-bloc {
    border-width: 2px;
  }

  .banner-title, .banner-subtitle {
    text-align: center;
  }

  .stages-list {
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .stages-list-item {
    flex-basis: 45%;
    max-width: 350px;
  }

  .stages-list-item:after {
    display: none !important;
  }

  .reviews-slider-item-link:hover {
    border-color: transparent;
  }

  .questions-btn:hover {
    border-color: transparent;
  }

  .footer-items {
    flex-wrap: wrap;
  }

  .footer-item {
    flex-basis: 45%;
  }

  .footer-item-insta-link {
    margin-top: 30px;
  }
  
  .footer-item-insta-link:hover {
    border-color: #fff;
  }

  .footer-item-insta-link {
    border: none;
  }

  .funny-page-list-item-image:hover {
    transform: none;
  }

  .funny-page-list-item-answer-btn:hover {
    border-color: transparent;
  }

  .funny-page-list-item-image img:hover {
    transform: none;
  }

  .mfp-close:hover {
    background-color: transparent;
  }

  .site-rules-link:hover {
    color:#3a3939;
  }

  .page-courses-banner-list-bloc, .page-courses-banner-footer {
    position: relative;
    max-width: 650px;
    left: 50%;
    transform: translateX(-50%);
  }

  .regards-img-bloc-link:hover, .error-img-bloc-link:hover {
    color:#263714;
  }
}

@media all and (max-width : 800px) {

  .section-title {
    line-height: 1.2;
  }

  .questions-list {
    flex-basis: 100%;
    margin-right: 0;
  }

  .questions-image {
    display: none;
  }

  /* HEADER */

  .header-content {
    padding-left: 0;
  }

  .header-btn {
    display: block;
  }

  .header-menu{
    position: fixed;
    right: -100vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #5c792b;
    z-index: 10;
    transition: 0.5s transform linear;
    will-change: transform;
  }
  
  .header-menu.active {
    transform: none;
    padding: 20px;
  }

  .header-menu.active {
    transform: translateX(-100vw);
  }

  .header-menu-items {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
  }

  .header-menu-item:not(:last-child){
    margin-right: 0;
    margin-bottom: 20px;
  }

  .header-menu-link {
    text-transform: uppercase;
  }

  .footer-menu-item:last-child {
    margin-bottom: 0;
  }

  /* PAGE-COURSES */

  .page-courses-banner-price-text::before {
    width: 30px;
    height: 30px;
  }

  .page-courses-banner-content {
    padding-top: calc(20px + (30 - 20) * ((100vw - 320px) / (800 - 320)));
  }

  .page-courses-info-unit-content {
    flex-direction: column;
  }
  
  .page-courses-info-unit-1-content, .page-courses-info-unit-3-content, .page-courses-info-unit-5-content {
      flex-direction: column-reverse;
  }

  .page-courses-author-title {
    left: auto !important;
    transform: none !important;
  }

  .page-courses-author-image-bloc {
    order: 1;
  }

  .page-courses-author-title {
    order: 2;
  }

  .page-courses-author-text-bloc {
    order: 3;
  }

  .page-courses-info-unit-text-bloc {
    flex-basis: 100%;
    width: 100%;
  }

  .page-courses-image-bloc {
    width: 100%;
    max-width: 500px;
    margin-bottom: calc(20px + (30 - 20) * ((100vw - 320px) / (800 - 320)));
  }

  .left {
    margin-right: 0;
  }
  .right {
    margin-left: 0;
  }

  .page-courses-info-unit-1-text-bloc, .page-courses-info-unit-2-text-bloc, .page-courses-info-unit-3-text-bloc, .page-courses-info-unit-4-text-bloc, .page-courses-info-unit-5-text-bloc, .page-courses-info-unit-6-text-bloc {
    margin-bottom: calc(20px + (30 - 20) * ((100vw - 320px) / (800 - 320)));
  }

  .page-courses-info-unit-title, .page-courses-info-unit-subtitle {
    position: relative;
    text-align: center;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-courses-info-unit-1-list-item:nth-child(2) {
    left: 19%;
  }

  .page-courses-info-unit-list {
    position: relative;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-courses-info-unit-1-list {
    position: relative;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-courses-reviews-slider-item {
    border-radius: 10px;
  }

  .confidentiality-title, .mailing-agree-title, .offer-agree-title, .site-rules-title {
    line-height: 1.1;
  }

  /* REGARDA & ERROR PAGES */

  .regards-content, .error-content {
    display: block;
  }

  .regards-text-bloc, .error-text-bloc {
    padding-right: 0;
  }

  .error-text-bloc {
    flex-direction: column-reverse;
  }

  .regards-img-bloc, .error-img-bloc {
    display: none;
  }

  .regards-text, .error-text {
    margin-bottom: calc(20px + (30 - 20) * ((100vw - 320px) / (800 - 320)));
    line-height: 1.3;
  }

  .regards-img-bloc--mobile, .error-img-bloc--mobile {
    display: block;
    max-width: none;
    text-align: center;
  }

  .regards-img-bloc--mobile img, .error-img-bloc--mobile img {
    margin-bottom: calc(20px + (30 - 20) * ((100vw - 320px) / (800 - 320)));
    width: calc(200px + (300 - 200) * ((100vw - 320px) / (800 - 320)));
  }

  .error-img-bloc--mobile img {
    margin-bottom: 0;
  }

  .regards-content, .error-content {
    position: static;
    max-width: none;
    transform: none;
    width: 100%;
  }

  .regards-img-bloc-text, .error-img-bloc-text {
    margin-bottom: 30px;
  }
  
  .regards-img-bloc-link, .error-img-bloc-link {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
  }

  .regards-btn {
    margin-top: 30px;
    font-size: 18px;
  }

}

@media all and (max-width : 700px) {

  .big-letters {
    font-size: 25px;
  }

  .hash {
    font-size: 28px;
  }

  .banner-content {
    padding-bottom: 0;
  }

  .banner-hashteg {
    text-align: center;
    font-size: 18px;
  }

  .banner-title {
    font-size: 35px;
  }

  .banner-subtitle {
    font-size: 25px;
  }

  .banner-image-decor, .banner-image-autor {
    display: none;
  }

  .banner-image-autor--mobile {
    display: block;
    max-width: calc(150px + (230 - 150) * ((100vw - 320px) / (700 - 320)));

  }

  .banner-tex-bloc {
    flex-basis: 100%;
  }

  .banner-list-item {
    font-size: calc(14px + (25 - 14) * ((100vw - 320px) / (700 - 320)));
    margin-bottom: 10px;
  }

  .banner-list-bloc {
    align-items: center;
    justify-content: space-around;
  }

  /* WHY-CHOOSE-US */

  .why-choose-us-list-item {
    flex-basis: 100%;
    padding-left: 85px;
  }

  .why-choose-us-list-item:not(:last-child) {
    margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (700 - 320)));
  }

  .why-choose-us-list-item:before {
    width: 80px;
    height: 80px;
  }

  .page-courses-banner-list-bloc {
    max-width: 500px;
  }
  
  .page-courses-banner-list {
    display: flex;
  }
  
  .page-courses-banner-list-item:first-child {
    margin-left: 0;
  }
  
  .page-courses-banner-list-item:nth-child(2) {
    margin-left: 0;
    transform: none;
  }
  
  .page-courses-banner-list-item:last-child {
    margin-left: 0;
  }

  .page-courses-form-title {
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-courses-promise-text {
    padding-left: 0;
    padding-top: 160px;
    text-align: center;
  }

  .page-courses-promise-text::before {
    width: 130px;
    height: 150px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}

@media all and (max-width : 550px) {

  .section-title-image {
    margin-right: 0;
  }

  .stages-list-item {
    justify-content: center;
    flex-basis: 100%;
  }

  .funny-page-list-item {
    flex-basis: 100%;
  }

  .page-courses-banner-footer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-courses-banner-price-bloc  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .page-courses-banner-price-title {
    margin-bottom: 0;
    margin-right: 10px;
    text-align: center;
  }

  .page-courses-banner-price-title--green {
    text-align: center;
  }

  .page-courses-form {
    max-width: none;
  }

  .page-courses-form-price-title {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-courses-form-footer {
    display: block;
  }

  .page-courses-form-agree-block {
    margin-bottom: 20px;
    justify-content: flex-start;
  }

  .page-courses-form-label-agree {
    max-width: 250px;
  }

  .page-courses-form-btn {
    left: 50%;
    transform: translateX(-50%);
  }
 
  .page-courses-footer-content{
    display: block;
  }
  .page-courses-footer-image-bloc {
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

  .page-courses-footer-links {
    padding-top: 10px;
    border-top: 2px solid #ffea3c;
  }

  .page-courses-footer {
    padding-bottom: 75px;
  }
}

@media all and (max-width : 450px) {

  .footer-logo-link {
    left: 0;
    top: 0;
  }

  .footer-item-insta-link {
    margin-top: 0;
  }

  .funny-list-item {
    flex-basis: 100%;
  }

  .funny-list-item:last-child {
    margin-bottom: 15px;
  }

  .footer-item {
    flex-basis: 100%;
    margin-bottom: 20px;
  }

  .footer-item-logo {
    text-align: center;
  }

  .footer-item-title {
    text-align: center;
  }

  .footer-menu-item {
    text-align: center;
  }

  .footer-contacts-items {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-item-image {
    text-align: center;
  }

  .page-courses-footer {
    padding-left: 5px;
    padding-right: 5px;
  }

  .page-courses-bottom-counter-bloc {
    margin-left: 10px;
  }

  .page-courses-banner-img--mobile {
    width: calc(140px + (220 - 140) * ((100vw - 320px) / (450 - 320)));
  }

  .page-courses-author-link {
    padding-left: 70px;
    font-size: 19px;
  }

  .page-courses-footer-links {
    flex-direction: column-reverse;
  }
  
  .page-courses-footer-links-pages-list {
    padding-top: 10px;
    text-align: center;
    border-top: 2px solid #ffea3c;
  }

  .page-courses-footer-links-contacts-list {
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 165px;
  }

  .page-courses-footer-links-contacts-item:first-child, .page-courses-footer-links-contacts-item:nth-child(2) {
    text-align: center;
  }

  .page-courses-footer-item {
    padding-left: 5px;
  }  

  .footer .container {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}