@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:focus{
    outline: none;
}

html, body {
  height: 100%;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 320px;
  color: #373737;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  min-width: 320px;
}

a {
  text-decoration: none;
  color: #373737;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

h1, .h1 {
  font-size: clamp(26px, 3vw, 54px);
  font-weight: 600;
  text-transform: uppercase;
}
h1 span, .h1 span {
  color: #307DBF;
}

h2, .h2 {
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
}
h2 span, .h2 span {
  color: #307DBF;
}

h3, .h3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  text-transform: uppercase;
}
h3 span, .h3 span {
  color: #307DBF;
}

h4, .h4 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  text-transform: uppercase;
}
h4 span, .h4 span {
  color: #307DBF;
}

.sub_title {
  font-size: clamp(14px, 2vw, 22px);
  color: #307DBF;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

p {
  line-height: 24px;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
    line-height: 20px;
  }
}

picture {
  display: block;
  height: 100%;
}
picture img {
  height: 100%;
}

img {
  max-width: 100%;
  border: none;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.form_control {
  font-family: "Rubik", sans-serif;
  border: 1px solid #BEBDCA;
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}
.form_control:focus {
  border: 1px solid #373737;
}
.form_control::-webkit-input-placeholder {
  color: #ccc;
}

section {
  margin: 100px 0 0;
}
@media screen and (max-width: 1200px) {
  section {
    margin: 80px 0 0;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 140px 0 0;
}
@media screen and (max-width: 992px) {
  main {
    margin: 60px 0 0;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.bg_green {
  background: #2AB709;
}

.text_green {
  color: #2AB709;
}

.bg_blue {
  background: #307DBF;
}

.text_blue {
  color: #307DBF;
}

/*headerbutton*/
.btn {
  background: #ccc;
  color: #fff;
  padding: 0px 24px;
  border: none;
  border-radius: 60px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-weight: 600;
  height: 48px;
  font-size: 16px;
}
@media screen and (max-width: 390px) {
  .btn {
    font-size: 14px;
  }
}
.btn_primary {
  background: #2AB709;
  color: #fff;
}
.btn_primary:hover {
  background: #239D06;
}

.btn_secondary {
  border: 1px solid #2AB709;
  background: #fff;
  color: #2AB709;
}
.btn_secondary:hover {
  background: #239D06;
  color: #fff;
}

.btn_default {
  background: #9796A1;
  color: #fff;
}

/*header_header*/
header {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
          box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
@media screen and (max-width: 992px) {
  header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
            box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
    height: 100%;
    z-index: 10;
  }
}
@media screen and (max-width: 992px) {
  header .h_logo {
    max-width: 150px;
    margin-right: auto;
  }
}
header .up_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 992px) {
  header .up_header {
    padding: 12px 0;
  }
}
@media screen and (max-width: 992px) {
  header .address_row {
    display: none;
  }
}
header .address_row span, header .address_row .link {
  color: #9796A1;
  font-size: 14px;
  text-decoration: underline;
}
header .address_row .address {
  color: #307DBF;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}
@media screen and (max-width: 992px) {
  header .phone_row {
    display: none;
  }
}
header .phone_row span {
  color: #9796A1;
  font-size: 14px;
}
header .phone_row .phone {
  color: #307DBF;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}
header .h_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 8px;
}
@media screen and (max-width: 992px) {
  header .h_menu {
    display: none;
    position: fixed;
    top: 55px;
    left: 0;
    background: #fff;
    margin: 0;
    width: 100%;
  }
}
header .h_menu.open {
  display: block;
}
@media screen and (max-width: 992px) {
  header .h_menu .btn {
    display: none;
  }
}
header .h_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  header .h_menu ul {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  header .h_menu ul li.mobile_none {
    display: none;
  }
}
header .h_menu .dropdown {
  position: relative;
}
header .h_menu .dropdown:hover .dropdown_menu {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 992px) {
  header .h_menu .dropdown:hover .dropdown_menu {
    display: table;
  }
}
header .h_menu .dropdown:hover .item_link + span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 13px;
}
@media screen and (max-width: 992px) {
  header .h_menu .dropdown .item_link {
    display: none;
  }
}
header .h_menu .dropdown_menu {
  position: absolute;
  gap: 0;
  padding: 8px;
  background: #fff;
  z-index: 99;
  width: 230px;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(48, 125, 191, 0.1490196078);
          box-shadow: 0px 10px 20px 0px rgba(48, 125, 191, 0.1490196078);
  border-radius: 0 0 12px 12px;
  top: 43px;
  display: none;
}
@media screen and (max-width: 992px) {
  header .h_menu .dropdown_menu {
    display: table;
    position: relative;
    top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    width: auto;
    margin: 0 0 24px;
  }
}
header .h_menu .nav_item {
  position: relative;
}
header .h_menu .nav_item a {
  padding: 7px 8px;
  border-radius: 6px;
  display: block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  header .h_menu .nav_item a {
    padding: 7px 0;
    display: table;
  }
}
header .h_menu .nav_item:hover {
  background: #EAF2F9;
  border-radius: 8px;
}
@media screen and (max-width: 992px) {
  header .h_menu .nav_item:hover {
    background: none;
  }
  header .h_menu .nav_item:hover a {
    color: #307DBF;
  }
}
header .h_menu .nav_item:hover::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: url(../img/icon_right.svg) no-repeat center;
  background-size: cover;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 992px) {
  header .h_menu .nav_item:hover::after {
    display: none;
  }
}
header .h_menu .icon_menu {
  margin-right: 12px;
}
header .h_menu .item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  position: relative;
}
@media screen and (max-width: 992px) {
  header .h_menu .item_link {
    padding: 10px 0;
  }
}
header .h_menu .item_link:hover {
  color: #307DBF;
}
header .h_menu .item_link + span {
  position: absolute;
  background: url(../img/dropdown.svg) no-repeat center;
  width: 20px;
  height: 20px;
  background-size: cover;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: -20px;
}
@media screen and (max-width: 992px) {
  header .h_menu .item_link + span {
    display: none;
  }
}
header .h_menu_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  header .h_menu_row {
    display: block;
    padding: 24px 20px;
    height: 90vh;
    max-height: 800px;
    overflow: auto;
  }
}
header .h_menu_row .address_row, header .h_menu_row .phone_row {
  display: none;
}
@media screen and (max-width: 992px) {
  header .h_menu_row .address_row, header .h_menu_row .phone_row {
    display: block;
    margin: 0 0 15px;
  }
}
header .h_menu_row .social {
  display: none;
}
@media screen and (max-width: 992px) {
  header .h_menu_row .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 992px) {
  header .search {
    display: none;
  }
}
header .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 992px) {
  header .social {
    display: none;
  }
}
header .social .icon {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #307DBF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .social .icon:hover path {
  fill: #307DBF;
}
header .item_title_mobile {
  color: #BEBDCA;
  text-transform: uppercase;
  margin: 0 0 12px;
  display: none;
}
@media screen and (max-width: 992px) {
  header .item_title_mobile {
    display: table;
  }
}
@media screen and (max-width: 992px) {
  header .item_title_mobile + .item_link {
    padding: 0;
  }
}
header .btn_mobile_menu {
  display: none;
  position: relative;
  background: url(../img/menu.svg) no-repeat center;
  background-size: cover;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 992px) {
  header .btn_mobile_menu {
    display: block;
    cursor: pointer;
    z-index: 10;
  }
}
header .btn_mobile_menu.active {
  background: url(../img/close.svg) no-repeat center;
}
header .icon_header_up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
header .icon_header_up .vision {
  position: relative;
  top: 2px;
}
@media screen and (max-width: 992px) {
  header .icon_header_up .vision {
    margin-right: 10px;
  }
  header .icon_header_up .vision svg {
    width: 32px;
    height: 32px;
  }
}

/*header_main_banner*/
.main_banner {
  background: url(../img/image_bg.webp) no-repeat center center;
  background-size: cover;
  margin: 0 !important;
}

.main_banner_row {
  height: 754px;
}
@media screen and (max-width: 992px) {
  .main_banner_row {
    height: auto;
    padding: 60px 0;
  }
}
.main_banner_row .swiper-slide {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 690px 1fr;
  grid-template-columns: 690px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .main_banner_row .swiper-slide {
    -ms-grid-columns: 470px 1fr;
    grid-template-columns: 470px 1fr;
  }
}
@media screen and (max-width: 992px) {
  .main_banner_row .swiper-slide {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    height: auto;
  }
}
.main_banner_row h1 {
  margin: 0 0 20px;
}
.main_banner_row h1 span {
  color: #307DBF;
}
.main_banner_row .sub_title {
  font-size: clamp(16px, 1.8vw, 22px);
  margin: 0 0 60px;
  color: #373737;
}
@media screen and (max-width: 1200px) {
  .main_banner_row .sub_title {
    margin: 0 0 40px;
  }
}
.main_banner_row .banner_form {
  border: 2px solid #fff;
  background: linear-gradient(284.04deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  border-radius: 30px;
  padding: 30px;
}
@media screen and (max-width: 1200px) {
  .main_banner_row .banner_form {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 992px) {
  .main_banner_row .banner_form {
    display: none;
  }
}
.main_banner_row .banner_form form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 274px 12px 1fr;
  grid-template-columns: 274px 1fr;
  gap: 12px;
  margin: 40px 0 0;
}
@media screen and (max-width: 1200px) {
  .main_banner_row .banner_form form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 24px 0 0;
  }
}
.main_banner_row .banner_form form .btn {
  padding: 0;
}
.main_banner_row .banner_form form .form_info {
  margin: 12px 0 0;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  color: #373737;
  font-size: 12px;
}
@media screen and (max-width: 1200px) {
  .main_banner_row .banner_form form .form_info {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    margin: 0;
  }
}
.main_banner_row .banner_form form .form_info a {
  text-decoration: underline;
}
.main_banner_row .banner_text_row h1 {
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .main_banner_row .banner_img_row {
    margin: 0 auto;
  }
}
.main_banner_row .banner_form_title {
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.main_banner_row .banner_form_title span {
  color: #2AB709;
}
.main_banner_row .banner_form_subtitle {
  font-size: 22px;
}
.main_banner_row .banner_form_subtitle span {
  text-transform: uppercase;
  font-weight: 600;
}
.main_banner_row .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 98px;
}
@media screen and (max-width: 992px) {
  .main_banner_row .swiper-pagination {
    bottom: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main_banner_row .swiper-pagination-bullet {
  width: 15px;
  height: 5px;
  background: #307DBF;
  border-radius: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 0 auto;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.main_banner_row .swiper-pagination-bullet-active {
  width: 50px;
  height: 5px;
  border-radius: 30px;
  background: #307DBF;
  -webkit-transform-origin: center;
          transform-origin: center;
}

/*header_main_all_directions*/
.all_directions .container {
  position: relative;
}
.all_directions h2 {
  margin: 0 0 16px;
}
.all_directions .all_directions_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px 0 24px;
}
@media screen and (max-width: 1200px) {
  .all_directions .all_directions_row {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .all_directions .all_directions_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.all_directions .all_directions_row + .btn {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .all_directions .all_directions_row + .btn {
    position: relative;
    right: 0;
  }
}
.all_directions .d_item {
  border-radius: 30px;
  padding: 30px 20px 0 30px;
  position: relative;
  min-height: 380px;
  background: #EAF2F9;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .all_directions .d_item {
    min-height: 280px;
  }
  .all_directions .d_item:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media screen and (max-width: 992px) {
  .all_directions .d_item {
    padding: 24px 16px 0 16px;
  }
}
.all_directions .bg_d_item {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .all_directions .bg_d_item {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .all_directions .bg_d_item img {
    width: 100%;
  }
}
.all_directions .d_item_title {
  position: relative;
  color: #307DBF;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.all_directions .d_item_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.all_directions .d_item_list a {
  padding: 4px 8px;
  background: #fff;
  border-radius: 100px;
  font-size: clamp(14px, 1.2vw, 16px);
}
.all_directions .d_item_list a:hover {
  background: #307DBF;
  color: #fff;
}
.all_directions .d_item_list a:hover strong {
  color: #fff;
}
.all_directions .d_item_list a strong {
  color: #307DBF;
}

/*header_main_banner_directions*/
.banner_directions {
  background: url(../img/bg_banner.webp) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  padding: 44px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  max-height: 150px;
}
@media screen and (max-width: 992px) {
  .banner_directions {
    display: none;
  }
}
.banner_directions .d_img {
  max-width: 120px;
}
@media screen and (max-width: 1200px) {
  .banner_directions .d_img {
    display: none;
  }
}
.banner_directions .d_phone_row {
  font-size: 26px;
  font-weight: 600;
}
.banner_directions .d_phone_row span {
  display: block;
  font-size: 16px;
  font-weight: 400;
}

/*header_price*/
.price .sub_title {
  margin: 16px 0 0;
}
.price .container {
  position: relative;
}

.page_accordion._default {
  margin: 0;
}
.page_accordion h2 {
  margin: 0 0 16px;
}

.price_row {
  margin: 32px 0;
}
.price_row + .btn {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .price_row + .btn {
    position: relative;
    right: 0;
  }
}

.price_accordion .price_tab {
  border: none;
  margin: 0 0 8px;
}
.price_accordion .price_tab.acc_active .price_tab_title {
  background: #EAF2F9;
  border: 1px solid #EAF2F9;
}
.price_accordion .price_tab.acc_active .price_tab_title::before {
  background: url(../img/minus.svg) no-repeat;
}
.price_accordion .price_tab_title {
  border: none;
  border: 1px solid rgba(48, 125, 191, 0.3019607843);
  border-radius: 30px;
  padding: 20px 30px;
  color: #307DBF;
  font-size: clamp(16px, 2vw, 22px);
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 992px) {
  .price_accordion .price_tab_title {
    padding: 20px 16px;
  }
}
@media screen and (max-width: 768px) {
  .price_accordion .price_tab_title {
    padding: 12px 50px 12px 16px;
  }
}
.price_accordion .price_tab_title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 30px;
  background: url(../img/plus.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .price_accordion .price_tab_title::before {
    right: 16px;
  }
}
.price_accordion .price_tab_desc {
  padding: 8px 0;
}
.price_accordion .price_tab_desc .tab_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 30px;
  border-bottom: 1px solid rgba(48, 125, 191, 0.3019607843);
}
@media screen and (max-width: 992px) {
  .price_accordion .price_tab_desc .tab_item {
    padding: 8px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.price_accordion .price_tab_desc .tab_item:last-child {
  border: none;
}
.price_accordion .price_tab_desc .tab_item_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .price_accordion .price_tab_desc .tab_item_row {
    gap: 8px;
  }
}
.price_accordion .price_tab_desc .tab_item_title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.price_accordion .price_tab_desc .tab_item_title a {
  text-decoration: underline;
}
.price_accordion .price_tab_desc .tab_item_title > span, .price_accordion .price_tab_desc .tab_item_title button {
  position: relative;
  background: url(../img/info.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: cover;
  display: inline-block;
  cursor: pointer;
  top: 3px;
}
.price_accordion .price_tab_desc .tab_item_sale {
  position: relative;
  background: #EAF8E6 url(../img/list.svg) no-repeat;
  border-radius: 100px;
  padding: 6px 8px 6px 36px;
  background-position: 10px 50%;
  font-size: clamp(12px, 1vw, 16px);
}
.price_accordion .price_tab_desc .tab_item_new {
  background: #EAF8E6;
  border-radius: 100px;
  padding: 4px 8px;
  font-size: clamp(12px, 1vw, 16px);
}
@media screen and (max-width: 768px) {
  .price_accordion .price_tab_desc .tab_item_new {
    display: none;
  }
}
.price_accordion .price_tab_desc .tab_price {
  color: #EB8034;
  font-weight: 600;
  font-size: clamp(14px, 1vw, 16px);
}
.price_accordion .price_tab_desc .tab_price s {
  color: #9796A1;
  font-weight: 300;
  font-size: clamp(12px, 1vw, 16px);
}
.price_accordion .tab_info {
  padding: 20px 30px;
}
.price_accordion ul {
  margin: 0 0 20px 20px;
}

/*header_price*/
.works .container {
  position: relative;
}
@media screen and (max-width: 768px) {
  .works h2 br {
    display: none;
  }
}

.works_row {
  padding: 32px 0;
}
.works_row + .btn {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .works_row + .btn {
    position: relative;
    right: 0;
    margin: 24px 0 0;
  }
}
.works_row .works_item {
  max-width: 575px;
  background: #EAF2F9;
  border-radius: 30px;
  padding: 30px;
}
.works_row .works_item:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
@media screen and (max-width: 992px) {
  .works_row .works_item {
    padding: 16px;
    max-width: 350px;
  }
}
.works_row .img_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.54fr 10px 1fr;
  grid-template-columns: 1.54fr 1fr;
  gap: 10px;
  min-height: 275px;
}
@media screen and (max-width: 992px) {
  .works_row .img_row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.works_row .img_row .img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 992px) {
  .works_row .img_row .img {
    height: 90px;
  }
}
.works_row .img_row .img:first-child {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
@media screen and (max-width: 992px) {
  .works_row .img_row .img:first-child {
    -ms-grid-row-span: 1;
    grid-row: span 1;
    -ms-grid-column-span: 2;
    grid-column: span 2;
    height: 200px;
  }
}
.works_row .img_row .img img {
  height: 100%;
  width: 100%;
}
.works_row .img_row .img span {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  border-radius: 100px;
  padding: 4px 8px;
}
.works_row h4 {
  margin: 24px 0 10px;
}
.works_row .works_count {
  color: #BEBDCA;
  margin: 0 0 10px;
  font-size: clamp(14px, 1vw, 16px);
}
.works_row .works_desc {
  color: #0F0F0F;
  margin: 0 0 24px;
  font-size: clamp(14px, 1vw, 16px);
}
.works_row .works_price_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.works_row .works_price_row .works_date {
  color: #BEBDCA;
  font-size: clamp(14px, 1vw, 16px);
}
.works_row .works_price_row .works_price {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  color: #307DBF;
}
.works_row .swiper-pagination {
  top: auto;
  bottom: 0px;
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
}

/*header_experience/ */
.experience .sub_title {
  margin: 16px 0 0;
  color: #307DBF;
}

.experience_row .exp_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {
  .experience_row .exp_item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.experience_row .exp_item .exp_img_row {
  width: 100%;
  min-height: 200px;
  background: #ccc;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.experience_row .exp_item .exp_img_row .exp_img, .experience_row .exp_item .exp_img_row img {
  height: 100%;
}
.experience_row .exp_item .exp_img_row:nth-child(1) {
  -ms-grid-row-span: 2;
  grid-row: span 2/2;
  background: #307DBF;
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item .exp_img_row:nth-child(1) {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(1) .exp_desc_row {
  position: absolute;
  top: 50px;
  left: 30px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .experience_row .exp_item .exp_img_row:nth-child(1) .exp_desc_row {
    top: 24px;
    left: 16px;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(1) .exp_desc_row .exp_desc {
  margin: 16px 0 0;
  font-size: clamp(14px, 1.5vw, 16px);
}
.experience_row .exp_item .exp_img_row:nth-child(2) {
  -ms-grid-row-span: 1;
  grid-row: span 1/1;
  background: #EAF2F9;
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item .exp_img_row:nth-child(2) {
    -ms-grid-row-span: 1;
    grid-row: span 1;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(2) .exp_desc_row {
  position: absolute;
  top: 53px;
  left: 208px;
}
@media screen and (max-width: 1200px) {
  .experience_row .exp_item .exp_img_row:nth-child(2) .exp_desc_row {
    left: 75px;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(2) .exp_desc_row .exp_desc {
  margin: 16px 0 0;
}
.experience_row .exp_item .exp_img_row:nth-child(2) .exp_desc_img {
  position: absolute;
  top: 0;
  left: -178px;
}
@media screen and (max-width: 1200px) {
  .experience_row .exp_item .exp_img_row:nth-child(2) .exp_desc_img {
    width: 60px;
    height: 60px;
    left: -60px;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: span 1/2;
  background: #EAF8E6;
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item .exp_img_row:nth-child(3) {
    -ms-grid-row-span: 1;
    grid-row: span 1;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(3) .exp_img img {
  margin-left: auto;
}
.experience_row .exp_item .exp_img_row:nth-child(3) .exp_desc_row {
  position: absolute;
  top: 50px;
  left: 30px;
}
@media screen and (max-width: 1200px) {
  .experience_row .exp_item .exp_img_row:nth-child(3) .exp_desc_row {
    left: 16px;
    max-width: 270px;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(3) .exp_desc_row .exp_desc {
  margin: 16px 0 0;
}
.experience_row .exp_item .exp_img_row:nth-child(4) {
  -ms-grid-row-span: 3;
  grid-row: span 3;
  background: #307DBF;
}
@media screen and (max-width: 1200px) {
  .experience_row .exp_item .exp_img_row:nth-child(4) {
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item .exp_img_row:nth-child(4) {
    -ms-grid-row-span: 1;
    grid-row: span 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(4) .exp_desc_row {
  position: absolute;
  top: 50px;
  left: 30px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .experience_row .exp_item .exp_img_row:nth-child(4) .exp_desc_row {
    top: 24px;
    left: 16px;
    max-width: 200px;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(4) .exp_desc_row .exp_desc {
  margin: 16px 0 0;
}
.experience_row .exp_item .exp_img_row:nth-child(5) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  background: #EAF2F9;
}
@media screen and (max-width: 1200px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media screen and (max-width: 640px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) {
    height: 337px;
  }
}
@media screen and (max-width: 500px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row {
  position: absolute;
  top: 50px;
  left: 30px;
}
@media screen and (max-width: 1200px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row {
    top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row {
    top: 24px;
  }
}
@media screen and (max-width: 420px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row {
    right: 16px;
    left: 16px;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row::before {
  content: "";
  background: url(../img/line_down.svg) no-repeat;
  width: 168px;
  height: 124px;
  position: absolute;
  top: 20px;
  right: -20px;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row::before {
    background: url(../img/line_down_2.svg) no-repeat;
    background-size: cover;
    top: 60px;
    right: -10px;
    width: 38px;
    height: 70px;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row .exp_desc {
  margin: 16px 0 30px;
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row .exp_desc {
    max-width: 300px;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) .exp_desc_row .btn {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .experience_row .exp_item .exp_img_row:nth-child(5) .exp_img picture {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
  }
}
.experience_row .exp_item .exp_img_row:nth-child(5) .exp_img img {
  margin-left: auto;
}

/*header_doctors/ */
.doctors h2 {
  margin: 0 0 16px;
}
.doctors .container {
  position: relative;
}

.doctors_row {
  padding: 32px 0;
}
.doctors_row + .btn {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 992px) {
  .doctors_row + .btn {
    position: relative;
    right: 0;
    margin: 24px 0 0;
  }
}
.doctors_row .doc_item {
  position: relative;
  min-height: 300px;
  height: auto;
  display: block;
  background: #EAF2F9;
  border-radius: 30px;
  padding: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .doctors_row .doc_item {
    width: 453px;
  }
}
@media screen and (max-width: 992px) {
  .doctors_row .doc_item {
    width: 335px;
    height: 220px;
    min-height: auto;
    padding: 24px 16px;
  }
}
.doctors_row .doc_item:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
.doctors_row .doc_item .doc_img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .doctors_row .doc_item .doc_img {
    height: 220px;
  }
  .doctors_row .doc_item .doc_img img {
    height: 100%;
  }
}
.doctors_row .doc_item .doc_info_row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.doctors_row .doc_item .doc_spec {
  color: #9796A1;
  font-size: 12px;
  margin: 0 0 8px;
}
.doctors_row .doc_item .doc_experience {
  max-width: 242px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 118px;
}
@media screen and (max-width: 992px) {
  .doctors_row .doc_item .doc_experience {
    height: 70px;
    max-width: 210px;
  }
}
.doctors_row .doc_item .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: auto;
}
@media screen and (max-width: 992px) {
  .doctors_row .doc_item .btn {
    padding: 0 20px;
  }
}
.doctors_row .swiper-pagination {
  top: auto;
  bottom: 0px;
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
}

/*header_doctors/ */
.banner_through {
  background: url(../img/banner_through.webp) no-repeat center;
  background-size: cover;
}

.banner_through_row {
  padding: 50px 0 78px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .banner_through_row {
    padding: 40px 0px;
  }
}
.banner_through_row::before {
  content: "";
  background: url(../img/query.svg) no-repeat center;
  width: 198px;
  height: 240px;
  background-size: cover;
  position: absolute;
  left: -100px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .banner_through_row::before {
    width: 112px;
    height: 136px;
    left: -50px;
  }
}
.banner_through_row::after {
  content: "";
  background: url(../img/query2.svg) no-repeat center;
  width: 290px;
  height: 353px;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .banner_through_row::after {
    display: none;
  }
}
.banner_through_row .form_row {
  max-width: 690px;
  margin: 32px 0 0;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 30px;
}
.banner_through_row .banner_form {
  border: 2px solid #fff;
  background: linear-gradient(284.04deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  border-radius: 30px;
  padding: 30px;
  margin: 32px 0 0;
  max-width: 690px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .banner_through_row .banner_form {
    max-width: 490px;
    padding: 24px 16px;
  }
}
.banner_through_row .banner_form form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 274px 12px 1fr;
  grid-template-columns: 274px 1fr;
  gap: 12px;
  margin: 40px 0 0;
}
@media screen and (max-width: 1200px) {
  .banner_through_row .banner_form form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 16px 0 0;
  }
}
.banner_through_row .banner_form form .btn {
  padding: 0;
}
.banner_through_row .banner_form form .form_info {
  margin: 12px 0 0;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  color: #373737;
  font-size: 12px;
}
@media screen and (max-width: 1200px) {
  .banner_through_row .banner_form form .form_info {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.banner_through_row .banner_form form .form_info a {
  text-decoration: underline;
}
.banner_through_row .banner_text_row h1 {
  text-transform: uppercase;
}
.banner_through_row .banner_form_title {
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.banner_through_row .banner_form_title span {
  color: #2AB709;
}
.banner_through_row .banner_form_subtitle {
  font-size: clamp(16px, 1.5vw, 22px);
}
@media screen and (max-width: 768px) {
  .banner_through_row .banner_form_subtitle br {
    display: none;
  }
}
.banner_through_row .banner_form_subtitle span {
  text-transform: uppercase;
  font-weight: 600;
}
.banner_through_row .banner_img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .banner_through_row .banner_img {
    display: none;
  }
}

/*header_contact/ */
.main_contact {
  scroll-margin-top: 200px;
}

.main_contact_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 453px 20px 1fr;
  grid-template-columns: 453px 1fr;
  gap: 20px;
  margin: 32px 0;
}
@media screen and (max-width: 992px) {
  .main_contact_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.main_contact_row .main_contact_info {
  background: #307DBF;
  border-radius: 30px;
  position: relative;
  padding: 30px;
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  height: 400px;
}
@media screen and (max-width: 992px) {
  .main_contact_row .main_contact_info {
    height: 328px;
    padding: 24px 16px;
  }
}
.main_contact_row .main_contact_info::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(40%, -50%) rotate(90deg);
          transform: translate(40%, -50%) rotate(90deg);
  right: 0;
  font-size: 60px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .main_contact_row .main_contact_info::before {
    font-size: 45px;
  }
}
.main_contact_row .main_contact_map {
  border-radius: 30px;
  border: 1px solid #BEBDCA;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .main_contact_row .main_contact_map {
    height: 400px;
  }
}
.main_contact_row .main_contact_map img {
  height: 100%;
}
.main_contact_row .contact_info_title {
  font-weight: 500;
}
.main_contact_row .contact_info_row {
  margin: -38px 0;
}
.main_contact_row .contact_info_row span, .main_contact_row .contact_info_row .shema {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}
.main_contact_row .contact_info_row .shema {
  text-decoration: underline;
}
.main_contact_row .contact_info_row .info_address {
  margin: 8px 0 0;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  display: block;
  color: #fff;
}
.main_contact_row .contact_info_row .info_phone {
  display: block;
  margin: 8px 0 0;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: #fff;
}
.main_contact_row .btn {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .main_contact_row .btn {
    width: 100%;
  }
}

/*header_licenses/ */
.licenses h2 {
  position: absolute;
}
@media screen and (max-width: 992px) {
  .licenses h2 {
    position: relative;
  }
}

.licenses_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 453px;
  grid-template-columns: 1fr 453px;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .licenses_row {
    -ms-grid-columns: 1fr 307px;
    grid-template-columns: 1fr 307px;
  }
}
@media screen and (max-width: 992px) {
  .licenses_row {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .licenses_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.licenses_row .licenses_info {
  margin: 50px 0 0;
}
@media screen and (max-width: 992px) {
  .licenses_row .licenses_info {
    margin: 0;
  }
}
.licenses_row .licenses_info .img {
  max-width: 358px;
}
.licenses_row .licenses_info .desc {
  margin: 32px 0;
}
@media screen and (max-width: 1200px) {
  .licenses_row .licenses_info .desc p {
    line-height: 1.2;
  }
}
.licenses_row .licenses_info .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .licenses_row .licenses_info .btn {
    width: 100%;
  }
}
.licenses_row .licenses_img {
  background: #EAF2F9 url(../img/bg_licenses.svg) no-repeat;
  background-size: cover;
  background-position: 0 -100px;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 1200px) {
  .licenses_row .licenses_img {
    height: 375px;
  }
}
@media screen and (max-width: 768px) {
  .licenses_row .licenses_img {
    margin: 60px 0 0;
    padding: 24px 16px;
    height: auto;
  }
  .licenses_row .licenses_img img {
    margin: 0 auto;
  }
}
.licenses_row .licenses_img .h4 {
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  .licenses_row .licenses_img .h4 {
    margin: 0 0 8px;
  }
}
@media screen and (max-width: 768px) {
  .licenses_row .licenses_img .desc {
    font-size: 14px;
  }
}

/*header_rating/ */
.rating_row {
  padding: 50px 30px;
  border-radius: 30px;
  background: #EAF2F9 url(../img/rating.webp) no-repeat;
  background-position: 0 0;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .rating_row {
    padding: 24px 16px;
  }
}
.rating_row .sub_title {
  margin: 16px 0 0;
}
.rating_row .rating_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .rating_row .rating_list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 24px 0 0;
  }
}
.rating_row .rating_item {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px 0;
  margin: 32px 0 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 16px;
}
@media screen and (max-width: 1200px) {
  .rating_row .rating_item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 12px 16px 0;
  }
}
@media screen and (max-width: 768px) {
  .rating_row .rating_item {
    margin: 0;
  }
}
.rating_row .rating_item_count {
  color: #2AB709;
  font-size: clamp(26px, 3vw, 54px);
  font-weight: 600;
}
.rating_row .rating_item_title {
  font-size: clamp(16px, 1.5vw, 22px);
}
@media screen and (max-width: 380px) {
  .rating_row .rating_item_title {
    font-size: clamp(12px, 1.5vw, 22px);
  }
}
.rating_row .rating_item_info {
  color: #9796A1;
  font-size: clamp(12px, 1vw, 14px);
  margin: 5px 0 0;
}
.rating_row .rating_item_img {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media screen and (max-width: 1200px) {
  .rating_row .rating_item_img {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}

/*header_blog/ */
.blog h2 {
  margin: 0 0 16px;
}
.blog .container {
  position: relative;
}

.blog_row {
  padding: 32px 0;
}
.blog_row + .btn {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .blog_row + .btn {
    position: relative;
    right: 0;
    margin: 24px 0 0;
  }
}
.blog_row .item_post {
  width: 335px;
  height: 320px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 992px) {
  .blog_row .item_post {
    height: auto;
  }
}
.blog_row .item_post:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
.blog_row .item_post:nth-child(even)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(234, 248, 230, 0)), color-stop(55%, #EAF8E6));
  background: linear-gradient(180deg, rgba(234, 248, 230, 0) 40%, #EAF8E6 55%);
}
.blog_row .item_post:nth-child(odd)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(234, 242, 249, 0)), color-stop(55%, #EAF2F9));
  background: linear-gradient(180deg, rgba(234, 242, 249, 0) 40%, #EAF2F9 55%);
}
.blog_row .desc_row {
  position: relative;
  padding: 0 30px 60px;
}
@media screen and (max-width: 992px) {
  .blog_row .desc_row {
    padding: 0 16px 42px;
  }
}
.blog_row .desc_row .post_date {
  font-size: 12px;
  color: #9796A1;
  margin: 0 0 5px;
}
.blog_row .desc_row .post_title {
  color: #0F0F0F;
  font-size: clamp(16px, 2vw, 22px);
}
.blog_row .swiper-pagination {
  top: auto;
  bottom: 0px;
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
}

/*header_blog/ */
footer {
  margin: 100px 0 0;
  border-top: 1px solid #BEBDCA;
}
footer .container {
  position: relative;
}

.footer_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 85px 1fr 85px auto 85px 1fr;
  grid-template-columns: auto 1fr auto 1fr;
  padding: 60px 0;
  gap: 85px;
}
@media screen and (max-width: 1400px) {
  .footer_row {
    gap: 55px;
    -ms-grid-columns: 160px 55px 1fr 55px auto 55px auto;
    grid-template-columns: 160px 1fr auto auto;
  }
}
@media screen and (max-width: 1200px) {
  .footer_row {
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
  }
}
@media screen and (max-width: 992px) {
  .footer_row {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}
@media screen and (max-width: 768px) {
  .footer_row {
    gap: 10px;
  }
}
.footer_row ul {
  list-style: none;
}
.footer_row ul li {
  margin: 0 0 10px;
}
.footer_row ul li a.sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.footer_row ul li a:hover {
  color: #307DBF;
}
@media screen and (max-width: 1200px) {
  .footer_row .logo {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .footer_row .footer_item:last-child {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.footer_row .h4 {
  color: #BEBDCA;
  margin: 0 0 20px;
  font-weight: 400;
}
.footer_row .tabl {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media screen and (max-width: 768px) {
  .footer_row .tabl {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.footer_row .address_row {
  margin: 0 0 15px;
}
.footer_row .address_row span, .footer_row .address_row .link {
  color: #9796A1;
  font-size: 14px;
  text-decoration: underline;
}
.footer_row .address_row .address {
  color: #307DBF;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}
.footer_row .phone_row {
  margin: 0 0 15px;
}
.footer_row .phone_row span {
  color: #9796A1;
  font-size: 14px;
}
.footer_row .phone_row .phone {
  color: #307DBF;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}

.footer_down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #BEBDCA;
  padding: 16px 0;
  color: #9796A1;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer_down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_down a {
  color: #9796A1;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .footer_down a {
    display: block;
    text-align: center;
  }
}
.footer_down .police a {
  position: relative;
  margin-right: 5px;
}
.footer_down .police a:last-child::before {
  display: none;
}
.footer_down .police a::before {
  content: "|";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer_down .police a::before {
    display: none;
  }
}

/*header_banner_sign_up/ */
.banner_sign_up {
  background: url(../img/banner_through.webp) no-repeat center;
  background-size: cover;
}

.banner_sign_up_row {
  padding: 50px 0 78px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .banner_sign_up_row {
    padding: 40px 0px;
  }
}
.banner_sign_up_row .form_row {
  max-width: 690px;
  margin: 32px 0 0;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 30px;
}
.banner_sign_up_row .banner_form {
  border: 2px solid #fff;
  background: linear-gradient(284.04deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  border-radius: 30px;
  padding: 30px;
  margin: 32px 0 0;
  max-width: 690px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .banner_sign_up_row .banner_form {
    max-width: 490px;
    padding: 24px 16px;
  }
}
.banner_sign_up_row .banner_form form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 274px 12px 1fr;
  grid-template-columns: 274px 1fr;
  gap: 12px;
  margin: 40px 0 0;
}
@media screen and (max-width: 1200px) {
  .banner_sign_up_row .banner_form form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 16px 0 0;
  }
}
.banner_sign_up_row .banner_form form .btn {
  padding: 0;
}
.banner_sign_up_row .banner_form form .form_info {
  margin: 12px 0 0;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  color: #373737;
  font-size: 12px;
}
@media screen and (max-width: 1200px) {
  .banner_sign_up_row .banner_form form .form_info {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.banner_sign_up_row .banner_form form .form_info a {
  text-decoration: underline;
}
.banner_sign_up_row .banner_text_row h1 {
  text-transform: uppercase;
}
.banner_sign_up_row .banner_form_title {
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.banner_sign_up_row .banner_form_title span {
  color: #2AB709;
}
.banner_sign_up_row .banner_form_subtitle {
  font-size: clamp(16px, 1.5vw, 22px);
}
@media screen and (max-width: 768px) {
  .banner_sign_up_row .banner_form_subtitle br {
    display: none;
  }
}
.banner_sign_up_row .banner_form_subtitle span {
  text-transform: uppercase;
  font-weight: 600;
}
.banner_sign_up_row .banner_img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .banner_sign_up_row .banner_img {
    display: none;
  }
}

/*header_banner_guarantee/ */
.banner_guarantee_row {
  background: #EAF2F9;
  border-radius: 30px;
  padding: 30px 200px 30px 30px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 24px 1fr;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 24px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .banner_guarantee_row {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .banner_guarantee_row {
    -ms-grid-columns: 60px 16px 1fr;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 24px 16px;
  }
}
.banner_guarantee_row::before {
  content: "";
  position: absolute;
  background: url(../img/bg_guarantee.webp) no-repeat;
  inset: 0;
  background-size: cover;
  background-position: right;
}
@media screen and (max-width: 992px) {
  .banner_guarantee_row::before {
    background-position: left;
  }
}
.banner_guarantee_row .img {
  position: relative;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
@media screen and (max-width: 768px) {
  .banner_guarantee_row .img {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}
.banner_guarantee_row .info {
  position: relative;
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
@media screen and (max-width: 768px) {
  .banner_guarantee_row .info {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.banner_guarantee_row .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/*header_page_accordion/ */
.page_accordion._default {
  margin: 0;
}
.page_accordion h2 {
  margin: 0 0 16px;
}

.page_accordion_row {
  margin: 32px 0;
}
.page_accordion_row + .btn {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .page_accordion_row + .btn {
    position: relative;
    right: 0;
  }
}

.page_accordion_list .page_accordion_tab {
  border: none;
  margin: 0 0 8px;
}
.page_accordion_list .page_accordion_tab.acc_active .page_accordion_tab_title {
  background: #EAF2F9;
  border: 1px solid #EAF2F9;
}
.page_accordion_list .page_accordion_tab.acc_active .page_accordion_tab_title::before {
  background: url(../img/minus.svg) no-repeat;
}
.page_accordion_list .page_accordion_tab_title {
  border: none;
  border: 1px solid rgba(48, 125, 191, 0.3019607843);
  border-radius: 30px;
  padding: 20px 30px;
  color: #307DBF;
  font-size: clamp(16px, 2vw, 22px);
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 992px) {
  .page_accordion_list .page_accordion_tab_title {
    padding: 20px 16px;
  }
}
@media screen and (max-width: 768px) {
  .page_accordion_list .page_accordion_tab_title {
    padding: 12px 50px 12px 16px;
  }
}
.page_accordion_list .page_accordion_tab_title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 30px;
  background: url(../img/plus.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .page_accordion_list .page_accordion_tab_title::before {
    right: 16px;
  }
}
.page_accordion_list .page_accordion_tab_desc {
  padding: 8px 0;
  font-size: clamp(14px, 1vw, 16px);
}
.page_accordion_list .tab_info {
  padding: 20px 30px;
}
@media screen and (max-width: 992px) {
  .page_accordion_list .tab_info {
    padding: 20px 30px 20px 0;
  }
}
.page_accordion_list ul {
  margin: 0 0 20px 20px;
  font-size: clamp(14px, 1vw, 16px);
}

/*header_recommendation/ */
.recommendation_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .recommendation_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin: 32px 0 0;
  }
}
.recommendation_row .item_comm {
  width: 25%;
  margin: 32px 0 0;
  border: 1px solid rgba(48, 125, 191, 0.3019607843);
  padding: 20px 30px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .recommendation_row .item_comm {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 992px) {
  .recommendation_row .item_comm {
    padding: 16px;
  }
}
@media screen and (max-width: 768px) {
  .recommendation_row .item_comm {
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .recommendation_row .item_comm:last-child {
    display: none;
  }
}
.recommendation_row .item_comm::before {
  content: attr(data-count);
  position: absolute;
  bottom: 0px;
  right: -18px;
  font-size: 242px;
  font-weight: 600;
  color: #EAF2F9;
  line-height: 0.6;
}
@media screen and (max-width: 768px) {
  .recommendation_row .item_comm::before {
    font-size: 200px;
  }
}
.recommendation_row .item_comm._image {
  padding: 0;
  border: 0;
}
.recommendation_row .item_comm._image img {
  height: 100%;
}
.recommendation_row .item_comm_img, .recommendation_row .item_comm_desc {
  position: relative;
}
.recommendation_row .item_comm_desc {
  font-size: clamp(14px, 1vw, 16px);
}
.recommendation_row .item_comm_img {
  margin: 0 0 -15px;
}

/*header_page_block_up/ */
.page_block_up._default {
  margin: 0;
}
.page_block_up h1 {
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  .page_block_up h1 {
    padding: 0 16px;
  }
}

.page_block_up_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 453px;
  grid-template-columns: 1fr 453px;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .page_block_up_row {
    -ms-grid-columns: 1fr 306px;
    grid-template-columns: 1fr 306px;
  }
}
@media screen and (max-width: 992px) {
  .page_block_up_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.page_block_up_row .page_block_up_info {
  border-radius: 30px;
  background: #EAF2F9;
  padding: 65px 30px;
}
@media screen and (max-width: 768px) {
  .page_block_up_row .page_block_up_info {
    min-width: 320px;
    padding: 24px 0px;
  }
}
.page_block_up_row .page_block_up_info .sub_title {
  color: #373737;
}
@media screen and (max-width: 768px) {
  .page_block_up_row .page_block_up_info .sub_title {
    padding: 0 16px;
  }
}
.page_block_up_row .page_block_up_info .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .page_block_up_row .page_block_up_info .btn {
    margin: 0 16px;
  }
}
.page_block_up_row .dop_bl_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .page_block_up_row .dop_bl_info {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    padding: 0 16px;
  }
}
.page_block_up_row .dop_bl_info .item_dop_bl {
  padding: 19px 16px 19px 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 8px 1fr;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
  margin: 20px 0 30px;
}
@media screen and (max-width: 768px) {
  .page_block_up_row .dop_bl_info .item_dop_bl {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
.page_block_up_row .dop_bl_info .item_dop_desc {
  font-size: 14px;
  font-weight: 500;
}
.page_block_up_row .dop_bl_info .item_dop_desc span {
  color: #307DBF;
}
.page_block_up_row .page_block_up_img {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .page_block_up_row .page_block_up_img {
    max-height: clamp(195px, 50vw, 500px);
  }
}
.page_block_up_row .page_block_up_img img {
  height: 100%;
}
@media screen and (max-width: 992px) {
  .page_block_up_row .page_block_up_img img {
    width: 100%;
  }
}

/*header_sale/ */
.sale {
  margin: 32px 0;
}

.sale_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .sale_row {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .sale_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.sale_row .item_sale {
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding: 30px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 16px auto 16px 1fr 16px auto;
  grid-template-rows: auto auto 1fr auto;
  min-height: 340px;
  gap: 16px;
  background: #EAF2F9;
  position: relative;
}
.sale_row .item_sale::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  right: 0;
  font-size: clamp(70px, 9vw, 85px);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  -webkit-transform: rotate(90deg) translate(-14%, -100%);
          transform: rotate(90deg) translate(-14%, -100%);
}
@media screen and (min-width: 1200px) {
  .sale_row .item_sale:nth-child(even) {
    background: #EAF8E6;
  }
}
@media screen and (max-width: 1200px) {
  .sale_row .item_sale:nth-child(4n+1), .sale_row .item_sale:nth-child(4n+4) {
    background: #EAF2F9;
  }
  .sale_row .item_sale:nth-child(4n+2), .sale_row .item_sale:nth-child(4n+3) {
    background: #EAF8E6;
  }
}
@media screen and (max-width: 768px) {
  .sale_row .item_sale {
    min-height: 280px;
  }
  .sale_row .item_sale:nth-child(even) {
    background: #EAF8E6;
  }
  .sale_row .item_sale:nth-child(odd) {
    background: #EAF2F9;
  }
}
.sale_row .item_sale:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
.sale_row .item_sale:nth-child(-n+3) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 1200px) {
  .sale_row .item_sale:nth-child(-n+4) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.sale_row .item_sale .sale_date {
  border: 1px solid #2AB709;
  color: #373737;
  padding: 4px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 100px;
  gap: 4px;
  position: relative;
}
.sale_row .item_sale .sale_desc {
  position: relative;
  font-size: clamp(14px, 1vw, 16px);
}
.sale_row .item_sale .h4 {
  position: relative;
}
.sale_row .item_sale s {
  font-size: 16px;
  font-weight: 400;
  color: #9796A1;
}
.sale_row .item_sale .btn {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.sale_row .banner_directions {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .sale_row .banner_directions {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media screen and (max-width: 860px) {
  .sale_row .banner_directions {
    display: none;
  }
}

/*header_doctors_up/ */
.doctors_up {
  margin: 0;
  background: url(../img/doctors/doctors_up_bg.webp) no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.doctors_up_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px auto;
  grid-template-columns: 1fr auto;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 654px;
}
@media screen and (max-width: 992px) {
  .doctors_up_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: 622px;
    padding: 60px 0 0;
  }
}
.doctors_up_row h1 {
  margin: 0 0 20px;
}
.doctors_up_row .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 992px) {
  .doctors_up_row .btn {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
}
.doctors_up_row .sub_title {
  color: #373737;
}
.doctors_up_row .dop_bl_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .doctors_up_row .dop_bl_info {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    padding: 0 16px;
    margin: 0 -20px 0;
  }
}
.doctors_up_row .dop_bl_info .item_dop_bl {
  padding: 19px 16px 19px 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 8px 1fr;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
  margin: 20px 0 30px;
}
@media screen and (max-width: 768px) {
  .doctors_up_row .dop_bl_info .item_dop_bl {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
.doctors_up_row .dop_bl_info .item_dop_desc {
  font-size: 14px;
  font-weight: 500;
}
.doctors_up_row .dop_bl_info .item_dop_desc span {
  color: #307DBF;
}
.doctors_up_row .page_block_up_info {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .doctors_up_row .page_block_up_info {
    min-width: 320px;
  }
}
.doctors_up_row .page_block_up_img {
  height: 100%;
}
.doctors_up_row .page_block_up_img img {
  position: absolute;
  bottom: 0;
  width: 686px;
  right: 0px;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .doctors_up_row .page_block_up_img img {
    position: relative;
    width: 390px;
    margin: 0 auto;
  }
}

/*header_all_doctors/ */
.all_doctors h2 {
  margin: 0 0 16px;
}

.all_doctors_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
@media screen and (max-width: 1200px) {
  .all_doctors_row {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .all_doctors_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
  }
}
.all_doctors_row .doc_item {
  position: relative;
  min-height: 300px;
  height: auto;
  display: block;
  background: #EAF2F9;
  border-radius: 30px;
  padding: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 1200px) {
  .all_doctors_row .doc_item:nth-child(-n+3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 1200px) {
  .all_doctors_row .doc_item:nth-child(-n+4) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .all_doctors_row .doc_item:nth-last-child(-n+2) {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .all_doctors_row .doc_item {
    min-height: auto;
    padding: 24px 16px;
  }
}
.all_doctors_row .doc_item:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
.all_doctors_row .doc_item .doc_img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .all_doctors_row .doc_item .doc_img {
    height: 220px;
  }
  .all_doctors_row .doc_item .doc_img img {
    height: 100%;
  }
}
.all_doctors_row .doc_item .doc_info_row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.all_doctors_row .doc_item .doc_spec {
  color: #9796A1;
  font-size: 12px;
  margin: 0 0 8px;
}
.all_doctors_row .doc_item .doc_experience {
  max-width: 242px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 118px;
}
@media screen and (max-width: 992px) {
  .all_doctors_row .doc_item .doc_experience {
    height: 70px;
    max-width: 210px;
  }
}
.all_doctors_row .doc_item .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: auto;
}
@media screen and (max-width: 992px) {
  .all_doctors_row .doc_item .btn {
    padding: 0 20px;
  }
}
.all_doctors_row .banner_guarantee_row {
  background: #EAF8E6;
  -ms-grid-column-span: 3;
  grid-column: span 3;
  gap: 8px 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.all_doctors_row .banner_guarantee_row::before {
  background: url(../img/all_doctors.svg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1200px) {
  .all_doctors_row .banner_guarantee_row {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .all_doctors_row .banner_guarantee_row {
    gap: 8px;
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.all_doctors_row .banner_guarantee_row .h3 {
  margin: auto 0 0 20px;
}
@media screen and (max-width: 768px) {
  .all_doctors_row .banner_guarantee_row .h3 {
    margin: 0;
  }
}
.all_doctors_row .banner_guarantee_row .info {
  margin: 0 0 auto 20px;
}
#pdopage .btn-more {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.all_doctors_tags {
  display: -ms-grid;
  display: grid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
}
.all_doctors_tags .doc_tags {
  background: #EAF8E6;
  padding: 8px 12px;
  border-radius: 100px;
}
.all_doctors_tags .doc_tags.active {
  background: #2AB709;
  color: #fff;
}
.all_doctors_tags .doc_tags:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}

/*header_page_stock/ */
.page_stock {
  overflow: hidden;
}
.page_stock .container {
  position: relative;
}

.page_stock_row {
  padding: 32px 0;
  overflow: visible;
}
.page_stock_row .item_sale {
  width: 453px;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 16px auto 16px 1fr 16px auto;
  grid-template-rows: auto auto 1fr auto;
  min-height: 340px;
  gap: 16px;
  background: #EAF2F9;
  position: relative;
}
@media screen and (max-width: 992px) {
  .page_stock_row .item_sale {
    min-height: 320px;
    width: 325px;
    height: auto;
    padding: 24px 16px;
  }
}
.page_stock_row .item_sale::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  right: 0;
  font-size: clamp(70px, 9vw, 85px);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  -webkit-transform: rotate(90deg) translate(-14%, -100%);
          transform: rotate(90deg) translate(-14%, -100%);
}
.page_stock_row .item_sale:nth-child(even) {
  background: #EAF8E6;
}
.page_stock_row .item_sale:nth-child(odd) {
  background: #EAF2F9;
}
.page_stock_row .item_sale:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
.page_stock_row .item_sale .sale_date {
  border: 1px solid #2AB709;
  color: #373737;
  padding: 4px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 100px;
  gap: 4px;
  position: relative;
}
.page_stock_row .item_sale .sale_desc {
  position: relative;
  font-size: clamp(14px, 1vw, 16px);
}
.page_stock_row .item_sale .h4 {
  position: relative;
}
.page_stock_row .item_sale s {
  font-size: 16px;
  font-weight: 400;
  color: #9796A1;
}
.page_stock_row .item_sale .btn {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.page_stock_row .swiper-pagination {
  top: auto;
  bottom: 0px;
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
}
.page_stock_row + .btn {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .page_stock_row + .btn {
    position: relative;
    right: 0;
    margin: 24px 0 0;
  }
}

/*header_baza/ */
.baza {
  margin: 32px 0 0;
}
.baza .container {
  position: relative;
}

.blog_row {
  padding: 32px 0;
}
.blog_row + .btn {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .blog_row + .btn {
    position: relative;
    right: 0;
    margin: 24px 0 0;
  }
}
.blog_row .item_post {
  width: 335px;
  height: 320px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 992px) {
  .blog_row .item_post {
    height: auto;
  }
}
.blog_row .item_post:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
.blog_row .item_post:nth-child(even)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(234, 248, 230, 0)), color-stop(55%, #EAF8E6));
  background: linear-gradient(180deg, rgba(234, 248, 230, 0) 40%, #EAF8E6 55%);
}
.blog_row .item_post:nth-child(odd)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(234, 242, 249, 0)), color-stop(55%, #EAF2F9));
  background: linear-gradient(180deg, rgba(234, 242, 249, 0) 40%, #EAF2F9 55%);
}
.blog_row .desc_row {
  position: relative;
  padding: 0 30px 60px;
}
@media screen and (max-width: 992px) {
  .blog_row .desc_row {
    padding: 0 16px 42px;
  }
}
.blog_row .desc_row .post_date {
  font-size: 12px;
  color: #9796A1;
  margin: 0 0 5px;
}
.blog_row .desc_row .post_title {
  color: #0F0F0F;
  font-size: clamp(16px, 2vw, 22px);
}
.blog_row .swiper-pagination {
  top: auto;
  bottom: 0px;
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
}

/*header_page_search_article/ */
.search_article_form {
  background: #EAF2F9;
  border-radius: 30px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .search_article_form {
    padding: 24px 16px;
  }
}
.search_article_form form {
  margin: 20px 0 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .search_article_form form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 10px 0 0;
  }
}

.page_search_article_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}
@media screen and (max-width: 1200px) {
  .page_search_article_row {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .page_search_article_row {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page_search_article_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.page_search_article_row .item_post {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 992px) {
  .page_search_article_row .item_post {
    height: auto;
  }
}
.page_search_article_row .item_post:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
.page_search_article_row .item_post:nth-child(even)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(234, 248, 230, 0)), color-stop(55%, #EAF8E6));
  background: linear-gradient(180deg, rgba(234, 248, 230, 0) 40%, #EAF8E6 55%);
}
@media screen and (max-width: 992px) {
  .page_search_article_row .item_post:nth-child(even)::before {
    top: auto;
    height: 240px;
  }
}
.page_search_article_row .item_post:nth-child(odd)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(234, 242, 249, 0)), color-stop(55%, #EAF2F9));
  background: linear-gradient(180deg, rgba(234, 242, 249, 0) 40%, #EAF2F9 55%);
}
@media screen and (max-width: 992px) {
  .page_search_article_row .item_post:nth-child(odd)::before {
    top: auto;
    height: 240px;
  }
}
.page_search_article_row .post_img img {
  width: 100%;
  min-height: 180px;
}
.page_search_article_row .desc_row {
  position: relative;
  padding: 0 30px 60px;
}
@media screen and (max-width: 992px) {
  .page_search_article_row .desc_row {
    padding: 0 16px 42px;
  }
}
.page_search_article_row .desc_row .post_date {
  font-size: 12px;
  color: #9796A1;
  margin: 0 0 5px;
}
.page_search_article_row .desc_row .post_title {
  color: #0F0F0F;
  font-size: clamp(16px, 2vw, 22px);
}

/*header_doc_detail_up/ */
.doc_detail_up {
  margin: 0 0 20px;
}

.doc_detail_up_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 453px;
  grid-template-columns: 1fr 453px;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .doc_detail_up_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.doc_detail_up_row .doc_detail_up_info {
  border-radius: 30px;
  padding: 30px 90px 0 0;
  background: #EAF2F9;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 335px 20px 1fr;
  grid-template-columns: 335px 1fr;
  -ms-grid-rows: 0fr 20px 0fr 20px 0fr;
  grid-template-rows: repeat(3, 0fr);
  gap: 20px;
  overflow: hidden;
  height: 402px;
  position: relative;
}
.doc_detail_up_row .doc_detail_up_info > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.doc_detail_up_row .doc_detail_up_info > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.doc_detail_up_row .doc_detail_up_info > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.doc_detail_up_row .doc_detail_up_info > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.doc_detail_up_row .doc_detail_up_info > *:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.doc_detail_up_row .doc_detail_up_info > *:nth-child(6) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
@media screen and (max-width: 1200px) {
  .doc_detail_up_row .doc_detail_up_info {
    -ms-grid-rows: (0fr)[4];
    grid-template-rows: repeat(4, 0fr);
  }
}
@media screen and (max-width: 768px) {
  .doc_detail_up_row .doc_detail_up_info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 0fr;
    grid-template-rows: repeat(1, 0fr);
    height: 488px;
    gap: 8px;
    padding: 24px 16px 0;
  }
  .doc_detail_up_row .doc_detail_up_info > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.doc_detail_up_row .doc_detail_up_info .btn {
  display: none;
}
@media screen and (max-width: 1200px) {
  .doc_detail_up_row .doc_detail_up_info .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* .doc_detail_up_row .doc_detail_up_info .btn {
    display: none;
  } */
}
.doc_detail_up_row .doc_detail_up_info .img_doc {
  -ms-grid-row-span: 3;
  grid-row: span 3;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .doc_detail_up_row .doc_detail_up_info .img_doc {
    -ms-grid-row-span: 4;
    grid-row: span 4;
  }
}
@media screen and (max-width: 768px) {
  .doc_detail_up_row .doc_detail_up_info .img_doc {
    -ms-grid-row-span: 1;
    grid-row: span 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .doc_detail_up_row .doc_detail_up_info .img_doc img {
    height: 100%;
  }
}
.doc_detail_up_row .doc_detail_up_info .img_doc span {
  width: 60px;
  height: 60px;
  background: url(../img/play.svg) no-repeat center;
  position: absolute;
  left: 16px;
  bottom: 16px;
  cursor: pointer;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .doc_detail_up_row .doc_detail_up_info .img_doc span {
    bottom: 10px;
    width: 50px;
    height: 50px;
    left: 10px;
  }
}
@media screen and (max-width: 380px) {
  .doc_detail_up_row .doc_detail_up_info .img_doc span {
    bottom: 70px;
  }
}
.doc_detail_up_row .doc_detail_up_info .doc_name {
  color: #307DBF;
}
.doc_detail_up_row .doc_detail_spec {
  font-size: clamp(16px, 2vw, 22px);
}
.doc_detail_up_row .doc_detail_staj_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 9px 24px;
  border-radius: 100px;
  font-size: 12px;
  color: #6D6C6C;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .doc_detail_up_row .doc_detail_staj_row {
    position: absolute;
    bottom: 10px;
    left: 0;
    margin: 0 0 0 auto;
    right: 10px;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .doc_detail_up_row .doc_detail_staj_row .link_doc {
    margin: 0 -10px 0 -20px;
  }
}
.doc_detail_up_row .doc_detail_staj_row > div {
  position: relative;
}
.doc_detail_up_row .doc_detail_staj_row > div::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 1px;
  height: 24px;
  background: #C5E5FF;
}
.doc_detail_up_row .doc_detail_staj_row > div:last-child::after {
  display: none;
}
.doc_detail_up_row .doc_detail_staj_row > div:nth-child(3)::after {
  display: none;
}
.doc_detail_up_row .doc_detail_staj_row span {
  font-size: 16px;
  display: table;
  font-weight: 700;
  color: #0F0F0F;
}
.doc_detail_up_row .doc_detail_rating span {
  padding-left: 21px;
}
.doc_detail_up_row .doc_detail_rating::before {
  content: "";
  position: absolute;
  top: 4px;
  background: url(../img/star.svg) no-repeat;
  width: 21px;
  height: 21px;
}
.doc_detail_up_row .doc_detail_calendar {
  border: 1px solid rgba(48, 125, 191, 0.3019607843);
  border-radius: 30px;
  padding: 30px;
  min-height: 400px;
}

/* Для плавного появления/исчезновения с transform */
.time_on_page .doc_detail_up_row .doc_detail_calendar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

.time_on_page .doc_detail_up_row .doc_detail_calendar.blur {
    filter:blur(5px);
    opacity: 0;
    transform: translateY(10px); /* Дополнительный эффект смещения */
}
.fancybox__container.darked{
    transition: background .25s;
    background:rgba(24, 24, 27, 0.9)
}

@media screen and (max-width: 1200px) {
  .doc_detail_up_row .doc_detail_calendar {
    display: none;
  }
}
.doc_detail_up_row .doc_detail_calendar .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.doc_detail_up_row .doc_detail_calendar .doc_detail_rec_title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0F0F0F;
}
.doc_detail_up_row .doc_detail_calendar .doc_detail_record {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.doc_detail_up_row .doc_detail_calendar .doc_detail_rec_metro {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 4px 8px;
}
.doc_detail_up_row .calendar_dates_row {
  position: relative;
  padding: 0 40px;
}
@media screen and (max-width: 1200px) {
  .doc_detail_up_row .calendar_dates_row {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.doc_detail_up_row .calendar_dates {
  margin: 16px auto;
}
@media screen and (max-width: 1200px) {
  .doc_detail_up_row .calendar_dates {
    max-width: 410px;
    margin: 16px 0;
  }
}
.doc_detail_up_row .calendar_dates .item_date {
  border-radius: 10px;
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 6px;
  padding: 10px 0;
  cursor: pointer;
  color: #0F0F0F;
  font-size: 14px;
}
.doc_detail_up_row .calendar_dates .item_date.active {
  color: #307DBF;
  background: #F4FAFF;
}
.doc_detail_up_row .calendar_dates .item_date:hover, .doc_detail_up_row .calendar_dates .item_date.time-active {
  color: #307DBF;
  background: #F4FAFF;
}
.doc_detail_up_row .calendar_dates .item_date.default {
  color: #6D6C6C;
  cursor: auto;
}
.doc_detail_up_row .calendar_dates .item_date.default:hover {
  background: transparent;
}
.doc_detail_up_row .calendar_dates .item_date p {
  margin: 0;
}
.doc_detail_up_row .calendar_info {
  position: relative;
  padding-left: 30px;
  margin: 8px 0 0;
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .doc_detail_up_row .calendar_info {
    display: inline-block;
    margin-left: 8px;
  }
}
.doc_detail_up_row .calendar_info::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background: url(../img/info.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.doc_detail_up_row .calendar_info a {
  color: #307DBF;
}
.doc_detail_up_row .calendar_times {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 0 0 16px;
  min-height: 100px;
}
@media screen and (max-width: 1200px) {
  .doc_detail_up_row .calendar_times {
    max-width: 410px;
  }
}
.doc_detail_up_row .calendar_times.active .item_time:not(:nth-child(-n+5)) {
  display: block;
}
.doc_detail_up_row .calendar_times.active .select_time img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.doc_detail_up_row .calendar_times .item_time {
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #307DBF;
  height: 35px;
  background: #EAF2F9;
}
.doc_detail_up_row .calendar_times .item_time:hover {
  background: #307DBF;
  color: #fff;
}
.doc_detail_up_row .calendar_times .item_time.active {
  background: #307DBF;
  color: #fff;
}
.doc_detail_up_row .calendar_times .item_time:not(:nth-child(-n+5)) {
  display: none;
}
.doc_detail_up_row .select_time {
  border: 1px solid rgba(48, 125, 191, 0.4);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.doc_detail_up_row .calendar_navigation {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
}
.doc_detail_up_row .calendar_navigation .slipe-slider-next {
  float: right;
}

/*header_slider_photo/ */
.slider_photo {
  margin: 86px 0;
}
@media screen and (max-width: 1200px) {
  .slider_photo {
    margin: 48px 0;
  }
}
.slider_photo .sub_title {
  margin: 16px 0 0;
}

.slider_photo_row {
  padding: 32px 0;
}
.slider_photo_row .swiper-slide {
  width: auto;
}
@media screen and (max-width: 760px) {
  .slider_photo_row .swiper-slide {
    height: 220px;
  }
  .slider_photo_row .swiper-slide img {
    height: 100%;
  }
}
.slider_photo_row .swiper-pagination {
  top: auto;
  bottom: 0px;
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
}

/*header_article_detail/ */
.article_detail_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 453px;
  grid-template-columns: 1fr 453px;
  gap: 20px;
  margin: 0 0 20px;
}
@media screen and (max-width: 1200px) {
  .article_detail_row {
    -ms-grid-columns: 1fr 306px;
    grid-template-columns: 1fr 306px;
  }
}
@media screen and (max-width: 992px) {
  .article_detail_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.article_detail_row .article_detail_info {
  border-radius: 30px;
  background: #EAF2F9;
  padding: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  min-height: 400px;
}
@media screen and (max-width: 768px) {
  .article_detail_row .article_detail_info {
    min-width: 320px;
    padding: 24px 16px;
    min-height: 314px;
  }
}
.article_detail_row .article_detail_info .sub_title {
  color: #373737;
}
@media screen and (max-width: 768px) {
  .article_detail_row .article_detail_info .sub_title {
    padding: 0 16px;
  }
}
.article_detail_row .article_block_up_img {
  overflow: hidden;
  border-radius: 30px;
}
.article_detail_row .article_block_up_img img {
  height: 100%;
}
.article_detail_row .article_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .article_detail_row .article_nav {
    margin: 0 0 24px;
    gap: 16px 0;
  }
}
.article_detail_row .article_nav .link_back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.article_detail_row .article_nav .article_info {
  color: #9796A1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article_detail_row .article_nav .article_info span {
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .article_detail_row .article_nav .article_info span {
    font-size: 14px;
  }
}
.article_detail_row .article_nav .article_info span::before {
  content: "·";
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 16px;
  color: #9796A1;
  line-height: 0;
}
.article_detail_row .article_nav .article_info span:last-child::before {
  display: none;
}

.avatar_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 8px 1fr;
  grid-template-columns: 80px 1fr;
  -ms-grid-rows: 0fr 4px 0fr 4px 0fr;
  grid-template-rows: 0fr 0fr 0fr;
  gap: 4px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.avatar_row > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.avatar_row > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.avatar_row > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.avatar_row > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.avatar_row > *:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.avatar_row > *:nth-child(6) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
@media screen and (max-width: 768px) {
  .avatar_row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-grid-columns: 60px 1fr;
    grid-template-columns: 60px 1fr;
  }
}
.avatar_row .avatar_img {
  -ms-grid-row-span: 3;
  grid-row: span 3;
}
@media screen and (max-width: 768px) {
  .avatar_row .avatar_img {
    max-width: 60px;
  }
}
.avatar_row .avatar_author {
  font-size: 12px;
  color: #9796A1;
}
.avatar_row .avatar_spec {
  font-size: 12px;
}

.article_tags_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border: 1px solid rgba(48, 125, 191, 0.3019607843);
  border-radius: 30px;
  padding: 20px 24px;
  margin: 0 0 32px;
}
@media screen and (max-width: 768px) {
  .article_tags_row {
    padding: 16px;
  }
}
.article_tags_row .link_tag {
  padding: 8px 12px;
  background: #EAF8E6;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .article_tags_row .link_tag {
    font-size: 14px;
  }
}
.article_tags_row .link_tag:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
.article_tags_row .link_tag.active {
  background: #2AB709;
  color: #fff;
}

.article_content {
  font-size: 18px;
}
.article_content ul {
  margin: 20px 0 20px 20px;
}
.article_content ul li {
  line-height: 1.4;
  font-size: clamp(14px, 1vw, 16px);
  margin: 0 0 5px;
  line-height: 1.2;
}
.article_content ul li::marker {
  color: #307DBF;
}

.article_like_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 32px 0;
}
@media screen and (max-width: 992px) {
  .article_like_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.article_like_row .like_info_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .article_like_row .like_info_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
.article_like_row .like_info_row .like_title {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .article_like_row .like_info_row .like_title {
    font-size: 16px;
  }
}
.article_like_row .like_info_row .like_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  border: 1px solid #307DBF;
  padding: 11px 24px;
  border-radius: 100px;
}
.article_like_row .like_info_row .like_info a:hover path {
  fill: #307DBF;
}
.article_like_row .like_info_row .like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  position: relative;
}
.article_like_row .like_info_row .like span, 
.article_like_row .like_info_row .dizlike span
{
  font-size: 12px;
}
.article_like_row .like_info_row .like::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  height: 34px;
  width: 1px;
  background: #BEBDCA;
}
.article_like_row .social_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .article_like_row .social_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
.article_like_row .social_info .social_info_title {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .article_like_row .social_info .social_info_title {
    font-size: 16px;
  }
}

.doc_avatar_row {
  background: #EAF2F9;
  padding: 30px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .doc_avatar_row {
    padding: 24px 16px;
  }
}
.doc_avatar_row .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 420px) {
  .doc_avatar_row .btn {
    width: 100%;
  }
}

.doc_comments_row {
  margin: 32px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 453px;
  grid-template-columns: 1fr 453px;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .doc_comments_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.doc_comments_row .comments_desc {
  border: 1px solid rgba(48, 125, 191, 0.3019607843);
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 992px) {
  .doc_comments_row .comments_desc {
    padding: 24px 16px;
  }
}
.doc_comments_row .comments_desc .comments_title {
  padding: 0 0 38px;
  text-transform: uppercase;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .doc_comments_row .comments_desc .comments_title {
    padding: 0 0 20px;
  }
}
.doc_comments_row .comments_desc .comments_title span {
  font-weight: 400;
}
.doc_comments_row .form_comments_row {
  background: #EAF2F9;
  border-radius: 30px;
  padding: 30px;
}
@media screen and (max-width: 992px) {
  .doc_comments_row .form_comments_row {
    padding: 24px 16px;
  }
}
.doc_comments_row .form_comments {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  margin: 30px 0 20px;
}
.doc_comments_row .form_comments .form_wrap {
  position: relative;
  display: inline-block;
}
.doc_comments_row .form_comments .form_wrap:after {
  content: "";
  background: url(../img/resizer.svg) no-repeat;
  width: 11px;
  height: 11px;
  position: absolute;
  right: 8px;
  bottom: 14px;
  pointer-events: none;
}
.doc_comments_row .form_comments textarea {
  min-height: 216px;
  padding: 20px;
  resize: vertical;
  width: 100%;
  font-size: 16px;
  position: relative;
  display: inline-block;
}
.doc_comments_row .form_comments textarea::-webkit-resizer {
  display: none;
}
.doc_comments_row .form_info {
  font-size: 12px;
  color: #373737;
}
.doc_comments_row .form_info a {
  text-decoration: underline;
}

.comments_desc_row {
  padding: 38px 0 0;
  border-top: 1px solid rgba(48, 125, 191, 0.3019607843);
}
@media screen and (max-width: 992px) {
  .comments_desc_row {
    padding: 20px 0 0;
  }
}
.comments_desc_row .c_item {
  margin: 0 0 20px;
}
.comments_desc_row .c_item_name {
  font-weight: 500;
  margin: 0 0 8px;
}
@media screen and (max-width: 992px) {
  .comments_desc_row .c_item_name {
    font-size: 14px;
  }
}
.comments_desc_row .c_item_name span {
  color: #9796A1;
  font-size: 14px;
  font-weight: 400;
  margin-left: 12px;
}
@media screen and (max-width: 992px) {
  .comments_desc_row .c_item_name span {
    font-size: 12px;
  }
}
.comments_desc_row .c_item_text {
  margin: 0 0 16px;
}
@media screen and (max-width: 992px) {
  .comments_desc_row .c_item_text {
    font-size: 14px;
  }
}
.comments_desc_row .c_item_date {
  font-size: 14px;
  color: #9796A1;
}
@media screen and (max-width: 992px) {
  .comments_desc_row .c_item_date {
    font-size: 12px;
  }
}
.comments_desc_row .c_item_date a, .comments_desc_row .c_item_date .link_comment {
  color: #307DBF;
  margin-left: 12px;
}

.more_comments {
  color: #307DBF;
  font-weight: 500;
  text-decoration: underline;
  font-size: 16px;
}

/*header_news/ */
.news {
  margin: 32px 0 0;
}
@media screen and (max-width: 768px) {
  .news {
    margin: 24px 0 0;
  }
}

.news_archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  /* border: 1px solid rgba(48, 125, 191, 0.3019607843); */
  border-radius: 30px;
  padding: 20px 24px;
  margin: 32px 0;
}
@media screen and (max-width: 768px) {
  .news_archive {
    padding: 16px;
    margin: 24px 0;
  }
}
.news_archive .link_archive {
  padding: 8px 12px;
  background: #EAF8E6;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .news_archive .link_archive {
    font-size: 14px;
  }
}
.news_archive .link_archive:hover {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.3019607843);
}
.news_archive .link_archive.active {
  background: #2AB709;
  color: #fff;
}

/*header_news_detailed/ */
.news_detail_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 453px;
  grid-template-columns: 1fr 453px;
  gap: 20px;
  margin: 0 0 20px;
}
@media screen and (max-width: 992px) {
  .news_detail_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.news_detail_row .news_detail_info {
  border-radius: 30px;
  background: #EAF2F9;
  padding: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  min-height: 400px;
}
@media screen and (max-width: 992px) {
  .news_detail_row .news_detail_info {
    min-width: 320px;
    padding: 24px 16px;
    min-height: 263px;
  }
}
.news_detail_row .news_detail_info .sub_title {
  color: #373737;
}
@media screen and (max-width: 768px) {
  .news_detail_row .news_detail_info .sub_title {
    padding: 0 16px;
  }
}
.news_detail_row .news_detail_info .news_detail_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .news_detail_row .news_detail_info .news_detail_nav {
    margin: 0 0 24px;
    gap: 16px 0;
  }
}
.news_detail_row .news_detail_info .news_detail_nav .link_back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.news_detail_row .news_detail_info .news_date {
  color: #9796A1;
}
.news_detail_row .news_detail_img {
  border-radius: 30px;
  overflow: hidden;
}
.news_detail_row .news_detail_img img {
  height: 100%;
}

.new_content {
  font-size: 18px;
  margin: 32px 0 0;
}
@media screen and (max-width: 768px) {
  .new_content {
    font-size: 14px;
  }
}
.new_content ul {
  margin: 20px 0 20px 20px;
}
.new_content ul li {
  line-height: 1.4;
  font-size: clamp(14px, 2vw, 18px);
  margin: 0 0 5px;
}
.new_content ul li::marker {
  color: #307DBF;
}

/*header_contact_page/ */
.contact_page {
  margin: 32px 0;
}

.contact_page_row {
  background: #EAF2F9;
  border-radius: 30px;
  padding: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  margin: 32px 0 20px;
}
@media screen and (max-width: 1200px) {
  .contact_page_row {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .contact_page_row {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 680px) {
  .contact_page_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px 20px;
  }
}
.contact_page_row .item_contact a:hover {
  color: #307DBF;
}
.contact_page_row .item_contact_title {
  font-size: clamp(16px, 1vw, 18px);
  margin: 0 0 16px;
  text-transform: uppercase;
  color: #307DBF;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .contact_page_row .item_contact_title {
    font-weight: 400;
  }
}
.contact_page_row .item_contact_dop {
  font-size: clamp(18px, 2vw, 22px);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 8px;
  display: block;
}
.contact_page_row .item_contact_sub_title {
  color: #9796A1;
  font-size: 14px;
}
.contact_page_row .item_contact_sub_title.chema_link {
  text-decoration: underline;
}

#map {
  height: 400px;
  overflow: hidden;
  border-radius: 30px;
}
#map img {
  width: 100%;
  height: 100%;
}

.driving_scheme_row {
  margin: 32px 0 0;
}

.driving_scheme_item {
  position: relative;
  background: #EAF2F9;
  border-radius: 30px;
  padding: 30px;
  margin: 0 0 20px;
}
.driving_scheme_item .driving_scheme_info {
  margin: 16px 0;
  line-height: 1.4;
  font-size: clamp(14px, 1vw, 16px);
}
.driving_scheme_item .driving_scheme_info strong {
  text-transform: uppercase;
}
.driving_scheme_item .sub_info {
  color: #9796A1;
  font-size: 14px;
  margin: 0 0 8px;
}
.driving_scheme_item .btn {
  position: absolute;
  top: 23px;
  right: 25px;
}
@media screen and (max-width: 680px) {
  .driving_scheme_item .btn {
    position: relative;
    top: 0;
    right: 0;
  }
}

/*header_about/ */
.about {
  margin: 32px 0 0;
}
.about .about_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 453px;
  grid-template-columns: 1fr 453px;
  gap: 20px;
  margin: 32px 0;
}
@media screen and (max-width: 1200px) {
  .about .about_row {
    -ms-grid-columns: 1fr 307px;
    grid-template-columns: 1fr 307px;
  }
}
@media screen and (max-width: 992px) {
  .about .about_row {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .about .about_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.about .about_row .licenses_info .img {
  max-width: 358px;
}
.about .about_row .licenses_info .desc p {
  line-height: 1.2;
}
.about .about_row .licenses_info .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .about .about_row .licenses_info .btn {
    width: 100%;
  }
}
.about .about_row .licenses_img {
  background: #EAF2F9 url(../img/bg_licenses.svg) no-repeat;
  background-size: cover;
  background-position: 0 -100px;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 1200px) {
  .about .about_row .licenses_img {
    height: 375px;
  }
}
@media screen and (max-width: 768px) {
  .about .about_row .licenses_img {
    margin: 0;
    padding: 24px 16px;
    height: auto;
  }
  .about .about_row .licenses_img img {
    margin: 0 auto;
  }
}
.about .about_row .licenses_img .h4 {
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  .about .about_row .licenses_img .h4 {
    margin: 0 0 8px;
  }
}
@media screen and (max-width: 768px) {
  .about .about_row .licenses_img .desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  .page_accordion_list .page_accordion_tab_desc {
    padding: 20px 0;
  }
}
.page_accordion_list .page_accordion_tab_desc .list_download {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page_accordion_list .page_accordion_tab_desc .list_download li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 20px;
}
.page_accordion_list .page_accordion_tab_desc .list_download li:hover {
  color: #307DBF;
}
@media screen and (max-width: 992px) {
  .page_accordion_list .page_accordion_tab_desc .list_download li a {
    margin-left: 20px;
  }
}
.page_accordion_list .page_accordion_tab_desc .list_download li img {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.page_accordion_list .page_accordion_tab_desc .roll_up {
  color: #307DBF;
  font-weight: 500;
  text-decoration: underline;
}

/*header_about/ */
.gallery h2 {
  margin: 0 0 16px;
}
@media screen and (max-width: 992px) {
  .gallery h2 {
    margin: 0 0 8px;
  }
}

.gallery_row {
  padding: 32px 0;
}
@media screen and (max-width: 992px) {
  .gallery_row {
    padding: 24px 0;
  }
}
.gallery_row .item_image {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .gallery_row .item_image {
    max-width: 300px;
  }
}
.gallery_row .swiper-pagination {
  top: auto;
  bottom: 0px;
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
}

/*header_policy/ */
.policy {
  margin: 32px 0;
}

.policy_row {
  font-size: clamp(14px, 2vw, 18px);
}
.policy_row h3, .policy_row .h3 {
  margin: 32px 0 16px;
}
.policy_row a {
  color: #307DBF;
  text-decoration: underline;
}

/*header_page_services/ */
.page_services {
  margin: 32px 0 0;
}
.page_services h1 {
  margin: 0 0 32px;
}
.page_services h2 {
  margin: 0 0 16px;
}

.page_services_row {
  margin: 32px 0 84px;
}
@media screen and (max-width: 768px) {
  .page_services_row {
    margin: 32px 0 74px;
  }
}
.page_services_row .services_tab {
  border: 1px solid rgba(48, 125, 191, 0.3019607843);
  -webkit-box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.1019607843);
          box-shadow: 0px 15px 20px 0px rgba(48, 125, 191, 0.1019607843);
  background: #fff;
  border-radius: 30px;
  margin: 0 0 -40px;
  position: relative;
  font-size: clamp(14px, 2vw, 18px);
}
.page_services_row .services_tab.acc_active .services_title {
  margin: 0;
  padding: 30px 30px 0;
}
@media screen and (max-width: 768px) {
  .page_services_row .services_tab.acc_active .services_title {
    padding: 24px 16px 0;
  }
}
.page_services_row .services_tab.acc_active .services_title img {
  display: block;
}
.page_services_row .services_tab.acc_active .services_desc {
  margin: 16px 0 20px;
}
@media screen and (max-width: 768px) {
  .page_services_row .services_tab.acc_active .services_desc {
    margin: 16px 0 40px;
    padding: 0 24px 16px;
  }
}
@media screen and (max-width: 768px) {
  .page_services_row .services_tab.acc_active .services_desc .list {
    margin-bottom: 0;
  }
}
.page_services_row .services_tab:last-child .services_title {
  margin: 0;
}
.page_services_row .services_title {
  margin: 0 0 20px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page_services_row .services_title {
    font-weight: 400;
    padding: 24px;
  }
}
.page_services_row .services_title img {
  display: none;
  max-width: 80px;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .page_services_row .services_title img {
    max-width: 60px;
  }
}
.page_services_row .services_desc {
  padding: 0 30px 30px;
}
@media screen and (max-width: 768px) {
  .page_services_row .services_desc {
    padding: 0 16px 24px;
  }
}
.page_services_row .services_desc ul {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media screen and (max-width: 768px) {
  .page_services_row .services_desc ul {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}
.page_services_row .services_desc ul li a:hover {
  color: #307DBF;
}

/*header_page_price/ */
.page_price {
  margin: 32px 0 0;
}
.page_price .price_accordion .tab_item {
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page_price .price_accordion .tab_item_desc {
  font-size: 14px;
  color: #9796A1;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.page_price .price_accordion .tab_item_row {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page_price .price_accordion .tab_item_desc_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 8px 1fr;
  grid-template-columns: auto 1fr;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_price .price_accordion .tab_item_desc_row span {
  position: relative;
  background: url(../img/info.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: cover;
  display: inline-block;
  cursor: pointer;
  top: 3px;
}
.page_price .price_accordion .price_tab_desc {
  font-size: clamp(14px, 1vw, 16px);
}

/*header_404/ */
.error_page {
  margin: 32px 0 0;
}
.error_page .sub_title {
  margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
  .error_page .sub_title {
    margin: 8px 0 0;
  }
}

.error_page_row {
  margin: 32px 0;
}
.error_page_row .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .error_page_row .btn {
    margin: 0 auto;
  }
}
.error_page_row .icon_404 img {
  margin: 0 auto;
  text-align: center;
}

.default {
  margin-bottom: -100px;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.social .icon {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #307DBF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.social .icon:hover path {
  fill: #307DBF;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #307DBF;
  border-radius: 30px;
  overflow: hidden;
}

.swiper-pagination-progressbar {
  background: rgba(46, 124, 192, 0.3019607843);
  border-radius: 30px;
}

/*up_top*/
.up_top {
  position: absolute;
  top: 60px;
  right: 0;
  cursor: pointer;
  z-index: 99;
}
@media screen and (max-width: 992px) {
  .up_top {
    bottom: 60px;
    top: auto;
    right: 20px;
  }
}

/*tooltip*/ 
.tooltip {
  display: none;
  position: absolute;
  background: #fff;
  padding: 17px 12px;
  z-index: 1000;
  max-width: 300px;
  z-index: 99;
  right: -310px;
  border: 1px solid #EAF2F9;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
          box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
  border-radius: 10px;
  font-size: 12px;
  top: 20px;
}
@media screen and (max-width: 768px) {
  .tooltip {
    top: 30px;
    right: 0px;
    max-width: 100%;
  }
}
.tooltip.active {
  display: block;
}
.tooltip ul, .tooltip ol {
  margin: 0 0 0 15px;
}
.tooltip ul li, .tooltip ol li {
  line-height: 1.4;
}
.tooltip .tooltip-close {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
}

._mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  ._mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.7);
}

.fancybox__content > .f-button.is-close-btn {
  top: 10px;
  right: 10px;
  --f-button-bg: #fff!important;
}
.fancybox__content > .f-button.is-close-btn:hover {
  --f-button-hover-bg: #fff!important;
}
.fancybox__content > .f-button.is-close-btn svg, .fancybox__content > .f-button.is-close-btn path {
  fill: #307DBF;
  color: #307DBF;
}

.fancybox__content {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
          box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
  border-radius: 30px;
}
.fancybox__content h3 {
  text-align: center;
}
.fancybox__content h4 {
  font-size: clamp(16px, 1vw, 22px);
  font-weight: 400;
  text-transform: none !important;
}
.fancybox__content form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0 0;
  position: relative;
}
.fancybox__content form .btn {
  padding: 0;
}
.fancybox__content form .form_info {
  color: #373737;
  font-size: 12px;
  -ms-grid-column-span: 1;
  grid-column: span 1;
  margin: 0;
}
.fancybox__content form .form_info a {
  text-decoration: underline;
}

.breadcrumb ul {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  gap: 6px 18px;
  margin: 24px 0 20px;
}
.breadcrumb .breadcrumb_item {
  position: relative;
}
.breadcrumb .breadcrumb_item::before {
  display: inline-block;
  content: "/";
  position: absolute;
  right: -12px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.breadcrumb .breadcrumb_item:last-child::before {
  display: none;
}
.breadcrumb .breadcrumb_item.active {
  color: #9796A1;
}

.pagination {
  background: #EAF8E6;
  padding: 14px 24px;
  border-radius: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.pagination .coutn_points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.pagination .coutn_points .point {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #2AB709;
  opacity: 0.3;
}
.pagination .coutn_points .point.active {
  opacity: 1;
}
.pagination .p_count {
  color: #2AB709;
}
.pagination .p_count .count_add {
  display: inline-block;
  opacity: 1;
  font-weight: 500;
}
.pagination .p_count .count_full {
  opacity: 0.3;
}

.list {
  margin: 20px 0 20px 20px;
}
.list li {
  line-height: 1.4;
  font-size: clamp(14px, 2vw, 18px);
  margin: 0 0 5px;
}
.list li::marker {
  color: #307DBF;
}

.page_info {
  position: relative;
  padding-left: 32px;
  line-height: 1.4;
}
.page_info a {
  color: #307DBF;
  text-decoration: underline;
}
.page_info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../img/info.svg) no-repeat;
  background-size: cover;
}

.cookies {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
          box-shadow: 0px 0px 20px 0px rgba(48, 125, 191, 0.1490196078);
  background: #307DBF;
  padding: 12px 24px;
  border-radius: 40px;
  max-width: 1400px;
  margin: 0 auto;
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px auto;
  grid-template-columns: 1fr auto;
  gap: 8px;
  font-size: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .cookies {
    padding: 12px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .cookies .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.doc_item .doc_name{
    max-width: 266px;
}
.fancybox__content:not(.order-modal){
    padding: 0;
}
.avatar_img{
    border-radius: 50%;
    background: #B1CFE7;
    overflow:hidden;
}

/******  *******/
.f_form{
    position: relative;
}
.error_message{
    position: absolute;
    top:-23px;
    font-size: 80%;
    color: brown;
}
/******  *******/
.order-modal{
    width: 100%;
    overflow:hidden;
}
@media(max-width:768px){
    .doc_detail_up_row .calendar_times {
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
    }
    .doc_detail_up_row .calendar_dates_row{
        width: 100%;
    }
    .doc_detail_up_row .calendar_times .item_time {
        padding: 8px 8px;
    }
    
}
/******  *******/
.modal-doc-header{
    margin-top: 23.5px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.modal-doc-header-image img{
    border-radius: 50%;
}
.modal-doc-header-title{
    color: #307DBF;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
}
.modal-doc-header-blockinfo{
    color: #373737;
    font-size: 80%;
    line-height: 130%;
}
/******  *******/
.modal-review-block{
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}
.modal-review-block-info-name{
    color: #307DBF;
    font-weight: 600;
}
.modal-review-block-info-date{
    font-size: 80%;
    color: #999;
}
.modal-review-block-info-rate{
    color: #f3ae00;
    margin-left: auto;
}
.modal-review-block-info{
    display: flex;
    align-items: center;
    gap: 5px;
}
.modal-review-block-text{
    font-size: 90%;
    margin-top: 10px;
}
#doc_reviews{
    overflow-y: scroll;
    padding: 0 5px;
}
/******  *******/
/* .time_on_modal .doc_detail_up_row .calendar_times{
    grid-template-columns: repeat(5, 1fr);
} */
.time_on_modal .doc_detail_up_row .doc_detail_calendar {
    padding: 24px 16px;
    min-height: 300px;
    margin-top: 15px;
}
@media (max-width: 1200px){
    .time_on_modal .doc_detail_up_row .doc_detail_calendar{
        display: block;
    }
}
/******  *******/