

/* Start:/local/templates/mmc/css/map-component.css?17124200305360*/
.hovered {
  text-decoration: underline;
  cursor: pointer;
}

.hovered:hover {
  text-decoration: none;
}

.map-container svg {
  opacity: 0;
  width: 100%;
  min-width: 728px;
  max-width: 100%;
  height: auto;
  max-height: 540px;
  transition: 1.2s;
}

.map-container svg._showMap {
  opacity: 1;
}

.map-container svg path {
  fill: #ededed;
  transition: 0.6s;
}

.map-container svg text {
  font-size: 16px;
  fill: rgba(21, 57, 107, 1);
  transition: 0.6s;
  display: none;
  opacity: 0;
}

.map-container svg text.active {
  opacity: 1;
  display: block;
}

.map-container svg path.active {
  fill: #2AD4FC;
  cursor: pointer;
}

@media (min-height: 750px) {
  .map-container svg {
      max-width: 100%;
      max-height: 100%;
  }
}

.open-btn {
  position: relative;
  z-index: 1;
}

.direction-block ul {
  list-style-type: none;
  padding: 0;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.direction-block ul li {
  cursor: pointer;
  transition: all .5s ease-out
}

.direction-block ul li.__selected {
  font-weight: 700;
  display: flex;
  gap: 6px;
  align-items: center;
  text-decoration: none;
}

.direction-block ul li {
  text-decoration: none!important;
}

.direction-block ul li::before {
  content: '';
  background: url('/local/templates/mmc/css/../images/icons/list.svg') no-repeat center center;
  background-size: contain;
  transition: 0.5s;
  flex-shrink: 0;
  opacity: 0;
}

.direction-block ul li.__selected::before {
  opacity: 1;
}

.direction-desktop {
  display: none;
  position: relative;
  z-index: 1;
}

.place-details::-webkit-scrollbar {
    height: 5px;
    width: 5px
}

.place-details::-webkit-scrollbar-track {
    background: rgba(145,188,229,.65)
}

.place-details::-webkit-scrollbar-thumb {
    background: #2ad4fc;
}


.place-details {
  background: rgba(145, 188, 229, 0.65);
  backdrop-filter: blur(10px);
  position: absolute;
  transition: 0.5s;
  max-height: 320px;
  overflow: auto;
}

.place-details:not(._open) {
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.place-details__title {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.place-details__description {
    font-size: 16px;
    text-underline-offset: 3px;
    display: block;
}

.place-details__description a {
    text-decoration: underline;
}

.place-details__description a:hover {
    text-decoration: none;
}

.map-place-btn {
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 41px;
  width: 41px;
  background: #2AD4FC;
  border: 1px solid #2AD4FC;
}

.map-place-btn:hover {
  background: #00A6CD;
  border: 1px solid #00A6CD;
}

.map-place-btn.animate-icon {
  animation: showMapPlaceOpen 1.5s;
}

@media (min-width: 1440px) {
  .direction-block {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
  }
  .direction-block ul li {
    padding: 11px 0;
  }
  .direction-block ul li:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .direction-block ul li.__selected::before {
    height: 19px;
    width: 19px;
  }
  .direction-block ul li.__preselected {
    transform: scale(1.1);
    transform-origin: center left;
    font-weight: 500;
  }

  .direction-block ul li.__selected {
    transform: scale(1.3);
    transform-origin: center left;
  }
  .direction-desktop {
    display: block;
  }
  .direction-mobile {
    display: none;
  }

  .place-details {
    width: 560px;
    padding: 36px 32px 29px 36px;
    right: 0;
  }
  .place-details-transition{
    animation: placeDetailsShow 1s ease-in-out;
  }
  .place-details__place:not(:last-child) {
    margin-bottom: 23px;
  }
  .place-details__description {
    margin-top: 12px;
  }

  .map-place-btn {
    top: 28px;
    left: 0;
  }
}

@media (min-width: 785px) and (max-width: 1439px) {
  .direction-block {
        min-height: 154px;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 54px;
  }
  .direction-block ul {
    font-size: 14px;
  }
  .direction-block ul li {
    padding: 8px 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    display: block;
    overflow: hidden;
  }
  .direction-block ul li:hover {
    text-decoration: none;
  }
  .direction-block ul li.__selected::before {
    height: 12px;
    width: 12px;
  }

  .place-details {
    width: 343px;
    padding: 13px 21px 16px 21px;
    left: 0;
    top: 68px;
  }
  .place-details__place:not(:last-child) {
    margin-bottom: 13px;
  }
  .place-details__description {
    margin-top: 8px;
  }

  .map-place-btn {
    top: 28px;
    left: 0;
  }
}

@media (max-width: 784px) {
  .direction-block {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }
  .direction-block ul li {
    padding: 7px 0;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .direction-block ul li:hover {
    text-decoration: none;
  }
  .direction-block ul li.__selected::before {
    height: 12px;
    width: 12px;
  }
  .place-details {
    width: calc(100% - 16px);
    padding: 13px 21px 16px 21px;
    top: 40px;
    left: 0;
    max-width: 343px;
  }
  .place-details__place:not(:last-child) {
    margin-bottom: 13px;
  }
  .place-details__description {
    margin-top: 8px;
    font-size: 12px;
  }
}
/* End */


/* Start:/local/templates/mmc/css/solutions.css?171336643618472*/
@media (min-width: 1440px) {
  .solutions-page {
    padding-top: 100px;
  }
  .swiper-slide-inner {
    height: 100%;
  }
}

.feature {
  width: auto!important;
}

.party-bottom-info__main-text {
  height: 63px;
}
.solution-group {
  background: url(/local/templates/mmc/css/../images/icons/right-info-background.svg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translate3d(0, 0, 0);
  height: 100%;
  width: 780px;
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 151px;
  z-index: 2;
  padding-top: 185px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media (min-height: 871px) and (max-height: 999px) {
  .solution-group {
    padding-top: 80px;
  }
}

@media (max-height: 870px) {
  .solution-group {
    padding-top: 40px;
  }
}

.doctors-bottom-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.doctors-bottom-info__data {
  min-height: 110px;
}
.solution-link {
  width: 70%;
}
.solution-link span,
.tabl-title {
      text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solution-group ul li {
  cursor: pointer;
  font-size: 18px;
}

.solution-group ul li:hover .solution-link,
.solution-group ul li.__selected .solution-link,
.solution-group ul li.swiper-slide-thumb-active .solution-link
 {
  font-weight: 500;
  /*text-decoration: underline;
  text-underline-offset: 3px;*/
  transition: font-size 0.5s, font-weight 0.5s;
  transform: scale(1.3);
  transform-origin: center left;
  padding-left: 25px;
}

.solution-group ul li.__selected .solution-link::before,
.solution-group ul li.swiper-slide-thumb-active .solution-link::before {
  content:'';
  transition: content 0.5s;
  background: url('/local/templates/mmc/css/../images/icons/list.svg') no-repeat center bottom;
  background-size: contain;
  transition: 0.5s;
  flex-shrink: 0;
  width: 17px;
  height: 20px;
  position: absolute;
    left: 0;
}

.solution-group-desc {
  padding-bottom: 52px;
}

.swiperLinks1, .swiperLinks2, .swiperLinks3 {
  height: 100%;
  overflow: hidden;
  padding-top: 10px;
}

.swiperLinksWrap {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 30px 0 40px;
}

.swiperLinksWrap .swiper-slide {
  display: flex;
  align-items: center;
  overflow: visible;
/*  height: auto!important;*/
/*padding: 10px 0;*/
}

.swiperLinksWrap .prev, .swiperLinksWrap .next {
  position: absolute;
  left: 0;
  z-index: 4;
  cursor: pointer;
}

.swiperLinksWrap .swiper-button-disabled {
  display: none;
}

.swiperLinksWrap .prev svg , .swiperLinksWrap .next svg {
  width: 30px;
  height: 30px;
  stroke-width: 3px;
}

.swiperLinksWrap .prev {
  top: 0;
}
.swiperLinksWrap .next {
  bottom: 0;
}

.solutions, .solutions-main  {position: relative;}

.solution-image picture {
  display: block;
}
.solution-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.page-bottom-marker {
  position: absolute;
  bottom: 2px;
  left: 0;
  display: block;
  width: 1px;
  height: 1px;
}

/* Page */
.group-image {
  display: none;
  position: relative;
}
.image-badge {
/*  bottom: 100px !important;*/
  padding: 9px 17px 16px 11px;
  font-size: 12px;
}

.swiper-slide:not(.swiper-slide-active) .image-badge {
   display: none;
  z-index: -1;
}
.swiper-slide.swiper-slide-active .image-badge.calculated {
  /* animation: transferFromBottom 1s ease-in-out; */
  opacity: 1;
  z-index: 4;
  animation-duration: 1s;
  animation-name: transferFromBottom;
  animation-timing-function: linear;
  overflow: hidden;
  bottom: 108px;
}

@keyframes transferFromBottom {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: var(--full-height);
  }
}

.solutions .features.max-mobile .feature {
  display: block;
}

@media (min-width: 1440px) {
  .main-content {
    padding-top: 86px;
  }
  .med-party-page > .swiper {
    padding-top: 130px;
    height: 100vh;
  }
  .med-party-page > .swiper .swiper {
    height: 100%;
  }


}
@media (min-width: 744px)  and (max-width: 785px) {
  .solutions .min-tablet {
    display: block!important;
  }
  .solutions  .desktop-features {
      display: grid!important;
      height: 90px!important;
      top: 60px!important;
  }
  .solutions .feature.swiper-slide-thumb-active {
    height: 100px;
  }
  .solutions .feature {
    height: 90px;
  }
  .solutions .party-bottom-buttons {
    display: flex!important;
}

.party-bottom-info__data {
    display: grid!important;
}
.solutions .feature {
    padding: 10px;
}
}
@media (min-width: 744px) and (max-width: 1439px) {
  .main-content {
    padding-top: 86px;
  }
  .med-party-page {
     height: auto;
   }

  .med-party-page .swiper {
     min-height: 700px;
  }
  .solutions-page .group-info {
      top: 160px;
  }
}
@media (max-width: 743px) {
  .main-content {
    padding-top: 27px;
  }
  .med-party-page {
    height: auto;
    min-height: 650px;
  }
  .group-image {
    /* height: 95vh; */
    display: block;
  }
  .solutions-main .landing-page {
    height: auto;
  }
  .mySwiper1 .swiper-wrapper,
  .mySwiper2 .swiper-wrapper,
  .mySwiper3 .swiper-wrapper {
    display: block;
  }

  .hidden-slide {
    display: none;
  }
  .swiper-slide-inner {
    position: relative;
  }
}

.image-badge-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.group-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-background {
  display: block;
}

.slide-bottom-marker {
  position: absolute;
  height: 1px;
  width: 1px;
  bottom: 0;
}

/* swiper */
.swiper {
  width: 100%;
}
.swiper-slide {
  overflow: hidden;
}

.swipper-slide-bottom-marker {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1px;
}

/* features */
.solutions .features {
  position: absolute;
  left: 0;
  width: 100%;
  display: grid;
  z-index: 2;
  /* max-width: 1920px;
  left: 50%;
  transform: translateX(-50%); */
}

.desktop-features-container {
  width: 100%;
  padding-top: 100px;
  height: 252px;
}

.desktop-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: visible;
  z-index: 2;
  height: 152px;
}

@media (min-width: 744px) and (max-width: 1439px) {
  .solutions-page {
    padding-top: 70px;
  }
  .desktop-features {
    height: 90px;
    top: 0;
  }
}

.feature {
  cursor: pointer;
  align-items: flex-start;
}

.__f1 {
  background: #2AD4FC;
  border: 1px solid #2AD4FC;
}
.__f2 {
  background: #91BCE5;
  border: 1px solid #91BCE5;
}
.__f3 {
  background: #4478A6;
  border: 1px solid #4478A6;
}

.__f1-color-opacity {
  background: rgba(42, 212, 252, 0.65);
}
.__f2-color-opacity {
  background: rgba(145, 188, 229, 0.65);
}
.__f3-color-opacity {
  background: rgba(68, 120, 166, 0.65);
}


.first-page-slider-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions .feature__title,
.solutions-main .feature__title {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  bottom: 0;
}

.feature a {
  display: none;
}

@media (min-width: 1440px) {
  .solutions .features {
    grid-template-columns: repeat(3, 1fr);
    top: 100px;
    align-items: flex-start;
    height: 152px;
  }
  .feature {
    height: 130px;
    padding: 26px 39px;
    width: 100%!important;
  }
  .feature:hover,
  .features:not(:hover) .feature.__active,
  .desktop-features:not(:hover) .feature.__active,
  .feature.swiper-slide-thumb-active {
    height: 155px;
    transition: height .1s ease-in-out;
  }
  .solutions .feature__title,
.solutions-main .feature__title {
    color: #000;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
  }
}
@media (min-width: 744px) and (max-width: 1439px) {
  .solutions .features {
    grid-template-columns: repeat(3, 1fr);
    top: 70px;
    align-items: flex-start;
  }
  .feature {
    height: 84px;
    padding: 10px 19px;
  }
  .feature:hover, .feature.__active,
  .feature.swiper-slide-thumb-active {
    height: 90px;
    transition: height .1s ease-in-out;
  }
  .solutions .feature__title,
.solutions-main .feature__title {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }
}
@media (min-width: 744px) and (max-width: 899px) {
  .solutions .feature__title,
.solutions-main .feature__title {
    font-size: 12px !important;
  }
}
@media (max-width: 743px) {
  .solutions .features {
    grid-template-columns: 16px calc(100% - 32px) 16px;
/*    overflow: auto;*/
    bottom: 0;
  }
  .feature {
    height: 108px;
    padding: 9px 16px 13px 16px;
    display: none;
  }
  .solutions-main .feature.__active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .solutions .feature__title,
.solutions-main .feature__title {
    font-size: 14px;
    font-weight: 700;
  }
  .feature a {
    display: block;
    margin-top: 7px;
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    color: #000;
  }
}


/* badge */

.start-badge a {
  display: block;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.start-badge a:hover {
  text-decoration: none;
}

@media (min-width: 1551px) {
  .start-badge.__med-party-position {
    left: 100px;
  }
}
@media (min-width: 1440px) and (max-width: 1550px) {
  .start-badge.__med-party-position {
    left: 20px;
    max-width: 620px;
  }
}
@media (min-width: 1440px) {
  .start-badge.__med-party-position {
    bottom: 95px;
    padding: 37px 11px 37px 20px;
  }
  .start-badge .start-badge__title {
    font-size: 32px;
  }
  .start-badge .start-badge__description {
    margin-top: 19px;
  }
  .start-badge a {
    margin-left: 5px;
    margin-top: 26px;
    font-size: 18px;
  }
}
@media (min-width: 744px) and (max-width: 1439px) {
  .start-badge.__med-party-position {
    display: none;
  }
}
@media (max-width: 743px) {
  .start-badge.__med-party-position {
    left: 16px;
    bottom: 0;
    padding: 11px 11px 18px 11px;
  }
  .start-badge .start-badge__title {
    font-size: 14px;
  }
  .start-badge .start-badge__description {
    margin-top: 12px;
    font-size: 12px;
  }
  .start-badge a {
    margin-top: 7px;
    font-size: 12px;
  }
  .start-badge a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
}

/* right-info */

.paty-right-info {
  background: url('/local/templates/mmc/css/../images/icons/right-info-background.svg');
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  width: 780px;
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 151px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  z-index: 2;
}

.paty-right-info p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 48px;
  margin-left: -8px;
  max-width: 572px;
}

.paty-right-info h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.paty-right-info ul {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.paty-right-info ul li {
  cursor: pointer;
  font-size: 16px;
  height: 40px;
}

.paty-right-info ul li:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.paty-right-info ul li.__selected {
  height: 78px;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  transition: font-size 0.5s, font-weight 0.5s;
}
.paty-right-info ul li.__selected span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 3px;
}
.paty-right-info ul li.__selected:hover {
  text-underline-offset: 8px;
}

.paty-right-info ul li.__selected::before {
  content: url('/local/templates/mmc/css/../images/icons/list.svg');
  transition: content 0.5s;
}

/* bottom-info */

.party-bottom-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.party-bottom-info__ornament {
  background: url('/local/templates/mmc/css/../images/icons/doctor-bottom-info-background.svg') repeat;
  width: 100%;
  height: 46px;
}

.party-bottom-info__data {
  background: rgba(21, 57, 107, 0.60);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  display: grid;
  grid-template-columns: 278px 1fr 84px;
  padding: 15px 15px 27px 16px;
}

.party-bottom-info__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.party-bottom-info__title span {
  height: 57px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.party-bottom-info__title img {
  width: 15px;
  display: block;
  margin-top: 3px;
}

.party-bottom-info__main-text {
  font-size: 12px;
  margin-left: 22px;
  margin-right: 22px;
}

.party-bottom-info__main-text div {
  height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.party-bottom-info__main-text a {
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 13px;
  display: block;
}


@media (min-width: 1440px) {
  .party-bottom-info__main-text a:hover {
    text-decoration: none;
  }
}

.party-bottom-buttons {
  display: flex;
  align-items: center;
}

.party-bottom-button {
  width: 41px;
  height: 41px;
}

.party-bottom-button img {
  display: block;
  width: 41px;
  height: 41px;
  margin-top: -2px;
}
.party-bottom-button.__disabled {
  background-color: #91BCE5 !important;
  border-color: #91BCE5 !important;
}
.party-bottom-button.__disabled:hover {
  background-color: #6EA3D6 !important;
  border-color: #6EA3D6 !important;
}

.group-info {
  position: absolute;
  width: 33.33%;
  top: 90px;
  z-index: 2;
  color: #000;
  font-size: 12px;
  overflow: hidden;
  box-sizing: border-box;

}
.group-info-inner {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transform: translate3d(0, 0, 0);
  padding: 53px 40px 17px 19px;
}
.group-info.__closed {
  display: none!important;
}
.group-info__close {
  position: absolute;
  top: 12px;
  right: 8px;
  cursor: pointer;
  color: #ffffff;
}

.group-info__close:hover {
  color: #00A6CD;
}

.swiper-slide-active .group-info {
  animation-name: groupInfoShowingFast;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
/*.swiper-slide-active.__first-animation .group-info {
  animation: groupInfoShowing 3s linear;
}*/

@keyframes groupInfoShowing {
  0% {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  66% {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  100% {
    height: var(--full-height);
  }
}

@keyframes groupInfoShowingFast {
  0% {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  100% {
    height: var(--full-height);
  }
}

.slide-text-content {
  overflow: auto;
  position: relative;
}
.slide-text-content img {
  max-width: 100%;
  height: auto;
}
.slide-text-content h2 {
  font-weight: 700;
}
.slide-text-content mark {
  font-weight: 700;
}
.slide-text-content p {
  font-weight: 400;
}
.slide-text-content .text-badge {
  font-weight: 400;
  text-transform: uppercase;
  background: rgba(106, 168, 206, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.slide-text-content .topper {
  display: none;
  cursor: pointer;
}

@media (min-width: 1440px) {
  .slide-text-content {
    padding: 37px 100px 100px 100px;
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 19px;
  }

  .slide-text-content h2 {
    font-size: 35px;
    margin-bottom: 29px;
  }

  .slide-text-content mark {
    font-size: 18px;
    margin-bottom: 17px;
    line-height: 20px;
    max-width: 1136px;
  }

  .slide-text-content p {
    font-size: 16px;
    line-height: 20px;
    max-width: 1136px;
  }

  .slide-text-content .text-badge {
    font-size: 32px;
    padding: 38px 24px;
    margin-top: 24px;
    margin-bottom: 32px;
    max-width: 850px;
  }
}
@media (min-width: 744px) and (max-width: 1439px) {
  .slide-text-content {
    padding: 22px 15px 170px 15px;
  }

  .slide-text-content h2 {
    font-size: 35px;
    margin-bottom: 21px;
  }

  .slide-text-content mark {
    font-size: 18px;
    margin-bottom: 17px;
    line-height: 20px;
  }

  .slide-text-content p {
    font-size: 16px;
    line-height: 20px;
  }

  .slide-text-content .text-badge {
    font-size: 32px;
    padding: 38px 24px;
    margin-top: 24px;
    margin-bottom: 32px;
    max-width: 850px;
  }
  .slide-text-content .topper {
    height: 41px;
    width: 41px;
    position: absolute;
    bottom: -100px;
    right: 15px;
    display: block;
    color: #2AD4FC;
  }
  .slide-text-content .topper:hover {
    color: #00A6CD;
  }
}
@media (max-width: 743px) {
.slide-text-content>div>* {
    margin-bottom: 20px;
}
  .slide-text-content {
    padding: 29px 16px 41px 16px;
    font-size: 12px;
  }

  .slide-text-content h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .slide-text-content mark {
    font-size: 14px;
    margin-bottom: 9px;
  }

  .slide-text-content p {
  }

  .slide-text-content .text-badge {
    font-size: 18px;
    padding: 13px 30px 19px 13px;
    margin-top: 20px;
    margin-bottom: 33px;
  }
}

.slide-text-content-top {
  position:absolute;margin-top: -90px;
}


@media (max-width: 743px) {
  /*.med-party-page > .swiper > .swiper-wrapper > .swiper-slide .swiper {
    display: none;
  }

  .med-party-page > .swiper > .swiper-wrapper > .swiper-slide-active .swiper,
  .med-party-page > .swiper > .swiper-wrapper > .swiper-slide-active .swiper-wrapper,
  .med-party-page > .swiper > .swiper-wrapper > .swiper-slide-active .swiper-slide {
    height: fit-content !important;
    touch-action: pan-y;
  }*/

  .solution-image {
    display: block;
    height: 650px;
  }
/*
  .mySwiper1 .swiper-slide,
  .mySwiper2 .swiper-slide,
  .mySwiper3 .swiper-slide {
    height: 650px;
  }*/
}
.slide-text-content {
scroll-margin-top: 60px
}


.slide-in-body-content-marker {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 40%;
}

.slide-in-body-content-start-marker {
  width: 1px;
  height: 1px;
  position: absolute;
}

@media (min-width: 1440px) {
  .slide-in-body-content-start-marker {
    bottom: 100px;
  }
}
@media (min-width: 744px) and (max-width: 1439px) {
  .slide-in-body-content-start-marker {
    bottom: 70px;
  }
}
/* End */


/* Start:/local/templates/mmc/css/page1.css?171250754419419*/
.clinic-slider {
  overflow: hidden;
  background: rgba(21, 57, 107, 1);
  color: #fff;
  padding: 20px;
}

.clinic-slider .swiper-slide {
  width: auto;
}

.clinic-slider a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.clinic-slider a:hover {
  border-color: transparent;
}

.main-contacts {
  display: flex;
  margin-bottom: 50px;
}
.main-content {
    max-width: 1138px;
    line-height: 1.3;
}
/* swiper */
.swiper {
  width: 100%;
  height: 100%;
}

/* NIGHT-CITY Cookies */
.scroll-indicator.__first {
  top: 80px;
}

/* NIGHT-CITY Start Tile */
.start-tile {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translate3d(0, 0, 0);
  position: absolute;
}

.start-tile__title {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.start-tile__text-icon {
    display: flex;
    justify-content: space-between;
}

.start-tile__description {
    color: #000;
}

.start-tile__icon {
  position: absolute;
}
.main-contacts-info.contact-info {
  margin-top: 0;
}

@media (min-width: 1440px) {
  .start-tile {
    left: 100px;
    bottom: 210px;
    width: 677px;
    padding: 30px 34px 58px 20px;
  }
  .start-tile__title {
    font-size: 35px;
  }
  .start-tile__description {
    font-size: 18px;
    margin-top: 20px;
    margin-left: 5px;
    margin-right: 251px;
  }
  .start-tile__icon {
    height: 99px;
    right: 34px;
    bottom: 63px;
  }
  .main-contacts {
    margin-top: 57px;
  }
  .main-contacts-info {
    width: 50%;
  }
  .main-contacts-map {
    width: 50%;
  }
}
@media (min-width: 785px) and (max-width: 1439px) {
  .main-contacts {
    gap: 60px;
    flex-direction: column;
    margin-top: 55px;
  }
  .start-tile {
    left: 14px;
    bottom: 107px;
    width: 456px;
    padding: 16px 70px 19px 15px;
  }
  .start-tile__title {
    font-size: 16px;
  }
  .start-tile__description {
    font-size: 14px;
    margin-top: 0;
    margin-right: 79px;
  }
  .start-tile__icon {
    height: 69px;
    right: 10px;
    bottom: 19px;
  }
}
@media (max-width: 784px) {
  .main-contacts {
    gap: 40px;
    flex-direction: column;
    margin-top: 35px;
    font-size: 12px;
  }
  .start-tile {
    left: 0;
    bottom: 100px;
    width: calc(100% - 32px);
    padding: 17px 25px 35px 11px;
    left: 16px;
  }

  .swiper-slide-next .start-tile,
  .swiper-slide-prev .start-tile {
    opacity: 0;
    transform: translateY(100%);
  }
  .swiper-slide.__one-animation .start-tile {
    animation: tileTransferFromBottomMobile 2.5s ease-in-out;
  }
  .start-tile__title {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .start-tile__description {
    font-size: 14px;
    margin-top: 0;
  }
  .start-tile__icon {
    display: none;
  }
}

@keyframes tileTransferFromBottomMobile {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* NIGHT-CITY features */
.first-slider-block.__slide1 {
  background-image: url('/local/templates/mmc/css/../images/pictures/night-city.png');
}
.first-slider-block.__slide2 {
  background-image: url('/local/templates/mmc/css/../images/pictures/biznes-clinic.png');
}
.first-slider-block.__slide3 {
  background-image: url('/local/templates/mmc/css/../images/pictures/proizv.png');
}
.first-slider-block.__slide4 {
  background-image: url('/local/templates/mmc/css/../images/pictures/san-kur.png');
}
.first-slider-block.__slide5 {
  background-image: url('/local/templates/mmc/css/../images/pictures/corp.png');
}
.first-slider-block img:not([class]) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.first-page .features {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: grid;
  align-items: flex-end;
  z-index: 2;
}

.first-page .feature-nav-buttons {
  position: absolute;
  right: 15px;
  bottom: 107px;
  z-index: 2;
  display: flex;
}

.first-page .features::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.first-page .feature {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.first-page .feature {
  align-items: flex-end;
}

.__f1 {
  background: #2AD4FC;
  border: 1px solid #2AD4FC;
}
.__f2 {
  background: #91BCE5;
  border: 1px solid #91BCE5;
}
.__f3 {
  background: #4478A6;
  border: 1px solid #4478A6;
}
.__f4 {
  background: #6AA8CE;
  border: 1px solid #6AA8CE;
}
.__f5 {
  background: #ABDCF1;
  border: 1px solid #ABDCF1;
}

.__f1-color-opacity {
  background: rgba(42, 212, 252, 0.65);
}
.__f2-color-opacity {
  background: rgba(145, 188, 229, 0.65);
}
.__f3-color-opacity {
  background: rgba(68, 120, 166, 0.65);
}
.__f4-color-opacity {
  background: rgba(106, 168, 206, 0.65);
}
.__f5-color-opacity {
  background: rgba(171, 220, 241, 0.65);
}

.first-page .feature__title {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    bottom: 0;
}

.first-page .features-image {
  display: none;
}

.first-page .features-image.__active {
  display: block;
}

@media (min-width: 1440px) {
  .first-page .features {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1920px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .first-page .feature {
    height: 152px;
    padding: 36px 19px 76px 39px;
  }
  .first-page .feature:hover, .first-page .features:not(:hover) .first-page .feature.__active {
    height: 174px;
    transition: height .1s ease-in-out;
  }
  .first-page .feature img {
    height: 60px;
  }
  .first-page .feature__title {
    font-size: 16px;
    height: 38px;
  }
  .first-page .feature__icon {
    height: 61px;
    margin-bottom: -6px;
  }
}
@media (min-width: 785px) and (max-width: 1439px) {
  .first-page .features {
    grid-template-columns: repeat(5, 320px);
    overflow: auto;
  }
  .first-page .feature {
    height: 84px;
    padding: 12px 10px 25px 29px;
  }
  .first-page .feature img {
    height: 50px;
  }
  .first-page .first-page .feature:hover, .first-page .features:not(:hover) .first-page .feature.__active {
    height: 96px;
  }
  .first-page .feature__title {
    font-size: 14px;
  }
  .first-page .feature__icon {
    height: 55px;
  }
}
@media (max-width: 784px) {
  .first-page .features {
    grid-template-columns: 16px calc(100% - 32px) 16px;
    overflow: auto;
  }
  .first-page .feature {
    height: 100px;
    padding: 30px 14px 30px 16px;
  }
  #main-page-swiper .first-page .feature.__active {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .first-page .feature-dummy {
    height: 100%;
  }
  .first-page .feature__title {
    font-size: 16px;
    font-weight: 700;
  }
  .first-page .feature__icon {
    height: 42px;
  }
  ./*max-mobile.first-page .feature-dummy {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 3;
    width: 16px;
  }

  .max-mobile.feature-dummy:first-child {
      left: 0;
  }

  .max-mobile.feature-dummy:last-child {
      right: 0;
  }

  .features.max-mobile {
      display: block;
      padding: 0 16px;
  }*/
}


/* MAP Directions */
.news-slider-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-slider-block.__slide1 {
  background-image: url('/local/templates/mmc/css/../images/pictures/doctors.png');
}
.news-slider-block.__slide2 {
  background-image: url('/local/templates/mmc/css/../images/pictures/news2.jpg?v=2');
}
.news-slider-block.__slide3 {
  background-image: url('/local/templates/mmc/css/../images/pictures/news3.jpg?v=3');
}
.news-slider-block.__slide4 {
  background-image: url('/local/templates/mmc/css/../images/pictures/news4.jpg');
}

@media (min-width: 1440px) {
  .__general-info {
    padding-top: 90px;
    display: grid;
    grid-template-columns: 436px 1fr;
    min-height: 1080px;
    max-width: 1920px;
    margin: 0 auto;
  }
}
@media (min-width: 785px) and (max-width: 1439px) {
  .__general-info {
    padding-top: 23px;
    height: fit-content;
  }
}
@media (max-width: 784px) {
  .__general-info {
    padding-top: 13px;
    height: fit-content;
  }
}

/* MAP Places */
.column {
    position: relative;
}

.scroll-indicator.__map {
  top: 0;
}

@keyframes showMapPlaceOpen {
  0% {
    transform: rotate(-5deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

@keyframes placeDetailsShow {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.map-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}

@media (min-height: 750px) {
  .map-container {
    overflow: hidden;
    margin-bottom: auto;
  }
}

@media (min-width: 1440px) {
  .map-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .places-map {
    width: 100%;
  }
  .map-content {
    padding-bottom: 27px;
    min-height: auto;
    height: 100vh;
    max-height: 1000px;
    display: flex;
  }

  .map-content .column {
    height: 100%;
  }

  .dir-column {
    width: 436px;
    flex-shrink: 0;
    padding-right: 20px;
  }

  .map-column {
    width: 100%;
  }
}

@media (min-width: 1440px) and (min-height: 900px) {
  .map-content {
    height: 100vh;
    max-height: 1000px;
  }
}

@media (max-height: 749px) {
  .map-content {
    height: auto;
  }
}

@media (min-width: 785px) and (max-width: 1439px) {
  .places-map {
    width: 100%;
  }
}
@media (max-width: 784px) {
  .places-map {
    height: 380px;
  }
  .map-container {
    overflow-x: auto;
  }
}

/* MAP Measurement */
.measure-comment {
  font-weight: 300;
}

.measure-block-scrollable {
  overflow: auto;
}

.measure-block-scrollable::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  display: none;
}

.measure-block-scrollable {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.dir-img {
  margin-left: -30px;
  overflow: hidden;
}

.general-info-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
}

.general-info-logo.active {
  animation: fadeIn 0.8s;
}

.measure-info.active {
  animation: fadeIn 0.8s;
}

.measure-info .swiper-slide {
  width: auto!important;
}

@keyframes fadeIn {
  0%    { opacity: 0; }
  100%  { opacity: 1; }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .measure__val {
      font-size: 45px;
  }
}

@media (min-width: 1440px) {
  .measure-block {
    gap: 90px;
  }
  .measure-block.between {
    justify-content: space-between;
    gap: 10px;
  }
  .measure-info {
    min-height: 220px;
  }
  .measure-comment {
    font-size: 12px;
    margin-top: 35px;
  }

  .dir-img {
    height: 394px;
    max-width: 394px;
  }
}
@media (min-width: 785px) and (max-width: 1439px) {
  .measure-info {
    margin-top: 26px;
    margin-bottom: 14px;
  }
  .measure-block {
    width: fit-content;
    gap: 52px;
  }
  .measure-comment {
    font-size: 8px;
    margin-top: 17px;
  }
}
@media (max-width: 784px) {
  .measure-info {
    margin-top: 22px;
    margin-bottom: 14px;
    margin-right: 15px;
  }
  .measure-block {
    width: fit-content;
    gap: 40px;
  }
  .measure-comment {
    font-size: 8px;
    margin-top: 22px;
  }
}


/* DOCTORS Desktop Right info */
.doctors-info {
  color: #ffffff;
}

.doctors-right-info {
  background: url('/local/templates/mmc/css/../images/icons/right-info-background.svg');
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translate3d(0, 0, 0);
  height: 100%;
  width: 780px;
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 151px;
  z-index: 2;
  padding-top: 200px;
  display: flex;
  flex-direction: column;
}

.doctors-info h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 62px;
}

.doctors-right-info ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/*.doctors-right-info ul li {
  cursor: pointer;
  font-size: 18px;
  width: 70%;
}

.doctors-right-info ul li:hover,
.doctors-right-info ul li.__selected,
.doctors-right-info ul li.swiper-slide-thumb-active
 {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  transition: font-size 0.5s, font-weight 0.5s;
  transform: scale(1.3);
  transform-origin: center left;
}

.doctors-right-info ul li.__selected::before,
.doctors-right-info ul li.swiper-slide-thumb-active::before {
  content:'';
  transition: content 0.5s;
  background: url('/local/templates/mmc/css/../images/icons/list.svg') no-repeat center center;
  background-size: contain;
  transition: 0.5s;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}*/

.doctors-bottom-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.doctors-bottom-info__ornament {
  background: url('/local/templates/mmc/css/../images/icons/doctor-bottom-info-background.svg') repeat;
  width: 100%;
  height: 46px;
}

.doctors-bottom-info__data {
  background: rgba(21, 57, 107, 0.60);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translate3d(0, 0, 0);
}

.doctors-bottom-info__title {
  font-size: 25px;
  display: block;
}

.doctors-bottom-buttons {
  display: flex;
}

.doctors-bottom-button {
  width: 41px;
  height: 41px;
}

.doctors-bottom-button img {
  display: block;
  width: 41px;
  height: 41px;
  margin-top: -2px;
}
.doctors-bottom-button.__disabled {
  background-color: #91BCE5 !important;
  border-color: #91BCE5 !important;
}

.doctors-bottom-button.swiper-button-disabled {
  background-color: #91BCE5 !important;
  border-color: #91BCE5 !important;
} 

.doctors-bottom-button.__disabled:hover {
    background-color: #6EA3D6 !important;
    border-color: #6EA3D6 !important;
}

.doctors-info__main-text {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.doctors-info__main-text img {
  display: block;
}

.doctors-info__main-text div {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-bottom-marker {
  position: absolute;
  width: 1px;
  height: 1px;
  bottom: 0;
}

@media (min-width: 1440px) {
  .doctors-info__main-text {
    margin-top: 62px;
    margin-bottom: 54px;
  }
  .doctors-info__main-text img {
    height: 23px;
    margin-top: 8px;
  }
  .doctors-info__main-text div {
    font-size: 32px;
  }
}
@media (min-width: 785px) and (max-width: 1439px) {
  .doctors-info__main-text img {
    height: 15px;
    margin-top: 3px;
  }
  .doctors-info__main-text div {
    font-size: 16px;
  }
  .doctors-bottom-info__data {
    padding: 26px 15px 41px 15px;
    display: grid;
    grid-template-columns: 250px auto 82px;
    gap: 50px;
    min-height: 143px;
  }
  .doctors-bottom-info__title {
    font-weight: 700;
  }
}
@media (max-width: 784px) {
  .doctors-info__main-text {
    margin-top: 12px;
  }
  .doctors-info__main-text img {
    height: 19px;
    margin-top: 3px;
  }
  .doctors-info__main-text div {
    font-size: 14px;
  }
  .doctors-bottom-info__data {
    padding: 10px 16px 30px 16px;
  }
  .doctors-bottom-info__ornament {
    height: 40px;
  }
  .doctors-bottom-info__title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
  }
}


/* Статьи */
.articles-page {
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
}

.articles-page h2 {
  font-weight: 700;
}

.top-articles {
  display: flex;
  gap: 3px;
  width: fit-content;
}

.top-article {
  position: relative;
  background-repeat: no-repeat!important;
  background-size: cover!important;
  background-position-x: center!important;
  aspect-ratio: 1/1;
}

.top-article::before {
  content: ' ';
  padding-top: 100%;
  float: left;
}

.top-article.__img1 {
  background: url('/local/templates/mmc/css/../images/pictures/articles-1.png');
}
.top-article.__img2 {
  background: url('/local/templates/mmc/css/../images/pictures/articles-2.png');
}

.top-article-info {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(70, 190, 215, 0.53);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translate3d(0, 0, 0);
  width: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.top-article-info__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.top-article-info__description {
  FONT-VARIANT: JIS83;
  font-size: 16px;
  display: block;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.articles-page ul li {
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.articles-page ul li:hover {
  text-decoration: none;
}

.articles-page ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button-more-articles {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}
.article-list {
  position: relative;
}
@media (min-width: 1440px) {
  .articles-page {
    padding-top: 126px;
    padding-bottom: 100px;
    gap: 20px;
  }
  .articles-page h2 {
    margin-bottom: 29px;
    font-size: 35px;
  }
  .articles-page ul {
    max-width: 411px;
    gap: 20px;
  }
  .top-articles {
    display: grid;
    grid-template-columns: repeat(2, minmax(25vw, 567px));
    max-width: 1277px;
  }
  .top-article {
    width: 100%;
  }
  .top-article-info {
    min-height: 188px;
    padding: 31px 45px 20px 53px;
  }
  .top-article__photo {
    height: 565px;
  }
  .button-more-articles {
    margin-top: 62px;
    width: 287px;
    position: absolute;
    bottom: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  .article-list {
    padding-bottom: 138px;
  }

  .top-article-info__title {
    height: 48px;
  }
}
@media (min-width: 785px) and (max-width: 1439px) {
  .measure-info {
    height: 146px;
  }
  .articles-page {
    padding-top: 16px;
    padding-bottom: 70px;
    gap: 28px;
  }
  .articles-page h2 {
    margin-bottom: 22px;
    font-size: 25px;
  }
  .top-article {
    width: 50vw;
  }
  .top-article-info {
    /* height: 154px; */
    padding: 12px 9px 22px 19px;
  }
  .top-article__photo {
    height: 462px;
  }
  .button-more-articles {
    margin-top: 62px;
    width: 287px;
    position: absolute;
    bottom: 0;
  }
  .article-list {
    padding-bottom: 138px;
  }
}
@media (min-width: 785px) and (max-width: 1439px) {
  .articles-page {
    flex-direction: row-reverse;
  }
}
@media (max-width: 784px) {
  .measure-info {
    height: 180px;
  }
  .party-bottom-info__data {
    display: block;
}
.doctors-bottom-buttons {
    margin-top: 15px;
    justify-content: center;
}
.landing-page-content {
  padding-right: 16px;

}
  .articles-page {
    flex-direction: column-reverse;
    margin-bottom: 60px;
    padding-right: 16px;
    padding-top: 13px
  }
  .articles-page h2 {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .articles-page ul li {
    font-size: 12px;
  }
  .top-articles {
    margin-bottom: 30px;
    width: 100%;
  }
  .top-article {
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
  }
  .top-article-info {
    /* height: 114px; */
    padding: 10px 12px 14px 12px;
  }
  .top-article__photo {
    width: 100%;
  }
  .top-article-info__title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .top-article-info__description {
    font-size: 12px;
  }
  .button-more-articles {
    margin: 23px auto 0 auto;
    display: block;
    width: 201px;
    font-size: 14px;
    padding: 16px;
  }
}

/* End */


/* Start:/local/templates/mmc/css/timeline.css?17125067494411*/
.timeline:before {
    content: '';
    top: -10px;
    left: -4px;
    position: absolute;
    width: 10px;
    height: 20px;
    background: #ffffff;
}

.timeline {
  display: flex;
  flex-direction: column;
  border-left: 2px solid #15396B;
  position: relative;
}

.timeline>li {
  position: relative;
}

.timeline>li::before {
  content: '';
  background-image: url('/local/templates/mmc/css/../images/icons/list.svg');
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  z-index: 1;
}

.timeline>li:last-child:after {
    content: '';
    display: block;
    top: 32px;
    position: absolute;
    width: 10px;
    height: calc(100% - 32px);
    background: #ffffff;
}

.timeline figcaption {
  margin-bottom: 15px;
}

.timeline li.timeline-item:only-of-type mark {
    top: 0;
}

.timeline h3 {
  color: #4C4C4C;
  font-weight: 700;
/*  text-transform: uppercase;*/
}

.timeline h4 {
  font-weight: 700;
}
.timeline a.more {
  text-align: center;
  box-sizing: border-box;
  display: block;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #4C4C4C;
}

@media (min-width: 1025px) {
  .timeline a.more:hover {
    text-decoration: none;
  }
}

.timeline>li:first-child mark {
  position: absolute;
  width: 10px;
  height: 20px;
  background: #ffffff;
}
.timeline>li:last-child mark {
  position: absolute;
  width: 10px;
  height: 100%;
  background: #ffffff;
}
.timeline h3.pub-title {
  color: #15396B;
  text-transform: none;
}
.timeline .autors {
  margin-top: 28px;
  margin-bottom: 20px;
}
.autor-head {
  margin-bottom: 5px;
}

.timeline>li.width-full {
  max-width: 100%;
}

.search-result .timeline li,
.search-result .timeline h4 {
    max-width: 100%;
}

@media (min-width: 1440px) {
  .timeline {
    gap: 52px;
    padding-left: 42px;
    margin-left: 12px;
  }
  .timeline>li {
    max-width: 803px;
  }
  .timeline>li::before {
    width: 23px;
    height: 23px;
    background-size: 23px 23px;
    left: -54px;
    top: 10px;
  }
  .timeline>li:last-child:after {
    left: -48px;
  }
  .timeline h3 {
    font-size: 35px;
    margin-bottom: 14px;
  }
  .timeline h4 {
    font-size: 18px;
    max-width: 620px;
  }
  .timeline a.more {
    margin-top: 20px;
    padding: 0;
    width: fit-content;
    font-size: 18px;
    font-weight: 400;
  }
  .timeline img {
    height: 290px;
    margin-top: 27px;
    display: block;
  }
  .timeline figcaption {
    margin-top: 27px;
    font-size: 16px;
  }
  .timeline>li:first-child mark {
    top: -10px;
    left: -48px;
  }
  .timeline>li:last-child mark {
    top: 32px;
    left: -47px;
  }
}
@media (min-width: 785px) and (max-width: 1439px) {
  .timeline {
    gap: 52px;
    padding-left: 38px;
    margin-left: 12px;
  }
  .timeline>li {
    max-width: 803px;
  }
  .timeline>li::before {
    width: 23px;
    height: 23px;
    background-size: 23px 23px;
    left: -52px;
    top: 10px;
  }
  .timeline h3 {
    font-size: 35px;
    margin-bottom: 14px;
  }
  .timeline h4 {
    font-size: 18px;
    max-width: 620px;
  }
  .timeline a.more {
    margin-top: 20px;
    padding: 0;
    width: fit-content;
    font-size: 18px;
    font-weight: 400;
  }
  .timeline img {
    height: 290px;
    margin-top: 27px;
  }
  .timeline figcaption {
    margin-top: 27px;
    font-size: 16px;
  }
  .timeline>li:first-child mark {
    top: -10px;
    left: -48px;
  }
  .timeline>li:last-child mark {
    top: 32px;
    left: -42px;
  }
  .timeline>li:last-child:after {
    left: -42px;
  }
}
@media (max-width: 784px) {
  .timeline {
    gap: 25px;
    padding-left: 18px;
    margin-left: 9px;
  }
  .timeline>li::before {
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
    left: -27px;    
    top: 2px;
  }
  .timeline>li:last-child:after {
    left: -27px;
    top: 15px;
    height: calc(100% - 15px);
  }
  .timeline h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .timeline h4 {
    font-size: 16px;
  }
  .timeline a.more {
    margin-top: 16px;
    padding: 0;
    width: fit-content;
    font-size: 16px;
    font-weight: 400;
  }
  .timeline img {
    width: 100%;
    margin-top: 16px;
  }
  .timeline figcaption {
    margin-top: 16px;
    font-size: 12px;
  }
  .timeline>li:first-child mark {
    top: -8px;
    left: -23px;
    height: 10px;
  }
  .timeline>li:last-child mark {
    top: 16px;
    left: -27px;
  }
  .timeline .autors {
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
/* End */


/* Start:/local/templates/mmc/css/content-page.css?175275681512043*/
aside a {
    text-decoration: underline;
}

@media (min-width: 1025px) {
  aside a:hover {
      text-decoration: none;
  }
}

.oldHistory, .oldHistory2 {
  display: none;
}

.video-wrapper {
    margin: .5em 0;
    padding-top: 56.25%;
    position: relative;
    width: 100%
}

.video-wrapper iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.podcasts {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  padding-top: 20px;
}

.timeline a.podcast-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(76, 76, 76, 1);
}

.timeline h4.title a {
  text-align: left;
}

.timeline a.youtube-preview {
  aspect-ratio: 17/9;
  max-width: 516px;
  display: block;
}

.timeline a.youtube-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bold {
  font-weight: 700;
}
.content-page {
  height: fit-content;
  overflow: visible;
  max-width: 1920px;
  margin: 0 auto;
}

.content-page h1, .title_h1 {
  font-weight: 700;
  max-width: 885px;
}

.content-page__content > section {
  display: none;
}

.contact-info {
  margin-top: 50px;
}

.contact-info .timeline h3 {
  text-transform: uppercase;
  margin-bottom: 24px;
}

ul.timeline.__contacts li {
    max-width: 100%;
}
.page-submenu.__dynamic {
  position: sticky;
  /* display: none; */
  display: block;
}
/* .page-submenu.__dynamic.__visible {  
  display: block;
} */

.page-submenu.__static {
  position: relative;
  top: auto;

  display: none;
}
.submenu-breadcrumbs {
    display: flex;
}

.content-page__content mark, .content-page__content h4 {
  font-weight: 700;
}

.badge {
  background: rgba(106, 168, 206, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-transform: uppercase;
}

.list-ul, .content-inner ul {
  margin-left: 10px;
}

.list-ul li, .content-inner ul li {
    position: relative;
    padding-left:10px
}

.list-ul li:before, .content-inner ul li:before {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #15396B;
    display: block;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7px;
}

.content-inner h2 {
    font-size: 28px;
    font-weight: 700
}
.content-inner h3 {
    font-size: 24px;
    font-weight: 700
}

.content-inner a {text-decoration: underline;}
.content-inner a.button {text-decoration: none;}
@media (min-width: 1025px) {
  .content-inner a:hover {text-decoration: none;}
}

.content-inner h5 {
  font-weight: 400;
  font-size: inherit;
  margin-bottom: 10px;
}

.person-ul li {
    position: relative;
    padding-left: 25px;
}

.person-ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: url(/local/templates/mmc/css/../images/icons/doctor.svg) no-repeat center;
    display: block;
    margin: 0;
    position: absolute;
    left: 0;
    top: -1px;
}

.person-ul li h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.person-ul li+li {
  margin-top: 20px;
}

.content-page__content img {
    max-width: 100%;
    height: auto;
}


.content-image {
  position: relative;
  width: 100%;
}

.content-image img {
  display: block;
  width: 100%;
  height: auto;
}

.content-image label {
  position: absolute;
  background: rgba(42, 212, 252, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.content-image label u {
  cursor: pointer;
  text-underline-offset: 4px;
}
.content-image label u:hover {
  text-decoration: none;
}
.content-page__content .table,
.content-inner .table {
  overflow: auto;
}

.content-page__content table,
.content-inner table {
    border-collapse: collapse;
}

.content-page__content table td,
.content-inner table td,
.content-page__content table th,
.content-inner table th {
    padding: 20px 22px;
    border: 2px solid rgba(42, 212, 252, 1);
}

.quote {
  position: relative;
}

.quote:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 991px;
  max-width: 100%;
  border-top: 2px solid rgba(42, 212, 252, 1);
}

.quote label {
  display: block;
  position: relative;
  background: url('/local/templates/mmc/css/../images/pictures/citata-marker.svg') no-repeat 59px 0;
  overflow: hidden;
  color: rgba(21, 57, 107, 1);
  font-weight: 700;
}

.quote label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 59px;
  border-top: 2px solid rgba(42, 212, 252, 1);
}

.quote label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 118px;
  width: 845px;
  max-width: 100%;
  border-top: 2px solid rgba(42, 212, 252, 1);
}

.tags {
  margin-bottom: 13px!important;
}

.bottom-action {
  display: flex;
  justify-content: space-between;
}
span.ya-share2__title {
    color: rgba(21, 57, 107, 1);
    text-decoration: underline;
    text-underline-offset: 2px;
      margin-bottom: 2px;
}
span.ya-share2__title:hover {
  text-decoration: none;
}

span.ya-share2__icon.ya-share2__icon_more {
     background-image: url(/local/templates/mmc/css/../images/icons/share.svg)!important;
    width: 28px !important;
    height: 26px!important;
    background-size: 25px 25px !important;
    margin-right: 5px;
}

a.ya-share2__link.ya-share2__link_more.ya-share2__link_more-button-type_long {
    border: 0;
    background: transparent;
}

.page-submenu.fixed.__active {
  position: fixed;
  z-index: 6;
}

.member-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

a.member {
  text-decoration: none;
}

.member {
    display: block;
    box-sizing: border-box;
    text-align: center;
}

.member__picture-img {
    display: block;
    width: 100%;
    height: 100%!important;
    object-fit: cover;
}

.member__picture {
    aspect-ratio: 1/1;
    border: 2px solid rgba(217, 217, 217, 0.65);
    transition: 0.2s;
}

.member:hover .member__picture {
    border-color: #2AD4FC;
}

.member__name {
    font-size: 120%;
    font-weight: 700;
    margin: 31px 0 21px;
    text-underline-offset: 4px;
  text-decoration: underline;
}
.member:hover .member__name {
  text-decoration: none;
}

.member__description {
  color: #7C7878;
  text-decoration: none;
  margin-top: 8px;
}

@media (min-width: 1440px) {
    .content-page {
      padding-top: 34px;
    }
    .content-page__content {
      margin-top: 33px;
      margin-bottom: 100px;
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 19px;
    }
    .content-page__content2 {
      display: block;
    }
    .content-page h1, .title_h1 {
      font-size: 35px;
    }
    .content-page__content h1 + mark {
      margin-top: 28px;
    }
    .content-page__content > section {
      display: block;
    }
    .content-page__content > section .link-list, .sidebar {
/*      position: sticky;*/
      top: 150px;
    }
    .content-page__content > aside {
      width: 100%;
      padding-right: 2px;
      max-width: 1138px;
      overflow: hidden;
    }
    .content-page__content > aside > *, .content-inner > *, .contact-text > * {
      margin-bottom: 32px;
    }
    .content-page .page-submenu {
      display: none;
    }
    .page-submenu.__dynamic.__visible {
      display: none;
    }
    .content-page__content mark, .content-page__content h4 {
      font-size: 18px;
    }
    .content-page__content p,
    .content-page__content mark,
    .content-page__content ul,
    .content-page__content ol,
    .content-page__content .quote {
      max-width: 1136px;
    }
    .content-page__content {
      font-size: 16px;
    }
    .content-page__content mark + p {
      margin-top: 28px;
    }
    .badge {
      font-size: 32px;
      padding: 48px 24px;
      margin-top: 32px;
      margin-bottom: 32px;
      width: 850px;
      max-width: 100%;
    }
    .content-image label {
      margin: 0 24px;
      bottom: 27px;
      padding: 25px 43px;
    }

    .quote {
      padding-top: 39px;
    }

    .quote label {
      min-height: 25px;
      padding: 12px 30px 16px 157px;
      font-size: 16px;
      margin-top: 52px;
    }
}
@media (min-width: 785px) and (max-width: 1439px) {
  .content-page {
    padding-top: 24px;
  }
  .content-page__content {
    margin-top: 56px;
    margin-bottom: 70px;
  }
  .content-page h1, .title_h1 {
    font-size: 35px;
  }
  .content-page__content h1 + mark {
    margin-top: 21px;
  }
  .page-submenu {
    float: left;
  }
  .content-page .breadcrumbs {
    margin-left: 12px;
    float: left;
  }
  .content-page.__dynamic {
    top: 85px;
    margin-left: -41px;
  }
  .content-page h1, .title_h1 {
    font-size: 35px;
  }
  .page-submenu.__dynamic {
    top: 85px;
  }
  .fixed .page-submenu__menu {
    position: fixed;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    overflow: auto;
    max-width: 100%;
    z-index: -1;
    padding-left: 70px;
}
  .submenu-breadcrumbs {
    gap: 13px;
    position: absolute;
    left: 53px;
    margin-left: 0;
  }
  .submenu-breadcrumbs.no-padding {
    left: 5px;
  }
  .content-page__content mark, .content-page__content h4 {
    font-size: 18px;
  }
  .content-page__content {
    font-size: 16px;
  }
  .content-page__content mark + p {
    margin-top: 17px;
  }
  .content-page__content > aside > *, .content-inner > *, .contact-text > * {
    margin-bottom: 24px;
  }
  .badge {
    font-size: 32px;
    padding: 48px 24px;
    margin-top: 24px;
    margin-bottom: 32px;
    width: 850px;
    max-width: 100%;
  }
  .content-image label {
    margin: 0 24px;
    bottom: 27px;
    padding: 25px 43px;
  }

  .quote {
    padding-top: 39px;
  }

  .quote label {
    min-height: 25px;
    padding: 12px 30px 16px 157px;
    font-size: 16px;
    margin-top: 52px;
  }
}
@media (max-width: 784px) {
  .content-page {
    padding-top: 9px;
  }
  .content-page__content {
    margin-top: 15px;
    margin-bottom: 60px;
  }
  .content-page h1, .title_h1 {
    font-size: 18px;
  }
  .content-page__content h2 + mark {
    margin-top: 15px;
  }
  .content-page__content mark, .content-page__content h4 {
    font-size: 14px;
  }
  .content-page__content  {
    font-size: 12px;
  }
  .content-page__content > aside > *, .content-inner > *, .contact-text > * {
    margin-bottom: 16px;
  }
  .content-page h1, .title_h1 {
    font-size: 18px;
  }
  .page-submenu.__dynamic {
    top: 75px;
  }
  .fixed .page-submenu__menu {
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    overflow: auto;
    max-width: 100%;
    z-index: -1;
    padding-left: 70px;
}
  .submenu-breadcrumbs {
    gap: 13px;
    position: absolute;
    z-index: 6;
    left: 69px;
    margin-left: 0;
    padding-right: 16px;
  }
  .submenu-breadcrumbs.no-padding {
    position: static;
  }
  .content-page__content mark + p {
    margin-top: 9px;
  }
  .badge {
    font-size: 18px;
    padding: 13px 13px 19px 13px;
    margin-top: 20px;
    margin-bottom: 33px;
  }
  .content-image label {
    left: 0;
    bottom: 0;
    width: calc(100% - 16px);
    padding: 8px 8px 11px 8px;
    font-size: 12px;
  }

  .quote {
    padding-top: 14px;
    font-size: 14px;
  }

  .quote label {
    background: url('/local/templates/mmc/css/../images/pictures/citata-marker-mob.svg') no-repeat 20px 0;
    min-height: 35px;
    padding: 8px 0 2px 90px;
    font-size: 14px;
    margin-top: 12px;
    background-size: 46px;
  }

  .quote label:before {
    width: 21px;
  }

  .quote label:after {
    left: 65px;
  }
  .content-inner {font-size: 12px}

  .content-page__content table td,
  .content-inner table td,
  .content-page__content table th,
  .content-inner table th {
      padding: 5px 10px;
      border: 1px solid rgba(42, 212, 252, 1);
  }

  .content-inner h2 {
    font-size: 16px;
  }
  .content-inner h3 {
    font-size: 15px;
  }
  .member__name {
    font-size: 100%;
    margin: 20px 0 10px;
  }
  .member-list {
    row-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }

@media (max-width: 440px) {
  .member-list {
    grid-template-columns: repeat(1, 1fr);
  }

}

/* End */


/* Start:/local/templates/mmc/components/bitrix/news.list/main_slider/style.css?1712420031150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */
/* /local/templates/mmc/css/map-component.css?17124200305360 */
/* /local/templates/mmc/css/solutions.css?171336643618472 */
/* /local/templates/mmc/css/page1.css?171250754419419 */
/* /local/templates/mmc/css/timeline.css?17125067494411 */
/* /local/templates/mmc/css/content-page.css?175275681512043 */
/* /local/templates/mmc/components/bitrix/news.list/main_slider/style.css?1712420031150 */
