h2 {
  position: relative;
}
.lines {
  font-family: sans-serif;
  font-size: 32px;
}

.hero_section {
  position: relative;
  padding: 80px 0 0;
}
.hero_section .hero_img_back {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero_section .hero_img_back .hero_img_back_content {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero_section .hero_img_back .hero_img_back_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_section .hero_img_back .hero_img_back_content:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.45;
}

.hero_section .hero_block_top .hero_block_top__content {
  /* max-width: 666px; */
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: auto;
}
.hero_section .hero_block_top .hero_block_top__content img {
  width: 50%;
  margin-bottom: 30px;
}
.hero_section .hero_block_top .hero_block_top__content .hero_block_top__text {
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  color: #ffffff;
  text-align: center;
  /* max-width: 400px; */
  width: 100%;
  margin-bottom: 50px;
  /* margin: 0 auto 50px; */
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__text
  span {
  font-weight: 800;
}
.hero_section .hero_block_top .hero_block_top__content .hero_block_top__link {
  border: 3px solid #58cf74;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  box-sizing: border-box;
  max-width: 400px;
  width: 100%;
  /* margin: auto; */
  text-decoration: none;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.hero_section .hero_block_top .hero_block_top__content .hero_block_top__link p {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  margin: 0;
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__link
  .hero_block_top__link_arrow {
  width: 30px;
  height: 30px;
  background: #58cf74;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: background 0.4s ease;
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__link
  .hero_block_top__link_arrow
  svg {
  position: relative;
  right: -2px;
  max-width: 13px;
  width: 100%;
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__link
  .hero_block_top__link_arrow
  svg
  path {
  transition: fill 0.4s ease;
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__link:hover {
  background: #58cf74;
  border-color: #58cf74;
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__link:hover
  .hero_block_top__link_arrow {
  background: #ffffff;
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__link:hover
  .hero_block_top__link_arrow
  svg
  path {
  fill: #58cf74;
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__link:active {
  background: #009122;
  border-color: #009122;
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__link:active
  .hero_block_top__link_arrow {
  background: #ffffff;
}
.hero_section
  .hero_block_top
  .hero_block_top__content
  .hero_block_top__link:active
  .hero_block_top__link_arrow
  svg
  path {
  fill: #009122;
}

.hero_section .hero_block_bot {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 70px;
}
.hero_section .hero_block_bot .hero_block_bot__item {
  background: #f0fff4;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  max-width: 330px;
  width: 100%;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero_section .hero_block_bot .hero_block_bot__item h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  margin: 0;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_section .hero_block_bot .hero_block_bot__item hr {
  background: #58cf74;
  height: 5px;
  border: 0;
  max-width: 195px;
  width: 100%;
}

.about_institut_section {
  padding: 80px 0;
}
.about_institut_section .about_institut_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.about_institut_section .about_institut_item:nth-child(even) {
  flex-direction: row-reverse;
}
.about_institut_section .about_institut_item .institut_item_img_side {
  max-width: 50%;
  width: 100%;
}
.about_institut_section .about_institut_item .institut_item_square {
  position: relative;
  display: block;
  width: 100%;
}
.about_institut_section .about_institut_item .institut_item_square:after {
  content: '';
  display: block;
  padding-top: 100%;
}
.about_institut_section
  .about_institut_item
  .institut_item_square
  .institut_item_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about_institut_section
  .about_institut_item
  .institut_item_square
  .institut_item_content
  img {
  width: 100%;
  height: 100%;
}
.about_institut_section .about_institut_item .institut_item_text_side {
  max-width: 580px;
  width: 100%;
  margin: auto;
}
.about_institut_section .about_institut_item .institut_item_text_side h1,
.about_institut_section .about_institut_item .institut_item_text_side h2 {
  font-weight: 800;
  font-size: 30px;
  line-height: 35px;
  color: #181c25;
  margin: 0 auto 30px;
  position: relative;
  width: max-content;
}
.about_institut_section .about_institut_item .institut_item_text_side h1:after {
  content: '-';
}
.about_institut_section .about_institut_item .institut_item_text_side h1:before,
.about_institut_section .about_institut_item .institut_item_text_side h2:before,
.our_values_section h2:before,
.addit_section h2:before {
  content: '';
  position: absolute;
  top: calc(50% - 28.5px);
  left: -30px;
  width: 57px;
  height: 57px;
  background: linear-gradient(0deg, #e4cd6e, #e4cd6e), #58cf74;
  opacity: 0.2;
  transform: rotate(-45deg);
  z-index: -1;
}
.about_institut_section
  .about_institut_item:nth-child(even)
  .institut_item_text_side
  h1:before,
.about_institut_section
  .about_institut_item:nth-child(even)
  .institut_item_text_side
  h2:before {
  background: linear-gradient(0deg, #58cf74, #58cf74), #58cf74;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_text_content {
  max-width: 390px;
  width: 100%;
  margin: 0 auto 40px;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_text_content
  p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #181c25;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_text_content
  p:not(:first-of-type) {
  margin-top: 15px;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider {
  margin-top: 50px;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .institut_item_slider_item {
  position: relative;
  background: linear-gradient(0deg, #e9ffee, #e9ffee), #c4c4c4;
  padding: 40px 45px 80px 80px;
  box-sizing: border-box;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .institut_item_slider_item
  img {
  position: absolute;
  bottom: 20px;
  right: 40px;
  max-width: 130px;
  width: 100%;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .institut_item_slider_item
  .institut_slider_num {
  font-weight: 700;
  font-size: 32px;
  line-height: 35px;
  height: 35px;
  color: #009122;
  text-align: end;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .institut_item_slider_item
  .institut_slider_content
  p {
  position: relative;
  margin: 0;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .institut_item_slider_item
  .institut_slider_content
  p
  a {
  font-weight: 700;
  color: #58cf74;
  transition: color 0.4s ease;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .institut_item_slider_item
  .institut_slider_content
  p
  a:hover {
  text-decoration: underline;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .institut_item_slider_item
  .institut_slider_content
  p
  a:active {
  color: #009122;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .institut_item_slider_item
  .institut_slider_content
  p:not(:last-child) {
  margin: 0 0 20px;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .institut_item_slider_item
  .institut_slider_content
  p:before {
  content: '';
  position: absolute;
  left: -30px;
  top: 4px;
  width: 15px;
  height: 15px;
  background: #009122;
  transform: rotate(-45deg);
}

.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .slick-arrow {
  border: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .slick-arrow.prev {
  right: auto;
  left: -40px;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .slick-arrow.next {
  right: -40px;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .slick-arrow
  svg {
  width: 100%;
  height: 100%;
  max-height: 60px;
  max-width: 60px;
}
.about_institut_section
  .about_institut_item
  .institut_item_text_side
  .institut_item_slider
  .slick-dots {
  bottom: -40px;
}
.text_align_left h2 {
  max-width: 390px;
  width: 100% !important;
}

.about_kind_section {
  padding: 0 0 80px;
}
.about_kind_section .about_kind_block {
  background: #58cf74;
  padding: 50px 0;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.about_kind_section
  .about_kind_block
  .about_kind_block_item
  .nums_growth_block {
  font-weight: 800;
  font-size: 65px;
  line-height: 70px;
  text-align: center;
  color: #ffffff;
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_kind_section
  .about_kind_block
  .about_kind_block_item
  .nums_growth_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.about_kind_section .about_kind_link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_kind_section .about_kind_link hr {
  background: #a78bde;
  max-width: 200px;
  width: 100%;
  border: 0;
  height: 3px;
}
.about_kind_section .about_kind_link a {
  margin: 0 25px;
  border: 1px solid #181c25;
  max-width: 255px;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #181c25;
  text-decoration: none;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.about_kind_section .about_kind_link a:hover {
  background: #58cf74;
  border-color: #58cf74;
  color: #ffffff;
}
.about_kind_section .about_kind_link a:active {
  background: #009122;
  border-color: #009122;
  color: #ffffff;
}

.our_values_section {
  padding: 80px 0;
}
.our_values_section h2 {
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  line-height: 35px;
  color: #181c25;
  width: max-content;
  margin: 0 auto 80px;
}
.our_values_section .our_values_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: auto;
}
.our_values_section .our_values_block .our_values_block__item {
  max-width: 30%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.our_values_section
  .our_values_block
  .our_values_block__item
  .our_values_block__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.our_values_section
  .our_values_block
  .our_values_block__item
  .our_values_block__content
  img {
  max-width: 140px;
  width: 100%;
  margin-bottom: 60px;
}
.our_values_section
  .our_values_block
  .our_values_block__item
  .our_values_block__content
  p {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #181c25;
  margin: 0;
}

.schedule_section {
  padding: 80px 0;
  background: rgb(103 117 207 / 10%);
  margin-bottom: 80px;
}
.schedule_section .container {
  max-width: 1100px;
}
.schedule_section h2 {
  color: #a78bde;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  line-height: 35px;
  width: max-content;
  margin: 0 auto 80px;
}
.schedule_section h2:before {
  content: '';
  position: absolute;
  top: calc(50% - 28.5px);
  left: -30px;
  width: 57px;
  height: 57px;
  background: #c3b1e7;
  opacity: 0.2;
  transform: rotate(-45deg);
}
.schedule_section .schedule_slider .slick-arrow svg {
  width: 100%;
  height: 100%;
}
.schedule_section .schedule_slider .schedule_slider_item img {
  margin: 0 auto 20px;
  max-width: 160px;
  width: 100%;
}
.schedule_section .schedule_slider .schedule_slider_item .schedule_time {
  background: linear-gradient(0deg, #f6f3fb, #f6f3fb), #c3b1e7;
  border: 4px solid #c3b1e7;
  border-radius: 50px;
  max-width: 188px;
  width: 100%;
  height: 55px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule_section .schedule_slider .schedule_slider_item .schedule_time p {
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  text-align: center;
  color: #d86fa4;
  margin: 0;
}
.schedule_section .schedule_slider .schedule_slider_item .schedule_name {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #181c25;
  margin: 0 auto;
}

.addit_section h2 {
  color: #181c25;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  line-height: 35px;
  width: max-content;
  margin: 0 auto 120px;
}
.addit_section .addit_classes_link {
  max-width: 425px;
  width: 100%;
  height: 55px;
  margin: 115px auto 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #58cf74;
  border: 1px solid #58cf74;
  text-decoration: none;
  transition: background 0.4s ease, border.4s ease;
}
.addit_section .addit_classes_link p {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  margin: 0;
  transition: color 0.4s ease;
}
.addit_section .addit_classes_link svg {
  max-width: 24px;
  width: 100%;
}
.addit_section .addit_classes_link svg path {
  transition: fill 0.4s ease;
}
.addit_section .addit_classes_link:hover {
  background: #009122;
  border: 1px solid #009122;
}
.addit_section .addit_classes_link:active {
  background: transparent;
  border: 1px solid #009122;
}
.addit_section .addit_classes_link:active p {
  color: #009122;
}
.addit_section .addit_classes_link:active svg path {
  fill: #009122;
}

.reviews_section .section_title {
  color: #181c25;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  line-height: 35px;
  width: max-content;
  margin: 0 auto 120px;
}
.reviews_section .section_title:before {
  content: '';
  position: absolute;
  top: calc(50% - 28.5px);
  left: -30px;
  width: 57px;
  height: 57px;
  background: linear-gradient(0deg, #58cf74, #58cf74), #58cf74;
  opacity: 0.2;
  transform: rotate(-45deg);
}
.reviews_section .more_reviews_link {
  border: 1px solid #181c25;
  background: transparent;
  max-width: 285px;
  width: 100%;
  height: 55px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-decoration: none;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.reviews_section .more_reviews_link p {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #181c25;
  margin: 0;
  transition: color 0.4s ease;
}
.reviews_section .more_reviews_link svg {
  max-width: 24px;
  width: 100%;
}
.reviews_section .more_reviews_link svg path {
  transition: fill 0.4s ease;
}
.reviews_section .feedback_btn {
  max-width: 425px;
}
.reviews_section .more_reviews_link:hover {
  background: #58cf74;
  border-color: #58cf74;
}
.reviews_section .more_reviews_link:hover p,
.reviews_section .more_reviews_link:active p {
  color: #ffffff;
}
.reviews_section .more_reviews_link:active {
  background: #009122;
  border-color: #009122;
}
.reviews_section .more_reviews_link:hover svg path,
.reviews_section .more_reviews_link:active svg path {
  fill: #ffffff;
}

@media screen and (max-width: 1400px) {
  .hero_section .hero_block_bot .hero_block_bot__item {
    max-width: 280px;
  }
  .hero_section .hero_block_top .hero_block_top__content img {
    width: 50%;
  }
  .about_institut_section .about_institut_item .institut_item_text_side {
    max-width: 480px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .institut_item_slider_item
    .institut_slider_content
    p {
    font-size: 14px;
    line-height: 20px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .institut_item_slider_item {
    padding: 40px 45px 40px 70px;
  }
  .reviews_section {
    padding: 80px 0;
  }
  .reviews_section .fb_slider_block {
    margin-bottom: 120px;
  }
  .addit_section .addit_classes_link {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 1200px) {
  .hero_section .hero_block_top .hero_block_top__content {
    max-width: 580px;
  }
  .hero_section .hero_block_bot .hero_block_bot__item {
    height: 80px;
    max-width: 215px;
  }
  .hero_section .hero_block_top .hero_block_top__content img {
    width: 90%;
  }
  .hero_section .hero_block_top .hero_block_top__content .hero_block_top__text {
    font-size: 26px;
    line-height: 32px;
  }
  .hero_section .hero_block_bot .hero_block_bot__item h4 {
    font-size: 14px;
    line-height: 20px;
  }
  .about_institut_section .about_institut_item .institut_item_text_side h1,
  .about_institut_section .about_institut_item .institut_item_text_side h2 {
    font-size: 24px;
    line-height: 26px;
    width: 100%;
    max-width: 340px;
    margin: 30px auto;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider {
    margin-top: 35px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_text_content {
    max-width: 340px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_text_content
    p {
    font-size: 14px;
    line-height: 20px;
  }
  .about_institut_section .about_institut_item .institut_item_text_side {
    max-width: 400px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .institut_item_slider_item {
    padding: 20px 20px 20px 50px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .slick-dots {
    position: relative;
    bottom: 0;
    margin: 10px 0;
  }
  .about_kind_section
    .about_kind_block
    .about_kind_block_item
    .nums_growth_block {
    font-size: 58px;
    line-height: 58px;
  }
  .about_kind_section {
    padding: 0;
  }
  .schedule_section {
    margin-bottom: 0;
  }
  .reviews_section {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 992px) {
  .hero_section .hero_block_bot .hero_block_bot__item {
    max-width: 175px;
    height: 65px;
  }
  .hero_section .hero_block_top .hero_block_top__content {
    max-width: 520px;
  }
  .hero_section .hero_block_top .hero_block_top__content .hero_block_top__text {
    font-size: 24px;
    line-height: 28px;
  }
  .about_institut_section .about_institut_item,
  .about_institut_section .about_institut_item:nth-child(even) {
    flex-direction: column;
  }
  .about_institut_section .about_institut_item .institut_item_img_side,
  .about_institut_section
    .about_institut_item
    .institut_item_square
    .institut_item_content
    img,
  .about_institut_section
    .about_institut_item
    .institut_item_square
    .institut_item_content {
    max-width: 100%;
    max-height: 400px;
    height: 100%;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_square
    .institut_item_content {
    position: relative;
  }
  .about_institut_section .about_institut_item .institut_item_square:after {
    padding-top: 0;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_square
    .institut_item_content
    img {
    object-fit: cover;
  }
  .about_institut_section .about_institut_item .institut_item_text_side,
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_text_content {
    max-width: 100%;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_text_content
    p:not(:last-child) {
    margin-bottom: 15px;
  }
  .about_institut_section .about_institut_item .institut_item_text_side h1,
  .about_institut_section .about_institut_item .institut_item_text_side h2 {
    margin: 40px 0 40px 40px;
  }
  .about_institut_section .about_institut_item:not(:last-child) {
    margin-bottom: 20px;
  }
  .about_institut_section {
    padding: 60px 0 20px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider {
    margin: 40px 40px 80px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .institut_item_slider_item {
    padding: 40px 45px 80px 80px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .slick-dots {
    position: absolute;
    bottom: -40px;
    margin: 0;
  }
  .about_kind_section
    .about_kind_block
    .about_kind_block_item
    .nums_growth_title {
    font-size: 14px;
    line-height: 20px;
  }
  .about_kind_section
    .about_kind_block
    .about_kind_block_item
    .nums_growth_block {
    font-size: 48px;
    line-height: 50px;
  }
  .about_kind_section .about_kind_block {
    margin-bottom: 40px;
  }
  .schedule_section .schedule_slider .schedule_slider_item img {
    max-width: 130px;
  }
  .schedule_section .schedule_slider .schedule_slider_item .schedule_time {
    max-width: 150px;
    height: 45px;
  }
  .schedule_section .schedule_slider .schedule_slider_item .schedule_name {
    font-size: 16px;
    line-height: 22px;
  }
  .our_values_section
    .our_values_block
    .our_values_block__item
    .our_values_block__content
    img {
    max-width: 115px;
    margin-bottom: 40px;
  }
  .our_values_section {
    padding: 60px 0 20px;
  }
  .schedule_section {
    padding: 60px 0;
  }
  .reviews_section {
    padding: 0 0 60px;
  }
  .addit_section h2 {
    margin: 0 auto 40px;
  }
  .addit_section .addit_classes_link {
    margin: 40px auto 0;
  }
  .reviews_section .section_title {
    margin: 0 auto 100px;
  }
  .hero_section {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .hero_section .hero_block_top .hero_block_top__content {
    max-width: 380px;
  }
  .hero_section .hero_block_top .hero_block_top__content .hero_block_top__link {
    padding: 12px 20px;
    justify-content: space-around;
  }
  .hero_section .hero_block_bot .hero_block_bot__item {
    max-width: 125px;
  }
  .hero_section .hero_block_bot .hero_block_bot__item h4 {
    font-size: 13px;
    line-height: 15px;
  }
  .hero_section .hero_block_top .hero_block_top__content .hero_block_top__text {
    font-size: 22px;
    line-height: 24px;
    margin: 0 auto 40px;
  }
  .hero_section .hero_block_bot {
    padding-top: 40px;
  }
  .hero_section
    .hero_block_top
    .hero_block_top__content
    .hero_block_top__link
    p {
    font-size: 14px;
    line-height: 20px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .institut_item_slider_item
    .institut_slider_num {
    font-size: 24px;
    line-height: 28px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .institut_item_slider_item {
    padding: 40px 45px 40px 70px;
  }
  .about_kind_section
    .about_kind_block
    .about_kind_block_item
    .nums_growth_block {
    font-size: 36px;
    line-height: 38px;
    margin: 0 0 15px;
  }
  .about_kind_section
    .about_kind_block
    .about_kind_block_item
    .nums_growth_title {
    font-size: 13px;
  }
  .about_kind_section .about_kind_link a {
    flex: 1 0 auto;
  }
  .our_values_section
    .our_values_block
    .our_values_block__item
    .our_values_block__content
    img {
    max-width: 80px;
  }
  .our_values_section
    .our_values_block
    .our_values_block__item
    .our_values_block__content
    p {
    font-size: 14px;
    line-height: 20px;
  }
  .our_values_section h2 {
    margin: 0 auto 40px;
  }
  .reviews_section .section_title,
  .our_values_section h2,
  .schedule_section h2,
  .addit_section h2 {
    font-size: 26px;
    line-height: 28px;
  }
  .schedule_section .schedule_slider .schedule_slider_item .schedule_time p {
    font-size: 18px;
    line-height: 24px;
  }
  .addit_section .addit_classes_link {
    max-width: 380px;
    margin: 20px auto 0;
  }
  .reviews_section .feedback_btn {
    max-width: 380px;
  }
  .addit_section .addit_classes_link p {
    font-size: 14px;
    line-height: 20px;
  }
  .schedule_section .schedule_slider .schedule_slider_item img {
    max-width: 115px;
  }
  .schedule_section .schedule_slider .slick-arrow {
    top: -60px;
  }
  .reviews_section .slick-arrow {
    width: 50px;
    height: 50px;
  }
  .reviews_section .video_slider_block {
    margin-bottom: 140px;
  }
  .reviews_section .fb_slider_block {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 568px) {
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .slick-arrow {
    top: -60px;
    margin: 0;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .slick-arrow.prev {
    right: 80px;
    left: auto;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .slick-arrow.next {
    right: 0;
    left: auto;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider {
    margin: 80px 40px 80px;
  }
  .reviews_section .section_title,
  .our_values_section h2,
  .schedule_section h2,
  .addit_section h2 {
    font-size: 22px;
    width: auto;
    text-align: left;
  }
  .addit_section h2,
  .our_values_section h2 {
    margin: 0 0 40px 40px;
  }
  .reviews_section .section_title,
  .schedule_section h2 {
    margin: 0 0 90px 40px;
  }
  .about_institut_section .about_institut_item .institut_item_text_side h1,
  .about_institut_section .about_institut_item .institut_item_text_side h2 {
    width: auto !important;
    font-size: 20px;
    line-height: 24px;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider {
    margin: 80px 0;
  }
  .about_institut_section
    .about_institut_item
    .institut_item_text_side
    .institut_item_slider
    .institut_item_slider_item {
    padding: 20px 20px 35px 50px;
  }
  .about_kind_section .about_kind_block {
    padding: 40px 20px;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .about_kind_section .about_kind_link a {
    max-width: 220px;
    margin: 0 15px;
  }
  .about_kind_section .about_kind_block .about_kind_block_item {
    max-width: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .about_kind_section
    .about_kind_block
    .about_kind_block_item
    .nums_growth_title {
    flex: 1 0 auto;
  }
  .about_kind_section
    .about_kind_block
    .about_kind_block_item:not(:last-child) {
    margin-bottom: 20px;
  }
  .our_values_section .our_values_block .our_values_block__item {
    max-width: 50%;
  }
  .reviews_section .more_reviews_link {
    max-width: 220px;
  }
  .reviews_section .more_reviews_link p {
    font-size: 14px;
    line-height: 20px;
  }
  .hero_section .hero_block_top .hero_block_top__content .hero_block_top__link {
    padding: 10px 20px;
  }
  .hero_section .hero_block_bot {
    width: calc(100% + 40px);
    position: relative;
    left: -20px;
  }
  .hero_section .hero_block_top .hero_block_top__content .hero_block_top__text {
    font-size: 20px;
  }
  .hero_section .hero_block_bot .hero_block_bot__item h4 {
    font-size: 11px;
    line-height: 15px;
  }
  .hero_section .hero_block_bot .hero_block_bot__item {
    max-width: 100px;
  }
}
@media screen and (max-width: 410px) {
  .hero_section .hero_block_bot .hero_block_bot__item {
    max-width: 90px;
  }
}
