@charset "UTF-8";
:root {
  --font-family: "PT Root UI", sans-serif;
  --content-width: 1600px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --background-color: #ffffff;
  --white-color: #ffffff;
  --main-color: #0cf;
  --default-color: #000722;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable value-keyword-case */
@font-face {
  font-family: "PT Root UI";
  src: url("../fonts/PTRootUI-Light.woff2") format("woff2"),
    url("../fonts/PTRootUI-Light.woff") format("woff");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "PT Root UI";
  src: url("../fonts/PTRootUI-Regular.woff2") format("woff2"),
    url("../fonts/PTRootUI-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "PT Root UI";
  src: url("../fonts/PTRootUI-Medium.woff2") format("woff2"),
    url("../fonts/PTRootUI-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "PT Root UI";
  src: url("../fonts/PTRootUI-Bold.woff2") format("woff2"),
    url("../fonts/PTRootUI-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

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

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

ul,
ul li {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input[type="submit"] {
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/* Reset and base styles  */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page-html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

.page-body {
  font-family: var(--font-family, sans-serif);
  margin: 0;
  min-width: 320px;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  background-color: var(--background-color);
  color: var(--default-color);
}

table {
  width: 100%;
  border-collapse: collapse;
}

img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  outline: none;
}
@media (max-width: 991px) {
  a {
    cursor: default;
  }
}

a:hover {
  color: var(--main-color);
}

a[href*="tel:"] {
  white-space: nowrap;
}

input[type="submit"] {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

*:has(> .ic) {
  line-height: 1;
}

.page-container {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

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

.anim-scale {
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  -o-transition: transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
}

.anim-scale:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.youtube-video {
  width: 100%;
  aspect-ratio: 16/9;
}

.body-disable-scroll {
  overflow-y: hidden;
}

.video-js {
  background: transparent;
}

form.wpcf7-form.submitting .wpcf7-submit,
form.wpcf7-form.submitting [type="submit"] {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  pointer-events: none;
}

.sect-p {
  padding: 60px 0;
}

.sect-m {
  margin: 60px 0;
}

.page-p {
  padding: 50px 0;
}

.page-m {
  margin: 50px 0;
}

.content-box {
  line-height: 1.6;
}
@media (max-width: 991px) {
  .content-box {
    line-height: 1.4;
  }
}

.content-box > *:not(:last-child) {
  margin-bottom: 16px;
}

.content-box ul,
.content-box li {
  list-style: disc;
}

.content-box li {
  margin-left: 25px;
  line-height: 1.4;
}

.content-box li:not(:last-child) {
  margin-bottom: 3px;
}

.content-box img {
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  font-weight: 600;
  line-height: 1.2;
}
.content-box h2:not(:first-child),
.content-box h3:not(:first-child),
.content-box h4:not(:first-child),
.content-box h5:not(:first-child),
.content-box h6:not(:first-child) {
  padding-top: 10px;
}

.content-box h2 {
  font-size: 32px;
}

.content-box h3 {
  font-size: 24px;
}

.content-box h4 {
  font-size: 20px;
}

.content-box h5 {
  font-size: 16px;
}

.content-box h6 {
  font-size: 14px;
}

.content-box .wp-block-heading {
  margin-bottom: 1em;
}

@media (max-width: 575px) {
  .content-box h2 {
    font-size: 26px;
  }
  .content-box h3 {
    font-size: 20px;
  }
  .content-box h4 {
    font-size: 18px;
  }
}
.content-box .alignright {
  float: right;
  margin-bottom: 16px;
}

.content-box .alignleft {
  float: left;
  margin-bottom: 16px;
}

@media (min-width: 481px) {
  .content-box .alignright {
    padding-left: 16px;
  }
  .content-box .alignleft {
    padding-right: 16px;
  }
}
.content-box ol li {
  list-style: decimal;
}

.content-box a {
  text-decoration: underline;
}

.content-box a:hover {
  text-decoration: none;
}

/* .content-box > h1 {
  margin-bottom: 20px !important;
} */
.content-box table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid rgba(0, 0, 0, 0.2470588235);
  border-left: 1px solid rgba(0, 0, 0, 0.2470588235);
}

.content-box table td {
  padding: 3px;
  border-right: 1px solid rgba(0, 0, 0, 0.2470588235);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2470588235);
}

.success__inner {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.form {
  --label-color: rgba(0, 0, 0, 0.4);
  --label-bg: var(--background-color);
  --input-color: #000;
  --input-bg: #f0f5f9;
  --input-height: 52px;
  --border-color: #ccc;
  --rect-color: var(--main-color);
  --rect-arrow-color: #fff;
  width: 100%;
}
.form__title {
  margin-bottom: 25px;
}
.form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 25px;
}
.form.grid .form__fields {
  display: -ms-grid;
  display: grid;
  gap: 20px 30px;
}
@media (max-width: 991px) {
  .form.grid .form__fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.form._grid-3 .form__fields {
  -ms-grid-columns: (minmax(0, 1fr)) [3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.form.grid-2 .form__fields {
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form ._full {
  grid-column: 1/-1;
}
.form__field {
  position: relative;
  width: 100%;
}
.form__field._full {
  grid-column: 1/-1;
}
.form__field._file label {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.form__field._file::after {
  content: "\e90f";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  display: inline-block;
  font-family: "icomoon";
  line-height: 1;
  font-size: 16px;
  margin-right: 10px;
  pointer-events: none;
}
.form__field.input-active label {
  top: -10px;
  left: 20px;
}
.form__field.input-active label::after {
  display: none;
}
.form__field > label {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background: var(--label-bg);
  cursor: text;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline-block;
  border-radius: 2px;
  pointer-events: none;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .form__field > label {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.form__field > label.form__label--required::after {
  content: "*";
  display: block;
  position: absolute;
  color: var(--rect-color);
  right: -8px;
  top: -5px;
}
.form__field input,
.form__field textarea,
.form__field select {
  padding: 0 15px;
  width: 100%;
  height: var(--input-height);
  background-color: var(--input-bg);
  color: var(--input-color);
  border-radius: 100px;
}
.form__field textarea {
  padding-top: 10px;
  height: auto;
  overflow: auto;
  outline: none;
  resize: none;
  border-radius: 20px;
}
.form__field select {
  padding-right: 30px;
  cursor: pointer;
}
.form__field *:focus-visible {
  outline: none;
}
.form__btn {
  margin-top: 20px;
  width: 200px;
}
@media (max-width: 575px) {
  .form__btn {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .form__accept {
    font-size: 14px;
  }
}
.form__accept a {
  text-decoration: underline;
}
.form__accept input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form__accept input[type="checkbox"]:checked + span::before {
  content: "\e902";
  background: var(--rect-color);
}
.form__accept .wpcf7-list-item-label::before {
  content: "";
  width: 16px;
  height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "icomoon";
  font-size: 12px;
  line-height: 1;
  color: var(--rect-arrow-color);
  border: 1px solid var(--rect-color);
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  bottom: 1px;
}
.form__actions {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.form__actions._col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .form__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.form__actions .form__btn {
  min-width: 220px;
  margin: 0;
}
@media (max-width: 991px) {
  .form__actions .form__btn {
    width: 100%;
  }
}
.form__s-title {
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
}
.form__s-title:not(:first-child) {
  margin-top: 30px;
}

.e404-page {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.e404-page__link {
  margin: 20px auto 0;
  max-width: 220px;
}

.ic {
  font-size: inherit;
  vertical-align: middle;
}
.ic::before,
.ic::after {
  font-family: "icomoon";
  line-height: 1;
  font-size: inherit;
}

.s-pagination {
  text-align: center;
  margin-top: 30px;
  display: none;
  line-height: 0;
}
@media (max-width: 991px) {
  .s-pagination {
    display: block;
  }
}
.s-pagination span {
  background: var(--main-color);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.s-pagination.swiper-pagination-lock {
  display: none;
}

.s-scrollbar {
  height: 2px;
  background: #e6e6e6;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .s-scrollbar {
    margin-top: 20px;
  }
}
.s-scrollbar .swiper-scrollbar-drag {
  background: #113c67;
}

.zoom-bg:hover::after {
  opacity: 1;
  visibility: visible;
}
.zoom-bg::after {
  content: "\e901";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "gulp";
  line-height: 1;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6980392157);
  background: rgba(0, 0, 0, 0.2392156863);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
}

.page-head {
  padding: 20px 0;
  background: #f0f5f9;
}
@media (max-width: 991px) {
  .page-head {
    padding: 15px 0;
  }
}

.breadcrumbs {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .breadcrumbs {
    margin-bottom: 10px;
  }
}

.aioseo-breadcrumbs {
  font-size: 15px;
}
@media (max-width: 575px) {
  .aioseo-breadcrumbs {
    font-size: 14px;
  }
}
.aioseo-breadcrumbs .aioseo-breadcrumb:last-child {
  opacity: 0.5;
}
.aioseo-breadcrumbs .aioseo-breadcrumb-separator {
  display: inline-block;
  margin: 0 10px;
}
.aioseo-breadcrumbs .aioseo-breadcrumb-separator::before {
  content: "\e91d";
  font-family: icomoon;
  line-height: 1;
  font-size: 10px;
}

.plyr {
  height: 100%;
  --plyr-color-main: #8c0014;
}

.plyr--stopped video {
  -o-object-fit: cover;
  object-fit: cover;
}

.plyr__poster {
  background-size: cover;
}

.plyr--stopped .plyr__controls {
  display: none;
}

[class*="gototech"],
[class*="gototaxi"],
[class*="copyright__wrap"] {
  display: none !important;
}

select {
  padding: 0px 20px 0 5px;
  background-image: url("../img/svg/angle-arrow-down.svg");
  background-size: 11px 6px;
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.SumoSelect {
  width: auto;
  cursor: pointer;
}

.SumoSelect .CaptionCont {
  padding: 19px 30px 19px 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  border-radius: 0;
  border: 1px solid #000;
  background: transparent;
}

.SumoSelect .CaptionCont span {
  padding: 0;
  margin: 0;
}

.SumoSelect .CaptionCont label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.SumoSelect .CaptionCont label::before {
  content: "\e902";
  font-family: "icomoon";
  font-size: 20px;
  line-height: 1;
  display: inline-block;
}

.SumoSelect .CaptionCont label i {
  display: none;
}

.SumoSelect .CaptionCont span.placeholder {
  color: #636363;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.SumoSelect.open > .optWrapper {
  width: auto;
  top: 55px;
  border-radius: 0;
  border: 1px solid #ccc;
  background: none;
}

.SumoSelect > .optWrapper > .options {
  color: #000;
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid rgba(121, 121, 121, 0.5);
  border-radius: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.SumoSelect > .optWrapper > .options li.opt:first-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt:last-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: #ccc;
}

.nav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  font-size: 20px;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 991px) {
  .nav-box {
    display: none;
  }
}
.nav-box._center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  width: calc(100% - 30px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.nav-box._mini {
  color: #fff;
  font-size: 14px;
}
.nav-box._mini .nav-left,
.nav-box._mini .nav-right {
  width: 34px;
  height: 34px;
  background-color: var(--main-color);
  opacity: 0.8;
}
.nav-box .nav-left,
.nav-box .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nav-box .nav-left.swiper-button-lock,
.nav-box .nav-right.swiper-button-lock {
  display: none;
}
.nav-box .nav-left:not(.swiper-button-disabled):hover,
.nav-box .nav-right:not(.swiper-button-disabled):hover {
  opacity: 0.6;
}
.nav-box .nav-left::before,
.nav-box .nav-right::before {
  content: "\e90c";
  position: relative;
  font-family: "icomoon";
  line-height: 1;
  right: 1px;
}
.nav-box .nav-left.swiper-button-disabled,
.nav-box .nav-right.swiper-button-disabled {
  cursor: default;
  opacity: 0.4;
}
.nav-box .nav-right::before {
  content: "\e90d";
  left: 2px;
}

.btn {
  padding: 17px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  background: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 35px;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  .btn {
    padding: 12px 15px;
    border-radius: 20px;
  }
}
.btn:hover {
  opacity: 0.7;
  color: #fff;
}
.btn .ic {
  font-size: inherit;
}
.btn--more {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
}
@media (max-width: 991px) {
  .btn--more {
    margin-top: 30px;
  }
}
.btn--tr {
  background: transparent;
  color: var(--main-color);
  border-color: var(--main-color);
}
.btn--tr:hover {
  color: var(--main-color);
}
.btn--link {
  padding: 5px 10px;
  background: transparent;
  color: var(--default-color);
  font-weight: 400;
  border-color: var(--main-color);
}
.btn--link:hover {
  color: var(--main-color);
}
.btn--square {
  padding: 12px 25px;
  display: inline-block;
  background: transparent;
  color: #686c7d;
  font-size: 22px;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #c6cfd8;
}
@media (max-width: 991px) {
  .btn--square {
    padding: 7px 15px;
    font-size: 18px;
    border-radius: 6px;
  }
}
.btn--square:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

@media (max-width: 575px) {
  .fancybox-slide--video {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.form-row {
  position: relative;
}
.form-row label {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.form-row input,
.form-row select {
  padding: 15px 25px;
  width: 100%;
  background-color: #f0f5f9;
  border-radius: 100px;
}
.form-row input::-webkit-input-placeholder,
.form-row select::-webkit-input-placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #b9cdda;
}
.form-row input::-moz-placeholder,
.form-row select::-moz-placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #b9cdda;
}
.form-row input:-ms-input-placeholder,
.form-row select:-ms-input-placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #b9cdda;
}
.form-row input::-ms-input-placeholder,
.form-row select::-ms-input-placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #b9cdda;
}
.form-row input::placeholder,
.form-row select::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #b9cdda;
}

.search-form input {
  padding-right: 40px;
}
.search-form input::-webkit-input-placeholder {
  opacity: 0.5;
}
.search-form input::-moz-placeholder {
  opacity: 0.5;
}
.search-form input:-ms-input-placeholder {
  opacity: 0.5;
}
.search-form input::-ms-input-placeholder {
  opacity: 0.5;
}
.search-form input::placeholder {
  opacity: 0.5;
}
.search-form__btn {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #b9cdda;
  font-size: 16px;
}

._tdu {
  text-decoration: underline;
}

.h-tdu {
  border-bottom: 1px solid transparent;
}
.h-tdu:hover {
  border-color: currentColor;
}

.socials-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

a.social-item {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
}
a.social-item:hover {
  color: #fff;
  opacity: 0.7;
}
a.social-item._yt {
  background: #c4302b;
}
a.social-item._vk {
  background: #1587c8;
  font-size: 14px;
}
a.social-item._wa {
  background: #2bb741;
  font-size: 19px;
}
a.social-item._tg {
  background: #0088cc;
  font-size: 19px;
  padding-top: 1px;
  padding-right: 2px;
}

.sect-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}
.sect-top a {
  color: var(--main-color);
}
.sect-top a .icon-long-arrow-right {
  font-size: 8px;
}

.s-title {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .s-title {
    font-size: 24px;
  }
}

.p-title {
  font-weight: 700;
  font-size: 38px;
}
@media (max-width: 991px) {
  .p-title {
    font-size: 26px;
  }
}

.b-gray {
  background: #f8f9fb;
}

.play-btn {
  width: 75px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  position: relative;
  transition: opacity 0.2s ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .play-btn {
    width: 60px;
    height: 60px;
  }
}
.play-btn:hover {
  opacity: 0.8;
}
.play-btn:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -ms-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
}
.play-btn::before {
  content: "\e915";
  font-family: icomoon;
  line-height: 1;
  left: 3px;
  position: relative;
  font-size: 32px;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .play-btn::before {
    font-size: 26px;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 50%;
  width: 135px;
  height: 135px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  .play-btn::after {
    width: 100px;
    height: 100px;
  }
}
.play-btn__wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.play-btn__wrap:hover .play-btn {
  opacity: 0.8;
}
.play-btn__wrap:hover .play-btn::after {
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -ms-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
}

[class*="swiper-box"] {
  position: relative;
}

.g-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
}

.g-tel .ic {
  color: var(--main-color);
  font-size: 16px;
}

._w-100 {
  width: 100%;
}

.doctor-marks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .doctor-marks {
    gap: 10px;
  }
}
.doctor-marks li a {
  padding: 5px 20px;
  display: inline-block;
  background: #e2ebf2;
  font-size: 15px;
  font-weight: 500;
  color: #7b8f9f;
  border-radius: 42px;
}
.doctor-marks li a:hover {
  opacity: 0.8;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 25px;
}
@media (max-width: 1199px) {
  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .grid-4 {
    gap: 20px 10px;
  }
}
@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 25px;
}
@media (max-width: 1199px) {
  .grid-3 {
    gap: 20px 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .grid-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.w-100 {
  width: 100%;
}

.header {
  height: 251px;
  z-index: 10;
  position: relative;
  /* далее код после скролла */
}
@media (max-width: 1299px) {
  .header {
    height: 95px;
  }
}
@media (max-width: 991px) {
  .header {
    height: 79px;
  }
}
.header__burger-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
@media (min-width: 1300px) {
  .header__burger-wrap {
    display: none;
  }
}
.header__burger {
  color: var(--main-color);
  font-size: 20px;
}
.header__info-line {
  padding: 7px 10px;
  background: var(--main-color);
  color: #fff;
  text-align: center;
}
@media (max-width: 1299px) {
  .header__info-line {
    padding: 3px 10px;
    font-size: 14px;
  }
}
.header__top {
  padding: 30px 0;
  background: #fff;
  border-bottom: 1px solid #f0f1f3;
}
@media (max-width: 1299px) {
  .header__top {
    padding: 10px 0;
  }
}
.header__top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.header__logo img {
  width: 100%;
  max-width: 205px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 991px) {
  .header__logo img {
    max-width: 140px;
  }
}
.header__top-col._items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1299px) {
  .header__top-col._items {
    display: none;
  }
}
@media (max-width: 1299px) {
  .header__top-col .search-form {
    display: none;
  }
}
@media (max-width: 1299px) {
  .header__top-col._worktime {
    display: none;
  }
}
@media (max-width: 1299px) {
  .header__top-col._contacts {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}
.header__top-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 17px;
}
@media (max-width: 1299px) {
  .header__top-item {
    font-size: 15px;
  }
}
.header__top-item .ic {
  color: var(--main-color);
}
.header__top-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}
@media (max-width: 1299px) {
  .header__top-contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
.header__top-contacts ._tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1299px) {
  .header__top-contacts ._tel {
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 50%;
  }
}
@media (max-width: 1299px) {
  .header__top-contacts ._tel span {
    display: none;
  }
}
.header__top-contacts ._tel .ic {
  color: var(--main-color);
  font-size: 16px;
}
@media (max-width: 1299px) {
  .header__top-contacts ._tel .ic {
    color: #fff;
  }
}
.header__top-contacts ._wa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
}
.header__top-contacts ._wa:hover span {
  text-decoration: underline;
}
@media (max-width: 1299px) {
  .header__top-contacts ._wa span {
    display: none;
  }
}
.header__top-contacts ._wa ._icon {
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #2bb741;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}
@media (max-width: 1299px) {
  .header__top-contacts ._wa ._icon {
    font-size: 16px;
  }
}
@media (max-width: 1299px) {
  .header__bottom {
    display: none;
  }
}
.header__bottom-wrap {
  background: #fff;
}
.header__bottom-inner {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}
.header__nav-menu {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  font-size: 18px;
  font-weight: 500;
}
.header__nav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
}
.header__bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.header .has-sub-menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.header .has-sub-menu > a::after {
  content: "\e903";
  font-family: "icomoon";
  font-size: 20px;
  display: inline-block;
  position: relative;
  color: var(--main-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: 10px;
  vertical-align: sub;
}
.header .has-sub-menu:hover .sub-menu-wrap {
  visibility: visible;
}
.header .has-sub-menu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header .has-sub-menu:hover .sub-menu li a {
  z-index: 2;
}
.header .has-sub-menu:hover .sub-menu li a:hover {
  color: var(--main-color);
}
.header .has-sub-menu:hover a::after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.header .sub-menu-wrap {
  top: 0;
  padding-top: 40px;
  position: absolute;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .header .sub-menu-wrap {
    position: static;
    visibility: visible;
    display: none;
  }
}
.header .sub-menu {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
}
@media (max-width: 1199px) {
  .header .sub-menu {
    width: auto;
    visibility: visible;
    opacity: 1;
    background: transparent;
    padding-left: 20px;
  }
}
.header .sub-menu li:not(:first-child) a {
  padding-top: 7px;
}
.header .sub-menu li:not(:last-child) a {
  border-bottom: 1px solid rgba(204, 204, 204, 0.4196078431);
  padding-bottom: 7px;
}
.header .sub-menu li a {
  display: block;
  position: relative;
  color: #000;
}
.header__fxd {
  position: absolute;
  left: 0;
  right: 0;
}
.header__fxd._fixed {
  position: fixed;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header__fxd._fixed .header__top {
  padding: 10px 0;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
  box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
}
.header__fxd._fixed .header__bottom {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  border-bottom: 1px solid #f0f1f3;
}
.header__fxd._fixed .header__bottom .header__nav-menu {
  padding: 10px 0;
}
.header__fxd._fixed .header__bottom-inner {
  padding: 10px 0;
  border: none;
}
.header__fxd._fixed:hover .header__bottom {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header__fxd._fixed .header__info-line {
  display: none;
}
.header__fxd._show {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header__fxd._show .header__bottom {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.header__drop {
  position: absolute;
  width: 100%;
  background: #f8f9fb;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}
.header__drop._show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0px 4px 8px -2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 4px 8px -2px rgba(34, 60, 80, 0.2);
}
.header__drop-top {
  padding: 25px 0;
  border-bottom: 1px solid #f0f1f3;
}
.header__drop-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
  font-size: 22px;
  color: rgba(3, 36, 61, 0.5);
}
.header__drop-top ul li._active {
  font-weight: 700;
  color: #03243d;
}
.header__drop-top a:hover {
  color: currentColor;
}
.header__drop-bottom {
  padding: 25px 0;
}
.header__drop-bottom ul {
  font-size: 18px;
  -webkit-columns: 4;
  -moz-columns: 4;
  columns: 4;
}
.header__drop-bottom ul li {
  margin-bottom: 10px;
}

.mob-menu-overlay {
  display: none;
  position: absolute;
  z-index: 105;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.75);
}

.mob-menu {
  position: fixed;
  top: 0;
  right: 100%;
  width: 100%;
  max-width: 375px;
  height: 100vh;
  color: #000;
  background: #fff;
  text-align: center;
  overflow: auto;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: 110;
}
.mob-menu._show {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.mob-menu__close-btn {
  padding: 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
  line-height: 1;
}
.mob-menu__wrapper {
  padding: 30px 0;
}
.mob-menu__wrapper ._row {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}
.mob-menu__wrapper ._row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mob-menu__logo {
  margin-bottom: 15px;
}
.mob-menu__logo img {
  width: 100%;
  max-width: 180px;
}
.mob-menu__tel {
  font-weight: 500;
  font-size: 22px;
}
.mob-menu .search-form {
  width: 100%;
  margin-top: 10px;
}
.mob-menu__nav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
}
.mob-menu__nav-menu ul li.current-menu-item {
  color: var(--main-color);
}
.mob-menu__nav-menu ul li.has-sub-menu ul {
  padding-top: 10px;
  gap: 5px;
  font-size: 16px;
}
.mob-menu__nav-menu ul li.has-sub-menu > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.mob-menu__nav-menu ul li.has-sub-menu > a:hover {
  color: currentColor;
}
.mob-menu__nav-menu ul li.has-sub-menu > a::after {
  content: "\e90b";
  font-family: "icomoon";
  line-height: 1;
  font-size: 6px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mob-menu__nav-menu ul li.has-sub-menu._active > a::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.mob-menu__socials-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.mob-menu a {
  text-decoration: none;
}

.footer {
  background: #f0f5f9;
  font-size: 15px;
}
.footer__top {
  padding: 75px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 991px) {
  .footer__top {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}
.footer__logo {
  width: 100%;
  max-width: 220px;
}
@media (max-width: 991px) {
  .footer__logo {
    max-width: 180px;
    margin: 0 auto;
  }
}
.footer__logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__dev {
  margin-top: auto;
}
.footer__dev .ic {
  font-size: 22px;
}
.footer__col._info {
  width: 100%;
  max-width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 991px) {
  .footer__col._info {
    gap: 15px;
  }
}
.footer__col._info .footer__col-content._contacts {
  padding-top: 0;
}
.footer__col nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.footer__col._right {
  width: 100%;
  max-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
}
@media (max-width: 991px) {
  .footer__col._right {
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .footer__col._contacts {
    display: none;
  }
}
.footer__col._contacts .footer__col-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  .footer__col._nav .footer__col-content {
    display: none;
  }
}
@media (max-width: 991px) {
  .footer__col._nav .footer__col-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 7px;
  }
  .footer__col._nav .footer__col-title::after {
    content: "\e90b";
    font-family: "icomoon";
    line-height: 1;
    font-size: 8px;
    top: 1px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .footer__col._nav .footer__col-title._active::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
.footer__col-title {
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .footer__col-title {
    font-size: 20px;
  }
}
.footer__col-content {
  padding-top: 25px;
}
@media (max-width: 991px) {
  .footer__col-content {
    padding-top: 15px;
  }
}
.footer__col-content._worktime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 15px;
}
@media (max-width: 991px) {
  .footer__col-content._worktime {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .footer__col-content .socials-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .footer__col-content._contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.footer__tel {
  font-size: 22px;
  font-weight: 500;
}
.footer__worktime-item ._title {
  font-weight: 700;
}
.footer__bottom-inner {
  padding: 25px 0;
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid #cdd8df;
}
@media (max-width: 991px) {
  .footer__bottom-inner {
    font-size: 18px;
  }
}

.home-intro {
  position: relative;
}
.home-intro .swiper-slide {
  padding: 70px 0;
  background: no-repeat center/cover;
  color: #fff;
  cursor: default;
}
@media (max-width: 1299px) {
  .home-intro .swiper-slide {
    background-position: left center;
  }
  .home-intro .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b4668;
    opacity: 0.7;
  }
}
@media (max-width: 991px) {
  .home-intro .swiper-slide {
    padding: 40px 0;
  }
}
.home-intro .swiper-slide__inner {
  padding: 70px 15px;
  width: 100%;
  max-width: 930px;
  min-height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.54);
  position: relative;
}
@media (max-width: 991px) {
  .home-intro .swiper-slide__inner {
    padding: 40px 15px;
  }
}
.home-intro .swiper-slide__inner .btn {
  color: #fff;
  border-color: #fff;
}
.home-intro .s-pagination {
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 60px;
}
@media (min-width: 992px) {
  .home-intro .s-pagination {
    bottom: 110px;
  }
}
.home-intro .s-pagination span.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
@media (min-width: 992px) {
  .home-intro .s-pagination span.swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    margin: 0 15px;
  }
}
.home-intro
  .s-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--main-color);
}
.home-intro__subtitle {
  font-size: 18px;
}
@media (max-width: 991px) {
  .home-intro__subtitle {
    font-size: 15px;
  }
}
.home-intro__title {
  font-size: 38px;
  font-weight: 700;
  margin: 5px 0 45px;
}
@media (max-width: 991px) {
  .home-intro__title {
    font-size: 26px;
    margin: 5px 0 20px;
  }
}

@media (min-width: 576px) {
  .home-services .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, auto)) [2];
    grid-template-columns: repeat(2, minmax(0, auto));
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 80px 20px;
  }
}
@media (min-width: 768px) {
  .home-services .swiper-wrapper {
    -ms-grid-columns: (minmax(0, auto)) [3];
    grid-template-columns: repeat(3, minmax(0, auto));
  }
}
@media (min-width: 1200px) {
  .home-services .swiper-wrapper {
    -ms-grid-columns: (minmax(0, auto)) [4];
    grid-template-columns: repeat(4, minmax(0, auto));
  }
}
.home-services__item {
  width: 240px;
}
@media (max-width: 575px) {
  .home-services__item {
    width: 100%;
  }
}
.home-services__item-img {
  padding-bottom: 100%;
  width: 100%;
  display: block;
  border-radius: 12px;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 575px) {
  .home-services__item-img {
    margin-bottom: 10px;
  }
}
.home-services__item-img:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.home-services__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  will-change: transform;
}
.home-services__item-title {
  font-size: 22px;
  text-align: center;
}
@media (max-width: 575px) {
  .home-services__item-title {
    font-size: 16px;
  }
}

.sect-line {
  padding: 20px 0;
  display: block;
  background: var(--main-color);
  color: #fff;
  font-size: 24px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .sect-line {
    padding: 10px 0;
    font-size: 18px;
  }
}
.sect-line:hover {
  color: #fff;
}
.sect-line .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.sect-line .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.tab-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .tab-btns {
    gap: 10px;
  }
}
.tab-btns li._active a {
  color: var(--main-color);
  border-color: var(--main-color);
}
.tab-btns li a {
  padding: 12px 25px;
  display: inline-block;
  color: #686c7d;
  font-size: 22px;
  border-radius: 10px;
  border: 1px solid #c6cfd8;
  line-height: 1;
}
@media (max-width: 991px) {
  .tab-btns li a {
    padding: 7px 15px;
    font-size: 18px;
  }
}
.tab-btns li a:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

.home-tabs__inner {
  position: relative;
  z-index: 0;
}
.home-tabs__abstract {
  position: absolute;
  top: -85px;
  right: -220px;
  width: 440px;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0.58;
  z-index: -1;
}
.home-tabs .tab-btns {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .home-tabs .tab-btns {
    display: none;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .home-tabs .tab:not(:last-child) {
    margin-bottom: 30px;
  }
}
.home-tabs .tab-about .tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 1199px) {
  .home-tabs .tab-about .tab-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.home-tabs .tab-about .tab-content .content-box {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
@media (max-width: 991px) {
  .home-tabs
    .tab-about
    .tab-content
    .content-box
    > *:not(:first-child):not(.tab-about__show-all) {
    display: none;
  }
}
.home-tabs .tab-about__video {
  width: 100%;
  max-width: 610px;
  height: 100%;
  background: no-repeat center/cover;
  aspect-ratio: 16/9;
  border-radius: 12px;
}
@media (max-width: 1199px) {
  .home-tabs .tab-about__video {
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .home-tabs .tab-about__video {
    display: none;
  }
}
.home-tabs .tab-about__show-all {
  color: var(--main-color);
  text-decoration: underline;
}
@media (min-width: 992px) {
  .home-tabs .tab-about__show-all {
    display: none;
  }
}
@media (min-width: 992px) {
  .home-tabs .tab-video {
    display: none;
  }
}
.home-tabs .tab-video__item {
  width: 100%;
}
.home-tabs .tab-video__item .play-btn__wrap {
  position: absolute;
  top: 0;
  left: 0;
}
.home-tabs .tab-video__item-img {
  padding-bottom: 115%;
  display: block;
  width: 100%;
  background: no-repeat center/cover;
  border-radius: 12px;
  margin-bottom: 10px;
  position: relative;
}
.home-tabs .tab-video__item-title {
  font-size: 20px;
  font-weight: 500;
}

.sect-doctors .swiper {
  padding-bottom: 1px;
}
.sect-doctors .swiper-slide {
  height: 100%;
}
@media (max-width: 575px) {
  .sect-doctors .swiper-slide {
    height: auto;
  }
}
.sect-doctors .doctor-card {
  height: 100%;
}

.doctor-card {
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991px) {
  .doctor-card {
    gap: 10px;
  }
}
.doctor-card__img {
  display: block;
  padding-bottom: 110%;
  width: 100%;
  background: no-repeat center top/cover;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .doctor-card__img {
    padding-bottom: 100%;
  }
}
.doctor-card__name {
  display: block;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .doctor-card__name {
    font-size: 20px;
  }
}
.doctor-card__post {
  color: #8b9aa6;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 991px) {
  .doctor-card__post {
    font-size: 14px;
  }
}
.doctor-card__exp {
  font-size: 15px;
  color: #8b9aa6;
}
@media (max-width: 991px) {
  .doctor-card__exp {
    font-size: 14px;
  }
}
.doctor-card__actions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-top: auto;
}
.doctor-card__actions a {
  width: 100%;
}

.promo-card {
  padding: 30px 25px;
  min-height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  background: no-repeat center/cover;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.promo-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .promo-card {
    min-height: 340px;
  }
}
@media (max-width: 575px) {
  .promo-card {
    min-height: 270px;
  }
}
.promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.promo-card__title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
@media (max-width: 991px) {
  .promo-card__title {
    font-size: 26px;
  }
}

.sect-form._no-abs .sect-form__inner::before {
  display: none;
}
.sect-form__inner {
  padding: 40px;
  border: 22px solid #f0f5f9;
  position: relative;
}
@media (max-width: 991px) {
  .sect-form__inner {
    padding: 20px;
    border-width: 7px;
  }
}
.sect-form__inner::before {
  content: "";
  width: 405px;
  height: 382px;
  background: url("../img/form-abstract.png") no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 60px;
}
@media (max-width: 991px) {
  .sect-form__inner::before {
    display: none;
  }
}
.sect-form__cloud {
  position: absolute;
  padding: 40px 35px 75px;
  top: -100px;
  right: 260px;
  width: 370px;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background: url("../img/form-cloud.png") no-repeat center/contain;
  z-index: 3;
}
@media (max-width: 1599px) {
  .sect-form__cloud {
    display: none;
  }
}
.sect-form .form {
  width: 100%;
  max-width: 930px;
  background: #fff;
  border-radius: 12px;
  position: relative;
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991px) {
  .news-card {
    gap: 15px;
  }
}
.news-card__img {
  display: block;
  background: no-repeat center/cover;
  padding-bottom: 79%;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.news-card__img:hover {
  -webkit-filter: brightness(1.05);
  filter: brightness(1.05);
}
.news-card__title {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .news-card__title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .news-card .btn {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .sect-news .swiper-slide {
    height: 100%;
  }
}
.sect-news .swiper-slide .btn {
  margin-top: auto;
}

.service-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media (max-width: 1399px) {
  .service-intro__inner {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .service-intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.service-intro__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
@media (max-width: 991px) {
  .service-intro__content {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}
.service-intro__swiper-box {
  width: 100%;
  height: 100%;
  max-width: 600px;
}
@media (max-width: 1399px) {
  .service-intro__swiper-box {
    max-width: 500px;
  }
}
@media (max-width: 1199px) {
  .service-intro__swiper-box {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .service-intro__swiper-box {
    max-width: 600px;
    margin: 0 auto;
  }
}
.service-intro .swiper {
  border-radius: 12px;
}
.service-intro .swiper-slide {
  padding-bottom: 68%;
  background: no-repeat center/cover;
}
.service-intro__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 25px;
}
.service-intro__actions .btn {
  min-width: 200px;
}
@media (max-width: 991px) {
  .service-intro__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.service-intro .s-pagination {
  display: block;
  margin-top: 20px;
}

.symptom-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 40px;
}
@media (max-width: 991px) {
  .symptom-list {
    gap: 10px;
  }
}

.symptom-item {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  font-size: 18px;
  border: 1px solid rgba(0, 175, 255, 0.2117647059);
  border-radius: 70px;
  -webkit-box-shadow: 10px 5px 17px 3px rgba(0, 0, 0, 0.04);
  box-shadow: 10px 5px 17px 3px rgba(0, 0, 0, 0.04);
}
@media (max-width: 991px) {
  .symptom-item {
    padding: 10px 15px;
    font-size: 15px;
  }
}

.service-tabs .tab-btns {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .service-tabs .tab-btns {
    margin-bottom: 30px;
  }
}

.faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1px;
}

.faq-item {
  border: 1px solid #f0f5f9;
}
.faq-item._active .faq-item__title::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.faq-item__title {
  padding: 25px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  background: #f0f5f9;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 991px) {
  .faq-item__title {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.faq-item__title::after {
  content: "+";
  display: block;
  font-size: 39px;
  font-weight: 500;
  line-height: 0;
  color: var(--main-color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .faq-item__title::after {
    font-size: 30px;
  }
}
.faq-item__content {
  padding: 30px 60px;
  display: none;
  border-top: 1px solid #f0f5f9;
}
@media (max-width: 991px) {
  .faq-item__content {
    padding: 15px;
    font-size: 15px;
  }
}

.video-card__poster {
  display: block;
  width: 100%;
  background: no-repeat center/cover;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .video-card__poster {
    border-radius: 6px;
    margin-bottom: 10px;
  }
}
.video-card__poster::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.video-card__title {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .video-card__title {
    font-size: 18px;
  }
}

.sect-adv__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sect-adv__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 15%;
  flex: 1 0 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .sect-adv__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 30%;
    flex: 1 0 30%;
  }
}
@media (max-width: 575px) {
  .sect-adv__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    text-align: left;
  }
}
.sect-adv__item-icon {
  height: 55px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 575px) {
  .sect-adv__item-icon {
    height: auto;
    width: 55px;
  }
}
.sect-adv__item-title {
  font-size: 15px;
}

@media (min-width: 576px) {
  .sect-services .swiper-slide {
    height: 100%;
  }
}

.service-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.service-card__img {
  background: no-repeat center/cover;
  height: 300px;
  display: block;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.service-card__img:hover {
  opacity: 0.8;
}
.service-card__title {
  font-size: 22px;
  font-weight: 700;
}
.service-card__content {
  color: #8797a4;
  font-size: 15px;
}
.service-card__actions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: auto;
}
.service-card__actions .btn {
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
}

.sprice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #e2ebf2;
}

.sprice-item {
  padding: 20px 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 240px;
  grid-template-columns: auto 240px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .sprice-item {
    padding: 10px 15px;
    -ms-grid-columns: auto 110px;
    grid-template-columns: auto 110px;
    font-size: 15px;
  }
}
.sprice-item._head {
  background: #f8f9fb;
}
.sprice-item._head ._title {
  font-weight: 500;
}
.sprice-item._head ._value {
  color: var(--default-color);
}
.sprice-item:not(:last-child) {
  border-bottom: 1px solid #e2ebf2;
}
.sprice-item ._title {
  font-weight: 400;
}
.sprice-item ._value {
  color: var(--main-color);
  text-align: end;
}

.doctor-intro {
  min-height: 560px;
  background: #f0f5f9;
}
.doctor-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.doctor-intro__content {
  padding: 30px 0;
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .doctor-intro__content {
    padding-top: 0;
    max-width: 100%;
    gap: 15px;
  }
}
.doctor-intro__mob-img {
  height: 420px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center top;
  object-position: center top;
  border-radius: 12px;
}
@media (min-width: 992px) {
  .doctor-intro__mob-img {
    display: none;
  }
}
@media (max-width: 480px) {
  .doctor-intro__mob-img {
    width: 100%;
    object-fit: cover;
  }
}
.doctor-intro__desc {
  font-size: 22px;
  font-weight: 500;
  color: #7b8f9f;
}
@media (max-width: 991px) {
  .doctor-intro__desc {
    font-size: 18px;
  }
}
.doctor-intro__desc-list li {
  font-size: 15px;
}
.doctor-intro__desc-list li:not(:last-child) {
  margin-bottom: 2px;
}
.doctor-intro__desc-list li span {
  color: #8395a3;
}
.doctor-intro__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .doctor-intro__actions {
    margin: 0;
  }
}
.doctor-intro__main-img {
  width: 100%;
  max-width: 420px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center top;
  object-position: center top;
  border-radius: 12px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .doctor-intro__main-img {
    display: none;
  }
}

.timeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  position: relative;
}
@media (max-width: 991px) {
  .timeline-item {
    gap: 10px;
  }
}
.timeline-item:not(:last-child) {
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .timeline-item:not(:last-child) {
    padding-bottom: 30px;
  }
}
.timeline-item:last-child .timeline-item__dot::before {
  display: none;
}
.timeline-item__mark {
  padding: 5px 25px;
  width: 110px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #e2ebf2;
  font-size: 18px;
  font-weight: 500;
  color: #7b8f9f;
  text-align: center;
  border-radius: 42px;
}
@media (max-width: 991px) {
  .timeline-item__mark {
    padding: 5px 7px;
    width: 60px;
    font-size: 15px;
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .timeline-item__mark {
    font-size: 14px;
  }
}
.timeline-item__dot {
  width: 11px;
  height: 11px;
  background: var(--main-color);
  border-radius: 50%;
  margin-top: 13px;
}
@media (max-width: 991px) {
  .timeline-item__dot {
    width: 8px;
    height: 8px;
  }
}
.timeline-item__dot::before {
  content: "";
  display: block;
  width: 3px;
  background: #e2ebf2;
  position: absolute;
  height: 100%;
  bottom: 0;
  -webkit-transform: translate(4px, 18px);
  -ms-transform: translate(4px, 18px);
  transform: translate(4px, 18px);
  z-index: -1;
}
@media (max-width: 991px) {
  .timeline-item__dot::before {
    -webkit-transform: translate(3px, 18px);
    -ms-transform: translate(3px, 18px);
    transform: translate(3px, 18px);
    width: 2px;
  }
}
.timeline-item__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  font-size: 15px;
  position: relative;
  top: 8px;
}

.doctor-education__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1199px) {
  .doctor-education__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 30px;
  }
}
.doctor-education__left {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
@media (max-width: 991px) {
  .doctor-education__left {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}
.doctor-education__right {
  height: 100%;
}
@media (max-width: 1199px) {
  .doctor-education__right {
    padding: 25px 0;
    position: relative;
  }
  .doctor-education__right::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: -50px;
    width: calc(100% + 100px);
    height: 100%;
    background: #f8f9fb;
    z-index: -1;
  }
}
.doctor-education__swiper-box {
  width: 100%;
  max-width: 530px;
}
@media (max-width: 1199px) {
  .doctor-education__swiper-box {
    margin: 0 auto;
  }
}
.doctor-education__swiper-box .swiper-slide {
  background: no-repeat center/cover;
  aspect-ratio: 16/9;
}
.doctor-education .swiper {
  border-radius: 12px;
}

.sect-faq .tab-btns {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .sect-faq .tab-btns {
    margin-bottom: 20px;
  }
}

.sect-price .tab-btns {
  margin-bottom: 40px;
  display: none;
}
@media (max-width: 991px) {
  .sect-price .tab-btns {
    margin-bottom: 20px;
  }
}

.price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1px;
}

.price-item {
  border: 1px solid #f0f5f9;
}
.price-item._active .price-item__title::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.price-item._head {
  padding: 25px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  background: #03243d;
  color: #fff;
  font-size: 22px;
}
@media (max-width: 991px) {
  .price-item._head {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.price-item__title {
  padding: 25px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  background: #f0f5f9;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .price-item__title {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.price-item__title::after {
  content: "+";
  display: block;
  font-size: 39px;
  font-weight: 500;
  line-height: 0;
  color: var(--main-color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .price-item__title::after {
    font-size: 30px;
  }
}
.price-item__content {
  display: none;
}
@media (max-width: 991px) {
  .price-item__content {
    font-size: 15px;
  }
}
.price-item__content a {
  color: var(--main-color);
  font-weight: 500;
  text-decoration: none;
}
.price-item__content a:hover {
  text-decoration: underline;
}
.price-item__content .content-box > *:not(:last-child) {
  margin-bottom: 0.5em;
}
.price-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.price-item__subitem {
  padding: 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 991px) {
  .price-item__subitem {
    padding: 10px 15px;
  }
}
.price-item__subitem:not(:last-child) {
  border-bottom: 1px solid #f0f5f9;
}
@media (max-width: 575px) {
  .price-item__subitem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.price-item__value {
  color: var(--main-color);
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .price-item__value {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .price-item__value {
    text-align: end;
  }
}

.archive-video__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .archive-video__btns {
    margin-bottom: 30px;
    gap: 10px;
  }
}
.archive-video__btns li._active .btn {
  color: var(--main-color);
  border-color: var(--main-color);
}
.archive-video__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 35px;
}
@media (max-width: 1199px) {
  .archive-video__grid {
    gap: 30px 10px;
  }
}
@media (max-width: 991px) {
  .archive-video__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .archive-video__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.form-frame {
  padding: 40px;
  border: 22px solid #f0f5f9;
}
@media (max-width: 991px) {
  .form-frame {
    padding: 20px;
    border-width: 7px;
  }
}

.fns-form .form__fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-symptoms__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 991px) {
  .archive-symptoms__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.archive-symptoms__content {
  flex: 1 0 0;
}
.archive-symptoms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 25px;
}
@media (max-width: 1399px) {
  .archive-symptoms__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .archive-symptoms__grid {
    gap: 20px 10px;
  }
}
@media (max-width: 575px) {
  .archive-symptoms__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.symptoms-aside {
  width: 100%;
  max-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 991px) {
  .symptoms-aside {
    max-width: 100%;
  }
}
.symptoms-aside__item {
  background: #f0f5f9;
}
.symptoms-aside__item._active .symptoms-aside__item-title::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.symptoms-aside__item-title {
  padding: 3px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  background-color: transparent;
  color: var(--main-color);
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  .symptoms-aside__item-title {
    padding: 2px 20px;
    font-size: 24px;
  }
}
.symptoms-aside__item-title:hover {
  background-color: #e4e9ee;
}
.symptoms-aside__item-title::after {
  content: "+";
  font-size: 39px;
  font-weight: 500;
  transition: all 0.4s ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .symptoms-aside__item-title::after {
    font-size: 30px;
  }
}
.symptoms-aside__item-content {
  /* display: none; */
  padding: 15px 50px;
  font-size: 22px;
  font-weight: 500;
  border-top: 1px solid #c6cfd8;
}
.symptoms-aside__item-content li:not(:last-child) {
  margin-bottom: 5px;
}

.symptom-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.symptom-card__img {
  display: block;
  width: 100%;
  height: 310px;
  background: no-repeat center/cover;
  border-radius: 12px;
  margin-bottom: 15px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  .symptom-card__img {
    margin-bottom: 5px;
  }
}
@media (max-width: 575px) {
  .symptom-card__img {
    height: 250px;
    border-radius: 6px;
  }
}
.symptom-card__img:hover {
  opacity: 0.8;
}
.symptom-card__title {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .symptom-card__title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.symptom-card__desc {
  font-size: 15px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .symptom-card__desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.symptom-card .btn {
  margin-top: auto;
}
@media (max-width: 575px) {
  .symptom-card .btn {
    width: 100%;
  }
}

.seminar-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.seminar-card__img {
  display: block;
  width: 100%;
  height: 305px;
  background: no-repeat center/cover;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 575px) {
  .seminar-card__img {
    height: 250px;
  }
}
.seminar-card__img:hover {
  opacity: 0.8;
}
.seminar-card__title {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .seminar-card__title {
    font-size: 18px;
  }
}
.seminar-card__note {
  color: rgba(3, 36, 61, 0.46);
  font-size: 15px;
}
@media (max-width: 991px) {
  .seminar-card__note {
    font-size: 14px;
  }
}
.seminar-card .btn {
  margin-top: auto;
}

.archive-seminar__grid .seminar-card:nth-child(n + 13) {
  display: none;
}

.eeg-sect:nth-child(even) {
  background: #f8f9fb;
}
.eeg-sect:not(:first-child) .eeg-sect__content {
  display: none;
}
.eeg-sect__m {
  margin: 40px 0;
}
@media (max-width: 991px) {
  .eeg-sect__m {
    margin: 40px 0;
  }
}
.eeg-sect__p {
  padding: 40px 0;
}
.eeg-sect__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .eeg-sect__top {
    gap: 20px;
  }
}
.eeg-sect__index {
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .eeg-sect__index {
    font-size: 80px;
  }
}
.eeg-sect__title {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .eeg-sect__title {
    font-size: 20px;
  }
}
.eeg-sect__content {
  width: 100%;
  max-width: 900px;
}
.eeg-sect__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .eeg-sect__next {
    width: 100%;
  }
}

.popup-eeg-submit .form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.popup-eeg-submit__total {
  margin: 15px 0;
  font-size: 22px;
  font-weight: 500;
}
.popup-eeg-submit__total span {
  color: var(--main-color);
}

.sect-contacts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 991px) {
  .sect-contacts__inner {
    gap: 30px;
  }
}
.sect-contacts__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 30px;
}
@media (max-width: 575px) {
  .sect-contacts__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.sect-contacts__grid .contact-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.contact-item__title {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .contact-item__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.social-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .social-btns {
    gap: 15px;
  }
}

.social-btn {
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  color: rgba(3, 36, 61, 0.54);
  border: 1px solid rgba(3, 36, 61, 0.17);
  border-radius: 45px;
}
@media (max-width: 480px) {
  .social-btn {
    width: 100%;
  }
}
.social-btn:hover {
  color: currentColor;
  border-color: rgba(3, 36, 61, 0.5);
}
.social-btn i {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
}
.social-btn._wa i {
  font-size: 14px;
  background-color: #2cb742;
}
.social-btn._tg i {
  padding: 1px 2px 0 0;
  position: relative;
  background-color: #0088cc;
}

.address-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 75px;
}
@media (max-width: 1399px) {
  .address-box {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .address-box {
    -ms-grid-columns: (minmax(0, 1fr)) [1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
}

.address-item {
  padding: 25px 20px;
  border: 5px solid var(--main-color);
}
@media (max-width: 991px) {
  .address-item {
    padding: 20px 15px;
    border-width: 3px;
  }
}
.address-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .address-item__title {
    margin-bottom: 10px;
  }
}
.address-item__title i {
  color: var(--main-color);
  font-size: 21px;
}

#sect-map {
  height: 500px;
}
@media (max-width: 991px) {
  #sect-map {
    height: 400px;
  }
}

.vacancies__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1199px) {
  .vacancies__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.vacancies__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  max-width: 930px;
}
@media (max-width: 1199px) {
  .vacancies__content {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 100%;
  }
}
.vacancies__aside {
  width: 100%;
  max-width: 520px;
}
@media (max-width: 1199px) {
  .vacancies__aside {
    max-width: 100%;
  }
}
.vacancies__aside-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .vacancies__aside-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.vacancies-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1px;
}

.vacancy-item {
  background: #f0f5f9;
  border: 1px solid #f0f5f9;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.vacancy-item._active {
  background: #fff;
}
.vacancy-item._active .vacancy-item__title::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.vacancy-item__title {
  padding: 25px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 991px) {
  .vacancy-item__title {
    padding: 10px 15px;
    font-size: 18px;
  }
}
.vacancy-item__title::after {
  content: "+";
  font-size: 39px;
  font-weight: 500;
  color: var(--main-color);
  line-height: 0.6;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .vacancy-item__title::after {
    font-size: 28px;
  }
}
.vacancy-item__content {
  display: none;
  padding: 35px 50px;
  background: #fff;
  border-top: 1px solid #f0f5f9;
}
@media (max-width: 991px) {
  .vacancy-item__content {
    padding: 10px 15px;
  }
}

.seminar-intro {
  padding-top: 10px !important;
  background: #f0f5f9;
}
.seminar-intro__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .seminar-intro__inner {
    flex-direction: column;
  }
}
.seminar-intro__content {
  flex: 1 0 0;
  max-width: 800px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  font-size: 15px;
}
@media (max-width: 991px) {
  .seminar-intro__content {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    max-width: 100%;
    gap: 20px;
  }
}
.seminar-intro__speakers {
  color: var(--main-color);
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .seminar-intro__speakers {
    font-size: 18px;
  }
}
.seminar-intro__speakers span:first-child {
  color: #7b8f9f;
}
.seminar-intro__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.seminar-intro__list p {
  padding-right: 5px;
  display: inline;
  color: rgba(3, 36, 61, 0.46);
}
@media (max-width: 575px) {
  .seminar-intro__btn {
    width: 100%;
  }
}
.seminar-intro__media {
  width: 100%;
  height: 100%;
  max-height: 400px;
  max-width: 700px;
  background: no-repeat center/cover;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
@media (max-width: 1399px) {
  .seminar-intro__media {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .seminar-intro__media {
    margin: 0 auto;
    max-width: 600px;
    border-radius: 6px;
  }
}
.seminar-intro__media a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
}

.seminar-tabs .tab-btns {
  margin-bottom: 50px;
}

.seminar-tablist__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
}
@media (max-width: 991px) {
  .seminar-tablist__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }
}

.seminar-tabitem {
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  border: 1px solid rgba(0, 175, 255, 0.2117647059);
  border-radius: 70px;
  -webkit-box-shadow: 10px 5px 17px 3px rgba(0, 0, 0, 0.04);
  box-shadow: 10px 5px 17px 3px rgba(0, 0, 0, 0.04);
}
@media (max-width: 991px) {
  .seminar-tabitem {
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 15px;
  }
}

.expert-item:nth-child(odd) {
  background: #f0f5f9;
}
.expert-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .expert-item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.expert-item__content {
  padding: 30px 0;
  width: 100%;
  max-width: 660px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .expert-item__content {
    max-width: 100%;
    font-size: 15px;
  }
}
.expert-item__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .expert-item__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.expert-item__media {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.expert-item__media img {
  height: 530px;
  width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  mix-blend-mode: darken;
}
@media (max-width: 991px) {
  .expert-item__media img {
    height: 100%;
    max-height: 400px;
    width: auto;
  }
}

.symptom-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 991px) {
  .symptom-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.symptom-main__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .symptom-main__main {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}
.symptom-main__main .container {
  padding: 0;
}
@media (min-width: 992px) {
  .symptom-main .sect-adv__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 30%;
    flex: 1 0 30%;
  }
}

.symptom-content {
  margin-top: 0 !important;
}

.popup {
  display: none;
  min-width: 300px;
  max-width: 600px;
  padding: 30px;
  margin: 30px auto;
  background: #fff;
  border-radius: 5px;
  position: relative;
  z-index: 10;
}
@media (max-width: 575px) {
  .popup {
    padding: 20px 20px;
    border-radius: 3px;
  }
}
.popup.content {
  max-width: 1000px;
  text-align: left;
}
.popup.content h4 {
  margin-bottom: 15px;
}
.popup.content p {
  margin-bottom: 15px;
  text-align: start;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
.popup.content b {
  font-weight: 700;
  font-size: 16px;
}
.popup__title {
  color: #000;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}
.popup .js-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.popup .js-form .form-policy a {
  color: red;
}
.popup input:not([type="checkbox"]) {
  width: 100%;
}
.popup__tx {
  max-width: 450px;
}
.popup__tx p {
  font-weight: 400;
  font-size: 16px;
}
.popup__video {
  padding: 0;
  width: 100%;
  max-width: 1200px;
  background: none;
}
.popup__video .plyr__video-wrapper {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.popup__video video {
  width: auto;
  max-width: 100%;
  max-height: 85vh;
}
.popup .form__accept {
  font-size: 15px;
}

.popup-callback {
  width: 100%;
  max-width: 450px;
}

@media (max-width: 991px) {
  .sect-p {
    padding: 40px 0;
  }
}

@media (max-width: 991px) {
  .sect-m {
    margin: 40px 0;
  }
}

@media (max-width: 991px) {
  .page-p {
    padding: 30px 0;
  }
}

@media (max-width: 991px) {
  .page-m {
    margin: 30px 0;
  }
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.wpcf7 form .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form .wpcf7-not-valid {
  border: 1px solid rgb(255, 83, 83) !important;
}

.wpcf7-response-output {
  display: none;
}

.archive-news .news-card:nth-child(n + 13) {
  display: none;
}

.archive-promo .promo-card:nth-child(n + 10) {
  display: none;
}

.archive-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.search-filter-field {
  width: 100%;
  max-width: 500px;
}
.search-filter-component-combobox-base__listbox-option {
  cursor: pointer;
}
@media (max-width: 991px) {
  .search-filter-label {
    font-size: 15px;
  }
}

.archive-doctor__inner .doctor-card:nth-child(n + 13) {
  display: none;
}

.archive-service__grid:nth-child(n + 10) {
  display: none;
}

.archive-service__sect-title {
  margin-bottom: 20px;
}

.menu-item-97 > .sub-menu-wrap {
  display: none;
}

[data-showmore-items] {
  opacity: 0;
}
[data-showmore-btn] {
  display: none;
}

.archive-seminar__grid .seminar-card:nth-child(n + 13) {
  display: none;
}

form.wpcf7-form.submitting [type="submit"] {
  filter: grayscale(1);
  pointer-events: none;
}

.symptom-main__main .sect-form__inner::before {
  display: none;
}
.symptom-main__main .sect-doctors .btn--more {
  display: none;
}

.wpcf7-list-item {
  margin: 0;
}

div.rasp-callback {
  width: 100%;
  max-width: 600px;
}
.rasp-callback iframe {
  width: 100%;
  min-height: 820px;
}

._disabled {
  pointer-events: none;
  opacity: 0.8;
  filter: grayscale(1);
}

.mrt-form__submit {
  min-width: 350px;
  margin-top: 10px;
}

.search__grid h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.search__grid > div:not(:last-child) {
  margin-bottom: 20px;
}

.sect-serts__form {
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
}
.sect-serts__step-note {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.sect-serts__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sect-serts__input-wrap {
  flex: 30% 1 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sect-serts__input-wrap label {
  font-size: 15px;
}
.sect-serts__input-wrap input {
  padding: 5px 15px;
  border: 1px solid #96d9ff;
  border-radius: 4px;
}
.sect-serts__amount-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.sect-serts__amount-item {
  flex: 25% 0 0;
}
.sect-serts__amount-item input[type="radio"] {
  display: none;
}
.sect-serts__amount-card {
  padding-bottom: 70%;
  background: no-repeat center/cover;
  box-shadow: inset 0 0 0 5px transparent;
  cursor: pointer;
  transition: all 0.2s ease !important;
}
.sect-certs__amount-value {
  margin-top: 5px;
  text-align: center;
  font-weight: 600;
}
.sect-serts__amount-item
  input[type="radio"]:checked
  + .sect-serts__amount-card {
  box-shadow: inset 0 0 0 5px #2f7bc2;
}
.sect-serts__custom-amount-wrap {
  padding: 10px 20px;
  max-width: 300px;
  border: 1px solid #96d9ff;
  border-radius: 4px;
  margin: 0 auto;
}
.sect-serts__custom-amount-wrap input {
  width: 100%;
  border-bottom: 1px solid #96d9ff;
  text-align: center;
}
.sect-serts__custom-amount-wrap > div {
  display: flex;
  gap: 10px;
}
.sect-serts__amount-item._custom {
  flex: 100% 0 0;
}
.sect-serts__input-wrap textarea {
  padding: 10px;
  width: 100%;
  border: 1px solid #96d9ff;
  border-radius: 4px;
}
.sect-serts__form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.sect-serts__form-actions a {
  color: #0cf;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .sect-serts__form {
    gap: 30px;
  }
  .sect-serts__amount-wrap {
    gap: 10px;
  }
  .sect-serts__amount-item {
    flex: 48% 0 0;
  }
}
@media (max-width: 575px) {
  .sect-serts__input-wrap {
    flex: 100% 0 0;
  }
}

.page-id-725 .page .wp-block-file {
  padding: 10px;
  background: #F0F5F9;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.page-id-725 .page .wp-block-file:not(:last-child) {
  margin-bottom: 16px;
}
.page-id-725 .page .wp-block-file a {
  text-decoration: none;
  padding: 0;
}
.page-id-725 .page .wp-block-file a:hover {
  text-decoration: underline;
}
.page-id-725 .wp-block-file__button {
  background: none;
  color: #000;
}