*, ol, ul, p, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Raleway;
  font-weight: 400;
  font-size: 16px;
  background-color: #F3F3F8;
}
body.white_theme {
  background-color: #fff;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1085px;
  margin: 0 auto;
}
@media (max-width: 1079px) {
  .container {
    max-width: 968px;
    padding: 0 15px;
  }
}
@media (max-width: 966px) {
  .container {
    max-width: 767px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}

button {
  cursor: pointer;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.section_title {
  color: #1C2258;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section_title {
    font-size: 25px;
  }
}

.title_description {
  font-size: 44px;
}
@media (max-width: 767px) {
  .title_description {
    font-size: 25px;
  }
}
.title_description .red_col {
  color: #AD272B;
  font-weight: 800;
}
@media (max-width: 767px) {
  .title_description .red_col {
    font-size: 25px;
  }
}
.title_description.small_px {
  font-size: 28px;
}
@media (max-width: 767px) {
  .title_description.small_px {
    font-size: 25px;
  }
}

.normal_text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.page_link {
  color: #1C2258;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.red_btn {
  width: 91px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background: #AD272B;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .red_btn {
    border-radius: 10px;
  }
}
.red_btn.big {
  width: auto;
  height: 63px;
  padding: 0 31px;
  font-size: 20px;
  border-radius: 63px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .red_btn.big {
    height: 50px;
    font-size: 18px;
    border-radius: 10px;
  }
}

.all_btn {
  color: #1C2258;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .all_btn {
    font-size: 16px;
  }
}

.cookies {
  width: 100%;
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 698px;
  border-radius: 20px;
  border: 1px solid #C1C5F2;
  background: #FFF;
  display: flex;
  align-items: start;
  gap: 0 24px;
  padding: 17px;
  z-index: 20;
  transition: 0.5s all ease;
  opacity: 0;
  visibility: hidden;
}
.cookies.active {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .cookies.active {
    flex-wrap: wrap;
    gap: 10px 20px;
    align-items: center;
    justify-content: center;
  }
}
.cookies .item_img {
  width: 97px;
  height: 97px;
  border-radius: 20px;
  background: #F3F3F8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cookies .item_text {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.cookies .item_text .info_time {
  color: #6A6E91;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.cookies .item_text .info_time a {
  color: #1C2258;
}
.cookies .item_text .action_btns {
  display: flex;
  align-items: stretch;
  gap: 0 8px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookies .item_text .action_btns a {
  width: calc(50% - 4px);
  height: 38px;
  border-radius: 20px;
  background: #1C2258;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.cookies .item_text .action_btns .reject_btn {
  background: #F3F3F8;
  color: #1C2258;
}

header {
  padding: 28px 0 25px 0;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: 0.35s all ease;
}
@media (max-width: 767px) {
  header.opened.active .row nav .header_actions .login_btn {
    display: flex;
  }
}
header.opened .row {
  justify-content: start;
}
@media (max-width: 1079px) {
  header.opened .row {
    justify-content: space-between;
  }
}
header.opened .row nav .header_actions .red_btn {
  display: none;
}
header.opened .row nav .header_actions .login_btn {
  display: flex;
  align-items: center;
  gap: 0 8px;
  width: auto;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  header.opened .row nav .header_actions .login_btn {
    display: none;
  }
}
header.opened .row nav .header_actions .login_btn span {
  color: #1C2258;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: block;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  header.active {
    padding: 0;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  header.active .row {
    justify-content: center;
    gap: 20px 0;
    padding-top: 50px;
  }
}
header.active .row .header_logo {
  display: none;
}
header.active .row .header_actions {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
header.active .row .header_actions .number {
  display: none;
}
@media (max-width: 767px) {
  header.active .row .header_actions .number {
    display: block;
    font-size: 20px;
  }
}
header.active .row .header_actions .login_btn {
  display: none;
}
@media (max-width: 767px) {
  header.active .row .header_actions .login_btn {
    display: flex;
  }
}
header.active .row .header_actions .red_btn {
  display: none;
}
@media (max-width: 767px) {
  header.active .row .header_actions .red_btn {
    width: 150px;
    font-size: 20px;
    height: 50px;
    display: flex;
  }
}
header.active .row .hamburger_close {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.active .row .nav_link {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  max-height: 500px;
}
header.active .row .nav_link li a {
  font-size: 25px;
}
header .row {
  justify-content: space-between;
  gap: 0 28px;
  align-items: center;
  transition: 0.35s all ease;
}
header .row .header_logo {
  width: 181px;
  height: 31px;
}
@media (max-width: 767px) {
  header .row .header_logo {
    width: 130px;
  }
}
header .row .header_logo img {
  width: 100%;
  height: 100%;
}
header .row nav {
  display: flex;
  align-items: center;
  gap: 0 30px;
  flex-wrap: wrap;
}
@media (max-width: 1079px) {
  header .row nav {
    gap: 0 10px;
  }
}
header .row nav .mobile_actions {
  display: none;
}
@media (max-width: 1079px) {
  header .row nav .mobile_actions {
    display: flex;
  }
}
header .row nav .nav_link {
  display: flex;
  align-items: center;
  gap: 0 31px;
}
@media (max-width: 1079px) {
  header .row nav .nav_link {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    flex-direction: column;
    gap: 20px 0;
    padding: 30px 20px 40px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.35s ease;
  }
}
header .row nav .header_actions {
  display: flex;
  align-items: center;
  gap: 0 22px;
}
@media (max-width: 1079px) {
  header .row nav .header_actions {
    transition: 0.35s ease;
  }
}
header .row nav .header_actions .number {
  font-family: Montserrat;
  font-weight: 600;
}
@media (max-width: 767px) {
  header .row nav .header_actions .number {
    display: none;
  }
}
header .row nav .header_actions .action_btns {
  display: flex;
  align-items: center;
  gap: 0 11px;
}
header .row nav .header_actions .login_btn {
  width: 35px;
  height: 35px;
}
@media (max-width: 767px) {
  header .row nav .header_actions .login_btn {
    display: none;
  }
}
header .row nav .header_actions .login_btn img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  header .row nav .header_actions .red_btn {
    display: none;
  }
}
header .hamburger_open, header .hamburger_close {
  display: none;
}
@media (max-width: 1079px) {
  header .hamburger_open, header .hamburger_close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .hamburger_open img, header .hamburger_close img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1079px) {
  header .hamburger_close {
    display: none;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 90px;
}
.hero .item_bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero .item_bg {
    top: auto;
    bottom: 0;
    height: 500px;
  }
}
.hero .item_bg img {
  display: flex;
  width: 100%;
  max-width: 736px;
  height: 100%;
  margin-left: auto;
}
@media (max-width: 966px) {
  .hero .item_bg img {
    max-width: 400px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .hero .item_bg img {
    max-width: 100%;
    margin-left: 0;
  }
}
.hero .row {
  align-items: start;
  gap: 0 30px;
  justify-content: space-between;
  padding: 66px 0 22px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1079px) {
  .hero .row {
    padding-top: 45px;
    gap: 0 15px;
  }
}
.hero .row .left_content {
  max-width: 650px;
}
@media (max-width: 1079px) {
  .hero .row .left_content {
    max-width: 420px;
  }
}
.hero .row .left_content .title_description {
  text-align: start;
}
@media (max-width: 1079px) {
  .hero .row .left_content .title_description {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .hero .row .left_content .title_description {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero .row .left_content .title_description span {
    font-size: 40px;
    flex: 0 0 auto;
    display: block;
  }
}
.hero .row .left_content .normal_text {
  margin: 22px 0 50px 0;
  color: #1C2258;
  max-width: 397px;
}
.hero .row .left_content .links {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 460px;
}
@media (max-width: 767px) {
  .hero .row .left_content .links {
    gap: 5px;
  }
}
.hero .row .left_content .links li a {
  display: block;
  padding: 12px 19px;
  border-radius: 25px;
  border: 1px solid #C1C5F2;
  background: #FFF;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 767px) {
  .hero .row .left_content .links li a {
    padding: 10px;
  }
}
.hero .row .left_content .action_buttons {
  display: flex;
  align-items: center;
  gap: 0 35px;
  margin-top: 49px;
}
@media (max-width: 1079px) {
  .hero .row .left_content .action_buttons {
    flex-direction: column;
    gap: 15px 0;
    max-width: 275px;
  }
}
@media (max-width: 767px) {
  .hero .row .left_content .action_buttons {
    flex-direction: row;
    gap: 5px;
    max-width: 100%;
    flex-wrap: wrap;
  }
}
.hero .row .left_content .action_buttons .red_btn {
  flex: 0 0 auto;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 50px;
}
.hero .row .left_content .action_buttons .all_btn {
  font-size: 14px;
}
.hero .row .right_content {
  position: relative;
  width: 100%;
  max-width: 469px;
  margin-top: auto;
}
@media (max-width: 966px) {
  .hero .row .right_content {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .hero .row .right_content {
    margin-top: 255px;
  }
}
.hero .row .right_content .doctor_img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -22px;
}
@media (max-width: 767px) {
  .hero .row .right_content .doctor_img {
    bottom: auto;
    top: -200px;
    max-width: 250px;
    left: auto;
  }
}
.hero .row .right_content .doctor_img img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero .row .right_content .row {
  padding: 0;
}
.hero .row .right_content .doctor_info {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(28.3500003815px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 37px 0;
  padding: 22px 22px 26px 22px;
}
@media (max-width: 767px) {
  .hero .row .right_content .doctor_info {
    border-radius: 10px;
  }
}
.hero .row .right_content .doctor_info .row {
  align-items: start;
  gap: 0 50px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hero .row .right_content .doctor_info .row {
    gap: 15px;
  }
}
.hero .row .right_content .doctor_info .row .item_left {
  width: 100%;
  max-width: 230px;
}
.hero .row .right_content .doctor_info .row .item_left .item_name {
  color: #AD272B;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.hero .row .right_content .doctor_info .row .item_left .item_job {
  margin-top: 17px;
  color: #1C2258;
  font-size: 14px;
}
.hero .row .right_content .doctor_info .row .item_right {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}
.hero .row .right_content .doctor_info .row .item_right li {
  display: flex;
  align-items: center;
  gap: 0 9px;
}
.hero .row .right_content .doctor_info .row .item_right li span {
  font-size: 14px;
  font-weight: 500;
}
.hero .row .right_content .doctor_info .row .item_right li span.number {
  font-size: 18px;
  font-family: Montserrat;
}
.hero .row .right_content .doctor_info .item_motivation {
  color: #1C2258;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.about_clinic {
  background: #FFF;
  padding: 88px 0 62px 0;
  position: relative;
}
@media (max-width: 767px) {
  .about_clinic {
    padding: 50px 0;
  }
}
.about_clinic .item_bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-right: 33px;
}
.about_clinic .item_bg .item_bg_left {
  margin-left: -280px;
}
.about_clinic .container {
  position: relative;
  z-index: 2;
}
.about_clinic .small_px {
  max-width: 644px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about_clinic .small_px {
    font-size: 20px;
  }
}
.about_clinic .info_subscriber {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  margin: 25px 0 31px 0;
}
@media (max-width: 767px) {
  .about_clinic .info_subscriber {
    gap: 10px;
    margin: 20px 0;
  }
}
.about_clinic .more_info {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 966px) {
  .about_clinic .more_info {
    gap: 15px;
    justify-content: space-between;
    margin: 0;
  }
}
.about_clinic .more_info .more_item {
  display: flex;
  width: 292px;
  position: relative;
  height: 312px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
@media (max-width: 966px) {
  .about_clinic .more_info .more_item {
    transform: none;
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .about_clinic .more_info .more_item {
    width: 100%;
    border-radius: 10px;
    height: 270px;
    text-align: center;
  }
}
.about_clinic .more_info .more_item:hover {
  z-index: 3;
}
.about_clinic .more_info .more_item:hover .item_img img {
  transform: scale(1.2) translateZ(0);
}
.about_clinic .more_info .more_item:nth-child(1), .about_clinic .more_info .more_item:last-child {
  width: 292px;
  background: #1C2258;
  height: 311px;
  z-index: 3;
  margin-right: -72px;
  transform: rotate(-4.625deg);
}
@media (max-width: 966px) {
  .about_clinic .more_info .more_item:nth-child(1), .about_clinic .more_info .more_item:last-child {
    transform: none;
    margin: 0;
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .about_clinic .more_info .more_item:nth-child(1), .about_clinic .more_info .more_item:last-child {
    width: 100%;
    height: 270px;
  }
}
.about_clinic .more_info .more_item:nth-child(1):hover, .about_clinic .more_info .more_item:last-child:hover {
  transform: rotate(-6.842deg);
  z-index: 3;
}
@media (max-width: 966px) {
  .about_clinic .more_info .more_item:nth-child(1):hover, .about_clinic .more_info .more_item:last-child:hover {
    transform: none;
  }
}
.about_clinic .more_info .more_item:nth-child(1):hover .more_item_title, .about_clinic .more_info .more_item:last-child:hover .more_item_title {
  top: 25px;
  top: 20px;
  transform: translateY(0);
  text-align: left;
}
@media (max-width: 767px) {
  .about_clinic .more_info .more_item:nth-child(1):hover .more_item_title, .about_clinic .more_info .more_item:last-child:hover .more_item_title {
    text-align: center;
  }
}
.about_clinic .more_info .more_item:nth-child(1):hover .more_item_description, .about_clinic .more_info .more_item:last-child:hover .more_item_description {
  left: 25px;
  right: 25px;
  opacity: 1;
  visibility: visible;
}
.about_clinic .more_info .more_item:nth-child(1) .more_item_title, .about_clinic .more_info .more_item:last-child .more_item_title {
  position: absolute;
  left: 25px;
  right: 25px;
  transition: 0.5s all ease;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.about_clinic .more_info .more_item:nth-child(1) .more_item_description, .about_clinic .more_info .more_item:last-child .more_item_description {
  position: absolute;
  left: -100%;
  right: 0;
  bottom: 20px;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s ease;
  will-change: left, opacity;
  backface-visibility: hidden;
}
.about_clinic .more_info .more_item:last-child {
  transform: rotate(4.32deg);
  margin-right: 0;
  margin-left: -64px;
  z-index: 1;
  border-radius: 20px;
  background: linear-gradient(180deg, #AD272B 0%, #F2666A 56.83%, #AD272B 100%), #F2666A;
}
@media (max-width: 966px) {
  .about_clinic .more_info .more_item:last-child {
    transform: none;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .about_clinic .more_info .more_item:last-child {
    width: 100%;
    border-radius: 10px;
  }
}
.about_clinic .more_info .more_item:last-child:hover {
  z-index: 3;
  transform: rotate(5.01deg);
  background: #F2666A;
}
@media (max-width: 966px) {
  .about_clinic .more_info .more_item:last-child:hover {
    transform: none;
  }
}
.about_clinic .more_info .more_item:last-child .more_item_title {
  right: auto;
}
@media (max-width: 767px) {
  .about_clinic .more_info .more_item:last-child .more_item_title {
    right: 0;
    left: 0;
  }
}
.about_clinic .more_info .more_item .item_img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.about_clinic .more_info .more_item .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.about_clinic .more_info .more_item .more_item_title {
  color: #FFF;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.about_clinic .more_info .more_item .more_item_description {
  color: #FFF;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about_clinic .all_btn {
  width: 100%;
  max-width: 254px;
  text-align: center;
  height: 59px;
  padding: 0 31px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 63px;
  background: #C1C5F2;
  margin: 47px auto 0 auto;
}
@media (max-width: 767px) {
  .about_clinic .all_btn {
    margin-top: 25px;
    height: 45px;
    font-size: 14px;
    border-radius: 10px;
  }
}

.popular_client {
  padding: 77px 0 87px 0;
}
@media (max-width: 767px) {
  .popular_client {
    padding: 45px 0;
  }
}
.popular_client .row {
  align-items: stretch;
  margin-left: var(--container-left);
  flex-wrap: nowrap;
  gap: 0 21px;
}
@media (max-width: 1079px) {
  .popular_client .row {
    padding: 0 0 0 15px;
    gap: 0 15px;
  }
}
@media (max-width: 767px) {
  .popular_client .row {
    flex-wrap: wrap;
    gap: 20px 0;
    padding: 0;
    margin: 0 15px;
  }
}
.popular_client .row .item_info {
  border-radius: 20px;
  background: #AD272B;
  flex: 0 0 auto;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 26px 37px 26px;
}
@media (max-width: 767px) {
  .popular_client .row .item_info {
    border-radius: 10px;
    padding: 15px;
    max-width: 100%;
  }
}
.popular_client .row .item_info .item_title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.popular_client .row .item_info .normal_text {
  color: #fff;
  margin-top: 21px;
}
.popular_client .row .item_info .info_buttons {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 35px;
}
@media (max-width: 767px) {
  .popular_client .row .item_info .info_buttons {
    margin-top: 25px;
  }
}
.popular_client .row .item_info .info_buttons .all_btn {
  color: #fff;
  flex: 0 0 auto;
  text-decoration: underline;
}
.popular_client .row .item_info .info_buttons .swiper_btns {
  display: flex;
  align-items: center;
  gap: 0 17px;
}
.popular_client .row .item_info .info_buttons .swiper_btns .left_btn, .popular_client .row .item_info .info_buttons .swiper_btns .right_btn {
  width: 52px;
  height: 52px;
}
.popular_client .row .item_info .info_buttons .swiper_btns .left_btn img, .popular_client .row .item_info .info_buttons .swiper_btns .right_btn img {
  width: 100%;
  height: 100%;
}
.popular_client .row .client_swiper .swiper-wrapper .swiper-slide .client_item {
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .popular_client .row .client_swiper .swiper-wrapper .swiper-slide .client_item {
    border-radius: 10px;
  }
}
.popular_client .row .client_swiper .swiper-wrapper .swiper-slide .client_item .item_img {
  width: 100%;
  height: 315px;
}
.popular_client .row .client_swiper .swiper-wrapper .swiper-slide .client_item .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular_client .row .client_swiper .swiper-wrapper .swiper-slide .client_item .item_text {
  padding: 24px 23px 27px 23px;
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.popular_client .row .client_swiper .swiper-wrapper .swiper-slide .client_item .item_text .item_name {
  font-size: 22px;
}
.popular_client .row .client_swiper .swiper-wrapper .swiper-slide .client_item .item_text .item_job {
  font-size: 16px;
  color: #999;
}

.services {
  background: #FFF;
  padding: 46px 0 48px 0;
}
.services .services_actions .service_search {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .services .services_actions .service_search {
    flex-direction: column;
    gap: 15px 0;
    align-items: start;
  }
}
.services .services_actions .service_search .section_title {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .services .services_actions .service_search .section_title {
    font-size: 45px;
  }
}
.services .services_actions .service_search .search_bar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 461px;
  flex: 0 0 auto;
  border-radius: 18.75px;
  background: #F3F3F8;
  height: 62px;
  padding: 0 24px;
  justify-content: space-between;
  gap: 0 20px;
}
@media (max-width: 966px) {
  .services .services_actions .service_search .search_bar {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .services .services_actions .service_search .search_bar {
    height: 45px;
    border-radius: 10px;
    max-width: 100%;
  }
}
.services .services_actions .service_search .search_bar input {
  width: 100%;
  border: none;
  background: none;
  outline: none;
  color: #999;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  height: 100%;
}
.services .services_actions .service_search .search_bar input::placeholder {
  color: #999;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.services .services_actions .service_search .search_bar input:focus {
  color: #999;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.services .services_actions .service_search .search_bar button {
  border: none;
  outline: none;
  width: 23px;
  height: 23px;
  cursor: pointer;
}
.services .services_actions .service_search .search_bar button img {
  width: 100%;
  height: 100%;
}
.services .services_actions .row {
  align-items: stretch;
  gap: 20px;
  margin: 21px 0 29px 0;
}
.services .services_actions .row.second_row {
  gap: 8px 0;
  justify-content: space-between;
}
.services .services_actions .row.second_row .service_item {
  border-radius: 20px;
  background: linear-gradient(90deg, #F3F3F8 20%, #EFEFF5 84.47%);
  max-width: none;
  display: flex;
  flex-direction: column;
  width: calc((100% - 16px) / 3);
}
@media (max-width: 966px) {
  .services .services_actions .row.second_row .service_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .services .services_actions .row.second_row .service_item {
    width: 100%;
    border-radius: 10px;
  }
}
.services .services_actions .row.second_row .service_item:nth-child(2), .services .services_actions .row.second_row .service_item:nth-child(3), .services .services_actions .row.second_row .service_item:nth-child(4) {
  max-width: none;
}
.services .services_actions .row.second_row .service_item:nth-child(2) .item_description, .services .services_actions .row.second_row .service_item:nth-child(3) .item_description, .services .services_actions .row.second_row .service_item:nth-child(4) .item_description {
  max-width: 280px;
}
.services .services_actions .row.second_row .service_item .item_circle {
  position: absolute;
  right: 28px;
  top: 28px;
  width: auto;
  height: auto;
}
.services .services_actions .row.second_row .service_item .item_title {
  margin: 0 0 22px 0;
}
@media (max-width: 1079px) {
  .services .services_actions .row.second_row .service_item .item_title {
    font-size: 18px;
  }
}
@media (max-width: 966px) {
  .services .services_actions .row.second_row .service_item .item_title {
    max-width: 250px;
  }
}
.services .services_actions .row.second_row .service_item .item_description {
  margin-top: auto;
  max-width: 100%;
  font-size: 14px;
}
.services .services_actions .row .service_item {
  padding: 24px 26px 26px 26px;
  position: relative;
  border-radius: 20px;
  width: 100%;
  background: #F3F3F8;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1079px) {
  .services .services_actions .row .service_item {
    width: calc(50% - 10px);
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .services .services_actions .row .service_item {
    width: 100%;
    border-radius: 10px;
  }
}
.services .services_actions .row .service_item:nth-child(1), .services .services_actions .row .service_item:nth-child(3) {
  max-width: 599px;
}
.services .services_actions .row .service_item:nth-child(2), .services .services_actions .row .service_item:nth-child(4) {
  max-width: 461px;
}
.services .services_actions .row .service_item:nth-child(2) .item_description, .services .services_actions .row .service_item:nth-child(3) .item_description {
  max-width: 230px;
}
@media (max-width: 767px) {
  .services .services_actions .row .service_item:nth-child(2) .item_description, .services .services_actions .row .service_item:nth-child(3) .item_description {
    max-width: 200px;
  }
}
.services .services_actions .row .service_item:nth-child(4) .item_description {
  max-width: 210px;
}
.services .services_actions .row .service_item:nth-child(3) {
  background: rgba(173, 39, 43, 0.12);
}
.services .services_actions .row .service_item .item_img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 1079px) {
  .services .services_actions .row .service_item .item_img {
    max-width: 250px;
    max-height: 200px;
  }
}
@media (max-width: 966px) {
  .services .services_actions .row .service_item .item_img {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .services .services_actions .row .service_item .item_img {
    max-width: 150px;
    max-height: 150px;
  }
}
@media (max-width: 1079px) {
  .services .services_actions .row .service_item .item_img img {
    width: 100%;
    height: 100%;
  }
}
.services .services_actions .row .service_item .item_circle {
  display: flex;
  align-items: stretch;
  width: 23px;
  height: 23px;
}
.services .services_actions .row .service_item .item_circle img {
  width: 100%;
  height: 100%;
}
.services .services_actions .row .service_item .item_title {
  margin: 24px 0 18px 0;
  font-weight: 600;
  font-size: 22px;
  color: #1C2258;
  position: relative;
  z-index: 2;
}
.services .services_actions .row .service_item .item_description {
  color: #6A6E91;
  font-size: 16px;
  font-weight: 400;
  max-width: 269px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1079px) {
  .services .services_actions .row .service_item .item_description {
    max-width: 220px;
  }
}
.services .services_actions .row .service_item .item_info_buttons {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1079px) {
  .services .services_actions .row .service_item .item_info_buttons {
    padding-top: 45px;
    margin-top: auto;
  }
}
@media (max-width: 767px) {
  .services .services_actions .row .service_item .item_info_buttons {
    flex-direction: column;
    align-items: start;
    gap: 10px 0;
  }
}
.services .services_actions .row .service_item .item_info_buttons .all_btn {
  display: flex;
  align-items: center;
  gap: 0 13px;
}
.services .services_actions .row .service_item .item_info_buttons .all_btn span {
  font-size: 18px;
}
.services .services_actions .row .service_item .item_info_buttons .have_item {
  height: 33px;
  border-radius: 10px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #858CCF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.56px;
}
.services .services_actions .links {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
@media (max-width: 966px) {
  .services .services_actions .links {
    flex-wrap: wrap;
  }
}
.services .services_actions .links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  color: #1C2258;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  height: 53px;
  line-height: normal;
  border-radius: 29px;
  border: 1px solid #E7E7EF;
}
@media (max-width: 1079px) {
  .services .services_actions .links li a {
    padding: 0 24px;
  }
}
.services .services_actions .links li:last-child a {
  color: #FFF;
  background: linear-gradient(100deg, #AD284F 0%, #AD272B 63.1%);
}

.advantages {
  padding: 59px 0 33px 0;
  height: 713px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .advantages {
    padding: 45px 0 30px 0;
    height: 600px;
  }
}
.advantages.red_adv {
  padding-top: 0;
  padding-bottom: 0;
}
.advantages.red_adv .action_btn {
  background: #AD272B;
  color: #fff;
}
.advantages .little_title {
  padding: 0 19px;
  border-radius: 25px;
  border: 1px solid #C1C5F2;
  background: #FFF;
  margin: 0 auto;
  color: #858CCF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 143px;
}
.advantages .section_title {
  margin: 21px 0 31px 0;
}
.advantages .adv_custom {
  position: relative;
  width: 100%;
  height: 390px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.advantages .adv_custom.is-dragging {
  cursor: grabbing;
}
.advantages .adv_track {
  position: relative;
  width: 100%;
  height: 100%;
}
.advantages .adv_card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 326px;
  height: 380px;
  transform: translate(-50%, -50%);
  transition: 0.5s ease;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 0;
}
.advantages .adv_card.is-prev3 {
  transform: translate(-50%, -50%) translateX(-500px) translateY(260px) rotate(-55deg);
  opacity: 0;
}
.advantages .adv_card.is-prev2 {
  transform: translate(-50%, -50%) translateX(-580px) translateY(180px) rotate(-45deg);
  opacity: 1;
  z-index: 2;
}
.advantages .adv_card.is-prev {
  transform: translate(-50%, -50%) translateX(-340px) translateY(40px) rotate(-15deg);
  opacity: 1;
  z-index: 3;
}
.advantages .adv_card.is-active {
  transform: translate(-50%, -50%) translateX(0) translateY(0) rotate(0deg);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
}
.advantages .adv_card.is-next {
  transform: translate(-50%, -50%) translateX(340px) translateY(40px) rotate(15deg);
  opacity: 1;
  z-index: 6;
}
.advantages .adv_card.is-next2 {
  transform: translate(-50%, -50%) translateX(580px) translateY(180px) rotate(45deg);
  opacity: 1;
  z-index: 7;
}
.advantages .adv_card.is-next3 {
  transform: translate(-50%, -50%) translateX(500px) translateY(260px) rotate(55deg);
  opacity: 0;
}
.advantages .adv_item {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.advantages .adv_item.blue_title .item_title {
  color: #1C2258;
}
.advantages .adv_item.bg {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.advantages .adv_item.bg.blue {
  background: #1C2258;
}
.advantages .adv_item.bg.red {
  background: linear-gradient(180deg, #AD272B 0%, #F2666A 56.83%, #AD272B 100%);
}
.advantages .adv_item.bg.blue_desc {
  background: #F3F3F8;
}
.advantages .adv_item.bg.blue_desc .item_description {
  color: #1C2258;
}
.advantages .adv_item.bg.blue_bg {
  background: linear-gradient(180deg, #C1C5F2 2.4%, #858CCF 50.48%, #1C2258 100%);
}
.advantages .adv_item.bg .item_img {
  position: relative;
  left: auto;
  top: auto;
  width: 32.927px;
  height: 30.403px;
  border-radius: 0;
  margin: 65px 0 72px 0;
}
.advantages .adv_item.bg .item_description {
  max-width: 223px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.advantages .adv_item .item_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.advantages .adv_item .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.advantages .adv_item .item_title {
  position: absolute;
  left: 29px;
  top: 29px;
  z-index: 2;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  max-width: 246px;
  line-height: normal;
}
@media (max-width: 1200px) {
  .advantages .adv_card {
    width: 300px;
    height: 360px;
  }
  .advantages .adv_card.is-prev2 {
    transform: translate(-50%, -50%) translateX(-250px) translateY(120px) rotate(-22deg) scale(0.95);
  }
  .advantages .adv_card.is-prev {
    transform: translate(-50%, -50%) translateX(-150px) translateY(40px) rotate(-12deg) scale(0.98);
  }
  .advantages .adv_card.is-next {
    transform: translate(-50%, -50%) translateX(150px) translateY(40px) rotate(12deg) scale(0.98);
  }
  .advantages .adv_card.is-next2 {
    transform: translate(-50%, -50%) translateX(250px) translateY(120px) rotate(22deg) scale(0.95);
  }
}
@media (max-width: 1079px) and (min-width: 968px) {
  .advantages .adv_custom {
    height: 350px;
  }
  .advantages .adv_card {
    width: 235px;
    height: 285px;
  }
  .advantages .adv_card.is-prev3 {
    transform: translate(-50%, -50%) translateX(-260px) translateY(125px) rotate(-40deg) scale(0.87);
    opacity: 0;
  }
  .advantages .adv_card.is-prev2 {
    transform: translate(-50%, -50%) translateX(-182px) translateY(82px) rotate(-24deg) scale(0.92);
    opacity: 1;
    z-index: 2;
  }
  .advantages .adv_card.is-prev {
    transform: translate(-50%, -50%) translateX(-102px) translateY(32px) rotate(-11deg) scale(0.97);
    opacity: 1;
    z-index: 3;
  }
  .advantages .adv_card.is-active {
    transform: translate(-50%, -50%) translateX(0) translateY(0) rotate(0deg) scale(1);
    opacity: 1;
    z-index: 5;
  }
  .advantages .adv_card.is-next {
    transform: translate(-50%, -50%) translateX(102px) translateY(32px) rotate(11deg) scale(0.97);
    opacity: 1;
    z-index: 4;
  }
  .advantages .adv_card.is-next2 {
    transform: translate(-50%, -50%) translateX(182px) translateY(82px) rotate(24deg) scale(0.92);
    opacity: 1;
    z-index: 2;
  }
  .advantages .adv_card.is-next3 {
    transform: translate(-50%, -50%) translateX(260px) translateY(125px) rotate(40deg) scale(0.87);
    opacity: 0;
  }
  .advantages .adv_item {
    border-radius: 24px;
  }
  .advantages .adv_item .item_title {
    left: 18px;
    top: 18px;
    max-width: 175px;
    font-size: 17px;
    line-height: 1.12;
  }
  .advantages .adv_item.bg .item_img {
    width: 28px;
    height: 26px;
    margin: 42px 0 38px 0;
  }
  .advantages .adv_item.bg .item_description {
    max-width: 175px;
    font-size: 13px;
    line-height: 1.2;
  }
}
@media (max-width: 967px) and (min-width: 769px) {
  .advantages .adv_custom {
    height: 335px;
  }
  .advantages .adv_card {
    width: 205px;
    height: 260px;
  }
  .advantages .adv_card.is-prev3 {
    transform: translate(-50%, -50%) translateX(-225px) translateY(115px) rotate(-38deg) scale(0.86);
    opacity: 0;
  }
  .advantages .adv_card.is-prev2 {
    transform: translate(-50%, -50%) translateX(-156px) translateY(72px) rotate(-22deg) scale(0.91);
    opacity: 1;
    z-index: 2;
  }
  .advantages .adv_card.is-prev {
    transform: translate(-50%, -50%) translateX(-88px) translateY(26px) rotate(-10deg) scale(0.96);
    opacity: 1;
    z-index: 3;
  }
  .advantages .adv_card.is-active {
    transform: translate(-50%, -50%) translateX(0) translateY(0) rotate(0deg) scale(1);
    opacity: 1;
    z-index: 5;
  }
  .advantages .adv_card.is-next {
    transform: translate(-50%, -50%) translateX(88px) translateY(26px) rotate(10deg) scale(0.96);
    opacity: 1;
    z-index: 4;
  }
  .advantages .adv_card.is-next2 {
    transform: translate(-50%, -50%) translateX(156px) translateY(72px) rotate(22deg) scale(0.91);
    opacity: 1;
    z-index: 2;
  }
  .advantages .adv_card.is-next3 {
    transform: translate(-50%, -50%) translateX(225px) translateY(115px) rotate(38deg) scale(0.86);
    opacity: 0;
  }
  .advantages .adv_item {
    border-radius: 22px;
  }
  .advantages .adv_item .item_title {
    left: 16px;
    top: 16px;
    max-width: 155px;
    font-size: 15px;
    line-height: 1.12;
  }
  .advantages .adv_item.bg .item_img {
    width: 26px;
    height: 24px;
    margin: 36px 0 32px 0;
  }
  .advantages .adv_item.bg .item_description {
    max-width: 155px;
    font-size: 12px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .advantages .adv_custom {
    height: 330px;
  }
  .advantages .adv_card {
    width: 190px;
    height: 250px;
  }
  .advantages .adv_card.is-prev3 {
    transform: translate(-50%, -50%) translateX(-240px) translateY(120px) rotate(-42deg) scale(0.86);
    opacity: 0;
  }
  .advantages .adv_card.is-prev2 {
    transform: translate(-50%, -50%) translateX(-165px) translateY(78px) rotate(-22deg) scale(0.92);
    opacity: 1;
    z-index: 2;
  }
  .advantages .adv_card.is-prev {
    transform: translate(-50%, -50%) translateX(-92px) translateY(30px) rotate(-10deg) scale(0.97);
    opacity: 1;
    z-index: 3;
  }
  .advantages .adv_card.is-active {
    transform: translate(-50%, -50%) translateX(0) translateY(0) rotate(0deg) scale(1);
    opacity: 1;
    z-index: 5;
  }
  .advantages .adv_card.is-next {
    transform: translate(-50%, -50%) translateX(92px) translateY(30px) rotate(10deg) scale(0.97);
    opacity: 1;
    z-index: 4;
  }
  .advantages .adv_card.is-next2 {
    transform: translate(-50%, -50%) translateX(165px) translateY(78px) rotate(22deg) scale(0.92);
    opacity: 1;
    z-index: 2;
  }
  .advantages .adv_card.is-next3 {
    transform: translate(-50%, -50%) translateX(240px) translateY(120px) rotate(42deg) scale(0.86);
    opacity: 0;
  }
  .advantages .adv_item {
    border-radius: 22px;
  }
  .advantages .adv_item .item_title {
    left: 16px;
    top: 16px;
    max-width: 155px;
    font-size: 15px;
    line-height: 1.12;
  }
  .advantages .adv_item.bg .item_img {
    width: 28px;
    height: 26px;
    margin: 40px 0 34px 0;
  }
  .advantages .adv_item.bg .item_description {
    max-width: 155px;
    font-size: 12px;
    line-height: 1.2;
  }
}
@media (max-width: 480px) {
  .advantages .adv_custom {
    height: 300px;
  }
  .advantages .adv_card {
    width: 168px;
    height: 225px;
  }
  .advantages .adv_card.is-prev2 {
    transform: translate(-50%, -50%) translateX(-140px) translateY(70px) rotate(-20deg) scale(0.9);
  }
  .advantages .adv_card.is-prev {
    transform: translate(-50%, -50%) translateX(-78px) translateY(24px) rotate(-9deg) scale(0.96);
  }
  .advantages .adv_card.is-next {
    transform: translate(-50%, -50%) translateX(78px) translateY(24px) rotate(9deg) scale(0.96);
  }
  .advantages .adv_card.is-next2 {
    transform: translate(-50%, -50%) translateX(140px) translateY(70px) rotate(20deg) scale(0.9);
  }
  .advantages .adv_item .item_title {
    left: 14px;
    top: 14px;
    max-width: 138px;
    font-size: 13px;
  }
  .advantages .adv_item.bg .item_img {
    width: 24px;
    height: 22px;
    margin: 34px 0 28px 0;
  }
  .advantages .adv_item.bg .item_description {
    max-width: 138px;
    font-size: 11px;
  }
}
.advantages .action_btn {
  width: 211px;
  height: 58px;
  border-radius: 63px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C2258;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: absolute;
  right: 0;
  bottom: 33px;
  left: 0;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .advantages .action_btn {
    height: 45px;
    border-radius: 10px;
  }
}

.submit {
  padding: 63px 0 84px 0;
  background: #FFF;
}
@media (max-width: 767px) {
  .submit {
    padding: 30px 0;
  }
}
.submit.white_submit {
  padding-top: 0;
  padding: 0 0 74px 0;
}
.submit.white_submit .submit_form {
  background: #F3F3F8;
  margin: 0;
}
.submit.white_submit .submit_form .section_title, .submit.white_submit .submit_form .item_description {
  color: #1C2258;
}
.submit.white_submit .submit_form .item_inputs input, .submit.white_submit .submit_form .item_inputs .number_input {
  background-color: #EFEFF5;
}
.submit.white_submit .submit_form .item_info, .submit.white_submit .submit_form .item_info a {
  color: #AEB0C4;
}
.submit.blue_submit {
  padding: 37px 0 48px 0;
}
.submit.blue_submit .submit_form {
  margin: 0;
}
.submit .submit_form {
  position: relative;
  border-radius: 35px;
  background: linear-gradient(82deg, #1C2258 38.6%, #495086 94.13%);
  padding: 34px 34px 39px 40px;
  margin-bottom: 64px;
}
@media (max-width: 1079px) {
  .submit .submit_form {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .submit .submit_form {
    padding: 15px;
    border-radius: 10px;
  }
}
.submit .submit_form .item_logo {
  width: 72px;
  height: 40.128px;
  position: absolute;
  right: 34px;
  top: 34px;
}
@media(max-width: 767px) {
  .submit .submit_form .item_logo {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 30px;
  }
}
.submit .submit_form .item_logo img {
  width: 100%;
  height: 100%;
}
.submit .submit_form .item_doctor {
  max-width: 389px;
  width: 100%;
  height: 100%;
  max-height: 402px;
  position: absolute;
  right: 13px;
  bottom: 0;
}
@media (max-width: 1079px) {
  .submit .submit_form .item_doctor {
    max-width: 294px;
    max-height: 342px;
  }
}
@media (max-width: 767px) {
  .submit .submit_form .item_doctor {
    max-width: 150px;
    max-height: 150px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .submit .submit_form .item_doctor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.submit .submit_form .section_title {
  font-size: 34px;
  color: #fff;
  text-align: start;
}
@media (max-width: 767px) {
  .submit .submit_form .section_title {
    font-size: 25px;
  }
}
.submit .submit_form .item_description {
  margin: 17px 0 41px 0;
  max-width: 401px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.submit .submit_form .item_inputs {
  display: flex;
  align-items: center;
  gap: 0 19px;
}
@media (max-width: 966px) {
  .submit .submit_form .item_inputs {
    flex-direction: column;
    gap: 15px 0;
    align-items: start;
    max-width: 400px;
  }
}
.submit .submit_form .item_inputs input, .submit .submit_form .item_inputs .number_input {
  width: 305px;
  height: 71px;
  border: none;
  outline: none;
  border-radius: 18.75px;
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #EFEFF5;
  padding: 0 28px;
}
@media (max-width: 966px) {
  .submit .submit_form .item_inputs input, .submit .submit_form .item_inputs .number_input {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .submit .submit_form .item_inputs input, .submit .submit_form .item_inputs .number_input {
    height: 45px;
    font-size: 14px;
    border-radius: 10px;
  }
}
.submit .submit_form .item_inputs input::placeholder, .submit .submit_form .item_inputs .number_input::placeholder {
  color: #999;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 767px) {
  .submit .submit_form .item_inputs input::placeholder, .submit .submit_form .item_inputs .number_input::placeholder {
    font-size: 14px;
  }
}
.submit .submit_form .item_inputs .number_input {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.submit .submit_form .item_inputs .number_input .fi {
  height: 22px;
  width: 15px;
  flex: 0 0 auto;
}
.submit .submit_form .item_inputs .number_input input {
  padding: 0;
}
.submit .submit_form .red_btn {
  width: 100%;
  height: 71px;
  border-radius: 61.5px;
  background: linear-gradient(93deg, #AD284F 0.71%, #AD272B 79.46%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F9EEEE;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  border: none;
  outline: none;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 966px) {
  .submit .submit_form .red_btn {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .submit .submit_form .red_btn {
    font-size: 14px;
    height: 45px;
    border-radius: 10px;
  }
}
.submit .submit_form .form_actions {
  display: flex;
  flex-direction: column;
  gap: 18px 0;
  width: 100%;
  max-width: 642px;
  margin-bottom: 17px;
}
.submit .submit_form .item_info, .submit .submit_form .item_info a {
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.submit .submit_form .item_info a, .submit .submit_form .item_info a a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (max-width: 966px) {
  .submit .submit_form .item_info {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .submit .submit_form .item_info {
    max-width: 150px;
  }
}
.submit .news .section_title {
  text-align: start;
  color: #AD272B;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .submit .news .section_title {
    font-size: 25px;
  }
}
.submit .news .row {
  margin: 23px 0 38px 0;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
}
.submit .news .row .news_item {
  width: calc(33.3333333333% - 8px);
  background: #F3F3F8;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 966px) {
  .submit .news .row .news_item {
    width: calc(50% - 8px);
  }
}
@media (max-width: 767px) {
  .submit .news .row .news_item {
    border-radius: 10px;
    width: 100%;
  }
}
.submit .news .row .news_item .item_img {
  width: 100%;
  height: 231px;
  overflow: hidden;
}
.submit .news .row .news_item .item_img img {
  width: 100%;
  height: 100%;
}
.submit .news .row .news_item .item_text {
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px 18px;
  justify-content: space-between;
}
.submit .news .row .news_item .item_text .item_title {
  color: #AD272B;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.28px;
}
.submit .news .row .news_item .item_text .item_description {
  color: #1C2258;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 271px;
  margin: 13px 0 21px 0;
}
.submit .news .row .news_item .item_text .item_date {
  color: #999;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
}
.submit .all_btn {
  width: 207px;
  height: 53px;
  color: #1C2258;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 29px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #E7E7EF;
}

.specialists {
  background-color: #fff;
  padding-bottom: 84px;
}
.specialists .section_title {
  text-align: start;
}
.specialists .row {
  align-items: stretch;
  justify-content: space-between;
  gap: 20px 13px;
}
.specialists .row .left_content {
  max-width: 536px;
  width: 100%;
  border-radius: 20px;
  background: #F3F3F8;
}
@media (max-width: 1079px) {
  .specialists .row .left_content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .specialists .row .left_content {
    border-radius: 10px;
  }
}
.specialists .row .left_content .section_title {
  font-size: 44px;
  font-weight: 600;
  padding: 31px 35px 0 31px;
}
@media (max-width: 767px) {
  .specialists .row .left_content .section_title {
    font-size: 25px;
    padding: 15px 15px 0 15px;
  }
}
.specialists .row .left_content .item_img {
  width: 100%;
  height: 130px;
  margin: 27px 0 104px 0;
}
@media (max-width: 767px) {
  .specialists .row .left_content .item_img {
    margin: 20px 0;
  }
}
.specialists .row .left_content .item_img img {
  width: 100%;
  height: 100%;
}
.specialists .row .left_content .item_text {
  display: flex;
  flex-direction: column;
  padding: 0 35px 32px 35px;
}
@media (max-width: 767px) {
  .specialists .row .left_content .item_text {
    padding: 0 15px 15px 15px;
  }
}
.specialists .row .left_content .item_text p {
  color: #1C2258;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 767px) {
  .specialists .row .left_content .item_text p {
    font-size: 16px;
  }
}
.specialists .row .right_content {
  width: 100%;
  max-width: 530px;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
@media (max-width: 1079px) {
  .specialists .row .right_content {
    max-width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
}
.specialists .row .right_content .info_doctor {
  display: flex;
  gap: 0 26px;
  padding: 18px;
  border-radius: 20px;
  background: #F3F3F8;
}
@media (max-width: 1079px) {
  .specialists .row .right_content .info_doctor {
    width: calc(50% - 10px);
    height: auto;
  }
}
@media (max-width: 966px) {
  .specialists .row .right_content .info_doctor {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .specialists .row .right_content .info_doctor {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
  }
}
.specialists .row .right_content .info_doctor .item_img {
  width: 235px;
  height: 318px;
  border-radius: 10px;
  flex: 0 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .specialists .row .right_content .info_doctor .item_img {
    width: 200px;
    height: 200px;
  }
}
.specialists .row .right_content .info_doctor .item_img img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .specialists .row .right_content .info_doctor .item_img img {
    object-fit: cover;
    object-position: top;
  }
}
.specialists .row .right_content .info_doctor .item_text {
  display: flex;
  flex-direction: column;
  max-width: 220px;
}
@media (max-width: 966px) {
  .specialists .row .right_content .info_doctor .item_text {
    max-width: 100%;
  }
}
.specialists .row .right_content .info_doctor .item_text .item_title {
  color: #AD272B;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1079px) {
  .specialists .row .right_content .info_doctor .item_text .item_title {
    font-size: 20px;
  }
}
.specialists .row .right_content .info_doctor .item_text .item_description {
  margin-top: 13px;
  margin-bottom: 10px;
  color: #1C2258;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.specialists .row .right_content .info_doctor .item_text .all_btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0 13px;
}
.specialists .row .right_content .info_doctor .item_text .all_btn span {
  font-size: 17px;
}
.specialists .row .right_content .view_all {
  height: 264px;
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1079px) {
  .specialists .row .right_content .view_all {
    width: calc(50% - 10px);
    height: auto;
  }
}
@media (max-width: 966px) {
  .specialists .row .right_content .view_all {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .specialists .row .right_content .view_all {
    border-radius: 10px;
    height: 300px;
  }
}
.specialists .row .right_content .view_all .item_img {
  width: 100%;
  height: 100%;
}
.specialists .row .right_content .view_all .item_img img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1079px) {
  .specialists .row .right_content .view_all .item_img img {
    object-fit: cover;
  }
}
.specialists .row .right_content .view_all .left_info {
  position: absolute;
  left: 23px;
  top: 20px;
  max-width: 156px;
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .specialists .row .right_content .view_all .left_info {
    left: 15px;
    top: 15px;
  }
}
.specialists .row .right_content .view_all .all_btn {
  position: absolute;
  right: 27px;
  top: 27px;
  display: flex;
  align-items: center;
  gap: 0 16px;
}
@media (max-width: 767px) {
  .specialists .row .right_content .view_all .all_btn {
    right: 15px;
    top: auto;
    bottom: 15px;
  }
}
.specialists .row .right_content .view_all .all_btn span {
  color: #fff;
  font-size: 17px;
}

.reviews {
  padding: 61px 0 70px 0;
}
@media (max-width: 767px) {
  .reviews {
    padding: 30px 0;
  }
}
.reviews .container {
  position: relative;
}
.reviews .container .item_logo_img {
  position: absolute;
  right: 0;
  top: -85px;
}
.reviews .small_title {
  padding: 0 19px;
  height: 40px;
  border-radius: 25px;
  border: 1px solid #C1C5F2;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 91px;
  color: #858CCF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.reviews .section_title {
  max-width: 491px;
  margin: 21px auto 30px auto;
}
@media (max-width: 767px) {
  .reviews .section_title {
    max-width: 100%;
  }
}
.reviews .much_comments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 103px;
}
@media (max-width: 767px) {
  .reviews .much_comments {
    flex-direction: column;
    gap: 20px 0;
  }
}
.reviews .much_comments .item_img {
  position: relative;
}
.reviews .much_comments .item_img::after {
  content: "";
  right: -53px;
  position: absolute;
  height: 49px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #C1C5F2;
  margin: auto;
}
@media (max-width: 767px) {
  .reviews .much_comments .item_img::after {
    display: none;
  }
}
.reviews .much_comments .numbers {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.reviews .much_comments .numbers .big_numb {
  margin: 0;
  max-width: none;
  font-weight: 600;
  font-family: Montserrat;
}
.reviews .much_comments .numbers .item_stars {
  display: flex;
  flex-direction: column;
  gap: 9px 0;
}
.reviews .much_comments .numbers .item_stars .item_yandex {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.reviews .much_comments .numbers .item_stars .item_yandex .com_numbers {
  color: #8C8FAB;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.reviews .row {
  align-items: stretch;
  justify-content: space-between;
  margin: 70px 0 46px 0;
}
@media (max-width: 966px) {
  .reviews .row {
    gap: 15px 0;
  }
}
@media (max-width: 767px) {
  .reviews .row {
    margin: 30px 0;
  }
}
.reviews .row .comment_item {
  padding: 24px;
  border-radius: 20px;
  background: #FFF;
  width: calc(33.3333333333% - 10px);
}
@media (max-width: 966px) {
  .reviews .row .comment_item {
    width: calc(50% - 8px);
  }
}
@media (max-width: 767px) {
  .reviews .row .comment_item {
    width: 100%;
    border-radius: 10px;
  }
}
.reviews .row .comment_item .item_name {
  color: #1C2258;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.reviews .row .comment_item .item_description {
  color: #6C6F92;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 13px 0 21px 0;
}
.reviews .row .comment_item .all_btn {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.reviews .row .comment_item .all_btn span {
  color: #AD272B;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.reviews .view_all_com {
  padding: 0 25px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 29px;
  background: #858CCF;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto;
  max-width: 219px;
}
@media (max-width: 767px) {
  .reviews .view_all_com {
    border-radius: 10px;
    height: 45px;
    font-size: 14px;
  }
}

.articles {
  padding: 83px 0 73px 0;
  background-color: #fff;
}
@media (max-width: 767px) {
  .articles {
    padding: 45px 0;
  }
}
.articles .section_title {
  text-align: start;
  color: #AD272B;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .articles .section_title {
    font-size: 24px;
  }
}
.articles .row {
  margin: 32px 0;
  align-items: end;
  gap: 0 27px;
}
@media (max-width: 966px) {
  .articles .row {
    align-items: start;
  }
}
@media (max-width: 767px) {
  .articles .row {
    margin: 25px 0;
    gap: 25px 0;
  }
}
.articles .row .left_content {
  width: 100%;
  max-width: 715px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 15px 0;
  flex: 0 0 auto;
  justify-content: space-between;
}
@media (max-width: 1079px) {
  .articles .row .left_content {
    max-width: 574px;
  }
}
@media (max-width: 966px) {
  .articles .row .left_content {
    max-width: 100%;
  }
}
.articles .row .left_content .art_item {
  width: calc(50% - 8px);
  flex: 0 0 auto;
  border-radius: 20px;
  background: #F3F3F8;
  overflow: hidden;
}
@media (max-width: 966px) {
  .articles .row .left_content .art_item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .articles .row .left_content .art_item {
    border-radius: 10px;
  }
}
.articles .row .left_content .art_item .item_img {
  width: 100%;
  height: 191px;
}
.articles .row .left_content .art_item .item_img img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1079px) {
  .articles .row .left_content .art_item .item_img img {
    object-fit: cover;
  }
}
.articles .row .left_content .art_item .item_text {
  padding: 16px 22px 24px 22px;
}
.articles .row .left_content .art_item .item_text .item_date {
  color: #999;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
}
.articles .row .left_content .art_item .item_text .item_description {
  color: #1C2258;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 282px;
  margin: 15px 0 17px 0;
}
.articles .row .left_content .art_item .item_text .more_item_link {
  color: #AD272B;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.28px;
}
.articles .row .right_content {
  max-width: 337px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media (max-width: 767px) {
  .articles .row .right_content {
    max-width: 100%;
    gap: 20px 0;
  }
}
.articles .row .right_content .item_title {
  color: #1C2258;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .articles .row .right_content .item_title {
    font-size: 20px;
  }
}
.articles .row .right_content .mini_art_item {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.articles .row .right_content .mini_art_item .item_img {
  width: 97px;
  height: 97px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 auto;
}
.articles .row .right_content .mini_art_item .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles .row .right_content .mini_art_item .item_text {
  display: flex;
  flex-direction: column;
  gap: 7px 0;
}
.articles .row .right_content .mini_art_item .item_text .item_title {
  color: #AD272B;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
}
.articles .row .right_content .mini_art_item .item_text .item_description {
  color: #1C2258;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 212px;
}
.articles .row .right_content .mini_art_item .item_text .item_date {
  color: #999;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
}
.articles .all_btn {
  width: 207px;
  height: 53px;
  border-radius: 29px;
  border: 1.5px solid #E7E7EF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #1C2258;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .articles .all_btn {
    border-radius: 10px;
    height: 45px;
    font-size: 14px;
  }
}

.contacts {
  padding-bottom: 100px;
  background-color: #fff;
}
.contacts.social_info {
  padding-top: 123px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .contacts.social_info {
    padding-top: 100px;
  }
}
.contacts.social_info .last {
  max-width: none;
}
.contacts.social_info .last .item_description {
  margin-left: auto;
  max-width: 414px;
  display: block;
  margin-top: 22px;
  text-align: end;
}
.contacts.social_info .item_description {
  display: flex;
  align-items: stretch;
  gap: 10px 30px;
  justify-content: end;
  max-width: none;
}
@media (max-width: 767px) {
  .contacts.social_info .item_description {
    gap: 10px;
  }
}
.contacts.social_info .item_description li a {
  transition: 0.5s all ease;
}
.contacts.social_info .item_description li a:hover svg path {
  fill: #AD272B;
}
.contacts.social_info .item_description li a svg {
  transition: 0.5s all ease;
}
@media (max-width: 767px) {
  .contacts.social_info .item_description li a svg {
    width: 20px;
    height: 20px;
  }
}
.contacts .title_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.contacts .title_info .section_title {
  color: #AD272B;
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contacts .title_info .section_title {
    font-size: 25px;
  }
}
.contacts .title_info .item_description {
  width: 100%;
  max-width: 414px;
  color: #999;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
}
.contacts .title_info .item_description span {
  color: #AD272B;
}
.contacts .row {
  display: flex;
  align-items: stretch;
  gap: 15px 10px;
  margin-top: 21px;
  justify-content: space-between;
}
@media (max-width: 1079px) {
  .contacts .row {
    gap: 15px 0;
  }
}
.contacts .row .left_info {
  width: 100%;
  max-width: 474px;
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 1079px) {
  .contacts .row .left_info {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .contacts .row .left_info {
    width: 100%;
  }
}
.contacts .row .left_info .info_item {
  width: calc(50% - 5px);
  border-radius: 15px;
  background: #F3F3F8;
  height: 154px;
  display: flex;
  padding: 18px;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contacts .row .left_info .info_item {
    border-radius: 10px;
    width: 100%;
  }
}
.contacts .row .left_info .info_item:nth-child(2) {
  background: linear-gradient(180deg, #AD272B 0%, #F2666A 56.83%, #AD272B 100%), #AD272B;
}
.contacts .row .left_info .info_item:nth-child(2) .item_title {
  color: rgba(255, 255, 255, 0.67);
}
.contacts .row .left_info .info_item:nth-child(2) .info_description p {
  color: #fff;
}
.contacts .row .left_info .info_item .item_title {
  color: #999;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
}
.contacts .row .left_info .info_item .info_description {
  display: flex;
  flex-direction: column;
  gap: 7px 0;
}
.contacts .row .left_info .info_item .info_description a, .contacts .row .left_info .info_item .info_description p {
  color: #1C2258;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.contacts .row .left_info .info_item .info_description a span, .contacts .row .left_info .info_item .info_description p span {
  color: #AD272B;
}
.contacts .row .right_map {
  width: 100%;
  max-width: 595px;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 1079px) {
  .contacts .row .right_map {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .contacts .row .right_map {
    border-radius: 10px;
    width: 100%;
    height: 250px;
  }
}
.contacts .row .right_map iframe {
  width: 100%;
  height: 100%;
}

footer {
  background-color: #F3F3F8;
  padding: 48px 0 0 0;
}
@media (max-width: 767px) {
  footer {
    padding: 20px 0 0 0;
  }
}
footer .footer_logo {
  width: 329px;
  display: flex;
  height: 55.941px;
}
@media (max-width: 767px) {
  footer .footer_logo {
    width: 250px;
    height: 40px;
  }
}
footer .footer_logo img {
  width: 100%;
  height: 100%;
}
footer .row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px 0;
}
footer .row.first_row {
  margin: 30px 0 36px 0;
}
footer .row.second_row {
  align-items: end;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  footer .row.second_row {
    margin-bottom: 30px;
  }
}
footer .row.second_row .item_left .item_title {
  display: flex;
  align-items: center;
  gap: 0 7px;
  margin-bottom: 25px;
}
footer .row.second_row .item_left .item_description {
  display: flex;
  align-items: stretch;
  gap: 0 25px;
  flex-direction: row;
  margin: 0;
}
footer .row.second_row .right_item {
  display: flex;
  width: 100%;
  max-width: 649px;
  gap: 0 38px;
}
@media (max-width: 767px) {
  footer .row.second_row .right_item {
    gap: 20px;
  }
}
footer .row.second_row .right_item .links li:first-child {
  margin-bottom: 9px;
}
footer .row.second_row .right_item .links li .licence {
  border-radius: 14.033px;
  background: #FFF;
  display: flex;
  justify-content: space-between;
  gap: 0 25px;
  width: 301px;
  padding: 12px 20px 12px 12px;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  footer .row.second_row .right_item .links li .licence {
    margin-bottom: 0;
  }
}
footer .row.second_row .right_item .links li .licence .left_item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 188px;
  flex: 0 0 auto;
}
footer .row.second_row .right_item .links li .licence .left_item .item_img {
  display: flex;
  align-items: start;
  gap: 0 11px;
}
footer .row.second_row .right_item .links li .licence .left_item .item_img img {
  width: 23.84px;
  height: 28.084px;
}
footer .row.second_row .right_item .links li .licence .left_item .item_img span {
  color: #1C2258;
  font-family: Raleway;
  font-size: 8.42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  max-width: 153px;
  text-transform: uppercase;
}
footer .row.second_row .right_item .links li .licence .left_item .item_title {
  margin: 10px 0 4px 0;
  color: #1C2258;
  font-family: Montserrat;
  font-size: 8.42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer .row.second_row .right_item .links li .licence .left_item .yuridik {
  color: #1C2258;
  font-family: Montserrat;
  font-size: 5.613px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
footer .row.second_row .right_item .links li .licence .right_item {
  width: 56.131px;
  height: 56.131px;
}
footer .row.second_row .right_item .links li .licence .right_item img {
  width: 100%;
  height: 100%;
}
footer .row .normal_text, footer .row .item_description span, footer .row .item_description .item_text, footer .row .more_btn, footer .row .right_item .links li a {
  color: #6C6F92;
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.2px;
}
footer .row .item_left {
  width: 100%;
  max-width: 248px;
}
footer .row .item_left .item_description {
  display: flex;
  flex-direction: column;
  margin: 10px 0 38px 0;
}
footer .row .item_left .item_description .item_text {
  gap: 0 5px;
}
footer .row .item_left .item_description .item_text span {
  font-weight: 600;
}
footer .row .item_left .more_btn {
  font-weight: 700;
}
footer .row .right_item {
  display: flex;
  align-items: start;
  justify-content: end;
  gap: 0 65px;
}
@media (max-width: 767px) {
  footer .row .right_item {
    flex-wrap: wrap;
    align-items: start;
    gap: 30px;
    justify-content: start;
  }
}
footer .row .right_item .links {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
footer .row .right_item .links li:first-child {
  margin-bottom: 16px;
}
footer .row .right_item .links li span {
  color: #AD272B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.16px;
}
footer .row .right_item .links li a {
  font-size: 12px;
}
footer .consulation {
  width: 100%;
  padding: 40px 0 27px 0;
  background: #F7F7FA;
}
footer .consulation .text_description {
  text-align: center;
  max-width: 1134px;
  width: 100%;
  color: #6C6F92;
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.3px;
}
footer .consulation .text_description span {
  font-size: 18px;
  font-weight: 500;
}

.about {
  height: 453px;
  position: relative;
}
@media (max-width: 1079px) {
  .about {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .about {
    height: 250px;
  }
}
.about .bg_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about .bg_img img {
  height: 100%;
  width: 100%;
}
.about .container {
  position: relative;
  height: 100%;
}
.about .container .section_title {
  color: #FFF;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  left: var(--container-left);
  bottom: 55px;
  z-index: 2;
}
@media (max-width: 966px) {
  .about .container .section_title {
    font-size: 45px;
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .about .container .section_title {
    font-size: 30px;
    bottom: 20px;
    left: 10px;
  }
}

.doctor {
  padding: 50px 0 48px 0;
  background-color: #fff;
}
.doctor .item_title {
  color: #1C2258;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .doctor .item_title {
    font-size: 20px;
  }
}
.doctor .item_title span {
  color: #AD272B;
}
.doctor .row {
  justify-content: space-between;
  align-items: end;
  gap: 20px 0;
}
@media (max-width: 966px) {
  .doctor .row {
    align-items: start;
    gap: 150px;
  }
}
.doctor .row .left_item {
  max-width: 635px;
}
@media (max-width: 1079px) {
  .doctor .row .left_item {
    max-width: 485px;
  }
}
@media (max-width: 966px) {
  .doctor .row .left_item {
    max-width: 100%;
  }
}
.doctor .row .left_item .item_description {
  color: #1C2258;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 24px 0 64px 0;
}
@media (max-width: 767px) {
  .doctor .row .left_item .item_description {
    margin: 15px 0 20px 0;
    font-size: 16px;
  }
}
.doctor .row .left_item .item_privacy {
  border-radius: 14.033px;
  background: #F3F3F8;
  width: 100%;
  max-width: 301px;
  padding: 13px 20px 12px 12px;
  justify-content: space-between;
  display: flex;
  align-items: start;
  gap: 10px;
}
.doctor .row .left_item .item_privacy .item_img {
  display: flex;
  align-items: start;
  gap: 11px;
}
.doctor .row .left_item .item_privacy .item_img img {
  width: 23.84px;
  height: 28.084px;
}
.doctor .row .left_item .item_privacy .item_img span {
  max-width: 154px;
  color: #1C2258;
  font-size: 8.42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.doctor .row .left_item .item_privacy .item_name {
  margin: 10px 0 4px 0;
  color: #1C2258;
  font-family: Montserrat;
  font-size: 8.42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.doctor .row .left_item .item_privacy .more_btn {
  color: #1C2258;
  display: flex;
  font-family: Montserrat;
  font-size: 5.613px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.doctor .row .left_item .qr_code {
  width: 56.131px;
  height: 56.131px;
}
.doctor .row .right_item {
  width: 100%;
  max-width: 441px;
  position: relative;
}
@media (max-width: 966px) {
  .doctor .row .right_item {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .doctor .row .right_item {
    max-width: 100%;
    margin-left: 0;
  }
}
.doctor .row .right_item .item_img {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 362px;
  max-height: 440px;
  z-index: 1;
}
@media (max-width: 767px) {
  .doctor .row .right_item .item_img {
    max-width: 350px;
    bottom: auto;
    top: -150px;
    max-width: 200px;
  }
}
.doctor .row .right_item .item_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.doctor .row .right_item .right_row {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px 10px;
  position: relative;
  z-index: 2;
  border-radius: 22px;
  background: #F3F3F8;
  padding: 22px 25px 30px 22px;
}
@media (max-width: 767px) {
  .doctor .row .right_item .right_row {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
  }
}
.doctor .row .right_item .right_row .item_left {
  max-width: 225px;
  display: flex;
  flex-direction: column;
  gap: 17px 0;
}
@media (max-width: 767px) {
  .doctor .row .right_item .right_row .item_left {
    gap: 5px 0;
  }
}
.doctor .row .right_item .right_row .item_left .item_title {
  color: #AD272B;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.doctor .row .right_item .right_row .item_left .item_job {
  color: #1C2258;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.doctor .row .right_item .right_row .info {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}
.doctor .row .right_item .right_row .info li {
  display: flex;
  align-items: center;
  gap: 0 9px;
}
.doctor .row .right_item .right_row .info li span:first-child {
  color: #1C2258;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.doctor .row .right_item .right_row .info li span:last-child {
  color: #1C2258;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.doctor .hospital_img {
  margin-top: 75px;
}
.doctor .hospital_img .swiper-wrapper .swiper-slide {
  height: auto;
  width: 446px;
}
@media (max-width: 767px) {
  .doctor .hospital_img .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
.doctor .hospital_img .swiper-wrapper .swiper-slide .hosital_item {
  overflow: hidden;
  width: 100%;
  height: 335px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .doctor .hospital_img .swiper-wrapper .swiper-slide .hosital_item {
    height: 200px;
  }
}
.doctor .hospital_img .swiper-wrapper .swiper-slide .hosital_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doctor .doct_moti {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 0;
  margin-top: 48px;
  position: relative;
}
@media (max-width: 966px) {
  .doctor .doct_moti {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .doctor .doct_moti {
    margin-top: 25px;
    gap: 0;
  }
}
.doctor .doct_moti .item_thing {
  position: absolute;
  right: 0;
  top: 48px;
}
@media (max-width: 966px) {
  .doctor .doct_moti .item_thing {
    right: auto;
    top: auto;
    bottom: 160px;
    left: 0;
  }
}
.doctor .doct_moti .left_content {
  max-width: 383px;
  max-height: 383px;
  height: 100%;
  width: 100%;
}
.doctor .doct_moti .left_content img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
.doctor .doct_moti .right_content {
  max-width: 605px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 21px 0;
  position: relative;
  z-index: 2;
}
.doctor .doct_moti .right_content .item_profile {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
.doctor .doct_moti .right_content .item_profile img {
  width: 64px;
  border-radius: 10px;
  overflow: hidden;
  height: 64px;
}
.doctor .doct_moti .right_content .item_profile .item_text {
  display: flex;
  flex-direction: column;
  gap: 7px 0;
}
.doctor .doct_moti .right_content .item_profile .item_text .item_name, .doctor .doct_moti .right_content .item_profile .item_text .item_job {
  color: #1C2258;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.doctor .doct_moti .right_content .item_profile .item_text .item_job {
  font-size: 12px;
  font-weight: 400;
}

.aprroach {
  padding: 55px 0 74px 0;
  background-color: #fff;
  overflow: hidden;
}
.aprroach .little_title {
  display: flex;
  align-items: center;
  gap: 15px;
}
.aprroach .section_title {
  font-size: 40px;
  max-width: 557px;
  text-align: start;
  margin: 29px 0 43px 0;
}
@media (max-width: 767px) {
  .aprroach .section_title {
    font-size: 25px;
  }
}
.aprroach .row {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 15px;
  width: max-content;
  margin-left: var(--container-left);
}
@media (max-width: 1079px) {
  .aprroach .row {
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 966px) {
  .aprroach .row {
    padding: 0 15px;
    overflow: hidden;
  }
}
.aprroach .row .approach_item {
  width: clamp(300px, 33.125vw, 636px);
  height: 318px;
  padding: 32px;
  flex: 0 0 477px;
  border-radius: 20px;
  background: #858CCF;
  overflow: hidden;
  position: relative;
}
@media (max-width: 966px) {
  .aprroach .row .approach_item {
    width: 100%;
    flex: auto;
  }
}
@media (max-width: 767px) {
  .aprroach .row .approach_item {
    border-radius: 10px;
    padding: 15px;
    height: 300px;
  }
}
.aprroach .row .approach_item:nth-child(2) {
  padding: 0;
}
.aprroach .row .approach_item:nth-child(2) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.aprroach .row .approach_item:nth-child(3) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 66px 0;
  background: rgba(173, 39, 43, 0.11);
}
@media (max-width: 767px) {
  .aprroach .row .approach_item:nth-child(3) {
    gap: 0;
  }
}
.aprroach .row .approach_item:nth-child(3) .item_title {
  color: #1C2258;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .aprroach .row .approach_item:nth-child(3) .item_title {
    font-size: 20px;
  }
}
.aprroach .row .approach_item:nth-child(3) .item_description {
  color: #1C2258;
  font-size: 14px;
  font-weight: 400;
}
.aprroach .row .approach_item .item_description {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .aprroach .row .approach_item .item_description {
    font-size: 16px;
  }
}
.aprroach .row .approach_item .item_img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.aprroach .row .approach_item .item_img img {
  display: block;
}

.clinic {
  padding: 31px 0 0 0;
  background-color: #fff;
}
.clinic .section_title {
  text-align: start;
  font-size: 24px;
  margin-bottom: 17px;
}
.clinic .row {
  display: flex;
  align-items: stretch;
  gap: 15px 16px;
  flex-wrap: wrap;
}
@media (max-width: 1079px) {
  .clinic .row {
    justify-content: space-between;
    gap: 15px 0;
  }
}
.clinic .row .clinic_item {
  width: 100%;
  max-width: 258px;
  border-radius: 15px;
  overflow: hidden;
  height: 184px;
}
@media (max-width: 1079px) {
  .clinic .row .clinic_item {
    width: calc(50% - 8px);
    flex: 0 0 auto;
    border-radius: 10px;
    height: 250px;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .clinic .row .clinic_item {
    width: 100%;
    height: 200px;
  }
}
.clinic .row .clinic_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.documents {
  padding-top: 90px;
  background-color: #fff;
  padding-bottom: 86px;
}
.documents.link_time {
  padding-top: 154px;
}
@media (max-width: 767px) {
  .documents.link_time {
    padding-top: 120px;
  }
}
.documents.link_time .more_info_links {
  display: flex;
  align-items: start;
  gap: 25px 70px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.documents.link_time .more_info_links .left_links {
  width: 100%;
  max-width: 558px;
  height: auto;
  position: relative;
}
@media (max-width: 1079px) {
  .documents.link_time .more_info_links .left_links {
    max-width: 100%;
  }
}
.documents.link_time .more_info_links .left_links::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #C1C5F2;
  right: -38px;
  top: 0;
}
@media (max-width: 1079px) {
  .documents.link_time .more_info_links .left_links::after {
    display: none;
  }
}
.documents.link_time .more_info_links .left_links .item_title {
  color: #1C2258;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 32px;
}
.documents.link_time .more_info_links .left_links .item_description {
  color: #1C2258;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
  padding-bottom: 85px;
  border-bottom: 1px solid #C1C5F2;
  margin-bottom: 49px;
}
.documents.link_time .more_info_links .left_links .more_phones .item_title {
  font-family: Montserrat;
  font-size: 16px;
}
.documents.link_time .more_info_links .left_links .more_phones:nth-child(3) {
  margin-bottom: 59px;
  padding-bottom: 92px;
  border-bottom: 1px solid #C1C5F2;
}
.documents.link_time .more_info_links .left_links .more_phones ul {
  display: flex;
  flex-direction: column;
  gap: 58px 0;
  width: 100%;
  max-width: 483px;
}
.documents.link_time .more_info_links .left_links .more_phones ul li {
  display: flex;
  align-items: start;
  gap: 10px 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.documents.link_time .more_info_links .left_links .more_phones ul li .item_info, .documents.link_time .more_info_links .left_links .more_phones ul li .item_info a {
  color: rgba(28, 34, 88, 0.6);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.24px;
}
.documents.link_time .more_info_links .left_links .more_phones ul li .item_name {
  color: #1C2258;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
  margin-bottom: 5px;
}
.documents.link_time .more_info_links .left_links .more_phones ul li a {
  display: block;
  width: 100%;
  word-wrap: break-word;
}
.documents.link_time .more_info_links .left_links .more_phones ul li .left_item, .documents.link_time .more_info_links .left_links .more_phones ul li .right_item {
  max-width: 234px;
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.documents.link_time .more_info_links .left_links .more_phones ul li .right_item {
  max-width: 227px;
}
.documents.link_time .more_info_links .right_links {
  width: 100%;
  max-width: 452px;
}
.documents.link_time .more_info_links .right_links .item_title {
  color: #1C2258;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: normal;
}
.documents.link_time .more_info_links .right_links .licence {
  color: #1C2258;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  display: block;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.3px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 14px;
}
.documents.link_time .more_info_links .right_links .item_little_title {
  color: #1C2258;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.3px;
  max-width: 367px;
  margin-bottom: 16px;
}
.documents.link_time .more_info_links .right_links .normal_info {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  margin-bottom: 57px;
}
.documents.link_time .more_info_links .right_links .normal_info li {
  list-style-type: disc;
  color: #1C2258;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.3px;
}
.documents.link_time .more_info_links .right_links .main_links {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  padding-bottom: 45px;
  border-bottom: 1px solid #C1C5F2;
  margin-bottom: 60px;
}
.documents.link_time .more_info_links .right_links .main_links li {
  display: flex;
  align-items: start;
  gap: 0 24px;
}
.documents.link_time .more_info_links .right_links .main_links li a {
  color: #1C2258;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.3px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.documents.link_time .more_info_links .right_links .main_links li .down_btn {
  display: flex;
  align-items: center;
  gap: 0 9px;
  text-decoration: none;
}
.documents.link_time .more_info_links .right_links .main_links li .down_btn span {
  color: #AD272B;
}
.documents.link_time .more_info_links .right_links .more_another_links {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  max-width: 397px;
}
.documents.link_time .more_info_links .right_links .more_another_links li a {
  color: rgba(28, 34, 88, 0.6);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
}
.documents .search_bar {
  width: 100%;
  padding: 84px 30px 40px 30px;
  border-radius: 20px;
  background: linear-gradient(0deg, #1C2258 0%, #1C2258 100%), url(../img/search_bar.jpg) lightgray 50%/cover no-repeat;
  background-blend-mode: hue, normal;
  background-repeat: no-repeat;
  margin-bottom: 41px;
}
@media (max-width: 767px) {
  .documents .search_bar {
    padding: 30px;
  }
}
.documents .search_bar .section_title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 767px) {
  .documents .search_bar .section_title {
    font-size: 25px;
  }
}
.documents .search_bar .item_information {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.3px;
  max-width: 470px;
  margin: 24px auto 55px auto;
}
.documents .search_bar .item_input {
  display: flex;
  align-items: center;
  max-width: 460px;
  height: 56px;
  padding: 0 20px;
  border-radius: 15px;
  background: #F3F3F8;
  margin: 0 auto;
  gap: 0 15px;
}
.documents .search_bar .item_input input {
  height: 100%;
  width: 100%;
  background-color: #F3F3F8;
  border: none;
  outline: none;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.documents .search_bar .item_input input::placeholder {
  color: #9093AE;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.documents .search_bar .item_input button {
  border: none;
  outline: none;
  background-color: transparent;
}
.documents .documents_item {
  display: flex;
  flex-direction: column;
  gap: 23px 0;
}
.documents .documents_item:nth-child(3) {
  margin-top: 74px;
}
.documents .documents_item:nth-child(3) .document_title span {
  color: #D45559;
}
.documents .documents_item:nth-child(3) .row .doc_item {
  background: rgba(173, 39, 43, 0.09);
}
.documents .documents_item:nth-child(3) .row .doc_item .action_btns a:nth-child(2) {
  background: #AD272B;
}
.documents .documents_item:nth-child(4) {
  margin-top: 46px;
}
.documents .documents_item:nth-child(4) .document_title span {
  color: #A4C100;
}
.documents .documents_item:nth-child(4) .row .doc_item {
  background: #E9F0C2;
}
.documents .documents_item:nth-child(4) .row .doc_item .action_btns a:nth-child(2) {
  background: #A4C100;
}
.documents .documents_item:nth-child(5) {
  margin-top: 44px;
}
.documents .documents_item:nth-child(5) .row {
  justify-content: start;
  gap: 16px;
}
.documents .documents_item .document_title {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.documents .documents_item .document_title span {
  color: #666C9F;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.documents .documents_item .row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px 0;
}
.documents .documents_item .row .doc_item {
  padding: 23px 25px 20px 26px;
  border-radius: 20px;
  background: #F3F3F8;
  width: calc(33.3333333333% - 5px);
  min-height: 169px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1079px) {
  .documents .documents_item .row .doc_item {
    width: calc(50% - 5px);
  }
}
@media (max-width: 767px) {
  .documents .documents_item .row .doc_item {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
  }
}
.documents .documents_item .row .doc_item .item_title {
  color: #1C2258;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 249px;
}
@media (max-width: 767px) {
  .documents .documents_item .row .doc_item .item_title {
    margin-bottom: 50px;
  }
}
.documents .documents_item .row .doc_item .action_btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .documents .documents_item .row .doc_item .action_btns {
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
  }
}
.documents .documents_item .row .doc_item .action_btns a {
  height: 36px;
  padding: 0 27px;
  border-radius: 25px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C2258;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.documents .documents_item .row .doc_item .action_btns a:nth-child(2) {
  background: #1C2258;
  color: #fff;
  flex: 0 0 auto;
}/*# sourceMappingURL=main.css.map */