@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/HelveticaNeueCyr/helveticaneuecyr-roman.ttf");
}
@font-face {
  font-display: swap;
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 550;
  src: url("/fonts/HelveticaNeueCyr/helveticaneuecyr-medium.ttf");
}
@font-face {
  font-display: swap;
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/HelveticaNeueCyr/helveticaneuecyr-medium.ttf");
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: none;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
main {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

body {
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  background: transparent;
  text-decoration: none;
}

button,
input {
  line-height: normal;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

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

textarea {
  overflow: auto;
  vertical-align: top;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

textarea:focus,
input:focus {
  outline: 0;
}

input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.space {
  margin: 0 5px;
}

.low-focus {
  color: #7A7A7A;
}

.highlight {
  color: #0DBC91;
}

.bg-active {
  background: #0DBC91;
  color: #005C90;
  padding: 0 16px;
  border-radius: 4px;
}

.bg-second {
  background: #F5F7F7;
}

.color-main {
  color: #E31048;
}

.color-second {
  color: #005C90;
}

.shadow {
  box-shadow: 0px 5px 10px rgba(108, 140, 199, 0.2);
}

.shadow-light {
  box-shadow: 0px 10px 30px rgba(108, 140, 199, 0.3);
}

.container {
  margin: auto;
}

.container-slim {
  padding: 0 55px;
}

.p-relative {
  position: relative;
}

.center-v {
  display: flex;
  align-items: center;
}

.center-h {
  display: flex;
  justify-content: center;
}

.hidden-light {
  display: none;
}

.hidden {
  display: none !important;
}

.invisible {
  opacity: 0;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.grow-1,
.filler {
  flex-grow: 1;
}

.row-2 {
  display: flex;
  flex-wrap: wrap;
}
.row-2 > .col {
  width: 50%;
}

.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gap-10 {
  gap: 10px;
}

.gap-30 {
  gap: 30px;
}

.row {
  display: flex;
}

.row-3 {
  display: flex;
  flex-wrap: wrap;
}
.row-3 > .col {
  width: 33.3333333333%;
}

.row-1-3 {
  display: flex;
}
.row-1-3 > .col:first-child {
  width: 25%;
}
.row-1-3 > .col:last-child {
  width: 75%;
}

.row-1-2 {
  display: flex;
}
.row-1-2 > .col:first-child {
  width: 33%;
}
.row-1-2 > .col:last-child {
  width: 66%;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.w-50 {
  width: 50% !important;
}

body {
  font-family: "HelveticaNeueCyr", Arial, Helvetica, sans-serif;
  color: #363F3C;
  font-size: 17px;
  background: #fff;
}

body.overflow {
  overflow: hidden;
}

a {
  color: #7A7A7A;
}
b {
  font-weight: 700;
}

h1,
h2 {
  font-size: 85px;
  font-family: "HelveticaNeueCyr", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 65px;
}

h3 {
  font-size: 65px;
  font-family: "HelveticaNeueCyr", Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.sub-headline {
  font-family: "HelveticaNeueCyr", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
}

mark {
  color: #E31048;
  background: none;
}

.beautiful-formelement {
  position: relative;
}

.beautiful-input__plaholder {
  position: absolute;
  left: 30px;
  top: 0;
  cursor: text;
}

.text-area.beautiful-input__input + .beautiful-input__plaholder {
  top: 20px;
}

.beautiful-input__input {
  width: 100%;
}

.beautiful-input__input.text-area + span:before,
.beautiful-input__input:invalid + span:before {
  content: attr(placeholder);
  position: relative;
  color: #8f8f8f;
}

.beautiful-input__input.text-area + span:after,
.beautiful-input__input:invalid + span:after {
  content: "*";
  position: relative;
  color: red;
}

.input,
.text-area {
  outline: none;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  background: #fff;
  resize: none;
  font-family: "HelveticaNeueCyr", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.17px;
  padding: 20px 30px 18px;
}

.attachment-block {
  cursor: pointer;
  display: flex;
}
.attachment-block .attachment-btn {
  margin-right: 20px;
}
.attachment-block .attachment-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.17px;
  margin-bottom: 5px;
}
.attachment-block .attachment-description {
  color: #8f8f8f;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0.14px;
}

@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.btn-main,
.btn {
  box-sizing: border-box;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition-duration: 0.15s;
  font-weight: 700;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  border: 1px solid #E31048;
  border-radius: 10px;
  background: #E31048;
  box-shadow: 0px 15px 30px 0px rgba(255, 35, 93, 0.3);
  padding: 21px 55px;
}
.btn-main:hover,
.btn:hover {
  transform: scale(1.01);
}
.btn-main:active,
.btn:active {
  transform: scale(0.99);
}

.btn-outline {
  background: none;
  color: #E31048;
  box-shadow: none;
}

.attachment-btn {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  background: rgba(227, 16, 72, 0.05);
  background-image: url("/images/utility/attachment.svg");
  background-position: center;
  background-repeat: no-repeat;
}

._popup {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 11;
  overflow-x: auto;
  padding: 40px 0 30px;
}

.sliders-arrows {
  display: flex;
}
.sliders-arrows > * + * {
  margin-left: 20px;
}

.arrow-prev,
.arrow-next {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.arrow-prev::before,
.arrow-next::before {
  content: "";
}
.arrow-prev::before,
.arrow-next::before {
  width: 16px;
  height: 16px;
}
.arrow-prev::before,
.arrow-next::before {
  background: url("/images/utility/arrow-grey.svg");
}
.arrow-prev::before,
.arrow-next::before {
  position: absolute;
  left: calc(50% - 8px);
  right: auto;
  top: calc(50% - 8px);
  bottom: auto;
}
.arrow-prev:hover,
.arrow-next:hover {
  background: rgba(227, 16, 72, 0.05);
}
.arrow-prev:hover::before,
.arrow-next:hover::before {
  background: url("/images/utility/arrow-purple.svg");
}

.arrow-prev {
  transform: scale(-1, 1);
}

.text-section {
  padding: 115px 0 100px;
  font-size: 20px;
  line-height: 160%;
  color: #7A7A7A;
}
.text-section .headline {
  color: #363F3C;
}
.text-section b {
  color: #363F3C;
  font-size: 22px;
}

.breadcrumbs {
  padding: 40px 0;
  margin-bottom: -100px;
}
.breadcrumbs a {
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 300;
}

.closer {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.closer::before, .closer::after {
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 1px);
  background: #b7b7b9;
  transform: rotate(45deg);
}
.closer::after {
  transform: rotate(-45deg);
}

.validate-error {
  border: 1px solid #ff4040;
  animation: horizontal-shaking 0.5s;
}

.phone:hover {
  color: #0dbc91 !important;
}

.email:hover {
  color: #0dbc91 !important;
}

.lightbox {
  display: flex;
  flex-direction: column-reverse;
}

._accordion__head {
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

._accordion__body {
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.mobile-only._accordion ._accordion__body {
  max-height: none;
}

.main-footer .main-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0;
}
.main-footer .main-footer__bottom {
  text-align: center;
  border-top: 1px solid #d6d6d6;
  padding: 18px 0;
}
.main-footer .main-footer__nav {
  display: flex;
  font-size: 17px;
}
.main-footer .main-footer__nav > * + * {
  margin-left: 70px;
}
.main-footer .main-footer__nav li a:hover {
  color: #0DBC91;
}
.main-footer .copyright {
  color: #7A7A7A;
  font-size: 16px;
}
.main-footer .phone {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}
.main-footer .phone b {
  font-weight: 700;
}

header {
  box-shadow: 0px 30px 50px 0px rgba(47, 59, 70, 0.05);
}

.header-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 112px;
  max-width: 1600px;
  margin: auto;
}
.header-block nav ul {
  display: flex;
  align-items: center;
}
.header-block nav ul li {
  margin-right: 42px;
}
.header-block nav ul li a {
  color: #7A7A7A;
  font-size: 17px;
}
.header-block nav ul li a:hover {
  color: #0DBC91;
}
.header-block nav ul li:last-child {
  margin-right: 0px;
}

.header-info {
  display: flex;
  align-items: center;
}

.phone-block {
  margin-right: 53px;
}
.phone-block a {
  font-weight: 400;
  font-size: 20px;
  color: #363F3C;
}
.phone-block a span {
  font-weight: 700;
}

.btn-more button {
  cursor: pointer;
  padding: 22px 40px;
  border: 1px solid #E9184E;
  background: none;
  border-radius: 10px;
  font-family: "HelveticaNeueCyr", Arial, Helvetica, sans-serif;
  font-weight: 550;
  font-size: 17px;
  color: #E9184E;
}

svg {
  height: 80px;
  position: absolute;
  width: 80px;
}

.plate {
  height: 80px;
  width: 80px;
}

.burger {
  filter: url(#gooeyness);
}

.x {
  transform: scale(0);
  transition: transform 400ms;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 50%;
  transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
}

.x .line {
  stroke-width: 5.5px;
}

.active .x {
  transform: scale(1);
  transition: transform 400ms 350ms;
}

/* Den femte rätten */
.plate5 .line {
  transition: stroke-dasharray 400ms 100ms, stroke-dashoffset 400ms 100ms, transform 400ms 100ms;
}

.plate5 .line1 {
  stroke-dasharray: 40 40;
}

.plate5 .line2 {
  stroke-dasharray: 20 20;
}

.plate5 .line3 {
  stroke-dasharray: 20 20;
}

.plate5 .line4 {
  stroke-dasharray: 40 40;
}

.plate5 .x {
  transition: transform 400ms 50ms;
}

.active.plate5 .line {
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms, transform 400ms;
}

.active.plate5 .line1 {
  stroke-dasharray: 1 40;
  stroke-dashoffset: -33px;
}

.active.plate5 .line2 {
  stroke-dasharray: 5 39;
  stroke-dashoffset: -37px;
}

.active.plate5 .line3 {
  stroke-dasharray: 5 39;
  stroke-dashoffset: -37px;
}

.active.plate5 .line4 {
  stroke-dasharray: 1 40;
  stroke-dashoffset: -33px;
}

.active.plate5 .x {
  transition: transform 400ms 50ms;
}

.burger-menu {
  display: none;
}

.text-logo {
  display: inline-block;
  background-image: url(/images/design/text-logo.svg);
  width: 47px;
  height: 47px;
  margin-left: 5px;
}

._ms .splide__track {
  border-radius: 10px;
}

.splide__arrow--prev,
.splide__arrow--next {
  background: none;
  width: 32px;
  height: 32px;
  border: none;
  position: absolute;
  top: calc(50% - 16px);
}
.splide__arrow--prev img,
.splide__arrow--next img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.splide__arrow--prev:hover,
.splide__arrow--next:hover {
  border: none;
  background: none;
  transform: none;
  opacity: 1;
}

.splide__arrow--next {
  right: -82px;
}

.splide__arrow--prev {
  transform: scale(-1, 1) !important;
  left: -82px;
}

.burger-section {
  width: 0;
  position: fixed;
  overflow: hidden;
  z-index: 10;
}

.burger-section {
  position: fixed;
  transition: 0.3s;
  top: 80px;
  background: #fff;
  width: 0;
  height: calc(100vh - 80px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.burger-section::before {
  width: 100%;
  height: 100%;
}
.burger-section::before {
  background: url("/images/design/pattern.png");
}
.burger-section::before {
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
}
.burger-section::before {
  content: "";
  background-size: 150%;
  opacity: 0.05;
  z-index: -1;
}
.burger-section nav {
  flex-grow: 1;
  border-bottom: 1px solid #d6d6d6;
  padding: 50px 20px 66px;
  margin-bottom: 60px;
  position: relative;
}
.burger-section nav::before {
  content: "";
}
.burger-section nav::before {
  width: 75px;
  height: 41px;
}
.burger-section nav::before {
  background: url("/images/design/rectangle.svg");
}
.burger-section nav::before {
  position: absolute;
  left: calc(50% - 37.5px);
  right: auto;
  top: auto;
  bottom: -20.5px;
}
.burger-section nav ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.burger-section nav ul a {
  color: #7a7a7a;
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.2px;
}

.burger-section__info {
  width: 100%;
}
.burger-section__info .section-info__phone {
  margin-bottom: 50px;
}
.burger-section__info .section-info__phone a {
  color: #363F3C;
  font-size: 26px;
  letter-spacing: -0.13px;
}
.burger-section__info .btn {
  width: 100%;
  border-radius: 0;
}

.top-banner-main {
  width: 100%;
  height: 758px;
  background-image: url(/images/design/banner-back.png);
  background-size: contain;
  background-position: 50% 0%;
  background-repeat: no-repeat;
}
.top-banner-main .in-block {
  width: 100%;
  height: 100%;
  max-width: 1540px;
  margin: auto;
  display: flex;
  align-items: center;
}
.top-banner-main .in-block .left-block {
  width: 50%;
}
.top-banner-main .in-block .left-block h1 {
  font-weight: 400;
  font-size: 85px;
  color: #363f3c;
  line-height: 85px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.top-banner-main .in-block .left-block p {
  color: #7a7a7a;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 57px;
}
.top-banner-main .in-block .left-block a {
  border-radius: 10px;
  padding: 22px 40px;
  color: #fff;
  background: #e31048;
}
.top-banner-main .in-block .right-block {
  width: 50%;
}
.top-banner-main .in-block .right-block video {
  border-radius: 50%;
  width: 800px;
}
.types-service {
  width: 100%;
  margin-bottom: 140px;
}
.types-service .in-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  min-height: 580px;
}
.types-service .in-block .column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32.5%;
}
.types-service .in-block .column .item-column {
  display: flex;
  align-items: center;
  background: #f5f7f7;
  transition: 0.3s;
  height: 50%;
  padding: 0px 50px;
  border-radius: 30px;
}
.types-service .in-block .column .item-column span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 63px;
  background: #fff;
  position: relative;
  min-width: 90px;
  width: 90px;
  height: 90px;
}
.types-service .in-block .column .item-column span img {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  width: 50%;
  transition: 0s;
}
.types-service .in-block .column .item-column p {
  padding-left: 29px;
  color: #363f3c;
  font-size: 20px;
  font-weight: 550;
  line-height: 30px;
}
.types-service .in-block .column .item-column:first-child {
  margin-bottom: 20px;
}
.types-service .in-block .column .item-column:hover {
  background: #e9fbf6;
  box-shadow: 0px 42px 90px 0px rgba(0, 0, 0, 0.1490196078);
  height: 58%;
}
.types-service .in-block .column .item-column:hover span img {
  filter: invert(64%) sepia(16%) saturate(5964%) hue-rotate(121deg) brightness(90%) contrast(90%);
}
.row-2-3 {
  display: flex;
}
.row-2-3 > .col:first-child {
  width: 40%;
}
.row-2-3 > .col:last-child {
  width: 60%;
}

.block-banner-info {
  padding: 80px 0 180px;
}
.block-banner-info .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  color: #7A7A7A;
  line-height: 160%;
  padding-right: 100px;
  padding-top: 60px;
}
.block-banner-info .text-block h2,
.block-banner-info .text-block b {
  color: #363F3C;
}
.block-banner-info .text-block p {
  margin-bottom: 1rem;
}
.block-banner-info .text-block .buttons {
  margin: 50px 0 40px;
}
.block-banner-info .text-block .buttons > * + * {
  margin-left: 35px;
}
.block-banner-info .text-block .buttons .btn {
  min-width: 220px;
}
.block-banner-info .text-block .see-more {
  color: #7A7A7A;
  font-size: 17px;
}
.block-banner-info .text-block .see-more a,
.block-banner-info .text-block .see-more b {
  color: #0DBC91;
}
.block-banner-info .text-block .see-more a:hover,
.block-banner-info .text-block .see-more b:hover {
  text-decoration: underline;
}

.collage-gallery {
  display: flex;
  justify-content: flex-end;
  height: 800px;
}
.collage-gallery > .col {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.collage-gallery > .col > * + * {
  margin-top: 20px;
}
.collage-gallery > .big-col {
  width: 50%;
  max-width: 410px;
  position: relative;
}
.collage-gallery > .big-col::before {
  content: "";
}
.collage-gallery > .big-col::before {
  width: 70px;
  height: 70px;
}
.collage-gallery > .big-col::before {
  background: url("/images/design/circle.svg");
}
.collage-gallery > .big-col::before {
  position: absolute;
  left: -35px;
  right: auto;
  top: 25px;
  bottom: auto;
}
.collage-gallery > .big-col > .row {
  height: 100%;
}
.collage-gallery > * + * {
  padding-left: 20px;
}
.collage-gallery > *:nth-child(2n-1) {
  padding-top: 60px;
}
.collage-gallery > *:nth-child(2n) {
  padding-bottom: 60px;
  position: relative;
}
.collage-gallery > *:nth-child(2n)::before {
  content: "";
}
.collage-gallery > *:nth-child(2n)::before {
  width: 75px;
  height: 41px;
}
.collage-gallery > *:nth-child(2n)::before {
  background: url("/images/design/rectangle.svg");
}
.collage-gallery > *:nth-child(2n)::before {
  position: absolute;
  left: calc(10px + 50% - 37.5px);
  right: auto;
  top: auto;
  bottom: 0;
}
.collage-gallery > *:nth-child(2n+3) {
  position: relative;
}
.collage-gallery > *:nth-child(2n+3)::before {
  content: "";
}
.collage-gallery > *:nth-child(2n+3)::before {
  width: 23px;
  height: 112px;
}
.collage-gallery > *:nth-child(2n+3)::before {
  background: url("/images/design/tail.svg");
}
.collage-gallery > *:nth-child(2n+3)::before {
  position: absolute;
  left: 43px;
  right: auto;
  top: 13px;
  bottom: auto;
}
.collage-gallery .row {
  border-radius: 20px;
  overflow: hidden;
  flex-grow: 1;
}
.collage-gallery .row img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vacancies {
  padding: 115px 0 100px;
}

.vacancies-grid {
  display: flex;
}
.vacancies-grid .vacancies-list {
  width: 380px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
  border: 0.3px solid #0dbc91;
  box-shadow: 0px 42px 50px 0px rgba(47, 59, 70, 0.07);
  margin-right: 40px;
}
.vacancies-grid .vacancies-list .vacancies-list__item {
  cursor: pointer;
  border-radius: 10px;
  padding: 20px 40px 16px;
}
.vacancies-grid .vacancies-list .vacancies-list__item.active {
  font-weight: bold;
  background: #e9fbf6;
  color: #0dbc91;
}
.vacancies-grid .vacancies-list .vacancies-list__item:hover {
  background: #e9fbf6;
  color: #0dbc91;
}
.vacancies-grid .vacancies-wrapper-hendler {
  flex-grow: 1;
}
.vacancies-grid .vacancies-wrapper > * + * {
  margin-top: 20px;
}
.vacancies-grid .vacancies-wrapper .vacancies-item {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 12px 30px 0px rgba(47, 59, 70, 0.144);
  padding: 30px 45px 30px 70px;
}
.vacancies-grid .vacancies-wrapper .vacancies-item > * + * {
  margin-left: 60px;
}
.vacancies-grid .vacancies-wrapper .vacancies-item:hover {
  box-shadow: 0px 14px 49px 0px rgba(47, 59, 70, 0.25);
}
.vacancies-grid .vacancies-wrapper .vacancies-item:hover .vacancies-item__title {
  color: #0DBC91;
}
.vacancies-grid .vacancies-wrapper .vacancies-item:hover .vacancies-item__arrow {
  background: #e31048;
}
.vacancies-grid .vacancies-wrapper .vacancies-item:hover .vacancies-item__arrow::before {
  background: url("/images/utility/arrow.svg");
}
.vacancies-grid .vacancies-wrapper .vacancies-item .vacancies-item__data {
  flex-grow: 1;
  display: flex;
}
.vacancies-grid .vacancies-wrapper .vacancies-item .vacancies-item__title {
  flex-grow: 1;
  font-size: 20px;
  color: #363F3C;
  font-weight: 550;
}
.vacancies-grid .vacancies-wrapper .vacancies-item .vacancies-item__arrow {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(227, 16, 72, 0.05);
  border-radius: 50%;
  position: relative;
}
.vacancies-grid .vacancies-wrapper .vacancies-item .vacancies-item__arrow::before {
  content: "";
}
.vacancies-grid .vacancies-wrapper .vacancies-item .vacancies-item__arrow::before {
  width: 16px;
  height: 16px;
}
.vacancies-grid .vacancies-wrapper .vacancies-item .vacancies-item__arrow::before {
  background: url("/images/utility/arrow-purple.svg");
}
.vacancies-grid .vacancies-wrapper .vacancies-item .vacancies-item__arrow::before {
  position: absolute;
  left: calc(50% - 8px);
  right: auto;
  top: calc(50% - 8px);
  bottom: auto;
}

.achievements {
  position: relative;
  padding: 115px 0 100px;
}
.achievements .splide__list {
  padding: 40px !important;
}
.achievements .headline {
  display: flex;
  justify-content: space-between;
}

.achievements__sertificate {
  height: 100%;
  border-radius: 20px;
  box-shadow: 0px 10px 50px 0px rgba(47, 59, 70, 0.12);
  background: #fff;
  padding: 20px;
}
.achievements__sertificate img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.achievements__sertificate img {
  border-radius: 10px;
}

.doc-banner {
  padding-bottom: 150px;
}
.doc-banner .banner {
  display: flex;
  position: relative;
  background: url("/images/content/doctor-banner.png");
  background-size: cover;
  border-radius: 30px;
  padding: 140px 100px 0;
}
.doc-banner .banner .text {
  width: 50%;
  color: #FFF;
  font-size: 40px;
  font-weight: 550;
  line-height: 120%;
  letter-spacing: -0.4px;
  padding-right: 30px;
}
.doc-banner .banner .text .slogan {
  position: relative;
  font-size: 22px;
  font-weight: 400;
  padding: 40px 0;
  padding-left: 30px;
  margin-left: 75px;
}
.doc-banner .banner .text .slogan::before {
  content: "";
}
.doc-banner .banner .text .slogan::before {
  width: 75px;
  height: 40px;
}
.doc-banner .banner .text .slogan::before {
  background: url("/images/design/rectangle.svg");
}
.doc-banner .banner .text .slogan::before {
  position: absolute;
  left: auto;
  right: 100%;
  top: auto;
  bottom: auto;
}
.doc-banner .banner .image {
  width: 50%;
}
.doc-banner .banner .image img {
  position: relative;
  bottom: -17%;
  margin-top: -20%;
}

.row-3-7 {
  display: flex;
}
.row-3-7 > .col:first-child {
  width: 30%;
}
.row-3-7 > .col:last-child {
  width: 70%;
}

.gallery-block {
  padding: 115px 0 100px;
  padding-top: 0;
}
.gallery-block .let-bar {
  padding-right: 90px;
}
.gallery-block .let-bar .text {
  font-size: 65px;
  letter-spacing: -0.65px;
  line-height: 1;
  margin-bottom: 50px;
  margin-right: -30px;
}
.gallery-block .let-bar .text .slogan {
  display: block;
  font-size: 22px;
  padding-top: 15px;
}
.gallery-block .let-bar .image {
  border-radius: 30px;
}
.gallery-block .let-bar .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-block .gallery-img {
  width: 100%;
  height: 100%;
}
.gallery-block .gallery-img img {
  border-radius: 30px;
}
.gallery-block .gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-block .gallery-pagination {
  position: absolute;
  bottom: 5%;
  left: 10%;
  right: 10%;
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(31.5px);
  backdrop-filter: blur(31.5px);
  border-radius: 55px;
}
.gallery-block .gallery-pagination li {
  flex-grow: 1;
}
.gallery-block .gallery-pagination .splide__pagination__page {
  width: 100%;
  border-radius: 55px;
  border: none;
  background: none;
  text-align: center;
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.4px;
  font-family: "HelveticaNeueCyr", Arial, Helvetica, sans-serif;
  padding: 20px 20px;
}
.gallery-block .gallery-pagination .splide__pagination__page.is-active {
  background: #fff;
  color: #0dbc91;
}
.gallery-block .splide .splide__track {
  border-radius: 0;
}
.gallery-block .sliders-arrows {
  display: none;
}

.await_banner {
  padding: 115px 0 100px;
}
.await_banner .banner {
  position: relative;
  font-size: 85px;
  text-align: center;
  border-radius: 30px;
  background: #f5f7f7;
  box-shadow: 0px 14px 49px 0px rgba(47, 59, 70, 0.25);
  padding: 130px 100px 150px;
}
.await_banner .banner::before {
  content: "";
  transform: rotate(90deg) translate(-10.25px, 20.5px);
}
.await_banner .banner::before {
  width: 75px;
  height: 41px;
}
.await_banner .banner::before {
  background: url("/images/design/rectangle.svg");
}
.await_banner .banner::before {
  position: absolute;
  left: 33px;
  right: auto;
  top: auto;
  bottom: 33px;
}
.await_banner .banner::after {
  content: "";
  transform: rotate(90deg) translate(10.25px, -20.5px);
}
.await_banner .banner::after {
  width: 75px;
  height: 41px;
}
.await_banner .banner::after {
  background: url("/images/design/rectangle.svg");
}
.await_banner .banner::after {
  position: absolute;
  left: auto;
  right: 33px;
  top: 33px;
  bottom: auto;
}
.await_banner .banner .text-logo {
  width: 64px;
  height: 64px;
  background-size: cover;
}

.response-form {
  position: relative;
  background: #F5F7F7;
  box-shadow: 0px 14px 49px 0px rgba(47, 59, 70, 0.25);
  border-radius: 30px;
  padding: 90px 100px 60px;
}
.response-form .btn {
  flex-shrink: 0;
}
.response-form .text-area {
  min-height: 175px;
}
.response-form .contact {
  width: 100%;
}
.response-form .contact a {
  color: #363F3C;
  font-size: 22px;
}

.response-form__headline {
  font-size: 65px;
  line-height: 92%;
  letter-spacing: -0.65px;
  margin-bottom: 30px;
}

.response-form__form {
  margin-bottom: 60px;
}
.response-form__form .row-3 {
  margin-bottom: 25px;
}
.response-form__form .row-3 .col {
  width: calc(33.3333333333% - 16.6666666667px);
}
.response-form__form .row-3 > * + * {
  margin-left: 25px;
}
.response-form__form .row {
  margin-bottom: 45px;
}
.response-form__form .row > * + * {
  margin-left: 25px;
}
.response-form__form .beautiful-formelement {
  width: 100%;
}
.response-form__form .attachment-block--mobile {
  display: none;
}

.response-form--modal {
  padding: 70px 80px 60px;
}
.response-form--modal .response-form__headline {
  text-align: center;
  font-size: 55px;
  line-height: 109.091%;
  letter-spacing: -0.55px;
}
.response-form--modal .response-form__headline span {
  display: block;
  color: #005c90;
  font-size: 20px;
  font-weight: 550;
  line-height: 1;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 90%;
}
.response-form--modal .response-form__form .row-3 {
  flex-direction: column;
}
.response-form--modal .response-form__form .row-3 .col {
  width: 100%;
}
.response-form--modal .response-form__form .row-3 > * + * {
  margin-left: 0;
  margin-top: 25px;
}
.response-form--modal .response-form__form .row:last-child {
  text-align: left;
}
.response-form--modal .response-form__form .row:last-child .btn {
  margin-left: 0;
}
.response-form--modal .response-form__form .row:last-child .beautiful-formelement--file {
  flex-shrink: 0;
}
.response-form--modal .response-form__form .text-area {
  min-height: 130px;
}
.response-form--modal .response-form__grid .row {
  width: 100%;
  text-align: center;
}

.vacancy-header {
  padding: 115px 0 100px;
}
.vacancy-header .headline {
  font-size: 65px;
  line-height: 110.769%;
  letter-spacing: -0.65px;
}
.vacancy-header .salary {
  font-size: 30px;
  font-weight: 300;
}
.vacancy-header .buttons {
  margin-top: 60px;
}

.vacancy-summary {
  margin-bottom: 30px;
}
.vacancy-summary .hr {
  border-top: 1px solid #e4e4e4;
  margin-bottom: 60px;
}
.vacancy-summary h2 {
  font-size: 40px;
  font-weight: 400;
}
.vacancy-summary ul li {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 20px;
}
.vacancy-summary ul li::before {
  content: "";
  border-radius: 50%;
}
.vacancy-summary ul li::before {
  width: 7px;
  height: 7px;
}
.vacancy-summary ul li::before {
  background: #0dbc91;
}
.vacancy-summary ul li::before {
  position: absolute;
  left: 0;
  right: auto;
  top: 0.5rem;
  bottom: auto;
}

.vacancy-doctors {
  padding: 115px 0 100px;
  position: relative;
  overflow: hidden;
}
.vacancy-doctors .headline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.vacancy-doctors .splide__track {
  margin: -40px 0px -100px;
  padding: 40px 100px 100px;
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.vacancy-doctors .doctor-card {
  position: relative;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0px 42px 90px 0px rgba(0, 0, 0, 0.15);
  padding: 75px 40px 90px 60px;
}
.vacancy-doctors .doctor-card::before {
  width: 70px;
  height: 70px;
}
.vacancy-doctors .doctor-card::before {
  position: absolute;
  left: 50px;
  right: auto;
  top: -35px;
  bottom: auto;
}
.vacancy-doctors .doctor-card::before {
  background: url("/images/design/quote-greey.svg");
}
.vacancy-doctors .doctor-card::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
.vacancy-doctors .doctor-card:hover {
  background: #e9fbf6;
}
.vacancy-doctors .doctor-card:hover::before {
  width: 70px;
  height: 70px;
}
.vacancy-doctors .doctor-card:hover::before {
  position: absolute;
  left: 50px;
  right: auto;
  top: -35px;
  bottom: auto;
}
.vacancy-doctors .doctor-card:hover::before {
  background: url("/images/design/quote-green.svg");
}
.vacancy-doctors .doctor-card:hover::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
.vacancy-doctors .doctor-card > * + * {
  margin-top: 15px;
}
.vacancy-doctors .doctor-card .doctor-card__name {
  font-size: 22px;
  font-weight: 700;
}
.vacancy-doctors .doctor-card .doctor-card__function {
  color: #363f3c;
  font-size: 17px;
  font-weight: 300;
  line-height: 141.176%;
  letter-spacing: 0.34px;
  opacity: 0.8;
}

.vacancy-faq {
  padding: 115px 0 100px;
}
.vacancy-faq .vacancy-faq__item.active .faq-item__header::before {
  content: "";
  transition-duration: 0.5s;
  transform: rotate(180deg);
}
.vacancy-faq .vacancy-faq__item.active .faq-item__body {
  padding: 0 0 40px;
}
.vacancy-faq .vacancy-faq__item .faq-item__header {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  border-top: 1px solid #e4e4e4;
  padding: 40px 30px 40px 0;
}
.vacancy-faq .vacancy-faq__item .faq-item__header::before {
  content: "";
  transition-duration: 0.5s;
  background-size: contain;
}
.vacancy-faq .vacancy-faq__item .faq-item__header::before {
  width: 16px;
  height: 16px;
}
.vacancy-faq .vacancy-faq__item .faq-item__header::before {
  background: url("/images/utility/arrow-accordion.svg");
}
.vacancy-faq .vacancy-faq__item .faq-item__header::before {
  position: absolute;
  left: auto;
  right: 0;
  top: calc(50% - 8px);
  bottom: auto;
}
.vacancy-faq .vacancy-faq__item .faq-item__header:last-child() {
  border-bottom: 1px solid #e4e4e4;
}
.vacancy-faq .vacancy-faq__item .faq-item__body {
  font-size: 17px;
  line-height: 141.176%;
}

.vacancy-form {
  margin-bottom: 100px;
}

.contacts-block {
  padding: 115px 0 100px;
}
.contacts-block .col-400 {
  width: 400px;
  border-radius: 30px;
  flex-shrink: 0;
}
.contacts-block .col {
  width: 100%;
  padding: 0 25px;
}
.contacts-block .address-section {
  background: #F5F7F7;
  padding: 55px 50px;
  position: relative;
}
.contacts-block .address-section::before {
  content: "";
}
.contacts-block .address-section::before {
  width: 75px;
  height: 41px;
}
.contacts-block .address-section::before {
  background: url("/images/design/rectangle.svg");
}
.contacts-block .address-section::before {
  position: absolute;
  left: 33px;
  right: auto;
  top: auto;
  bottom: -20.5px;
}
.contacts-block .address-section .address-section__city {
  font-size: 14px;
  font-weight: 300;
  line-height: 120%; /* 16.8px */
}
.contacts-block .address-section .address-section__address {
  font-size: 20px;
  font-weight: 550;
  line-height: 120%;
  margin-bottom: 15px;
}
.contacts-block .address-section .address-section__time {
  line-height: 150%; /* 25.5px */
  text-transform: uppercase;
}
.contacts-block .address-section .address-section__hrdata > * + * {
  margin-top: 10px;
}
.contacts-block .address-section .address-section__hrdata .phone {
  display: block;
  color: #363F3C;
  font-size: 30px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.3px;
}
.contacts-block .address-section .address-section__hrdata .email {
  display: block;
  color: #E31048;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.2px;
}
.contacts-block .image-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.contacts-block .image-section::before {
  content: "";
  transform: rotate(90deg);
  z-index: 1;
}
.contacts-block .image-section::before {
  width: 75px;
  height: 41px;
}
.contacts-block .image-section::before {
  background: url("/images/design/rectangle.svg");
}
.contacts-block .image-section::before {
  position: absolute;
  left: auto;
  right: 20.5px;
  top: -41px;
  bottom: auto;
}
.contacts-block .image-section .image-item {
  position: relative;
  width: 100%;
  height: calc(50% - 12.5px);
  max-height: 300px;
  border-radius: 30px;
  overflow: hidden;
}
.contacts-block .image-section .image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts-block .image-section .image-item .item-text-position {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.contacts-block .image-section .image-item .item-text {
  background: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 8px 14px;
}

.contacts-block__map {
  border-radius: 30px;
  overflow: hidden;
  background: gainsboro;
  width: 100%;
  height: 100%;
}

.subway-group {
  display: flex;
  margin-bottom: 10px;
}
.subway-group > * + * {
  padding-left: 18px;
  position: relative;
}
.subway-group > * + *::before {
  content: "";
  transform: rotate(25deg);
}
.subway-group > * + *::before {
  background: #363F3C;
}
.subway-group > * + *::before {
  width: 1px;
  height: 80%;
}
.subway-group > * + *::before {
  position: absolute;
  left: 8px;
  right: auto;
  top: 0;
  bottom: auto;
}

.subway-item {
  display: flex;
  align-items: center;
}
.subway-item .subway-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 6px;
  margin-right: 5px;
}
.subway-item .subway-item__icon,
.subway-item .subway-item__icon svg {
  width: 18px;
  height: 18px;
}
.subway-item .subway-item__name {
  font-weight: 300;
}

.culture-intro {
  padding: 115px 0 100px;
}
.culture-intro .text {
  color: #7a7a7a;
  font-size: 20px;
  line-height: 160%;
}

.culture-banner {
  padding: 115px 0 100px;
}
.culture-banner .row {
  display: flex;
  justify-content: space-between;
  color: #7a7a7a;
  font-size: 20px;
  line-height: 160%;
}
.culture-banner .row .col:first-child {
  width: 30%;
  position: relative;
}
.culture-banner .row .col:first-child::before {
  content: "";
}
.culture-banner .row .col:first-child::before {
  width: 75px;
  height: 41px;
}
.culture-banner .row .col:first-child::before {
  background: url("/images/design/rectangle.svg");
}
.culture-banner .row .col:first-child::before {
  position: absolute;
  left: calc(100% - 41px);
  right: auto;
  top: auto;
  bottom: 41px;
}
.culture-banner .row .col:first-child::after {
  content: "";
}
.culture-banner .row .col:first-child::after {
  width: 70px;
  height: 70px;
}
.culture-banner .row .col:first-child::after {
  background: url("/images/design/circle.svg");
}
.culture-banner .row .col:first-child::after {
  position: absolute;
  left: -35px;
  right: auto;
  top: 70px;
  bottom: auto;
}
.culture-banner .row .col:last-child {
  width: calc(70% - 70px);
}
.culture-banner img {
  border-radius: 30px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.education-block {
  padding: 115px 0 100px;
  padding-bottom: 40px;
}
.education-block .col {
  color: #7a7a7a;
  font-size: 20px;
  line-height: 32px; /* 160% */
}
.education-block .text {
  padding-right: 100px;
}
.education-block .education-gallery {
  display: flex;
  flex-direction: column;
  height: 90%;
}
.education-block .education-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.education-block .education-gallery .row:first-child {
  display: flex;
  justify-content: space-between;
  height: calc(60% - 10px);
}
.education-block .education-gallery .row:first-child .col:first-child {
  width: calc(40% - 10px);
}
.education-block .education-gallery .row:first-child .col:last-child {
  width: calc(60% - 10px);
  position: relative;
}
.education-block .education-gallery .row:first-child .col:last-child::before {
  content: "";
  transform: rotate(90deg);
}
.education-block .education-gallery .row:first-child .col:last-child::before {
  width: 75px;
  height: 41px;
}
.education-block .education-gallery .row:first-child .col:last-child::before {
  background: url("/images/design/rectangle.svg");
}
.education-block .education-gallery .row:first-child .col:last-child::before {
  position: absolute;
  left: auto;
  right: 20.5px;
  top: -41px;
  bottom: auto;
}
.education-block .education-gallery .row:last-child {
  height: calc(40% - 10px);
  margin-top: 20px;
}
.education-block .education-gallery .row:last-child .col {
  width: 100%;
  position: relative;
}
.education-block .education-gallery .row:last-child .col::before {
  content: "";
}
.education-block .education-gallery .row:last-child .col::before {
  width: 75px;
  height: 41px;
}
.education-block .education-gallery .row:last-child .col::before {
  background: url("/images/design/rectangle.svg");
}
.education-block .education-gallery .row:last-child .col::before {
  position: absolute;
  left: -41px;
  right: auto;
  top: 41px;
  bottom: auto;
}
.education-block .education-gallery img {
  border-radius: 30px;
}

.adaptiv-width {
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
.show {
  display: flex;
}
@media (min-width: 395px){
  .container {
    max-width: 540px;
  }
}
@media (min-width: 769px){
  .container {
    max-width: 700px;
  }
}
@media (min-width: 1000px){
  .container {
    max-width: 1150px;
  }
}
@media (min-width: 1600px){
  .container {
    max-width: 1240px;
  }
}
@media (min-width: 1700px){
  .container {
    max-width: 1610px;
  }
}
@media (min-width: 1920px){
  .top-banner-main {
    max-width: 1920px;
    margin: auto;
  }
}
@media (max-width: 1920px){
  .top-banner-main {
    background-size: cover;
  }
}
@media (max-width: 1630px){
  .header-block {
    max-width: 1300px;
  }
  .header-block nav ul li {
    margin-right: 15px;
  }
  .phone-block {
    margin-right: 30px;
  }
  .btn-more button {
    padding: 15px 30px;
  }
}
@media (max-width: 1600px){
  .main-footer .main-footer__nav {
    display: flex;
    flex-wrap: wrap;
  }
  .main-footer .main-footer__nav li {
    width: 50%;
    margin-bottom: 10px;
  }
  .main-footer .main-footer__nav > * + * {
    margin-left: 0;
  }
  .top-banner-main .in-block .right-block video {
    width: 100%;
  }
  .top-banner-main {
    height: 633px;
  }
  .top-banner-main .in-block {
    max-width: 1250px;
  }
  .top-banner-main .in-block .left-block h1 {
    font-size: 70px;
    line-height: 70px;
  }
  .top-banner-main .in-block .right-block img {
    max-width: 75%;
  }
  .types-service .in-block .column .item-column {
    padding: 0 30px;
  }
  .types-service .in-block .column .item-column span {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
  .types-service .in-block .column .item-column p {
    padding-left: 20px;
  }
  .block-banner-info .text-block {
    padding-right: 20px;
    padding-top: 0;
  }
  .block-banner-info .text-block .text-logo {
    display: none;
  }
  .block-banner-info .text-block .buttons > * + * {
    margin-left: 0;
    margin-top: 10px;
  }
  .block-banner-info .text-block .buttons .btn {
    min-width: 100%;
  }
  .vacancies-grid .vacancies-wrapper .vacancies-item .vacancies-item__data {
    flex-direction: column;
  }
  .doc-banner .banner {
    padding: 80px 100px 0;
  }
  .doc-banner .banner .text {
    width: 100%;
    padding-right: 0;
  }
  .gallery-block .let-bar .text {
    margin-right: 0;
    word-break: break-word;
  }
  .gallery-block .let-bar {
    padding-right: 40px;
  }
  .response-form__form .row > * + * {
    margin-left: 0;
    margin-top: 20px;
  }
  .response-form__form .row {
    flex-direction: column;
  }
  .response-form__form {
    margin-bottom: 0;
  }
  .response-form__form .beautiful-formelement--file {
    display: none;
  }
  .response-form__form .attachment-block--mobile {
    display: flex;
  }
  .response-form--modal .response-form__form .row:last-child .btn {
    margin-top: 0;
    margin-right: 25px;
  }
  .response-form--modal .response-form__form .row:last-child {
    flex-direction: row-reverse;
  }
  .contacts-block .col {
    width: calc(100% - 400px);
  }
  .contacts-block .address-section::before {
    content: "";
    display: none;
  }
  .contacts-block .image-section .image-item {
    width: calc(50% - 12.5px);
    max-height: none;
    height: 100%;
  }
  .contacts-block .image-section {
    flex-direction: row;
    margin-top: 20px;
    width: 100%;
    height: 400px;
  }
  .contacts-block .image-section::before {
    content: "";
    display: none;
  }
  .contacts-block .row {
    flex-wrap: wrap;
  }
  .education-block .buttons {
    display: flex;
    flex-direction: column-reverse;
  }
  .education-block .buttons .btn,
  .education-block .buttons .col {
    width: 100%;
  }
  .education-block .buttons > * {
    margin-bottom: 20px;
  }
  .education-block .education-gallery .row:first-child .col:last-child::before {
    content: "";
    display: none;
  }
  .education-block .education-gallery .row:first-child {
    height: 30%;
  }
  .education-block .education-gallery .row:last-child .col::before {
    content: "";
    display: none;
  }
  .adaptiv-width {
    max-width: 1300px;
  }
}
@media (max-width: 1330px){
  .logo-block {
    max-width: 150px;
  }
  .header-block {
    max-width: 1000px;
  }
  .header-block nav ul li a {
    font-size: 13px;
  }
  .phone-block {
    margin-right: 15px;
  }
  .phone-block a {
    font-size: 15px;
  }
  .btn-more button {
    padding: 10px 15px;
    font-size: 13px;
  }
}
@media (max-width: 1300px){
  .top-banner-main {
    height: 512px;
  }
  .top-banner-main .in-block {
    max-width: 880px;
  }
  .top-banner-main .in-block .left-block h1 {
    font-size: 48px;
    line-height: 48px;
  }
  .top-banner-main .in-block .left-block p {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 40px;
  }
  .types-service .in-block {
    min-height: 560px;
  }
  .types-service .in-block .column .item-column {
    padding: 30px 20px;
  }
  .types-service .in-block .column .item-column span {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }
  .types-service .in-block .column .item-column p {
    font-size: 15px;
    padding-left: 15px;
  }
  .adaptiv-width {
    max-width: 1000px;
  }
}
@media (max-width: 1000px){
  .container {
    padding: 0 20px;
  }
  .container-slim {
    padding: 0 20px;
  }
  .row-2 {
    flex-direction: column;
  }
  .row-2 > .col {
    width: 100%;
  }
  .row-3 {
    flex-direction: column;
  }
  .row-3 > .col {
    width: 100%;
  }
  .row-1-2 {
    flex-direction: column;
  }
  .row-1-2 > .col:first-child {
    width: 100%;
  }
  .row-1-2 > .col:last-child {
    width: 100%;
  }

  h1,
  h2 {
    font-size: 30px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 30px;
  }
  .text-section {
    padding: 40px 0;
  }
  .text-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .breadcrumbs {
    display: none;
  }
  .await_banner .banner {
    font-size: 65px;
  }
  .mobile-only._accordion ._accordion__body {
    max-height: 0;
  }
  .main-footer .main-footer__top {
    flex-direction: column;
  }
  .main-footer .main-footer__top > * + * {
    margin-top: 20px;
  }
  .main-footer .main-footer__nav li {
    width: 100%;
    text-align: center;
  }
  header {
    position: fixed;
    z-index: 10;
    width: 100%;
    background: #fff;
  }
  .header-block {
    max-width: 800px;
    height: 80px;
  }
  .logo-block {
    margin-left: 20px;
    max-width: 200px;
  }
  .burger-menu {
    display: block;
  }
  .header-info {
    display: none;
  }
  .header-block nav {
    display: none;
  }
  .fixedheader {
    padding: 35px 0;
  }
  .burger-section.active {
    width: 100%;
  }
  .top-banner-main .in-block .right-block video {
    height: 250px;
  }
  .top-banner-main {
    height: 600px;
    padding-top: 80px;
  }
  .top-banner-main .in-block {
    max-width: 735px;
  }
  .top-banner-main .in-block .left-block {
    text-align: center;
  }
  .top-banner-main .in-block .left-block h1 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .top-banner-main .in-block .left-block p {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 35px;
  }
  .top-banner-main .in-block .left-block a {
    padding: 15px 18px;
  }
  .types-service .in-block {
    flex-direction: column;
  }
  .types-service .in-block .column {
    flex-direction: row;
    width: 100%;
    margin-bottom: 10px;
  }
  .types-service .in-block .column .item-column {
    width: 49%;
    height: auto;
  }
  .types-service .in-block .column .item-column:first-child {
    margin-bottom: 0px;
  }
  .types-service .in-block .column .item-column:hover {
    box-shadow: 0px 42px 90px 0px rgba(0, 0, 0, 0.1490196078);
    width: 60%;
    height: auto;
  }
  .types-service .in-block .column .item-column:hover span img {
    filter: invert(64%) sepia(16%) saturate(5964%) hue-rotate(121deg) brightness(90%) contrast(90%);
  }
  .row-2-3 {
    flex-wrap: wrap;
  }
  .row-2-3 > .col:first-child, .row-2-3 > .col:last-child, .row-2-3 > .col {
    width: 100%;
  }
  .block-banner-info .text-block {
    text-align: center;
    padding-right: 0;
  }
  .block-banner-info {
    padding: 70px 20px;
  }
  .block-banner-info__row {
    flex-direction: column-reverse;
  }
  .collage-gallery {
    height: 500px;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .collage-gallery > .col {
    width: calc(50% - 6px);
  }
  .collage-gallery > .col > * + * {
    display: none;
  }
  .collage-gallery > .col > * + * {
    margin-top: 5px;
  }
  .collage-gallery > .big-col {
    display: none;
  }
  .collage-gallery > * + * {
    padding-left: 5px;
  }
  .collage-gallery .row {
    border-radius: 10px;
  }
  .vacancies {
    padding: 40px 0;
  }
  .vacancies {
    padding-left: 20px;
    padding-right: 20px;
  }
  .vacancies .headline {
    text-align: center;
  }
  .vacancies-grid .vacancies-list {
    width: 100%;
    margin-bottom: 20px;
  }
  .vacancies-grid .vacancies-wrapper .vacancies-item .vacancies-item__title {
    margin-bottom: 10px;
  }
  .vacancies-grid .vacancies-wrapper .vacancies-item {
    padding: 30px 20px;
  }
  .vacancies-grid {
    flex-direction: column;
  }
  .achievements {
    padding: 40px 0;
  }
  .achievements .headline {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .achievements .headline h2 {
    margin-bottom: 0;
  }
  .achievements .sliders-arrows {
    position: absolute;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .achievements .sliders-arrows .arrow-prev,
  .achievements .sliders-arrows .arrow-next {
    position: absolute;
    z-index: 1;
    background: none;
    width: 40px;
  }
  .achievements .sliders-arrows .arrow-prev::before,
  .achievements .sliders-arrows .arrow-next::before {
    background: url("/images/utility/arrow-purple.svg");
  }
  .achievements .sliders-arrows .arrow-next {
    right: 0;
  }
  .doc-banner {
    padding-bottom: 60px;
  }
  .doc-banner .banner {
    padding: 40px 30px 0;
    flex-direction: column;
    text-align: center;
    border-radius: 0px;
    background-position: center;
  }
  .doc-banner .banner .text .slogan {
    font-size: 16px;
    padding: 20px 0;
    padding-left: 0px;
    margin-left: 0px;
  }
  .doc-banner .banner .text .slogan::before {
    content: "";
    display: none;
  }
  .doc-banner .banner .text {
    font-size: 20px;
  }
  .doc-banner .banner .image {
    width: 100%;
    margin-bottom: -40px;
    margin-top: 80px;
  }
  .row-3-7 {
    flex-wrap: wrap;
  }
  .row-3-7 > .col:first-child, .row-3-7 > .col:last-child, .row-3-7 > .col {
    width: 100%;
  }
  .gallery-block {
    padding: 40px 0;
  }
  .gallery-block .let-bar .text {
    font-size: 42px;
    text-align: center;
  }
  .gallery-block .let-bar .image {
    display: none;
  }
  .gallery-block .let-bar {
    padding-right: 0;
  }
  .gallery-block .gallery-img img {
    border-radius: 0;
  }
  .gallery-block .gallery-pagination li {
    width: 100%;
  }
  .gallery-block .gallery-pagination .splide__pagination__page {
    display: none;
  }
  .gallery-block .gallery-pagination .splide__pagination__page.is-active {
    display: block;
    padding: 5px 10px;
    font-size: 16px;
  }
  .gallery-block .sliders-arrows {
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .gallery-block .sliders-arrows .arrow-prev,
  .gallery-block .sliders-arrows .arrow-next {
    position: absolute;
    z-index: 1;
    background: none;
    filter: brightness(0) invert(1);
  }
  .gallery-block .sliders-arrows .arrow-next {
    right: 0;
  }
  .await_banner {
    padding: 40px 0;
  }
  .response-form .contact {
    display: flex;
    flex-direction: column;
  }
  .response-form {
    padding: 30px 20px;
  }
  .response-form__headline {
    font-size: 35px;
  }
  .response-form__form .row-3 .col {
    width: 100%;
  }
  .response-form__form .row-3 > * + * {
    margin-left: 0;
    margin-top: 20px;
  }
  .response-form--modal {
    padding: 30px 20px;
  }
  .response-form--modal .response-form__headline span {
    margin-bottom: 10px;
  }
  .response-form--modal .response-form__headline {
    font-size: 35px;
  }
  .response-form--modal .response-form__form .row:last-child .btn {
    margin-right: 0;
    margin-top: 25px;
  }
  .response-form--modal .response-form__form .row:last-child {
    flex-direction: column;
  }
  .vacancy-header {
    padding: 40px 0;
  }
  .vacancy-header .headline {
    word-break: breal-word;
    font-size: 45px;
  }
  .vacancy-header .buttons .btn {
    width: 100%;
  }
  .vacancy-header {
    padding: 80px 20px 40px;
  }
  .vacancy-summary {
    padding: 0 20px;
  }
  .vacancy-doctors {
    padding: 40px 0;
  }
  .vacancy-doctors .sliders-arrows {
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .vacancy-doctors .sliders-arrows .arrow-prev,
  .vacancy-doctors .sliders-arrows .arrow-next {
    position: absolute;
    z-index: 1;
    left: -20px;
  }
  .vacancy-doctors .sliders-arrows .arrow-next {
    left: auto;
    right: 20px;
  }
  .vacancy-doctors {
    padding-left: 20px;
    padding-right: 20px;
  }
  .vacancy-faq {
    padding: 40px 0;
  }
  .vacancy-faq {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contacts-block {
    padding: 40px 0;
  }
  .culture-intro {
    padding: 40px 0;
  }
  .culture-intro {
    padding-left: 20px;
    padding-right: 20px;
  }
  .culture-banner {
    padding: 40px 0;
  }
  .culture-banner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .culture-banner .row .col:first-child::after {
    content: "";
    display: none;
  }
  .culture-banner .row .col:first-child::before {
    content: "";
    display: none;
  }
  .culture-banner .row .col:first-child {
    height: 400px;
  }
  .culture-banner .row .col:last-child {
    width: calc(70% - 10px);
  }
  .education-block {
    padding: 40px 0;
  }
  .education-block .text {
    padding-right: 0;
  }
  .education-block .education-gallery .row:first-child {
    flex-direction: row;
  }
  .education-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .adaptiv-width {
    max-width: 800px;
  }
}
@media (max-width: 800px){
  .top-banner-main {
    background-position: 0% 0%;
  }
  .top-banner-main .in-block {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  .top-banner-main .in-block .left-block {
    width: 70%;
  }
  .top-banner-main .in-block .right-block {
    width: 100%;
  }
  .top-banner-main .in-block .right-block img {
    max-width: 200px;
    margin-bottom: 65px;
  }
  .types-service .in-block .column {
    width: 95%;
    margin: auto;
    margin-bottom: 10px;
  }
  .types-service .in-block .column .item-column {
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
  }
  .types-service .in-block .column .item-column p {
    padding-left: 0px;
    text-align: center;
  }
}
@media (max-width: 769px){
  h1,
  h2 {
    font-size: 42px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 32px;
  }
  ._popup {
    padding: 100px 0 50px;
  }
  .splide__arrows {
    display: none;
  }
  .collage-gallery {
    height: 300px;
  }
  .collage-gallery > *:nth-child(2n-1) {
    padding-top: 0;
  }
  .collage-gallery > *:nth-child(2n) {
    padding-bottom: 0;
  }
  .collage-gallery > *:nth-child(2n)::before {
    content: "";
    display: none;
  }
  .collage-gallery > *:nth-child(2n+3)::before {
    content: "";
    display: none;
  }
  .vacancies-grid .vacancies-wrapper .vacancies-item > * + * {
    margin-left: 0;
  }
  .await_banner .banner {
    font-size: 33px;
    padding: 30px 30px 50px;
  }
  .await_banner .banner::before {
    content: "";
    display: none;
  }
  .await_banner .banner::after {
    content: "";
    display: none;
  }
  .await_banner .banner .text-logo {
    display: block;
    margin: 60px auto 20px;
  }
  .await_banner .banner .btn {
    width: 100%;
    margin-top: 20px;
  }
  .vacancy-doctors .splide__track {
    padding: 0;
    margin: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .vacancy-doctors .doctor-card:hover::before {
    content: "";
    display: none;
  }
  .vacancy-doctors .doctor-card {
    background: #fff;
    box-shadow: none;
  }
  .vacancy-doctors .doctor-card::before {
    content: "";
    display: none;
  }
  .contacts-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contacts-block .col-400 {
    width: 100%;
  }
  .contacts-block .col {
    width: 100%;
    height: 500px;
    padding: 0;
    margin-top: 20px;
  }
  .contacts-block .address-section {
    padding: 25px 20px;
  }
  .contacts-block .image-section .image-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .contacts-block .image-section {
    height: auto;
    flex-direction: column;
  }
  .culture-banner .row {
    flex-direction: column;
  }
  .culture-banner .row .col:first-child {
    margin-bottom: 20px;
  }
  .culture-banner .row .col:first-child img {
    width: 100%;
  }
  .culture-banner .row .col:first-child,
  .culture-banner .row .col:last-child {
    width: 100%;
  }
}
@media (max-height: 750px){
  ._popup {
    align-items: flex-start;
  }
}
@media (max-width: 550px){
  .top-banner-main .in-block .left-block h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .top-banner-main .in-block .left-block p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 460px){
  .types-service {
    margin-bottom: 70px;
  }
  .types-service .in-block .column {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
  }
  .types-service .in-block .column .item-column {
    margin-bottom: 20px;
    width: 90%;
  }
  .types-service .in-block .column .item-column:first-child {
    margin-bottom: 20px;
  }
  .types-service .in-block .column .item-column:hover {
    width: 100%;
  }
}
@media (max-width: 420px){
  .top-banner-main .in-block .left-block {
    width: 100%;
    text-align: center;
  }
  .top-banner-main .in-block .left-block p {
    text-align: center;
  }
}
@media (max-width: 395px){
  .container {
    max-width: 100%;
  }
  ._popup ._popup__content {
    width: 100%;
    height: 100%;
  }
}
