@charset "UTF-8";
/*  Стиль для сайта "ООО Визит" */
/* -- General styles -- */
/* Шрифт */
* {
  box-sizing: border-box;
}

:root {
  font-size: 10px; /* 1rem = 10px */
  font-family: Montserrat;
  color: #505050;
  font-weight: normal;
}

html, body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  max-width: 100%;
}

.global-wrap {
  display: flex;
  flex-direction: column;
  width: inherit;
  max-width: inherit;
  height: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
} /* Ссылки */
h1, h2, h3, h4, h5, h6 { /* Заголовки */
  color: #505050;
  font-family: Montserrat;
  cursor: default;
}

h1 {
  font-size: 3.4rem;
  font-weight: 500;
}

h2 {
  font-size: 3.2rem;
  font-weight: 500;
  margin: 3% auto 3% auto;
}

h3 {
  font-size: 3.2rem;
  font-weight: 500;
  margin: 3% auto 1% auto;
}

h4 {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 1% auto 3% auto;
}

h5 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 1% auto 3% auto;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
}

p { /* Обычный текст */
  font-size: 1.2rem;
  font-family: Montserrat;
  margin: 0;
}

.color-block-A {
  background-color: #F1FDFF;
}

.color-block-B {
  background-color: #EDF9FF;
}

.color-block-C {
  background-color: #FEF5FF;
}

.color-text-A {
  color: #6BDFF9;
}

.color-text-B {
  color: #40C0FF;
}

.color-text-C {
  color: #F19FF8;
}

.button { /* Кнопка */
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #fffefd;
  padding: 10px 45px;
  font: 1.6rem Montserrat;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 45px;
  border: 2px solid transparent;
  background-color: #35b4f3;
  transition: all 0.3s ease 0s;
}

.button:hover {
  color: #35b4f3;
  background-color: #fffefd;
  border-color: #35b4f3;
  transition: all 0.3s ease 0s;
}

.button-alternate { /* Кнопка альтернативная*/
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #35b4f3;
  padding: 10px 45px;
  font: 1.6rem Montserrat;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 45px;
  border: 2px solid #35b4f3;
  background-color: #fffefd;
  transition: all 0.3s ease 0s;
}

.button-alternate:hover {
  color: #fffefd;
  background-color: #35b4f3;
  transition: all 0.3s ease 0s;
}

/* Формы */
input, textarea {
  display: block;
  outline: none;
  padding: 15px 20px;
  font: 1.8rem Montserrat;
  border-radius: 45px;
  background-color: #fffefd;
  border: 1px solid #dcdcdc;
  transition: all 0.3s ease 0s;
}

label {
  display: flex;
  align-items: center;
  position: relative;
}

/* -- Кнопка Наверх -- */
.button-up {
  display: inline;
  position: fixed;
  right: 15px;
  bottom: 50px;
  border-radius: 50%;
  background: #9ADEFF;
  height: 50px;
  width: 50px;
  font-size: 3rem;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 25;
  opacity: 0.5;
  transition: all 0.3s ease 0s;
}
.button-up i {
  display: inline-block;
  color: #fffefd;
  transition: all 0.3s ease 0s;
}

.button-up:hover {
  opacity: 1;
  transition: all 0.3s ease 0s;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  font-family: Montserrat;
  gap: 5px;
  height: 40px;
  margin: 30px auto 20px auto;
}

.pagination-page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 1.6rem;
  color: #9c9c9c;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.3s ease 0s;
}
.pagination-page:hover {
  background-color: #b3dbeb;
  transition: all 0.3s ease 0s;
}

.current {
  color: #fffefd;
  background-color: #35b4f3;
  transition: all 0.3s ease 0s;
}

.pagination-nav {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #9c9c9c;
  margin: 0 5px;
  transition: all 0.3s ease 0s;
}
.pagination-nav:hover {
  color: #35b4f3;
  transition: all 0.3s ease 0s;
}

/* Slider Arrows */
.slider-prev, .slider-next {
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: #F8F8F8;
  font-size: 3.5rem;
  width: 60px;
  height: 60px;
  top: calc(50% - 20px);
  cursor: pointer;
  transition: all 0.3s ease 0s;
  z-index: 20;
  background: #9ADEFF;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(64, 192, 255, 0.65);
  transition: all 0.3s ease 0s;
}

.slider-prev:hover, .slider-next:hover {
  background: #7dd2fc;
  box-shadow: 0px 0px 20px 2px rgba(64, 192, 255, 0.75);
  transition: all 0.3s ease 0s;
}

.slider-prev {
  left: -45px;
}

.slider-next {
  right: -45px;
}

/* Slider Arrows Main */
.slider-main-prev, .slider-main-next {
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: #F8F8F8;
  font-size: 3.5rem;
  width: 60px;
  height: 60px;
  top: calc(50% - 20px);
  cursor: pointer;
  transition: all 0.3s ease 0s;
  z-index: 20;
  background-color: rgb(255, 255, 255);
  font-size: 4rem;
  color: #9ADEFF;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  border: 1px solid #9ADEFF;
  opacity: 0.7;
}

.slider-main-prev:hover, .slider-main-next:hover {
  opacity: 1;
  transition: all 0.3s ease 0s;
}

.slider-main-prev {
  left: 15px;
}

.slider-main-next {
  right: 15px;
}

/* Slick Dots */
.slick-dots li {
  margin: 0 !important;
}

.slick-dots li button::before {
  font-size: 9px !important;
  opacity: 1 !important;
  color: #b3dbeb !important;
}
.slick-dots li button::before:hover {
  color: #35b4f3 !important;
}

.slick-dots li.slick-active button::before {
  color: #35b4f3 !important;
}

/* -- Paging --  */
.paging {
  display: block;
  font-size: 1.1rem;
  font-family: Montserrat;
  margin: 1% 0;
}

.page-list {
  display: flex;
  justify-content: center;
  border-radius: 12px;
}

.page-list li {
  text-align: center;
  background-color: #b3dbeb;
  border-right: 3px solid #fffefd;
  transition: all 0.2s linear 0s;
}

.page-list li:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.page-list li:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.page-list li a {
  display: inline-block;
  position: relative;
  padding: 15px 20px;
  font-family: Montserrat;
  color: #fffefd;
}

.page-list li:hover {
  background-color: #35b4f3;
  transition: all 0.2s linear 0s;
}

.page-list .active {
  background-color: #35b4f3;
}

/* -- Header -- */
#header-mobile {
  display: none;
}

.header {
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  background-color: #fffefd;
  z-index: 50;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  gap: 10px;
  background-color: #F6F6F6;
  font-size: 1.4rem;
}
.header-top span {
  margin-right: auto;
  cursor: default;
}
.header-top > a, .header-top span {
  display: flex;
  align-items: center;
}
.header-top > a i, .header-top span i {
  font-size: 1.6rem;
  margin-right: 10px;
}
.header-top .version-impaired {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  flex-basis: 12%;
}
.header-top .version-impaired i {
  font-size: 2.5rem;
}

.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 0;
  padding: 5px 100px;
  background-color: #ffffff;
  font-size: 1.6rem;
}
.header-menu.mobile {
  width: 100%;
}
.header-menu.mobile .header-bars {
  font-size: 3rem;
  height: 3rem;
  width: 40px;
  color: #cccccc;
  cursor: pointer;
}
.header-menu.mobile .header-close {
  font-size: 2.2rem;
  height: 3rem;
  width: 40px;
  color: #cccccc;
  cursor: pointer;
  display: none;
}
.header-menu.mobile .header-call {
  width: -moz-min-content;
  width: min-content;
  flex-basis: auto;
  cursor: pointer;
}
.header-menu.mobile .header-call i {
  font-size: 3.5rem;
  margin: 0;
}
.header-menu .header-menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 10px;
}
.header-menu .header-menu-list .menu-item:first-child a {
  padding-left: 0;
}
.header-menu .header-menu-list .menu-item > a, .header-menu .header-menu-list .menu-item span {
  position: relative;
  display: flex;
  padding: 10px 15px 35px 15px;
  margin-bottom: -25px;
  font-weight: 500;
  font-size: 1.6rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.1s linear 0s;
  z-index: 50;
}
.header-menu .header-menu-list .menu-item:hover .menu-section {
  display: flex;
  transition: all 0.35s ease;
}
.header-menu .header-menu-list .menu-item:hover > a {
  border-color: #35b4f3;
  transition: all 0.1s linear 0s;
}
.header-menu .header-logo {
  display: flex;
  justify-content: center;
  flex-basis: 20%;
  margin: 0 auto;
}
.header-menu .header-logo img {
  height: 75px;
  width: -moz-max-content;
  width: max-content;
}
.header-menu .header-call {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header-menu .header-call .button-call {
  display: flex;
  align-items: center;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 10px;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 1.8rem;
  color: #505050;
}
.header-menu .header-call .button-call i {
  font-size: 2.4rem;
  color: #35b4f3;
  margin-right: 10px;
}

.menu-section {
  position: absolute;
  display: none;
  width: 70vw;
  top: calc(100% + 0px);
  left: 110px;
  gap: 1%;
  background-color: #ffffff;
  padding: 10px 20px;
  box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  z-index: 40;
}
.menu-section .menu-section-block {
  padding: 20px 25px 20px 10px;
  border-right: 1px solid #DCDCDC;
  position: relative;
}
.menu-section .menu-section-block:last-child {
  border: none;
}
.menu-section .menu-section-block > h3 {
  font-size: 1.8rem;
  font-weight: normal;
  text-align: left;
  text-transform: uppercase;
  color: #505050;
  padding: 5px 10px 10px 0;
  margin: 0;
  border-bottom: 1px solid #DCDCDC;
}
.menu-section .menu-section-block > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.menu-section .menu-section-block > ul > li {
  border-bottom: 1px solid transparent;
  transition: all 0.1s linear 0s;
  padding-bottom: 5px;
}
.menu-section .menu-section-block > ul > li:hover {
  border-color: #505050;
  transition: all 0.1s linear 0s;
}
.menu-section .menu-section-block .menu-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  grid-template-rows: repeat(5);
  width: 100%;
}

.header-dummy {
  margin-top: 150px;
}

.mobile-menu {
  position: fixed;
  top: 0px;
  left: 0;
  padding-top: 60px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  width: inherit;
  max-width: inherit;
  height: 100vh;
  background-color: #ffffff;
  z-index: 45;
  overflow: scroll;
}
.mobile-menu h4 {
  color: #35b4f3;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 15px 10px;
}
.mobile-menu .mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.mobile-menu .mobile-menu-list li > a {
  display: flex;
  padding: 15px 20px 20px 5px;
  font-weight: 500;
  font-size: 1.8rem;
  cursor: pointer;
  border-bottom: 2px solid #DCDCDC;
}
.mobile-menu .mobile-menu-list li > a .arrow {
  margin-left: auto;
  font-size: 2.2rem;
  color: #35b4f3;
  opacity: 0.7;
}
.mobile-menu .location {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background-color: #F1FDFF;
  font-size: 1.6rem;
  font-weight: 500;
  color: #505050;
  gap: 20px;
  cursor: default;
}
.mobile-menu .location i {
  font-size: 2.6rem;
  color: #35b4f3;
}
.mobile-menu .worktime {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: default;
}
.mobile-menu .button {
  padding: 15px 30px;
  width: 90vw;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.mobile-menu .link-vk {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  padding: 20px 10vw;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.mobile-menu .link-vk img {
  width: 30px;
  height: -moz-max-content;
  height: max-content;
}

.black-area {
  display: flex;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.1s linear 0s;
  z-index: 30;
}

section.title {
  margin: 5% 150px 2% 150px;
}
section.title h1, section.title h2, section.title h3, section.title h4, section.title h5 {
  text-align: left;
}
section.section {
  margin: 5% 150px;
}
section.section > h5 {
  color: #9c9c9c;
}
section.article {
  margin: 0;
  padding: 30px 150px;
}
section.section-article {
  position: relative;
  display: grid;
  grid-template-columns: 50% auto;
  min-height: -moz-max-content;
  min-height: max-content;
  gap: 30px;
  justify-content: space-between;
}
section.section-article h2, section.section-article h3, section.section-article h4, section.section-article h5, section.section-article h6 {
  text-align: left;
}
section.section-article article p {
  font-size: 1.7rem;
  line-height: 2.5rem;
  margin: 10px 0;
  cursor: default;
}
section.section-article img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
section.blue {
  background-color: #EDF9FF;
}
section.grey {
  background-color: #F8F8F8;
}
section.flex {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
section .grey {
  color: #9c9c9c;
}
section .button-alternate, section .button {
  margin: 20px auto;
  width: -moz-max-content;
  width: max-content;
  display: block;
}

section.callback {
  margin: 5% calc(150px + 15%);
}
section.callback h4 {
  font-weight: 500;
  font-size: 2rem;
}
section.callback .callback-block {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  gap: 15px;
}
section.callback .callback-block .button, section.callback .callback-block .button-alternate {
  margin: 20px 10px;
}
section.callback .callback-block .callback-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 600;
  cursor: default;
}
section.callback .callback-block .callback-text i {
  color: #35b4f3;
  font-size: 2.4rem;
}

.section-search {
  margin: 3% 150px;
}
.section-search h1, .section-search h2, .section-search h3, .section-search h4, .section-search h5 {
  color: #35b4f3;
}

.search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 3% 0;
}
.search-form .button {
  margin: 0;
  padding: 15px 45px;
  border-radius: 50px;
}
.search-form label, .search-form input {
  width: 100%;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #F1FDFF;
  padding: 20px calc(150px + 5%);
}
.section-title h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
}
.section-title h3 span {
  color: #35b4f3;
  font-weight: 600;
  font-size: 3rem;
  display: block;
}

.section-text h4 {
  margin: 20px 0 15px 0;
  text-align: left;
}
.section-text article {
  font-size: 1.7rem;
  line-height: 2.5rem;
  text-align: justify;
}

.section-slider {
  margin: 0;
  padding: 30px 30px;
}
.section-slider .slider-prev {
  left: -25px;
}
.section-slider .slider-next {
  right: -25px;
}

/* --<< Main-Banner >>-- */
.main-banner {
  margin: 0;
  position: relative;
}

.empty-header {
  width: 100%;
  height: 130px;
}

.main-slider {
  opacity: 0;
  width: 100%;
}
.main-slider .slider-block {
  position: relative;
  height: 27vw;
}
.main-slider .slider-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1 !important;
}

.main-service-list {
  opacity: 0;
  width: 100%;
  position: relative;
  margin: 10px 0;
}

.interior-slider {
  opacity: 0;
  width: 100%;
  position: relative;
}
.interior-slider .interior-image {
  margin: 10px 15px;
  height: 20vw;
  width: 25vw;
  border-radius: 10px;
}
.interior-slider .interior-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.license-slider {
  opacity: 0;
  width: 100%;
  position: relative;
}
.license-slider .license-block {
  margin: 10px 15px;
  width: 25vw;
}
.license-slider .license-block img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 100%;
  height: 100%;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  justify-content: center;
  gap: 20px;
  position: relative;
}

.laboratory-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  justify-content: center;
  gap: 20px;
  position: relative;
}

.service-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px 20px;
  margin: 15px 10px;
  gap: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.service-block.laboratory h3 {
  margin: 20px 10px 0px 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cdcdcd;
}
.service-block i {
  font-size: 5rem;
  color: #35b4f3;
  text-align: center;
  margin: 5px;
  cursor: pointer;
}
.service-block h3 {
  cursor: pointer;
  font-size: 1.8rem;
  text-align: center;
  margin: 20px 10px 30px 10px;
}
.service-block h5 {
  cursor: pointer;
  font-size: 1.8rem;
  text-align: center;
  margin: 10px 10px 10px 10px;
}
.service-block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #35b4f3;
  font-weight: 500;
  margin-bottom: 20px;
}
.service-block img {
  height: 50px;
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-block .button-alternate {
  font-size: 1.4rem;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto 10px auto;
  margin-top: auto;
}
.service-block:hover .button-alternate {
  color: #fffefd;
  background-color: #35b4f3;
  transition: all 0.3s ease 0s;
}

.main-category {
  display: flex;
  gap: 10px;
  border-radius: 20px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-category h5 {
  font-size: 2.2rem;
  font-weight: normal;
}
.main-category i {
  font-size: 7em;
}

.section-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  min-height: 250px;
  max-height: 350px;
  gap: 20px;
}
.section-grid.features {
  min-height: 300px;
  max-height: 500px;
  gap: 40px 20px;
}

.grid-category {
  display: flex;
  gap: 10px;
  border-radius: 20px;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
}
.grid-category h5 {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: left;
}
.grid-category i {
  font-size: 5em;
  margin-right: 20px;
}

.action-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  gap: 10px;
  position: relative;
}

.action-block {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  margin: 10px 15px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.action-block .area-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.action-block:hover .button-alternate {
  color: #fffefd;
  background-color: #35b4f3;
  transition: all 0.3s ease 0s;
}

.action-block-image {
  display: block;
  position: relative;
}
.action-block-image span {
  position: absolute;
  width: 150px;
  top: 0;
  left: 0;
  background-color: #35b4f3;
  color: #ffffff;
  text-transform: uppercase;
  padding: 5px 15px;
  font-size: 1.4rem;
  font-weight: 500;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.action-block-image img {
  width: 100%;
  min-height: 250px;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.action-block-context {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
}
.action-block-context .tag {
  color: #35b4f3;
  font-weight: 500;
  margin-right: auto;
  font-size: 1.6rem;
  margin: 0;
  text-align: left;
  cursor: default;
}
.action-block-context h3 {
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  margin: 15px 0 20px 0;
}
.action-block-context .price {
  display: block;
  font-size: 2.6rem;
  font-weight: 600;
  color: #35b4f3;
  text-align: right;
  margin-top: 20px;
  margin-left: auto;
  cursor: default;
}
.action-block-context .button-alternate {
  font-size: 1.4rem;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto 10px auto;
}

.action-title {
  display: grid;
  grid-template-columns: 30vw auto;
  gap: 5%;
}
.action-title .action-title-image {
  display: block;
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  align-self: flex-start;
  border-radius: 10px;
}
.action-title .action-title-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
.action-title .action-title-text h2, .action-title .action-title-text h4, .action-title .action-title-text h5 {
  margin: 0;
  cursor: default;
}
.action-title .action-title-text h2 {
  width: -moz-max-content;
  width: max-content;
  margin: 10px 0;
}
.action-title .action-title-text h4 {
  width: -moz-max-content;
  width: max-content;
  font-size: 2.8rem;
  color: #35b4f3;
}
.action-title .action-title-text h5 {
  font-size: 1.8rem;
  color: #35b4f3;
  font-weight: 600;
  width: -moz-max-content;
  width: max-content;
}
.action-title .action-title-text span {
  width: -moz-max-content;
  width: max-content;
  font-size: 1.8rem;
  cursor: default;
}
.action-title .action-title-text .button {
  margin: 20px 0;
  padding: 10px 70px;
}

.review-large-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-large-block {
  display: grid;
  grid-template-columns: 20% auto;
  gap: 3%;
  border-bottom: 1px solid #cdcdcd;
  padding: 15px 10px;
  position: relative;
  width: 100%;
}
.review-large-block .review-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: default;
}
.review-large-block .review-user img {
  width: 130px;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}
.review-large-block .review-user h5 {
  font-size: 1.8rem;
}
.review-large-block .review-user span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #35b4f3;
}
.review-large-block .review-text {
  display: block;
  width: initial;
  padding: 10px 10px 20px 10px;
  font-size: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 100%;
  cursor: default;
}
.review-large-block .review-date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  text-align: right;
  justify-content: right;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #ffffff;
  cursor: default;
}
.review-large-block .review-date span {
  font-size: 1.6rem;
  font-weight: normal;
}

.review-list {
  opacity: 0;
  width: 100%;
  position: relative;
}

.review-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px 20px;
  margin: 15px 15px;
  gap: 10px;
  transition: all 0.3s ease 0s;
}
.review-block::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  padding: 7px;
  border-radius: 10px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease 0s;
}
.review-block p {
  font-size: 1.4rem;
  line-height: 2.5rem;
  color: #505050;
  overflow: hidden;
}
.review-block h3 {
  font-size: 1.8rem;
  text-align: center;
  margin: 20px 10px 30px 10px;
}
.review-block:hover::before {
  border-color: #40C0FF;
  opacity: 0.7;
  transition: all 0.3s ease 0s;
}

.doctor-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  gap: 20px;
}

.doctor-block {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 120px;
}
.doctor-block .doctor-avatar {
  position: absolute;
  top: -120px;
  left: auto;
  right: auto;
}
.doctor-block .doctor-avatar img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: 200px;
}
.doctor-block .doctor-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 90px 10px 10px 10px;
  width: 100%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.doctor-block .doctor-text h4 {
  font-size: 2rem;
  line-height: 1.5;
  padding: 0;
  margin: 0 auto;
}
.doctor-block .doctor-text h5 {
  font-size: 1.85rem;
  border-bottom: 1px solid #cdcdcd;
  padding: 0 0 20px 0;
  margin: 0 auto;
}
.doctor-block .doctor-text .specialty {
  color: #35b4f3;
  font-weight: 500;
}
.doctor-block .doctor-text span {
  display: block;
  font-size: 1.8rem;
  margin: 10px auto;
}
.doctor-block .doctor-text .button-alternate {
  margin: 10px auto;
}
.doctor-block:hover .button-alternate {
  color: #fffefd;
  background-color: #35b4f3;
  transition: all 0.3s ease 0s;
}

.doctor-info {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.doctor-info .doctor-info-avatar img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 230px;
  height: 230px;
}
.doctor-info .doctor-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doctor-info .doctor-info-list h2 {
  font-weight: 600;
}
.doctor-info .doctor-info-list .doctor-info-specialty {
  padding: 10px 0 20px 0;
  border-bottom: 1px solid #cdcdcd;
  font-weight: 500;
}
.doctor-info .doctor-info-text {
  display: flex;
  align-items: center;
  gap: 40px;
}

.doctor-section {
  margin: 20px 1%;
}
.doctor-section .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
}
.doctor-section .title .arrow {
  margin-left: 10px;
  color: #35b4f3;
  font-size: 2.5rem;
  transform: rotate(90deg);
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.doctor-section .title .arrow.rotate {
  transform: rotate(0deg);
  transition: all 0.3s ease 0s;
}
.doctor-section .description {
  padding: 20px 0;
  font-size: 1.8rem;
  line-height: 1.5;
}

.round-icon-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 500;
  cursor: default;
}
.round-icon-label .blue {
  color: #35b4f3;
  font-weight: 600;
}
.round-icon-label > a {
  position: relative;
  transition: all 0.3s ease 0s;
}
.round-icon-label > a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 100%;
  height: 1px;
  border-top: 2px dashed #35b4f3;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.round-icon-label a:hover::before {
  opacity: 1;
  transition: all 0.3s ease 0s;
}

.round-icon {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 15px;
  width: 50px;
  height: 50px;
  background-color: #EDF9FF;
  border-radius: 50%;
}
.round-icon i {
  color: #40C0FF;
  font-size: 3.3rem;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px auto;
}
.price-list .price-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  background-color: #ffffff;
  border: 1px solid #f7f7f7;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.price-list .price-item a {
  color: #505050;
  font-size: 1.8rem;
}
.price-list .price-item h5 {
  margin: 0;
  font-size: 1.8rem;
}
.price-list .price-item .arrow, .price-list .price-item .price {
  color: #35b4f3;
}
.price-list .price-item .price {
  font-weight: 600;
  margin-left: auto;
  font-size: 2rem;
}
.price-list .price-item .arrow {
  font-size: 3rem;
  padding-right: 20px;
  transition: all 0.3s ease 0s;
}
.price-list .price-item:hover .arrow {
  padding-right: 10px;
  padding-left: 10px;
  transition: all 0.3s ease 0s;
}

.price-list-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 30px 0;
}
.price-list-groups .group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  padding: 20px 20px;
  border-bottom: 1px solid #c5c5c5;
  transition: all 0.3s ease 0s;
}
.price-list-groups .group .arrow {
  margin-left: 10px;
  color: #35b4f3;
  font-size: 2.5rem;
  transform: rotate(90deg);
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.price-list-groups .group .arrow.rotate {
  transform: rotate(0deg);
  transition: all 0.3s ease 0s;
}
.price-list-groups .group h4 {
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.price-list-sublist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px auto;
}
.price-list-sublist .price-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 20px 60px;
  border-bottom: 1px solid #c5c5c5;
  transition: all 0.3s ease 0s;
}
.price-list-sublist .price-item a {
  color: #505050;
  font-size: 1.8rem;
}
.price-list-sublist .price-item h5 {
  margin: 0;
  font-size: 1.8rem;
}
.price-list-sublist .price-item .arrow, .price-list-sublist .price-item .price {
  color: #35b4f3;
}
.price-list-sublist .price-item .price {
  font-weight: 600;
  margin-left: auto;
  margin-right: 40px;
  font-size: 2rem;
}
.price-list-sublist .price-item .arrow {
  font-size: 3rem;
  padding-right: 20px;
  transition: all 0.3s ease 0s;
}
.price-list-sublist .price-item:hover .arrow {
  padding-right: 10px;
  padding-left: 10px;
  transition: all 0.3s ease 0s;
}

.sertificate-list {
  opacity: 0;
  width: 100%;
  position: relative;
}

.sertificate-block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 10px 15px;
  width: 500px;
  height: 400px;
}
.sertificate-block img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 40vh;
}
.sertificate-block h5 {
  font-size: 1.6rem;
  margin: 20px 20px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: auto 30%;
  gap: 3%;
}
.contact-wrap .contact-block {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px 7%;
  gap: 15px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.contact-wrap .contact-block h3 {
  font-size: 2rem;
  margin: 0;
  margin: 20px 0;
  text-align: left;
}
.contact-wrap .contact-block h4 {
  font-size: 2rem;
  margin: 0;
  margin: 20px 0;
}
.contact-wrap .contact-block h5 {
  font-size: 1.4rem;
  margin: 0;
}
.contact-wrap .contact-block a {
  font-size: 3rem;
  font-weight: 600;
}
.contact-wrap .contact-block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  margin: 0 auto;
}
.contact-wrap .contact-block ul li {
  display: flex;
  width: 100%;
  gap: 30px;
  justify-content: space-between;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
}

.requisite-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.requisite-list .requisite-title {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  font-size: 1.8rem;
  font-weight: 600;
}
.requisite-list .requisite-row {
  display: grid;
  grid-template-columns: 30vw auto;
  border-bottom: 1px solid #cdcdcd;
  font-size: 1.6rem;
  gap: 20px;
  transition: all 0.3s ease 0s;
}
.requisite-list .requisite-row:hover {
  background-color: #f0fafc;
  transition: all 0.3s ease 0s;
}
.requisite-list .requisite-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  justify-content: flex-start;
  padding: 15px 10px;
}

/* -- Footer -- */
.footer {
  margin-top: auto;
  width: 100%;
}

.footer-map {
  height: 300px;
}

.footer-body {
  display: flex;
  flex-direction: column;
  padding: 30px 100px 10px 100px;
  background-color: #F1F7FA;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.footer-menu .footer-logo {
  width: 15%;
  height: -moz-max-content;
  height: max-content;
  text-align: center;
}
.footer-menu .footer-logo span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #505050;
  padding-top: 10px;
}
.footer-menu .footer-logo img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-menu .footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.6rem;
  color: #505050;
}
.footer-menu .footer-menu-list .title {
  font-weight: 500;
}
.footer-menu .footer-menu-list .footer-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-menu .footer-menu-list span.footer-list-item {
  cursor: default;
}
.footer-menu .footer-menu-list i {
  color: #35b4f3;
  font-size: 1.8rem;
}

.footer-submenu {
  margin: 20px auto 5px auto;
  border-top: 1px solid #DCDCDC;
  padding: 20px 0 0 0;
}
.footer-submenu ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer-submenu ul li > a {
  font-size: 1.4rem;
  color: #505050;
}
.footer-submenu h3 {
  font-size: 1.4rem;
  margin: 20px auto 10px auto;
  text-align: center;
  font-weight: normal;
}
.footer-submenu .footer-copyright {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  color: #505050;
  cursor: default;
}

.footer-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  margin-top: 30px;
  width: 100%;
}
.footer-mobile .footer-logo {
  text-align: center;
}
.footer-mobile .footer-logo span {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #505050;
  padding: 10px 20px;
}
.footer-mobile .footer-logo img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-mobile .footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30px;
  gap: 10px;
  width: 100%;
}
.footer-mobile .footer-contacts .contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 3vw;
}
.footer-mobile .footer-contacts .contacts .tel {
  display: flex;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: default;
}
.footer-mobile .footer-contacts .contacts .tel i {
  color: #35b4f3;
  font-size: 3rem;
}
.footer-mobile .footer-contacts .worktime {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 10px;
  font-size: 2rem;
  font-weight: 500;
  cursor: default;
}
.footer-mobile .footer-contacts .location {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 5vw;
  background-color: #F1FDFF;
  font-size: 1.8rem;
  font-weight: 500;
  color: #505050;
  gap: 20px;
  cursor: default;
}
.footer-mobile .footer-contacts .location i {
  font-size: 3rem;
  color: #35b4f3;
}
.footer-mobile .footer-contacts .button, .footer-mobile .footer-contacts .button-alternate {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 90vw;
  gap: 10px;
  padding: 15px 30px;
  margin: 5px auto;
}
.footer-mobile .footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 20px 0;
  margin: 20px auto 10px auto;
  background-color: #eeeeee;
}
.footer-mobile .footer-links > a {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 90vw;
  padding: 15px 30px;
  margin: 0 auto;
  color: #505050;
  background-color: #ffffff;
  font-weight: 600;
  font-size: 1.6rem;
  border-radius: 45px;
  border: 2px solid transparent;
  transition: all 0.3s ease 0s;
}
.footer-mobile .link-vk {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding: 10px 3vw;
  gap: 20px;
  border-bottom: 1px solid #cccccc;
}
.footer-mobile .link-vk img {
  width: 30px;
  height: -moz-max-content;
  height: max-content;
}
.footer-mobile .footer-info {
  text-align: center;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.4rem;
  padding: 10px 3vw;
}
.footer-mobile .footer-copyright {
  display: block;
  margin: 10px auto;
  text-align: center;
  font-size: 1.3rem;
  color: #505050;
  cursor: default;
}/*# sourceMappingURL=style.css.map */