@import url(https://fonts.googleapis.com/css?family=Lato:regular,600,700,800&display=swap);

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,600,800&display=swap);

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html {
  font-size: 62.5%;
}

html,
body {
  height: 100%;
  min-width: 360px;
}

body {
  color: #42474C;
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Lato", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  background-color: #F4F6F6;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

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

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

.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 113rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.form {
  display: -ms-grid;
  display: grid;
  padding: 4rem 4rem 6.7rem;
  width: 100%;
  gap: 3.2rem;
  max-width: 49rem;
  background: #4779B8;
  text-align: center;
  color: #fff;
}

.form__title {
  font-size: 2.4rem;
}

.form__input {
  width: 100%;
  height: 3.9rem;
  padding-left: 1.8rem;
  border-bottom: 1px solid #fff;
  background-color: transparent;
}

.form__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form__input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form__input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form__button {
  margin-top: 3rem;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  border-radius: 0.2rem;
  letter-spacing: 0.25em;
  font-size: 1.2rem;
  line-height: 1.1666666667;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button_white {
  padding: 2rem 2.5rem;
  background-color: #fff;
  color: #4779B8;
}

.button_transp {
  padding: 1.8rem 2rem;
  border: 1px solid #fff;
  color: #fff;
}

.button_type {
  padding: 1.2rem 2.5rem;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.button_main {
  padding: 1.2rem 2.5rem;
  background-color: #4779B8;
  color: #fff;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  position: relative;
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  padding: 20px;
  width: 100%;
  max-width: 49rem;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.popup__close {
  cursor: pointer;
  position: relative;
  top: -2rem;
  right: -47.5rem;
  z-index: 999;
}

.popup__close::before,
.popup__close::after {
  content: "";
  position: absolute;
  width: 0.3rem;
  height: 20px;
  background-color: #fff;
}

.popup__close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.popup__close::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.title {
  position: relative;
  padding-bottom: 2.8rem;
  font-size: 2.6rem;
  line-height: 1.1923076923;
  color: #1E2428;
}

@supports (padding-bottom: clamp( 1.5rem , 0.8922077922rem  +  1.6883116883vw , 2.8rem )) {
  .title {
    padding-bottom: clamp( 1.5rem , 0.8922077922rem  +  1.6883116883vw , 2.8rem );
  }
}

@supports not (padding-bottom: clamp( 1.5rem , 0.8922077922rem  +  1.6883116883vw , 2.8rem )) {
  .title {
    padding-bottom: calc(
      1.5rem + 0.8125 * (100vw - 36rem) / 48.125
    );
  }
}

@supports (margin-bottom: clamp( 3.2rem , 2.1246753247rem  +  2.987012987vw , 5.5rem )) {
  .title {
    margin-bottom: clamp( 3.2rem , 2.1246753247rem  +  2.987012987vw , 5.5rem );
  }
}

@supports not (margin-bottom: clamp( 3.2rem , 2.1246753247rem  +  2.987012987vw , 5.5rem )) {
  .title {
    margin-bottom: calc(
      3.2rem + 1.4375 * (100vw - 36rem) / 48.125
    );
  }
}

.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.3rem;
  background-color: #2A93CA;
}

.title_type::after,
.title_solution::after,
.title_sets::after {
  width: 25.7rem;
}

.title_cat::after {
  width: 15rem;
}

.title_70::after {
  width: 7rem;
}

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

.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.22);
  z-index: 50;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  /* .header__container */
}

.header__container {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .menu {
  padding: 0 1rem;
  /* .menu__body */
  /* .menu__item */
  /* .menu__link */
}

.header .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@supports ((-moz-column-gap: clamp( 1.5rem , 0.3311688312rem  +  3.2467532468vw , 4rem )) or (column-gap: clamp( 1.5rem , 0.3311688312rem  +  3.2467532468vw , 4rem ))) {
  .header .menu__list {
    -webkit-column-gap: clamp( 1.5rem , 0.3311688312rem  +  3.2467532468vw , 4rem );
       -moz-column-gap: clamp( 1.5rem , 0.3311688312rem  +  3.2467532468vw , 4rem );
            column-gap: clamp( 1.5rem , 0.3311688312rem  +  3.2467532468vw , 4rem );
  }
}

@supports not ((-moz-column-gap: clamp( 1.5rem , 0.3311688312rem  +  3.2467532468vw , 4rem )) or (column-gap: clamp( 1.5rem , 0.3311688312rem  +  3.2467532468vw , 4rem ))) {
  .header .menu__list {
    -webkit-column-gap: calc(
      1.5rem + 1.5625 * (100vw - 36rem) / 48.125
    );
       -moz-column-gap: calc(
      1.5rem + 1.5625 * (100vw - 36rem) / 48.125
    );
            column-gap: calc(
      1.5rem + 1.5625 * (100vw - 36rem) / 48.125
    );
  }
}

.header .menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.header .menu__item:first-child {
  margin-bottom: 3rem;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6666666667;
}

.header .menu__link {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: #fff;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.icon-menu {
  display: none;
}

.main {
  position: relative;
  padding-top: 11rem;
  padding-bottom: 11rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #4779B8;
  background-position: 80%;
  /* .main__container */
  /* .main__body */
  /* .main__title */
  /* .main__buttons */
  /* .main__services */
}

.main__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

@supports (gap: clamp( 6rem , 5.0649350649rem  +  2.5974025974vw , 8rem )) {
  .main__body {
    gap: clamp( 6rem , 5.0649350649rem  +  2.5974025974vw , 8rem );
  }
}

@supports not (gap: clamp( 6rem , 5.0649350649rem  +  2.5974025974vw , 8rem )) {
  .main__body {
    gap: calc(
      6rem + 1.25 * (100vw - 36rem) / 48.125
    );
  }
}

.main__title {
  font-family: Open Sans;
  text-transform: lowercase;
  color: #FFFEFE;
  font-weight: 300;
}

@supports (margin-bottom: clamp( 2.4rem , 2.1194805195rem  +  0.7792207792vw , 3rem )) {
  .main__title {
    margin-bottom: clamp( 2.4rem , 2.1194805195rem  +  0.7792207792vw , 3rem );
  }
}

@supports not (margin-bottom: clamp( 2.4rem , 2.1194805195rem  +  0.7792207792vw , 3rem )) {
  .main__title {
    margin-bottom: calc(
      2.4rem + 0.375 * (100vw - 36rem) / 48.125
    );
  }
}

@supports (font-size: clamp( 2.4rem , 1.6519480519rem  +  2.0779220779vw , 4rem )) {
  .main__title {
    font-size: clamp( 2.4rem , 1.6519480519rem  +  2.0779220779vw , 4rem );
  }
}

@supports not (font-size: clamp( 2.4rem , 1.6519480519rem  +  2.0779220779vw , 4rem )) {
  .main__title {
    font-size: calc(
      2.4rem + 1 * (100vw - 36rem) / 48.125
    );
  }
}

.main__title span {
  padding-top: 3rem;
  font-weight: 700;
  line-height: 1.3611111111;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
}

@supports (font-size: clamp( 3rem , 2.2519480519rem  +  2.0779220779vw , 4.6rem )) {
  .main__title span {
    font-size: clamp( 3rem , 2.2519480519rem  +  2.0779220779vw , 4.6rem );
  }
}

@supports not (font-size: clamp( 3rem , 2.2519480519rem  +  2.0779220779vw , 4.6rem )) {
  .main__title span {
    font-size: calc(
      3rem + 1 * (100vw - 36rem) / 48.125
    );
  }
}

.main__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  row-gap: 0.9rem;
}

.main__services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@supports (gap: clamp( 2rem , 0.8311688312rem  +  3.2467532468vw , 4.5rem )) {
  .main__services {
    gap: clamp( 2rem , 0.8311688312rem  +  3.2467532468vw , 4.5rem );
  }
}

@supports not (gap: clamp( 2rem , 0.8311688312rem  +  3.2467532468vw , 4.5rem )) {
  .main__services {
    gap: calc(
      2rem + 1.5625 * (100vw - 36rem) / 48.125
    );
  }
}

.contacts {
  margin-top: -2.8rem;
  position: relative;
  z-index: 10;
  /* .contacts__container */
  /* .contacts__list */
  /* .contacts__time */
  /* .contacts__time */
  /* .contacts__production */
  /* .contacts__contact */
}

@supports (margin-top: clamp( -10rem , -13.3662337662rem  +  9.3506493506vw , -2.8rem )) {
  .contacts {
    margin-top: clamp( -10rem , -13.3662337662rem  +  9.3506493506vw , -2.8rem );
  }
}

@supports not (margin-top: clamp( -10rem , -13.3662337662rem  +  9.3506493506vw , -2.8rem )) {
  .contacts {
    margin-top: calc(
      -10rem + 4.5 * (100vw - 36rem) / 48.125
    );
  }
}

.contacts__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}

.contacts__item {
  padding-top: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 0.5rem solid #54A3C1;
}

.contacts__title {
  margin-bottom: 0.5rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6666666667;
  color: #2A93CA;
}

.time-contacts {
  /* .time-contacts__item */
  /* .time-contacts__days */
  /* .time-contacts__hourse */
}

.time-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.8rem;
}

.time-contacts__item p {
	font-size: 15px;
	line-height: 1.6;
}

.time-contacts__item:not(:last-child) {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.time-contacts__days {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7142857143;
}

.time-contacts__hourse {
  color: #2A93CA;
}

.social-contacts {
  /* .social-contacts__list */
  /* .social-contacts__item */
  /* .social-contacts__icon */
  /* .social-contacts__name */
}


.social-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.8rem;
}

.social-contacts__link {
	width: 100%;
	  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-start;
	gap: 40px;
}

.social-contacts__item:not(:last-child) {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}


.social-contacts__name {
	font-size: 15px;
	font-weight: 600;
}

.time-contacts {
  /* .time-contacts__title */
}

.production-contacts {
  padding-right: 2.7rem;
  border-color: #478BBC;
  /* .production-contacts__title */
  /* .production-contacts__text */
}

.production-contacts__text {
  font-size: 1.6rem;
  line-height: 1.6875;
}

.contact-contacts {
  padding-bottom: 3rem;
  border-color: #274167;
  /* .contact-contacts__list */
  /* .contact-contacts__item */
  /* .contact-contacts__phone */
  /* .contact-contacts__adress */
  /* .contact-contacts__mail */
}

.contact-contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.contact-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.1rem;
     -moz-column-gap: 1.1rem;
          column-gap: 1.1rem;
}

.contact-contacts__item a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6875;
}

.contact-contacts__adress {
  font-size: 1.6rem !important;
}

.contact-contacts {
  font-size: 1.6rem;
  /* .ccontact-contacts__title */
}

.type-hospital {
  /* .type-hospital__page */
  /* .type-hospital__container */
  /* .type-hospital__title */
  /* .type-hospital__list */
  /* .type-hospital__item */
}

@supports (padding-bottom: clamp( 5.5rem , 3.3961038961rem  +  5.8441558442vw , 10rem )) {
  .type-hospital {
    padding-bottom: clamp( 5.5rem , 3.3961038961rem  +  5.8441558442vw , 10rem );
  }
}

@supports not (padding-bottom: clamp( 5.5rem , 3.3961038961rem  +  5.8441558442vw , 10rem )) {
  .type-hospital {
    padding-bottom: calc(
      5.5rem + 2.8125 * (100vw - 36rem) / 48.125
    );
  }
}

.type-hospital__container {
  position: relative;
}

.type-hospital__list {
  padding: 0.5rem;
}

.item-type-hospital {
  /* .item-type-hospital_1 */
  /* .item-type-hospital__header */
  /* .item-type-hospital__image */
  /* .item-type-hospital__title */
  /* .item-type-hospital__text */
  /* .item-type-hospital__list */
  /* .item-type-hospital__row */
  /* .item-type-hospital__button */
}

.item-type-hospital__wrapper {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 2rem;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-type-hospital__header {
  display: -ms-grid;
  display: grid;
  gap: 2.2rem;
  padding: 3.6rem 1.4rem 3.8rem;
  text-align: center;
  justify-items: center;
  width: 100%;
  background-color: #F4F6F6;
  border-bottom: 5px solid rgba(42, 147, 202, 0.5);
	height: 240px;	
}

.item-type-hospital__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #1E2428;
}

.item-type-hospital__text {
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
}

.item-type-hospital__list {
  padding: 1.1rem 3.6rem 2rem 3.7rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

@supports (padding-left: clamp( 2.6rem , 2.0857142857rem  +  1.4285714286vw , 3.7rem )) {
  .item-type-hospital__list {
    padding-left: clamp( 2.6rem , 2.0857142857rem  +  1.4285714286vw , 3.7rem );
  }
}

@supports not (padding-left: clamp( 2.6rem , 2.0857142857rem  +  1.4285714286vw , 3.7rem )) {
  .item-type-hospital__list {
    padding-left: calc(
      2.6rem + 0.6875 * (100vw - 36rem) / 48.125
    );
  }
}

.item-type-hospital__list:not(:last-child) {
  margin-bottom: 2rem;
}

.item-type-hospital__row:not(:last-child) {
  margin-bottom: 1rem;
}

.row-item-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  /* .row-item-type__image */
  /* .row-item-type__body */
  /* .row-item-type__title */
  /* .row-item-type__text */
}

.row-item-type__title {
  line-height: 1.7142857143;
  color: #2A93CA;
}

@supports (font-size: clamp( 1rem , 0.812987013rem  +  0.5194805195vw , 1.4rem )) {
  .row-item-type__title {
    font-size: clamp( 1rem , 0.812987013rem  +  0.5194805195vw , 1.4rem );
  }
}

@supports not (font-size: clamp( 1rem , 0.812987013rem  +  0.5194805195vw , 1.4rem )) {
  .row-item-type__title {
    font-size: calc(
      1rem + 0.25 * (100vw - 36rem) / 48.125
    );
  }
}

.row-item-type__text {
  font-size: 1rem;
  line-height: 1.4285714286;
}


.swiper-btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.5rem;
  height: 3.2rem;
  top: 60%;
  border-radius: 1px;
  background: rgba(42, 147, 202, 0.8);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@supports (width: clamp( 3.5rem , 8.9298701299rem  +  -4.8051948052vw , 7.2rem )) {
 .swiper-btn {
    width: clamp( 3.5rem , 8.9298701299rem  +  -4.8051948052vw , 7.2rem );
  }
}

@supports not (width: clamp( 3.5rem , 8.9298701299rem  +  -4.8051948052vw , 7.2rem )) {
.swiper-btn  {
    width: calc(
      7.2rem + -2.3125 * (100vw - 36rem) / 48.125
    );
  }
}

@supports (height: clamp( 3.2rem , 8.1896103896rem  +  -4.4155844156vw , 6.6rem )) {
 .swiper-btn {
    height: clamp( 3.2rem , 8.1896103896rem  +  -4.4155844156vw , 6.6rem );
  }
}

@supports not (height: clamp( 3.2rem , 8.1896103896rem  +  -4.4155844156vw , 6.6rem )) {
.swiper-btn  {
    height: calc(
      6.6rem + -2.125 * (100vw - 36rem) / 48.125
    );
  }
}

.swiper-btn:hover
{
  background: rgb(42, 147, 202);
}

.swiper-btn_next {
  right: 0;
}

.swiper-btn_prev
{
  left: 0;
}

.swiper-btn.swiper-button-disabled{
  opacity: 0;
}

.swiper {
	padding-right: 10px !important;
	
}

.swiper-pagination-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 2rem 0 0 0;
}

.swiper-pagination-bullet {
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 50%;
  border: 0.2rem solid #4779B8;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.swiper-pagination-bullet-active {
  background-color: #2A93CA;
}

.sets {
  /* .sets__container */
  /* .sets__title */
  /* .sets__body */
  /* .sets__list */
  /* .sets__item */
}

@supports (padding-bottom: clamp( 5.4rem , 3.3896103896rem  +  5.5844155844vw , 9.7rem )) {
  .sets {
    padding-bottom: clamp( 5.4rem , 3.3896103896rem  +  5.5844155844vw , 9.7rem );
  }
}

@supports not (padding-bottom: clamp( 5.4rem , 3.3896103896rem  +  5.5844155844vw , 9.7rem )) {
  .sets {
    padding-bottom: calc(
      5.4rem + 2.6875 * (100vw - 36rem) / 48.125
    );
  }
}

.sets__container {
  position: relative;
}

.title {
  /* .title_sets */
}

.item-sets {
  /* .item-sets__body */
  /* .item-sets__list */
  /* .item-sets__item */
  /* .item-sets__name */
  /* .item-sets__descr */
  /* .item-sets__image */
  /* .item-sets__footer */
}

.item-sets:hover .item-sets__list {
  opacity: 1;
}

.item-sets__body {
  position: relative;
  height: 100%;
  width: 100%;
}

.item-sets__list {
  opacity: 0;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.item-sets__item {
/*   display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; */
/*   -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; */
	    display: grid;
    /* grid-auto-columns: 1fr 1fr; */
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1.6em;
}

.item-sets__name {
  font-weight: 700;
  color: #2A93CA;
/*   line-height: 2; */
}

@supports (font-size: clamp( 1.4rem , 1.4rem  +  0vw , 1.4rem )) {
  .item-sets__name {
    font-size: clamp( 1.4rem , 1.4rem  +  0vw , 1.4rem );
  }
}

@supports not (font-size: clamp( 1.4rem , 1.4rem  +  0vw , 1.4rem )) {
  .item-sets__name {
    font-size: calc(
      1.4rem + 0 * (100vw - 36rem) / 48.125
    );
  }
}

.item-sets__descr {
  font-weight: 400;
  line-height: 2;
}

@supports (font-size: clamp( 1.2rem , 1.2rem  +  0vw , 1.2rem )) {
  .item-sets__descr {
    font-size: clamp( 1.2rem , 1.2rem  +  0vw , 1.2rem );
  }
}

@supports not (font-size: clamp( 1.2rem , 1.2rem  +  0vw , 1.2rem )) {
  .item-sets__descr {
    font-size: calc(
      1.2rem + 0 * (100vw - 36rem) / 48.125
    );
  }
}

.item-sets__image {
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
}

.list-item-sets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  row-gap: 1.6rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
	height: 350px;
}

.footer-item-sets {
  display: -ms-grid;
  display: grid;
	min-height: 280px;
  row-gap: 1rem;
  padding: 1.7rem 1.2rem 1.2rem 1.4rem;
  background-color: #54a3c1;
  color: #fff;
  /* .footer-item-sets__top */
  /* .footer-item-sets__title */
  /* .footer-item-sets__name */
  /* .footer-item-sets__type */
  /* .footer-item-sets__hospital */
}

.footer-item-sets__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-item-sets__title {
  text-transform: uppercase;
}

.footer-item-sets__name {
  display: inline-block;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #fff;
  line-height: 1.5;
}

@supports (font-size: clamp( 1.2rem , 0.9194805195rem  +  0.7792207792vw , 1.8rem )) {
  .footer-item-sets__name {
    font-size: clamp( 1.2rem , 0.9194805195rem  +  0.7792207792vw , 1.8rem );
  }
}

@supports not (font-size: clamp( 1.2rem , 0.9194805195rem  +  0.7792207792vw , 1.8rem )) {
  .footer-item-sets__name {
    font-size: calc(
      1.2rem + 0.375 * (100vw - 36rem) / 48.125
    );
  }
}

.footer-item-sets__type {
  padding-top: 0.6rem;
  font-weight: 600;
  line-height: 1.5;
}

@supports (font-size: clamp( 1.8rem , 1.7064935065rem  +  0.2597402597vw , 2rem )) {
  .footer-item-sets__type {
    font-size: clamp( 1.8rem , 1.7064935065rem  +  0.2597402597vw , 2rem );
  }
}

@supports not (font-size: clamp( 1.8rem , 1.7064935065rem  +  0.2597402597vw , 2rem )) {
  .footer-item-sets__type {
    font-size: calc(
      1.8rem + 0.125 * (100vw - 36rem) / 48.125
    );
  }
}

.footer-item-sets__for {
  padding-top: 2rem;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  font-weight: 600;
  line-height: 1.1875;
  text-transform: none;
  border-bottom: 1px solid #fff;
}

@supports (font-size: clamp( 1.6rem , 1.5064935065rem  +  0.2597402597vw , 1.8rem )) {
  .footer-item-sets__for {
    font-size: clamp( 1.6rem , 1.5064935065rem  +  0.2597402597vw , 1.8rem );
  }
}

@supports not (font-size: clamp( 1.6rem , 1.5064935065rem  +  0.2597402597vw , 1.8rem )) {
  .footer-item-sets__for {
    font-size: calc(
      1.6rem + 0.125 * (100vw - 36rem) / 48.125
    );
  }
}

.footer-item-sets__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow-x: auto;
  padding-bottom: 3rem;
  gap: 2rem;
}

.hospital-item-sets {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.5rem;
  justify-items: center;
/*   max-width: 7.6rem; */
  text-align: center;
  /* .hospital-item-sets__image */
  /* .hospital-item-sets__name */
}

.catalog {
  background-color: #fff;
  /* .catalog__products */
  /* .catalog__product */
}

@supports (padding-bottom: clamp( 6.4rem , 5.5584415584rem  +  2.3376623377vw , 8.2rem )) {
  .catalog {
    padding-bottom: clamp( 6.4rem , 5.5584415584rem  +  2.3376623377vw , 8.2rem );
  }
}

@supports not (padding-bottom: clamp( 6.4rem , 5.5584415584rem  +  2.3376623377vw , 8.2rem )) {
  .catalog {
    padding-bottom: calc(
      6.4rem + 1.125 * (100vw - 36rem) / 48.125
    );
  }
}

.catalog__products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

@supports (gap: clamp( 5rem , 4.0649350649rem  +  2.5974025974vw , 7rem )) {
  .catalog__products {
    gap: clamp( 5rem , 4.0649350649rem  +  2.5974025974vw , 7rem );
  }
}

@supports not (gap: clamp( 5rem , 4.0649350649rem  +  2.5974025974vw , 7rem )) {
  .catalog__products {
    gap: calc(
      5rem + 1.25 * (100vw - 36rem) / 48.125
    );
  }
}

.header-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.7rem 3.5rem 0rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 0px 5px #C5E2F1;
          box-shadow: 0px 0px 5px #C5E2F1;
  /* .header-catalog__title */
  /* .header-catalog__image */
  /* .header-catalog__name */
}

@supports (padding-right: clamp( 1rem , -0.1688311688rem  +  3.2467532468vw , 3.5rem )) {
  .header-catalog {
    padding-right: clamp( 1rem , -0.1688311688rem  +  3.2467532468vw , 3.5rem );
  }
}

@supports not (padding-right: clamp( 1rem , -0.1688311688rem  +  3.2467532468vw , 3.5rem )) {
  .header-catalog {
    padding-right: calc(
      1rem + 1.5625 * (100vw - 36rem) / 48.125
    );
  }
}

@supports (padding-left: clamp( 1rem , -0.1688311688rem  +  3.2467532468vw , 3.5rem )) {
  .header-catalog {
    padding-left: clamp( 1rem , -0.1688311688rem  +  3.2467532468vw , 3.5rem );
  }
}

@supports not (padding-left: clamp( 1rem , -0.1688311688rem  +  3.2467532468vw , 3.5rem )) {
  .header-catalog {
    padding-left: calc(
      1rem + 1.5625 * (100vw - 36rem) / 48.125
    );
  }
}

.header-catalog__title {
  padding-bottom: 1.7rem;
  position: relative;
  min-width: 11rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-catalog__name {
  font-size: 1.4rem;
}

.product {
  /* .product__body */
  /* .product__list */
  /* .product__image */
  /* .product__stickers */
  /* .product__volumes */
  /* .product__volume */
  /* .product__banners */
  /* .product__footer */
  /* .product__title */
  /* .product__descr */
  /* .product__button */
}

.product__body {
  text-align: center;
}

.product__body:hover .product__list {
  opacity: 1;
}

.product__content {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product__list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0rem 1.6rem 1.4rem;
  color: #fff;
  background-color: #4779B8;
  opacity: 0;
  z-index: 20;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.product__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30rem;
  background-color: #FBFBFB;
}

.product__image img {
  width: 200%;
  max-width: 100%;
}

.product__stickers {
  position: absolute;
  display: -ms-grid;
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  top: 0;
  right: 0;
}

.product__stickers img {
  width: 100%;
}

.product__volumes {
  position: absolute;
  display: -ms-grid;
  display: grid;
  top: 0;
  left: 0;
}

.product__volume {
  /* .product__volume_1 */
  /* .product__volume_5 */
}

.product__volume img {
  width: 80%;
}

.product__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.product__banners img {
  max-width: 100%;
  width: 50%;
}

.product__footer {
  padding: 1.2rem 0.5rem;
  display: -ms-grid;
  display: grid;
  gap: 1.6rem;
}

.product__title {
  color: #2A93CA;
  text-decoration: underline;
}

@supports (font-size: clamp( 1.8rem , 1.7064935065rem  +  0.2597402597vw , 2rem )) {
  .product__title {
    font-size: clamp( 1.8rem , 1.7064935065rem  +  0.2597402597vw , 2rem );
  }
}

@supports not (font-size: clamp( 1.8rem , 1.7064935065rem  +  0.2597402597vw , 2rem )) {
  .product__title {
    font-size: calc(
      1.8rem + 0.125 * (100vw - 36rem) / 48.125
    );
  }
}

.product__button {
  -ms-grid-column-align: center;
      justify-self: center;
}

.catalog-breadcrumbs {
  padding-top: 2rem;
  /* .catalog-breadcrumbs__item */
}

@supports (padding-bottom: clamp( 2rem , 1.2987012987rem  +  1.9480519481vw , 3.5rem )) {
  .catalog-breadcrumbs {
    padding-bottom: clamp( 2rem , 1.2987012987rem  +  1.9480519481vw , 3.5rem );
  }
}

@supports not (padding-bottom: clamp( 2rem , 1.2987012987rem  +  1.9480519481vw , 3.5rem )) {
  .catalog-breadcrumbs {
    padding-bottom: calc(
      2rem + 0.9375 * (100vw - 36rem) / 48.125
    );
  }
}

.catalog-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.catalog-breadcrumbs__item {
  position: relative;
  display: inline-block;
  padding-right: 0.8rem;
  color: #4779B8;
  line-height: 1.2142857143;
}

.catalog-breadcrumbs__item_bg {
  padding-left: 3.5rem;
}

.list-product {
  display: -ms-grid;
  display: grid;
  row-gap: 1.4rem;
  overflow-y: auto;
  -webkit-box-shadow: 0rem 0rem 0.2rem 0.2rem rgba(71, 121, 184, 0.4);
          box-shadow: 0rem 0rem 0.2rem 0.2rem rgba(71, 121, 184, 0.4);
  text-align: left;
  /* .list-product__title */
  /* .list-product__item */
  /* .list-product__image */
  /* .list-product__name */
}

.list-product__title {
  display: inline-block;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  -ms-grid-column-align: start;
      justify-self: start;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #fff;
  line-height: 1.1875;
}

@supports (font-size: clamp( 1.6rem , 1.7467532468rem  +  -0.1298701299vw , 1.7rem )) {
  .list-product__title {
    font-size: clamp( 1.6rem , 1.7467532468rem  +  -0.1298701299vw , 1.7rem );
  }
}

@supports not (font-size: clamp( 1.6rem , 1.7467532468rem  +  -0.1298701299vw , 1.7rem )) {
  .list-product__title {
    font-size: calc(
      1.7rem + -0.0625 * (100vw - 36rem) / 48.125
    );
  }
}

.list-product__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.list-product__item:last-child {
  margin-bottom: 0.5rem;
}

.list-product__image {
  max-width: 3.3rem;
}

.list-product__button {
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  margin-top: 0.5rem;
}

.docs {
/*   margin-bottom: 10rem; */
/*   background: url("../img/back-slider.jpg") right/cover no-repeat; */
  /* .docs__container */
  /* .docs__title */
  /* .docs__slider */
  /* .docs__wrapper */
  /* .docs__slide */
  /* .docs__image */
  /* .docs__text */
}

@supports (padding-bottom: clamp( 3rem , 1.5974025974rem  +  3.8961038961vw , 6rem )) {
  .docs {
    padding-bottom: clamp( 3rem , 1.5974025974rem  +  3.8961038961vw , 6rem );
  }
}

@supports not (padding-bottom: clamp( 3rem , 1.5974025974rem  +  3.8961038961vw , 6rem )) {
  .docs {
    padding-bottom: calc(
      3rem + 1.875 * (100vw - 36rem) / 48.125
    );
  }
}

.docs__container {
  position: relative;
}

.docs__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.docs__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}

.docs__image img {
  width: 100%;
}

.docs__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 65%;
          flex: 0 1 65%;
  font-size: 3rem;
  line-height: 1.3em;
  color: #2A93C9;
  text-align: center;
}

@supports (font-size: clamp( 1.6rem , 0.9454545455rem  +  1.8181818182vw , 3rem )) {
  .docs__text {
    font-size: clamp( 1.6rem , 0.9454545455rem  +  1.8181818182vw , 3rem );
  }
}

@supports not (font-size: clamp( 1.6rem , 0.9454545455rem  +  1.8181818182vw , 3rem )) {
  .docs__text {
    font-size: calc(
      1.6rem + 0.875 * (100vw - 36rem) / 48.125
    );
  }
}

.docs__text span {
  display: inline-block;
  font-size: 2rem;
  color: #000;
}

@supports (font-size: clamp( 1.4rem , 1.1194805195rem  +  0.7792207792vw , 2rem )) {
  .docs__text span {
    font-size: clamp( 1.4rem , 1.1194805195rem  +  0.7792207792vw , 2rem );
  }
}

@supports not (font-size: clamp( 1.4rem , 1.1194805195rem  +  0.7792207792vw , 2rem )) {
  .docs__text span {
    font-size: calc(
      1.4rem + 0.375 * (100vw - 36rem) / 48.125
    );
  }
}

.title {
  /* .title_doc */
}

@supports (padding-top: clamp( 4.7rem , 2.4090909091rem  +  6.3636363636vw , 9.6rem )) {
  .title {
    padding-top: clamp( 4.7rem , 2.4090909091rem  +  6.3636363636vw , 9.6rem );
  }
}

@supports not (padding-top: clamp( 4.7rem , 2.4090909091rem  +  6.3636363636vw , 9.6rem )) {
  .title {
    padding-top: calc(
      4.7rem + 3.0625 * (100vw - 36rem) / 48.125
    );
  }
}

.fines {
  background-color: #fff;
  border-bottom: 5px solid #478BBC;
  /* .fines__container */
  /* .fines__title */
  /* .fines__body */
  /* .fines__text */
  /* .fines__list */
  /* .fines__item */
  /* .fines__print */
}

@supports (padding-bottom: clamp( 3.9rem , 1.4688311688rem  +  6.7532467532vw , 9.1rem )) {
  .fines {
    padding-bottom: clamp( 3.9rem , 1.4688311688rem  +  6.7532467532vw , 9.1rem );
  }
}

@supports not (padding-bottom: clamp( 3.9rem , 1.4688311688rem  +  6.7532467532vw , 9.1rem )) {
  .fines {
    padding-bottom: calc(
      3.9rem + 3.25 * (100vw - 36rem) / 48.125
    );
  }
}

.fines::before {
  content: "";
  height: 0.5rem;
  width: 33.3wh;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
      -ms-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  background: #1E2428;
}

.fines__text {
  margin-bottom: 2.2rem;
  color: #1E2428;
  line-height: 1.7;
}

@supports (font-size: clamp( 1.6rem , 1.412987013rem  +  0.5194805195vw , 2rem )) {
  .fines__text {
    font-size: clamp( 1.6rem , 1.412987013rem  +  0.5194805195vw , 2rem );
  }
}

@supports not (font-size: clamp( 1.6rem , 1.412987013rem  +  0.5194805195vw , 2rem )) {
  .fines__text {
    font-size: calc(
      1.6rem + 0.25 * (100vw - 36rem) / 48.125
    );
  }
}

.fines__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

@supports (gap: clamp( 2rem , -0.8987012987rem  +  8.0519480519vw , 8.2rem )) {
  .fines__list {
    gap: clamp( 2rem , -0.8987012987rem  +  8.0519480519vw , 8.2rem );
  }
}

@supports not (gap: clamp( 2rem , -0.8987012987rem  +  8.0519480519vw , 8.2rem )) {
  .fines__list {
    gap: calc(
      2rem + 3.875 * (100vw - 36rem) / 48.125
    );
  }
}

.fines__print {
  position: absolute;
  line-height: 1.35;
  font-weight: 600;
  color: #FF0000;
  right: -44px;
  bottom: 0;
  -webkit-transform: matrix(0.98, -0.2, 0.22, 0.98, 0, 0);
      -ms-transform: matrix(0.98, -0.2, 0.22, 0.98, 0, 0);
          transform: matrix(0.98, -0.2, 0.22, 0.98, 0, 0);
}

@supports (font-size: clamp( 3rem , 2.5324675325rem  +  1.2987012987vw , 4rem )) {
  .fines__print {
    font-size: clamp( 3rem , 2.5324675325rem  +  1.2987012987vw , 4rem );
  }
}

@supports not (font-size: clamp( 3rem , 2.5324675325rem  +  1.2987012987vw , 4rem )) {
  .fines__print {
    font-size: calc(
      3rem + 0.625 * (100vw - 36rem) / 48.125
    );
  }
}

.title {
  /* .title_70 */
}

.item-fines {
  position: relative;
  padding: 0.6rem 1.2rem;
  min-height: 16.3rem;
  background-color: #F9FAFB;
  border-top: 5px solid rgba(42, 147, 202, 0.5);
  /* .item-fines__text */
}

.item-fines__text {
  font-size: 1.2rem;
  line-height: 1.6666666667;
}

.submit {
  /* .submit__container */
}

@supports (padding-top: clamp( 5rem , 2.6623376623rem  +  6.4935064935vw , 10rem )) {
  .submit {
    padding-top: clamp( 5rem , 2.6623376623rem  +  6.4935064935vw , 10rem );
  }
}

@supports not (padding-top: clamp( 5rem , 2.6623376623rem  +  6.4935064935vw , 10rem )) {
  .submit {
    padding-top: calc(
      5rem + 3.125 * (100vw - 36rem) / 48.125
    );
  }
}

@supports (padding-bottom: clamp( 5rem , 2.6623376623rem  +  6.4935064935vw , 10rem )) {
  .submit {
    padding-bottom: clamp( 5rem , 2.6623376623rem  +  6.4935064935vw , 10rem );
  }
}

@supports not (padding-bottom: clamp( 5rem , 2.6623376623rem  +  6.4935064935vw , 10rem )) {
  .submit {
    padding-bottom: calc(
      5rem + 3.125 * (100vw - 36rem) / 48.125
    );
  }
}

.submit__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner {
	height: inherit !important;
/*   	padding-bottom: 2rem; */
	
  /* .banner__container */
  /* .banner__content */
  /* .banner__image */
}

.banner-1 {
	height: inherit !important;
}

@supports (height: clamp( 5rem , 0.3246753247rem  +  12.987012987vw , 15rem )) {
  .banner {
    height: clamp( 5rem , 0.3246753247rem  +  12.987012987vw , 15rem );
  }
}

@supports not (height: clamp( 5rem , 0.3246753247rem  +  12.987012987vw , 15rem )) {
  .banner {
    height: calc(
      5rem + 6.25 * (100vw - 36rem) / 48.125
    );
  }
}

.banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.banner__content {
padding-bottom: 3rem;
line-height: 1.2;
}
.banner-5__content {
/*   -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%; */
  line-height: 1.7;
}

.banner__content {
/* 	  -webkit-box-flex: 0;
      -ms-flex: 0 1 80%;
          flex: 0 1 80%; */
/* 	padding-left: 2rem; */
}


.banner__image {
		  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 20% !important;
          flex: 0 1 20% !important;
}


.banner_text {
	margin-bottom: 10px !important;
	display: block !important;
	font-weight: 600;
	color: #fff;
	line-height: 1.7;
}

@supports (font-size: clamp( 1.1rem , 0.0246753247rem  +  2.987012987vw , 3.4rem )) {
  .banner_text {
    font-size: clamp( 1.1rem , 0.0246753247rem  +  2.987012987vw , 3.4rem );
  }
}

@supports not (font-size: clamp( 1.1rem , 0.0246753247rem  +  2.987012987vw , 3.4rem )) {
  .banner_text {
    font-size: calc(
      1.1rem + 1.4375 * (100vw - 36rem) / 48.125
    );
  }
}

.banner_text2 {
/* 	font-size: 20px; */
	font-weight: 400;
	color: #fff;
	padding-left: 10px;
	
	line-height: 1.2;
}


@supports (font-size: clamp( 0.7rem , 0.0922077922rem  +  1.6883116883vw , 2rem )) {
  .banner_text2 {
    font-size: clamp( 0.7rem , 0.0922077922rem  +  1.6883116883vw , 2rem );
  }
}

@supports not (font-size: clamp( 0.7rem , 0.0922077922rem  +  1.6883116883vw , 2rem )) {
  .banner_text2 {
    font-size: calc(
      0.7rem + 0.8125 * (100vw - 36rem) / 48.125
    );
  }
}



@supports (font-size: clamp( 0.6rem , -0.0545454545rem  +  1.8181818182vw , 2rem )) {
  .banner__content {
    font-size: clamp( 0.6rem , -0.0545454545rem  +  1.8181818182vw , 2rem );
  }
}

@supports not (font-size: clamp( 0.6rem , -0.0545454545rem  +  1.8181818182vw , 2rem )) {
  .banner__content {
    font-size: calc(
      0.6rem + 0.875 * (100vw - 36rem) / 48.125
    );
  }
}

.banner__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
	
}


.banner__image img {
	max-width: 100%;
}

.banner-5__container {
	padding: 15px 0;
}

/* The container must be positioned relative: */

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select select {
  display: none;
  /*hide original SELECT element: */
}

/* Style the arrow inside the select element: */

.select-selected:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0rem;
  height: 3rem;
  width: 2rem;
  z-index: 100;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: url("../img/a-down.svg") 0 0 no-repeat;
}

/* Point the arrow upwards when the select box is open (active): */

.select-selected.select-arrow-active:after {
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

/* style the items (options), including the selected item: */

.select-items div,
.select-selected {
  padding: 8px 16px;
  border-bottom: 1px solid #fff !important;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  -moz-text-align-last: left;
       text-align-last: left;
}

/* Style items (options): */

.select-items {
  position: absolute;
  background-color: #D9D9D9;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 0.2rem;
}

.select-items div {
  color: #000;
  font-size: 1.4rem;
}

/* Hide the items when the select box is closed: */

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.contract-p {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-repeat: no-repeat;
  background-size: cover;
  /* .contract-p__container */
  /* .contract-p__content */
  /* .contract-p__title */
  /* .contract-p__subtitle */
  /* .contract-p__list */
  /* .contract-p__item */
}

.contract-p__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contract-p__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 80%;
          flex: 0 1 80%;
}

.contract-p__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  text-align: center;
  color: #fff;
  color: #42474C;
}

@supports (font-size: clamp( 2.4rem , 2.1194805195rem  +  0.7792207792vw , 3rem )) {
  .contract-p__title {
    font-size: clamp( 2.4rem , 2.1194805195rem  +  0.7792207792vw , 3rem );
  }
}

@supports not (font-size: clamp( 2.4rem , 2.1194805195rem  +  0.7792207792vw , 3rem )) {
  .contract-p__title {
    font-size: calc(
      2.4rem + 0.375 * (100vw - 36rem) / 48.125
    );
  }
}

.contract-p__subtitle {
  margin-bottom: 3rem;
  font-size: 2.2rem;
  text-align: center;
}

@supports (font-size: clamp( 1.6rem , 1.3194805195rem  +  0.7792207792vw , 2.2rem )) {
  .contract-p__subtitle {
    font-size: clamp( 1.6rem , 1.3194805195rem  +  0.7792207792vw , 2.2rem );
  }
}

@supports not (font-size: clamp( 1.6rem , 1.3194805195rem  +  0.7792207792vw , 2.2rem )) {
  .contract-p__subtitle {
    font-size: calc(
      1.6rem + 0.375 * (100vw - 36rem) / 48.125
    );
  }
}

.contract-p__button {
  margin-top: 3rem;
  -ms-grid-column-align: center;
      justify-self: center;
  padding: 1.5rem 4.5rem;
}

.contract-p__list {
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.9);
  display: -ms-grid;
  display: grid;
}

.contract-p__item {
  font-size: 2rem;
  color: #2A93CA;
}

.contract-p__item:not(:last-child) {
  margin-bottom: 2rem;
}

@supports (font-size: clamp( 1.5rem , 1.2662337662rem  +  0.6493506494vw , 2rem )) {
  .contract-p__item {
    font-size: clamp( 1.5rem , 1.2662337662rem  +  0.6493506494vw , 2rem );
  }
}

@supports not (font-size: clamp( 1.5rem , 1.2662337662rem  +  0.6493506494vw , 2rem )) {
  .contract-p__item {
    font-size: calc(
      1.5rem + 0.3125 * (100vw - 36rem) / 48.125
    );
  }
}

.main {
  /* .main__button */
}

.button {
  /* .button_transp */
}

.footer {
  font-family: "Lato";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  color: #fff;
  background-color: #4A7BB9;
  /* .footer__container */
  /* .footer__logo */
  /* .footer__contacts */
  /* .footer__services */
}

@supports (height: clamp( 5.1rem , -1.0246753247rem  +  17.012987013vw , 18.2rem )) {
  .footer {
    height: clamp( 5.1rem , -1.0246753247rem  +  17.012987013vw , 18.2rem );
  }
}

@supports not (height: clamp( 5.1rem , -1.0246753247rem  +  17.012987013vw , 18.2rem )) {
  .footer {
    height: calc(
      5.1rem + 8.1875 * (100vw - 36rem) / 48.125
    );
  }
}

.footer__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@supports (font-size: clamp( 0.5rem , -0.0142857143rem  +  1.4285714286vw , 1.6rem )) {
  .footer__contacts {
    font-size: clamp( 0.5rem , -0.0142857143rem  +  1.4285714286vw , 1.6rem );
  }
}

@supports not (font-size: clamp( 0.5rem , -0.0142857143rem  +  1.4285714286vw , 1.6rem )) {
  .footer__contacts {
    font-size: calc(
      0.5rem + 0.6875 * (100vw - 36rem) / 48.125
    );
  }
}

.footer__services {
  display: -ms-grid;
  display: grid;
  gap: 2.2rem;
}

.footer .contacts-footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* .contacts-footer__item */
  /* .contacts-footer__phone" */
  /* .contacts-footer__adress */
  /* .contacts-footer__mail */
}

.footer .contacts-footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

@supports (font-size: clamp( 1rem , 0.7194805195rem  +  0.7792207792vw , 1.6rem )) {
  .footer .contacts-footer__item {
    font-size: clamp( 1rem , 0.7194805195rem  +  0.7792207792vw , 1.6rem );
  }
}

@supports not (font-size: clamp( 1rem , 0.7194805195rem  +  0.7792207792vw , 1.6rem )) {
  .footer .contacts-footer__item {
    font-size: calc(
      1rem + 0.375 * (100vw - 36rem) / 48.125
    );
  }
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

@media (min-width: 47.99875em) {
  .desktop-hidden {
    display: none !important;
  }

  .header._header-scroll {
    background: rgb(71, 121, 184);
  }

  .header .menu__item:first-child {
    display: none;
  }

  .time-contacts {
    padding-left: 2.7rem;
    padding-right: 5.2rem;
  }

  .social-contacts {
    padding-left: 2.7rem;
    padding-right: 5.2rem;
  }
}

@media (min-width: 61.99875em) {
  .header-catalog {
    border-bottom: 0.3rem solid #54A3C1;
  }

  .header-catalog__title._tab-active,
  .header-catalog__title:hover {
    font-weight: 600;
  }

  .header-catalog__title._tab-active::after,
  .header-catalog__title:hover::after {
    content: "";
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    height: 3px;
    width: 12rem;
    -webkit-transform: translate(-50%, 0px);
        -ms-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
    background-color: #335989;
  }
}

@media (min-width: 80em) {
  .swiper-btn_next {
    right: -2.4rem;
  }

  .swiper-btn_prev {
    left: -2.4rem;
  }
}

@media (max-width: 74.375em) {
  .fines__print {
    right: 0;
  }
}

@media (max-width: 61.99875em) {
  .catalog__products {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .contract-p__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

@media (max-width: 47.99875em) {
  [data-showmore-button] {
    height: 1.8rem;
    width: 9rem;
    border: 1px solid #4779B8;
    color: #4779B8;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
  }

  [data-showmore-button] span:last-child {
    display: none;
  }

  ._showmore-active [data-showmore-button] span {
    display: none;
  }

  ._showmore-active [data-showmore-button] span:last-child {
    display: block;
  }

  .mobile-hidden {
    display: none !important;
  }

  .header {
    background-color: #A9B8D6;
  }

  .header .menu__body {
    position: fixed;
    width: 30rem;
    height: 100%;
    top: 0;
    right: -85%;
    padding-top: 1rem;
    padding-left: 3.6rem;
    padding-right: 3.6rem;
    padding-bottom: 2rem;
    overflow: auto;
    background: rgba(71, 121, 184, 0.97);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }

  .menu-open .header .menu__body {
    right: 0;
  }

  .menu-open .header .menu__body::before {
    right: 0;
  }

  .header .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.8rem;
    margin-bottom: 1rem;
    text-align: left;
  }

  .header .menu__link {
    font-size: 1.8rem;
  }

  .mobile-list {
    position: relative;
    display: -ms-grid;
    display: grid;
    gap: 1rem;
    padding: 1.8rem 0;
    /* .mobile-list__link */
  }

  .mobile-list::before,
  .mobile-list::after {
    content: "";
    position: absolute;
    width: 20rem;
    height: 0.1rem;
    left: -4%;
    background: rgba(255, 255, 255, 0.5);
  }

  .mobile-list::before {
    bottom: 0;
  }

  .mobile-list::after {
    top: 0;
  }

  .mobile-list__link {
    font-size: 1rem;
    color: #161616;
  }

  .mobile-list__link:hover {
    font-weight: 700;
    text-decoration: underline;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 4.3rem;
    height: 3.2rem;
    cursor: pointer;
    z-index: 999;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 0.3rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0.2rem;
  }

  .icon-menu::after {
    bottom: 0px;
  }

  .icon-menu span {
    top: calc(50% - 1px);
  }

  .menu-open .icon-menu {
    width: 26px;
    height: 26px;
  }

  .menu-open .icon-menu span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .menu-open .icon-menu::before {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .menu-open .icon-menu::after {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 2px);
  }

  .main__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .main__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .main__services {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
  }

  .contacts__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    margin: 0 auto;
  }

@supports (width: clamp( 31.2rem , 13.0597402597rem  +  50.3896103896vw , 70rem )) {
    .contacts__list {
      width: clamp( 31.2rem , 13.0597402597rem  +  50.3896103896vw , 70rem );
    }
}

@supports not (width: clamp( 31.2rem , 13.0597402597rem  +  50.3896103896vw , 70rem )) {
    .contacts__list {
      width: calc(
      31.2rem + 24.25 * (100vw - 36rem) / 48.125
    );
    }
}

  .contacts__item {
    border-bottom: 0.2rem solid #54A3C1;
  }

  .contacts__item {
    width: 100%;
    padding: 2rem;
  }

  .contacts__title {
    font-size: 2.2rem;
  }

  .time-contacts {
    display: none;
  }

  .time-contacts__days {
    font-size: 1.2rem;
  }

  .time-contacts__hourse {
    font-size: 1.2rem;
  }

  .production-contacts__text {
    font-size: 1.4rem;
  }

  .contact-contacts__phone {
    font-size: 2.4rem !important;
  }

  .item-type-hospital__wrapper {
    -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  }

  .item-type-hospital__wrapper {
    width: 31.2rem;
  }

  .sets__list {
    margin-top: 6rem;
  }

  .item-sets__wrapper {
    max-width: 31.5rem;
    margin: 0 auto;
	  text-align: left;
  }

  .catalog__products {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .header-catalog__image {
    display: none;
  }

  .product__content {
    min-height: 34rem;
  }

  .product__image {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .product__image img {
    width: 80%;
  }

  .docs__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .docs__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }

  .fines__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__services {
    display: none;
  }
}

@media (max-width: 47.99875em) and (max-width: 37.5em) {
  .fines__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 37.5em) {
  .catalog__products {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .catalog__product {
    -ms-grid-column-align: center;
        justify-self: center;
    width: 31.2rem;
  }
}

@media (max-width: 34.375em) {
  .popup__close {
    top: -1.4rem;
    right: -45.5rem;
  }
}

@media (max-width: 29.99875em) {
  .swiper-btn
	{
    top: 50%;
  }

  .footer__logo {
    display: none;
  }
}

@media (max-width: 22.5em) {
  .button_white {
    padding: 1.1rem 1.2rem;
    font-size: 0.8rem;
  }

  .button_transp {
    padding: 1.1rem 1.2rem;
    font-size: 0.8rem;
  }

  .m-mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 48em) and (max-width: 62.9375em) {
  .contacts__contact {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-column-align: center;
        justify-self: center;
  }
}

@media (any-hover: hover) {
  .button_transp:hover {
    color: #4779B8;
  }

  .button_type:hover {
    background-color: transparent;
    -webkit-box-shadow: 0 0 0 1px;
            box-shadow: 0 0 0 1px;
  }

  .button:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .button_main:hover {
    background-color: #5e97df;
  }

  .header .menu__link:hover {
    color: #caebfc;
  }

  .item-type-hospital__wrapper:hover {
    -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  }
}
