@charset "UTF-8";
:root {
  --color_bg: #7D7DFF;
  --color_bg-blocks: #F7F7FF;
  --color_text: #232050;
  --color_btn: #645CD9;
  --color_btn-hover: #BBBBFF;
  --color_btn-active: #8482DB;
  --color_red_hover: #800c12;
  --color_light: rgba(255, 255, 255, 0.6);
}

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

html,
body {
  font-size: 15px;
  line-height: 1.4;
  color: var(--color_text);
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 400;
  position: relative;
  height: 100%;
}

body.bodyLock {
  overflow: hidden;
}

:active,
:hover,
:focus,
:visited {
  outline: 0;
  outline-offset: 0;
}

a {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

strong {
  color: #fff;
  font-weight: bold;
}

.container {
  max-width: 1440px;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

section {
  position: relative;
}

.section {
  margin-top: 70px;
  position: relative;
}

.wrapper {
  overflow: hidden;
}

.sliders_all {
  position: relative;
}

/* ============================================== */
/*                    HEADER                      */
/*  ============================================= */
.header_top {
  background: var(--color_bg);
  transition: 0.4s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 15;
}

.header_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #150500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.header_top._mobile:before {
  opacity: 1;
  visibility: visible;
}

.header_top.min {
  box-shadow: 0 2px 5px rgba(77, 76, 76, 0.5);
}

.header_top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_btn {
  color: var(--color_btn);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  background: #FFFFFF;
  box-shadow: 5px 5px 10px rgba(132, 130, 219, 0.2);
  border-radius: 30px;
  border: none;
  display: block;
  padding: 15px 5px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.header_btn:hover {
  color: #fff;
  background: var(--color_btn-hover);
}

.header_btn:focus {
  color: var(--color_btn);
  background: #fff;
}

.header_top.min .header_btn {
  font-size: 16px;
  padding: 10px 5px;
  max-width: 230px;
}

.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 auto;
  transition: all 0.4s;
  margin-right: 7%;
}

.nav {
  width: 100%;
}

.nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav > ul > li {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-right: 20px;
  transition: all 0.3s;
}

.header_top.min .nav > ul > li {
  padding-top: 15px;
  padding-bottom: 15px;
}

.nav li {
  position: relative;
}

.nav li a {
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
}

/* DROPDOWN MENU */
.list_menu_bottom li a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* transition: all .3s; */
}

.list_menu_bottom li a:hover:after,
.list_menu_bottom li a:focus:after {
  width: 100%;
}

.list_menu_bottom li > ul {
  position: absolute;
  top: 120%;
  left: -5px;
  background: #7D7DFF;
  box-shadow: -3px -3px 10px rgba(132, 130, 219, 0.1), 3px 3px 10px rgba(132, 130, 219, 0.1);
  border-top: 2px solid #9c9cfc;
  padding: 10px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 4;
}

.list_menu_bottom li > ul li {
  white-space: nowrap;
  margin: 8px;
}

.list_menu_bottom li:hover > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.list_menu_bottom > li:nth-child(2),
.list_menu_bottom > li:nth-child(3) {
  padding-right: 15px;
}

.list_menu_bottom > li:nth-child(2):after,
.list_menu_bottom > li:nth-child(3):after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}

.header_top.min .nav li a {
  font-size: 16px;
}

.header_top.min .nav li a:hover {
  /* color: #1d70ed; */
}

/* HEADER MAIN */
.header_main {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.5px;
  padding-top: 85px;
}

.header_main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* LOGO */
.header_logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  transition: all 0.4s;
}

.logo_img {
  display: block;
  width: 100%;
  max-width: 100px;
  margin-right: 20px;
  transition: all 0.4s;
}

.logo span {
  display: block;
  color: var(--color_btn);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.4s;
}

/* header_info */
.header_info {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_info_item {
  padding-left: 30px;
}

.header_info__address {
  background: url(../img/ico/location.svg) no-repeat top left/auto;
  margin-right: 40px;
}

.header_info__time {
  background: url(../img/ico/clock.svg) no-repeat top left/auto;
}

.header_social {
  flex: 0 0 auto;
}

.header_social__icons._mobile {
  flex: 0 0 auto;
  display: flex;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.165, 0.84, 0.44, 1), transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social_icons {
  display: flex;
  margin-top: 10px;
}

.social_icons a {
  display: block;
  width: 24px;
  height: 24px;
}

.social_icons a:not(:last-child) {
  margin-right: 20px;
}

.social_icons a img {
  display: block;
  width: 100%;
  height: 100%;
}

.header_phone {
  flex: 0 0 auto;
}

.phone_icon {
  display: block;
  color: var(--color_text);
  background: url(../img/ico/phone.svg) no-repeat center left/auto;
  padding-left: 30px;
}

.phone_icon:hover {
  text-decoration: underline;
}

.viber_icon {
  background: url(../img/ico/viber.svg) no-repeat center left/auto;
  padding-left: 30px;
}

.telegram_icon {
  background: url(../img/ico/telegram.svg) no-repeat center left/auto;
  padding-left: 30px;
}

.header_lang__wrap {
  flex: 0 0 auto;
}

.header_lang__wrap span {
  color: #000;
  font-weight: 300;
  font-size: 13px;
}

.header_lang__wrap a {
  color: var(--color_text);
  font-size: 15px;
  font-weight: 600;
}

.header_lang:focus,
.header_lang.active,
.header_lang:hover {
  color: var(--color_btn);
}

.header_lang__wrap._mobile_lang {
  display: none;
}

/* box_mobile */
.box_mobile {
  display: none;
}

.btn_mobile {
  outline: none;
  display: none;
  border: none;
  background: transparent;
  width: 27px;
  height: 24px;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
  overflow: hidden;
}

.btn_mobile span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #000;
  border-radius: 2px;
  width: 100%;
  height: 2px;
  transition: all 0.2s;
}

.btn_mobile span:before,
.btn_mobile span:after {
  content: "";
  position: absolute;
  right: 0;
  background: #000;
  border-radius: 2px;
  height: 2px;
  transition: all 0.2s;
}

.btn_mobile span:before {
  top: -7px;
  width: 100%;
}

.btn_mobile span:after {
  bottom: -7px;
  width: 100%;
}

.btn_mobile._mobile span {
  background: #fff;
  top: 10px;
  transform: rotate(-45deg);
}

.btn_mobile._mobile span:before {
  background: transparent;
}

.btn_mobile._mobile span:after {
  background: #fff;
  top: 0;
  width: 100%;
  transform: rotate(90deg);
}

/* ============================================== */
/*                    	АКЦИЯ                     */
/*  ============================================= */
.action_wrapper {
  background: #E7E7FF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: all 0.3s;
}

.action_wrapper:hover {
  background: var(--color_bg);
}

.action_wrapper a {
  color: var(--color_btn);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.action_wrapper:hover a {
  color: #fff;
}

/* ============================================== */
/*                 	SECTION MAIN                   */
/*  ============================================= */
.section_main {
  background: var(--color_bg-blocks);
  padding: 70px 0;
}

.swiper_slide__item {
  display: flex;
  justify-content: space-between;
  background: var(--color_bg-blocks);
}

.swiper_slide__item-left {
  flex: 0 1 45%;
  position: relative;
}

.swiper_slide__item-right {
  flex: 0 1 50%;
}

.slide_item__img {
  border-radius: 30px;
  box-shadow: 0px 0px 8px rgba(132, 130, 219, 0.4);
  width: 100%;
  margin: 7px 0 7px 7px;
  overflow: hidden;
}

.slide_item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide_item__title {
  font-weight: 600;
  font-size: 50px;
  letter-spacing: 5px;
}

.swiper_slide__item-right p {
  font-size: 15px;
  letter-spacing: 0.5px;
  margin: 30px 0 40px 0;
}

.btn_sign-up {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  background: var(--color_btn);
  box-shadow: 5px 5px 10px rgba(132, 130, 219, 0.2);
  border-radius: 30px;
  border: none;
  padding: 17px 10px;
  width: 100%;
  max-width: 250px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn_sign-up:hover {
  background: var(--color_bg);
}

.btn_sign-up:focus {
  background: var(--color_btn-active);
}

.swiper-button-next.slider_button__next,
.swiper-button-prev.slider_button__prev {
  color: var(--color_btn);
  background: none;
}

.swiper-button-next.slider_button__next:hover,
.swiper-button-prev.slider_button__prev:hover {
  color: var(--color_text);
}

.main_slider .swiper-button-next.slider_button__next {
  right: 15px;
  left: auto;
}

.main_slider .swiper-button-prev.slider_button__prev {
  left: 15px;
  right: auto;
}

.swiper-button-next.slider_button__next::after,
.swiper-button-prev.slider_button__prev::after {
  font-size: 24px;
  font-weight: bold;
}

.swiper-pagination.swiper_pagination_main_slider {
  text-align: left;
}

.swiper_pagination_main_slider.swiper-pagination-bullets {
  bottom: 20%;
  left: 50%;
  width: 50%;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px 0 0;
}

.swiper-pagination .swiper-pagination-bullet {
  opacity: 0.8;
  background: #BBBBFF;
  width: 12px;
  height: 12px;
  margin: 0 10px;
}

.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #8E8EFF;
}

/* ============================================== */
/*          SECTION FORM КОНСУЛЬТАЦИЯ             */
/*  ============================================= */
.section.section_form__consultation {
  margin: 70px 0;
}

.section_form__consultation-inner {
  background: var(--color_bg);
  box-shadow: 5px 5px 10px rgba(132, 130, 219, 0.2);
  border-radius: 60px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px 30px;
}

.form_consultation__title {
  flex: 0 1 30%;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-align: center;
}

.form_consultation {
  flex: 0 1 60%;
}

/* ============================================== */
/*                       ABOUT                    */
/*  ============================================= */
h3 {
  font-weight: 600;
  font-size: 35px;
  letter-spacing: 3px;
  color: var(--color_text);
  margin-bottom: 35px;
}

.section_about__wrapper {
  display: flex;
  gap: 35px;
}

.section_about__left {
  width: 50%;
}

.section_about__img {
  border-radius: 30px;
  overflow: hidden;
}

.section_about__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section_about__right {
  width: 50%;
}

.btn_link {
  color: var(--color_btn);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  background: #FFFFFF;
  border: 1px solid #645CD9;
  border-radius: 30px;
  display: block;
  padding: 15px 5px;
  margin-top: 30px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.btn_link:hover {
  color: #fff;
  background: var(--color_bg);
  border: 1px solid var(--color_bg);
}

.btn_link:focus {
  color: #fff;
  background: var(--color_btn-active);
  border: 1px solid var(--color_btn-active);
}

.services_slider .slider_btn {
  margin: 0 auto;
}

/* ============================================== */
/*                    PROBLEMS                    */
/*  ============================================= */
.section_problems {
  background: var(--color_bg-blocks);
  padding: 40px 0;
}

.section_problems h3 {
  margin-bottom: 0;
}

.section_problems__wrapper {
  display: flex;
}

.problems_col__left {
  padding: 70px 0;
  width: 30%;
}

.problems_col__img {
  width: 40%;
}

.problems_col__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problems_col__right {
  padding: 70px 0;
  width: 30%;
}

.problem_item {
  color: var(--color_text);
  display: block;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
  background: #FFFFFF;
  box-shadow: -3px -3px 10px rgba(132, 130, 219, 0.1), 3px 3px 10px rgba(132, 130, 219, 0.1);
  border-radius: 50px;
  padding: 10px 0;
  margin: 25px 0 50px 0;
  width: 100%;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s;
}

.problem_item:hover {
  color: #fff;
  background: var(--color_btn-hover);
}

.problem_item:focus {
  color: #fff;
  background: var(--color_btn-active);
}

.problems_col__left .problem_item:nth-child(1) {
  transform: translateX(24%);
}

.problems_col__left .problem_item:nth-child(2) {
  transform: translateX(8%);
}

.problems_col__left .problem_item:nth-child(3) {
  transform: translateX(5%);
}

.problems_col__left .problem_item:nth-child(4) {
  transform: translateX(15%);
}

.problems_col__right .problem_item:nth-child(1) {
  transform: translateX(-7%);
}

.problems_col__right .problem_item:nth-child(2) {
  transform: translateX(8%);
}

.problems_col__right .problem_item:nth-child(3) {
  transform: translateX(10%);
}

/* ============================================== */
/*                      УСЛУГИ                    */
/*  ============================================= */
.services_slider {
  position: relative;
}

.services_slide__item {
  background: #FFFFFF;
  box-shadow: -3px -3px 10px rgba(132, 130, 219, 0.1), 3px 3px 10px rgba(132, 130, 219, 0.1);
  border-radius: 30px;
  padding-bottom: 35px;
  margin: 8px;
  overflow: hidden;
}

.services_slide__item-img {
  display: block;
}

.services_slide__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services_slide__item-title {
  display: block;
  margin: 30px 0 20px 0;
  text-align: center;
}

.title_item {
  color: var(--color_text);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 1px;
}

.services_slide__item-title:hover {
  text-decoration: underline;
}

.swiper-pagination.swiper_pagination_services_slider {
  position: relative;
  bottom: 0;
  margin-top: 40px;
}

.swiper-button-next.slider_button__next {
  top: 25px;
  right: 13px;
}

.swiper-button-prev.slider_button__prev {
  top: 25px;
  left: auto;
  right: 60px;
}

/* ============================================== */
/*                      АКЦИИ                     */
/*  ============================================= */
.actions_slide__item {
  padding: 10px 30px;
  position: relative;
  height: 450px;
}

.actions_slide__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.actions_slide__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container_flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}

.actions_slide__item-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 35px;
  letter-spacing: 3px;
}

.actions_slide__item p {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
}

.actions_slider .slider_btn {
  border: 1px solid transparent;
}

.swiper-button-prev.actions_slider__btn-prev {
  color: #fff;
  left: 3%;
}

.swiper-button-next.actions_slider__btn-next {
  color: #fff;
  right: 3%;
}

.swiper-pagination.swiper_pagination_actions_slider {
  position: relative;
  bottom: 0;
  margin-top: 40px;
}

/* ============================================== */
/*                   Специалисты                  */
/*  ============================================= */
.specialist_item {
  background: #FFFFFF;
  box-shadow: -3px -3px 10px rgba(132, 130, 219, 0.1), 3px 3px 10px rgba(132, 130, 219, 0.1);
  border-radius: 30px;
  padding: 30px;
  margin: 8px;
}

.specialist_item__img {
  background: var(--color_bg-blocks);
  border-radius: 50%;
  overflow: hidden;
}

.specialist_item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist_item__title {
  margin: 25px 0 15px 0;
}

.specialist_item .item_btn {
  margin-top: 25px;
}

.section_specialists .swiper-button-next,
.section_specialists .swiper-button-prev {
  display: none;
}

.section_specialists .swiper-pagination {
  display: none;
}

/* ============================================== */
/*                      Отзывы                    */
/*  ============================================= */
.review_bg__item {
  background: var(--color_bg-blocks);
  box-shadow: -3px -3px 10px rgba(132, 130, 219, 0.1), 3px 3px 10px rgba(132, 130, 219, 0.1);
  border-radius: 30px;

}
.review_slide__item {
    padding: 30px;
}
.review_slide__item .reviews_blog__text {
  height: 125px;
  overflow: hidden;
  position: relative;
}
.review_slide__item .reviews_blog__text:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(247, 247, 255, 0.3) 0%, rgba(247, 247, 255, 0.8) 30%, rgb(247, 247, 255) 100%);
}
.reviews_blog__text p {
  background: url(../img/ico/quotes.svg) no-repeat top left/40px;
  padding-top: 50px;
  margin-top: 0;
}

.review_slide__item-more {
  color: var(--color_btn-hover);
  border: none;
  background: none;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: underline;
  cursor: pointer;
}

.review_slide__item-more:hover {
  color: var(--color_text);
}

.review_slide__item-bottom {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.review_slide__item-bottom--img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review_slide__item-bottom--img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review_name {
  display: block;
  color: var(--color_text);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
}

.review_date {
  color: var(--color_text);
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* ============================================== */
/*                       BLOG                     */
/*  ============================================= */
.blog_slide__item {
  padding: 10px 10px 0 10px;
}

.blog_slide__item-img {
  display: block;
  box-shadow: 0px 0px 10px rgba(132, 130, 219, 0.2);
  border-radius: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.blog_slide__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.blog_slide__item-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-bottom: 5px;
  height: 100%;
  min-height: 280px;
}

.blog_slide__item-bottom .slider_btn {
  margin-top: 0;
}

/* ============================================== */
/*                     CONTACTS                   */
/*  ============================================= */
.section_contacts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 0;
  padding-right: 15%;
  position: relative;
}

.map_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map_box iframe {
  width: 100%;
  height: 100%;
}

.contact_box {
  background: #FFFFFF;
  box-shadow: -3px -3px 10px rgba(132, 130, 219, 0.1), 3px 3px 10px rgba(132, 130, 219, 0.1);
  border-radius: 30px;
  padding: 60px 85px 70px 85px;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

.contacts_list li {
  line-height: 1.6;
  margin-bottom: 20px;
}

.contacts_list li .list_address {
  background: url(../img/ico/location.svg) no-repeat center left/auto;
  padding-left: 30px;
}

.contacts_list li a {
  color: var(--color_text);
  display: block;
}
.contacts_list li a:hover {
  text-decoration: underline;
}

.contacts_list li span {
  display: block;
}

.mail_icon {
  color: var(--color_text);
  display: block;
  background: url(../img/ico/mail.svg) no-repeat top left/auto;
  padding-left: 30px;
}

.contacts_list li .list_time {
  background: url(../img/ico/clock.svg) no-repeat center left/auto;
  padding-left: 30px;
}

.contact_box .social_icons {
  justify-content: center;
  margin-top: 30px;
}

.contacts_column__wrapper .social_icons a {
  margin: 0 0 0 20px;
}

/* ============================================== */
/*               Остались вопросы?                */
/*  ============================================= */
.section_questions {
  background: url(../img/bg/bg_form_consult.jpg) no-repeat center/cover;
  padding: 135px 0;
}

.section_questions__wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.box_questions {
  width: 100%;
  max-width: 715px;
}

h4 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
}

.questions_form {
  margin-top: 50px;
}

/* ============================================== */
/*                      FOOTER                    */
/*  ============================================= */
.footer {
  background: var(--color_bg-blocks);
  padding: 100px 0;
}

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

.footer_first {
  flex: 0 0 auto;
}

.footer_logo {
  width: 100%;
  max-width: 75px;
}

.footer_logo .logo {
  display: block;
  text-align: center;
}

.footer_logo .logo_img {
  max-width: 65px;
  margin: 0 auto;
}

.footer_logo .logo span {
  display: inline;
  font-size: 10px;
  letter-spacing: 2px;
}

.footer_copyright {
  margin-top: 30px;
}

.footer_item__title {
  color: var(--color_btn);
  background: none;
  border: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 1px;
  padding: 0;
  margin-bottom: 20px;
}

.footer_social__icons.social_icons {
  margin-top: 50px;
}

.footer_menu {
  flex: 0 1 750px;
  display: flex;
  justify-content: space-between;
}

.menu_item__list li {
  margin-bottom: 10px;
}

.menu_item__list li a {
  color: var(--color_text);
  letter-spacing: 0.5px;
}

.menu_item__list li a:hover {
  text-decoration: underline;
}

.footer_contacts {
  flex: 0 0 auto;
}

.footer_contacts .btn_sign-up {
  margin-top: 25px;
}

/* ! PAGE */
.breadcrumbs {
  margin-top: 20px;
}

.breadcrumbs ul {
  background: url(../img/ico/home_breadcrumbs.svg) no-repeat top 2px left/16px;
  display: flex;
  flex-wrap: wrap;
  padding-left: 23px;
  position: relative;
}

.breadcrumbs li {
  font-size: 14px;
  flex: 0 0 auto;
  position: relative;
  padding-right: 14px;
  margin-right: 8px;
}

.breadcrumbs li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  right: 0;
  width: 7px;
  height: 11px;
  background: url(../img/ico/arr_breadcrumbs.svg) no-repeat center right/7px;
}

.breadcrumbs li a {
  color: var(--color_text);
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li:last-child {
  color: var(--color_bg);
}

.breadcrumbs li:last-child:after {
  content: none;
}

/* ! Diseases */
.section_flex_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.diseases_item {
  flex: 0 1 calc(100% / 4 - 19px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color_bg-blocks);
  border-radius: 20px;
  color: var(--color_text);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 5px;
  height: 200px;
  text-align: center;
  transition: all 0.3s;
}

.diseases_item:hover {
  background: var(--color_btn-hover);
}

.wrapper_page .services_slide__item {
  flex: 0 1 calc(100% / 3 - 17px);
}

.wrapper_page .services_slide__item-img {
  height: 70%;
}

.section_flex_wrapper .services_slide__item {
  margin: 0;
}

.section_flex_wrapper .btn_link {
  margin: 0 auto;
}

.wrapper_page .actions_item {
  flex: 0 1 calc(100% / 3 - 17px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 10% 5px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.wrapper_page .actions_item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s;
}

.wrapper_page .actions_item:hover:before {
  opacity: 0.6;
}

.actions_item img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ! specialists */
/* .wrapper_page .specialist_item {
  flex: 0 1 calc(100% / 4 - 19px);
  margin: 0;
} */

/* ! Reviews page */
.section_reviews_wrapper {
  
}
.review_page__item {
  /* flex: 0 1 calc(100% / 2 - 13px); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-bottom: 30px;
}
.review_page__item .review_slide__item-bottom {
  flex: 0 0 auto;
  margin: 0;
}
.review_page__item .reviews_blog__text {
  flex: 1 1 auto;
  padding-left: 30px;
}
.section_reviews_wrapper .review_page__item p {
  background-position: top right;
  padding: 10px 40px 10px 0;
  margin: 0;
}
.section_reviews_wrapper .review_page__item:nth-child(n+10) {
  display: none;
}
.section_reviews_wrapper._show_comments .review_page__item:nth-child(n+10) {
  display: flex;
}
.btn_more_reviews {
  display: block;
  color: var(--color_btn);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  background: transparent;
  border: 1px solid #645CD9;
  border-radius: 30px;
  padding: 15px 5px;
  width: 100%;
  max-width: 250px;
  margin: 10px auto 0;
  text-align: center;
  cursor: pointer;
}
.btn_more_reviews span {
  background: url(../img/ico/arr_circle.svg) no-repeat center left / 16px;
  padding-left: 30px;
}
.btn_more_reviews:hover {
  background: var(--color_bg-blocks);
}
.link_more_reviews__wrapper {
  margin-top: 40px;
  text-align: center;
}
.link_more_reviews {
  display: inline-block;
  color: var(--color_btn);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  background: transparent;
  border: 1px solid #645CD9;
  border-radius: 30px;
  padding: 15px 40px;
  transition: all 0.3s;
}
.link_more_reviews:hover {
  color: #fff;
  background: var(--color_bg);
  border: 1px solid var(--color_bg);
}
/* ! blog page */
.wrapper_page .blog_slide__item {
  flex: 0 1 calc(100% / 4 - 19px);
  padding: 0;
  margin-bottom: 30px;
}

.wrapper_page .blog_slide__item-bottom {
  max-height: 255px;
}

.section_contacts_row {
  display: flex;
  gap: 7%;
}

.contacts_column {
  flex: 0 0 auto;
}

.contacts_map {
  flex: 1 1 auto;
  height: 500px;
}

.contacts_map iframe {
  width: 100%;
  height: 100%;
}

.price_accordion {
  background: transparent;
  border: none;
  border: 2px solid var(--color_bg);
  border-radius: 30px;
  color: var(--color_text);
  font-weight: 500;
  cursor: pointer;
  padding: 20px 30px;
  width: 100%;
  display: block;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: all 0.4s;
  position: relative;
}

.price_accordion.active, .price_accordion:hover {
  color: #fff;
  background: var(--color_bg);
}

.price_accordion:after {
  content: "+";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  color: var(--color_bg);
  font-size: 26px;
  font-weight: 400;
}

.price_accordion:hover:after {
  color: #fff;
}

.price_accordion.active:after {
  content: "−";
  color: #fff;
}

.price_accordion_content {
  font-size: 16px;
  padding: 0 30px;
  max-height: 0;
  margin-bottom: 15px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.price_accordion_content p {
  padding: 20px 0;
  margin: 0%;
}

.price_block {
  display: block;
  color: var(--color_bg);
  font-weight: bold;
  margin-bottom: 10px;
}
/* ! SINGLE */
.section_single span.purple {
  color: var(--color_btn-active);
  font-weight: 600;
  letter-spacing: 1px;
}
.wrapper_btn__single {
  margin: 40px 0;
}
.img_actions__single {
  
}
.img_actions__single img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ! FORMS */
.form_inner {
  display: flex;
  justify-content: space-between;
}

.form__group {
  width: 48%;
  position: relative;
}

.form__group:first-child {
  margin-right: 10px;
}

.form__input,
.form__button {
  border: none;
  border-radius: 50px;
  width: 100%;
}

.form__input {
  font-size: 16px;
  padding: 20px 40px;
}

.form_consultation .form__input {
  color: #fff;
  background: rgba(187, 187, 255, 0.8);
}

.form_consultation .form__input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.form_consultation .form__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.form_consultation .form__input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

.form__button {
  box-shadow: 5px 5px 10px rgba(132, 130, 219, 0.2);
  cursor: pointer;
  padding: 20px 10px;
}

.form_consultation .form__button {
  color: var(--color_btn);
  background: #FFFFFF;
}

.form__button {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
}

.btn_consultation span {
  background: url(../img/ico/btn_arr.svg) no-repeat left top 6px/auto;
  padding-left: 40px;
}

.btn_consultation:hover {
  color: #fff;
  background: var(--color_btn-hover);
}

.btn_consultation:hover span {
  background: url(../img/ico/btn_arr_w.svg) no-repeat left top 6px/auto;
}

.btn_consultation:focus {
  color: var(--color_btn);
  background: #FFFFFF;
}

.btn_consultation:focus span {
  background: url(../img/ico/btn_arr.svg) no-repeat left top 6px/auto;
}

.questions_form .form__input {
  color: var(--color_text);
  background: transparent;
  border: 1px solid var(--color_text);
}

.questions_form .form__input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color_text);
  opacity: 1;
  /* Firefox */
}

.questions_form .form__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color_text);
}

.questions_form .form__input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--color_text);
}

.questions_form input.form__button {
  color: #fff;
  background: var(--color_btn);
}

.questions_form input.form__button:hover {
  background: var(--color_bg);
}

.questions_form input.form__button:focus {
  background: var(--color_btn-active);
}

/* ! MODAL WINDOW */
.modal_window {
  display: none;
  position: fixed;
  z-index: 21;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal__content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 550px;
  width: 95%;
  height: auto;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
@keyframes animatetop {
  from {
    top: -50%;
    opacity: 0;
  }
  to {
    top: 45%;
    opacity: 1;
  }
}
.close__modal {
  display: block;
  position: absolute;
  top: 35px;
  right: 35px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color_text);
  border-radius: 50%;
  cursor: pointer;
}

.close__modal:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  left: 50%;
  width: 50%;
  height: 2px;
  background: var(--color_text);
}

.close__modal:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  left: 50%;
  width: 50%;
  height: 2px;
  background: var(--color_text);
}

.modal__body {
  background: var(--color_bg-blocks);
  box-sizing: border-box;
  border-radius: 50px;
  padding: 80px 50px;
  overflow: hidden;
}

.modal__body-title {
  font-weight: 900;
  font-size: 24px;
  text-align: center;
}

.modal__body-title span {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--color_text);
  margin: 10px auto 0;
  width: 100%;
  max-width: 210px;
}

/* ! modal form */
.modal--form {
  width: 100%;
  max-width: 345px;
  margin: 50px auto 0;
}

.form_modal_input {
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
}

.form_modal_input .form-control {
  color: var(--color_text);
  background: #FFFFFF;
  box-shadow: 5px 5px 10px rgba(132, 130, 219, 0.2);
  border-radius: 50px;
  border: none;
  padding: 0 10px 0 30px;
  width: 100%;
  height: 60px;
}

.modal--form .form_button {
  display: block;
  color: #fff;
  background: var(--color_btn);
  box-shadow: 5px 5px 10px rgba(132, 130, 219, 0.2);
  border-radius: 30px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 19px 15px;
  width: 100%;
  max-width: 345px;
  margin: 30px auto 0;
  text-align: center;
  cursor: pointer;
}

.form__textarea {
  display: none;
  margin-bottom: 20px;
}

.form-group textarea {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.195);
  width: 100%;
  resize: none;
}

.form__check {
  line-height: 1.6;
  background: url(../img/ico/check.svg) no-repeat top left/24px;
  padding-left: 30px;
  width: 100%;
  max-width: 410px;
  margin: 30px auto 0;
}

/* ! BTN TOP */
.btn__top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color_btn);
  background: #fff url(../img/ico/up-chevron.svg) no-repeat center/20px;
  border-radius: 3px;
  z-index: 8;
  cursor: pointer;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  transform: translateY(25px);
}

.btn__top img {
  width: 22px;
}

.btn__top:hover {
  background: var(--color_btn-hover) url(../img/ico/up-chevron.svg) no-repeat center/20px;
}

.btn__top--active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* ! CUSTOM */
.wpcf7-form {
  position: relative;
}
.wpcf7 form .wpcf7-response-output {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  padding: 2px;
  margin: 5px 0 0 0;
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.modal--form .wpcf7 form .wpcf7-response-output {
  color: var(--color_text);
}
.modal--form .wpcf7 form.invalid .wpcf7-response-output,
.questions_form .wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}
.questions_form .wpcf7 form.sent .wpcf7-response-output {
  color: var(--color_text);
}
.wpcf7-spinner {
  margin: 0;
  position: absolute;
  top: 20px;
  left: 20px;
}
.modal--form .wpcf7 form .wpcf7-spinner {
  top: auto;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}
.wpcf7-not-valid-tip {
  font-size: 12px;
  position: absolute;
  left: 40px;
  top: 20px;
}
.modal--form .wpcf7-not-valid-tip {
  left: 31px;
  transform: translateX(0);
}

