:root {
  --title-color: #00628B;
  --footer-color: #293437;
  --red-color: #707f92;
  --text-color: #000000;
  --grey-color: #79797A;
  --light-color: #e3e3e3;
}

html {
  scroll-behavior: smooth;
}

/* play-regular - latin_cyrillic-ext */
@font-face {
  font-family: 'Play';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/play-v12-latin_cyrillic-ext-regular.eot");
  src: local("Play Regular"), local("Play-Regular"), url("../fonts/play-v12-latin_cyrillic-ext-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/play-v12-latin_cyrillic-ext-regular.woff2") format("woff2"), url("../fonts/play-v12-latin_cyrillic-ext-regular.woff") format("woff"), url("../fonts/play-v12-latin_cyrillic-ext-regular.ttf") format("truetype"), url("../fonts/play-v12-latin_cyrillic-ext-regular.svg#Play") format("svg");
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

ol[class],
ul[class] {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
  margin: 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* min-height: 100vh; */
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 15px;
  font-family: "Play", sans-serif;
    background-color: #e3e3e3 !important;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
div:focus,
input:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
  border: none;
}

label {
  margin-bottom: 0;
}

.body.open {
  overflow: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
ul, ol {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: 'Play', serif;
}
ul, ol {
  list-style-position: inside;
}
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-weight: bold;
}

.h1 {
  font-size: 4.5em;
}

.h2 {
  font-size: 2.5em;
}

.h3 {
  font-size: 1.7em;
}

.h4 {
  font-size: 1.3em;
}

.h5 {
  font-size: 1em;
}

.b {
  font-weight: 700;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.up {
  text-transform: uppercase;
  color:#fff;
}

.grey {
  color: var(--grey-color);
}
.mail {
  color: #000;
}
.link__arrow {
  margin-left: .625em;
}

a {
  color: inherit;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  color:#000;
}

a:hover {
  text-decoration: none;
}

p {
  line-height: 1.5em;
  margin-bottom: 0;
  color:#000;
}

.btn__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin: 1em 0;
}

.btn__block.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn__common {
  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: 50px;
  width: 227px;
  padding: 0 30px;
  font-weight: bold;
  border: none;
  font-size: 1em;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  border-radius: 100px;
}

.btn__red {
  background: var(--red-color);
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0px 10px 25px rgba(58, 64, 91, 0.15);
  box-shadow: 0px 10px 25px rgba(58, 64, 91, 0.15);
  border: 1px solid var(--red-color);
}

.btn__red:active, .btn__red:focus, .btn__red:hover {
  color: var(--red-color);
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 0 2px rgba(255, 255, 255, 0.84);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 0 2px rgba(255, 255, 255, 0.84);
}

.btn__red:disabled {
  opacity: .5;
}

.btn__white {
  background: none;
  color: var(--red-color);
  border: 1px solid var(--red-color);
}

.btn__white:active, .btn__white:focus, .btn__white:hover {
  color: #fff;
  background: var(--red-color);
  -webkit-box-shadow: 0px 10px 25px rgba(58, 64, 91, 0.15);
  box-shadow: 0px 10px 25px rgba(58, 64, 91, 0.15);
}

.btn__white:disabled {
  opacity: .5;
}
.form__search {
  position: relative;
}
.form__search .form-control {
  height: 30px;
  width: 30px;
  /* width: 200px; */
  position: relative;
  transition: .3s;
  background: none;
  padding: 0 1em;
}
.form__search .search__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.dictionary__letter{
    display: flex;
    gap: 25px;
    padding: 20px 0;
        flex-wrap: wrap;
}
.dictionary__item .title{
  font-size: 20px;
}


/* .form__search .search__icon:hover +.form-control,
.form__search .search__icon:focus +.form-control,
.form__search .search__icon:focus-within +.form-control,
.form__search .search__icon:active +.form-control {
  width: 200px;
} */
.form__search .form-control:hover,
.form__search .form-control:focus,
.form__search .form-control:focus-within,
.form__search .form-control:active {
  width: 200px;
}
.form__search .form-control:hover,
.form__search .form-control:focus,
.form__search .form-control:focus-within,
.form__search .form-control:active {
  width: 200px;
}

.form__search .form-control:focus + .search__icon,
.form__search .form-control:focus-within + .search__icon,
.form__search .form-control:hover + .search__icon,
.form__search .form-control:visited + .search__icon,
.form__search .form-control:active + .search__icon {
  display: none;
}
.form__search .search__icon:focus,
.form__search .search__icon:focus-within,
.form__search .search__icon:hover,
.form__search .search__icon:visited,
.form__search .search__icon:active {
  display: none;
}

.form__search .form-control::-webkit-input-placeholder, 
.form__search .form-control::-moz-placeholder, 
.form__search .form-control:-ms-input-placeholder,
.form__search .form-control::placeholder  {
  color: inherit
}

.list__block {
  margin-bottom: 4em;
}
.section__title {
  text-align: center;
  color: var(--title-color);
  margin-bottom: 3em;
}

.section__title .h2 {
  margin-bottom: 20px;
}

.section__title .h3 {
  font-weight: normal;
}

.section__title .date {
  display: inline-block;
  background: var(--light-color);
  padding: 21px 17px;
  border-radius: 8px;
}

.section__item {
  padding: 5em 0 6em 0;
}
.section__content {
  padding: 0 0 6em 0;
}
.breadcrumb__block {
  padding-top: 17px;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: inherit;
  height: 71px;
  color: #79797A;
  line-height: 1.125em;
}
.lum-lightbox {
  z-index: 10;
}
.breadcrumb__separator {
  margin: 0 1em;
}
.page__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DADADA;
}
.page__item.active {
  background: var(--red-color);
  color: #fff;
  border: 1px solid var(--red-color);
}
.page__item.next {
    transform: scale(-1);
}
.main__content {
  background: var(--light-color);
  /* padding-bottom: 72px; */
}
.parallax{
    height: 350px;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.content__block {
  -ms-grid-columns: 300px 1fr;
      grid-template-columns: 300px 1fr;
  grid-gap: 90px;
}

.content__inner {
  max-width: 100%;
  word-break: break-word;
}

.content__inner .content__title,
.content__inner ol,
.content__inner ul {
  color: var(--title-color);
  /* padding-bottom: 1.25em; */
}

.content__inner .content__desc {
  color: var(--title-color);
}

.content__inner .content__desc .h2, .content__inner .content__desc .h3, .content__inner .content__desc .h4 {
  font-weight: 200;
}

.content__inner img {
  margin: 1em 0;
  max-width: 100%;
  height: auto;
}
.content__inner video {
  max-width: 100%;
  height: auto;
}

.content__inner iframe {
  max-width: 100% !important;
}

.content__inner p {
  line-height: 1.5;
  font-family: "Play", sans-serif !important;
  color: var(--title-color) !important;
  margin-bottom: 1em;
}

.content__inner h1,
.content__inner h2,
.content__inner h3,
.content__inner h4, 
.content__inner h5 {
  margin: 1em 0;
  color: var(--title-color) !important;
}

.content__inner table {
  /* border: 1px solid #ccc; */
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  /* font-size: .9em; */
  margin-bottom: 1.25em;
  width: 100% !important;
  border-spacing: 0;
}
.content__inner table tr {
  height: auto !important;
}

.content__inner table p {
  margin-bottom: 0 !important;
}

.content__inner table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

.content__inner table tr {
  background-color: #f8f8f8;
  border: 1px solid #DADADA !important;
}

.content__inner table th,
.content__inner table td {
  padding: .5em;
  vertical-align: baseline;
  height: auto !important;
  /* width: 100% !important; */
}

.content__inner table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.aside__item {
  background: #fff;
  border-bottom: 1px solid #F2F2F4;
  color: var(--title-color);
}

.aside__item.active {
  background: var(--red-color);
  color: #fff;
  border-bottom: none;
}
.aside__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 1em 2em;
}
.infoline {
  padding: 5px;
  background: var(--light-color);
}

.infoline__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.infoline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.infoline__item:not(:last-child) {
  margin-right: 2.5em;
}

.infoline__item.social__block {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.infoline__item .social__link:not(:last-child) {
  margin-right: 10px;
}

.head__bookmark-icon {
  margin-right: 10px;
}

header {
  background: var(--light-color);
}

.header__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em 0;
}

.header__inner{
  display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
}
.logo{
  max-width: 330px;
}
.logo img{
  width: 100%;
  height: 100%;
}

.header__item .grey,
.header__item .info__title {
  font-size: .92em;
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 366px;
          flex: 0 0 366px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__logo .logo__text {
  padding: 0 1em;
}

.header__logo .logo__title h1 {
  font-size: 18px;
}

.navblock {
  background: #2e4f4d;
  -webkit-box-shadow: inset 0 0 0 1px var(--light-color);
          box-shadow: inset 0 0 0 1px var(--light-color);
  -webkit-box-shadow: inset 0 -1 0 1px var(--light-color);
          box-shadow: inset 0 -1 0 1px var(--light-color);
  padding: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 4;
}
.msearch2__inner{
    display: flex;
    align-items: center;
        gap: 30px;
            margin-bottom: 50px;
}
.btn-1{
      background: #2e4f4d;
    color: #fff;
}
.navblock .btn__container {
  display: none;
}

.navblock .container {
  position: relative;
}

.navblock .nav-link {
  font-size: 1.1em;
  color: #fff;
}
.navblock .dropdown-menu {
  font-size: 1em;
  border: 1px solid var(--light-color);
  background: #2e4f4d;
}

.navbar-toggler {
  padding: 0;
  width: 53px;
  height: 53px;
  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;
}

.nav-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
  top: 0;
}

.nav-icon span:nth-child(2) {
  top: 6px;
}

.nav-icon span:nth-child(3) {
  top: 12px;
}

.nav-icon.open {
  top: -10px;
}

.nav-icon.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.nav-icon.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.dropdown > .dropdown-menu .nav-item {
  height: 100%;
  border-left: none;
  border-right: none;
  min-width: 15em;
  border-bottom: 1px solid var(--light-color);
  border-right: 1px solid var(--light-color);
}

.dropdown > .dropdown-menu .nav-link {
  height: 100%;
}

.dropdown:hover > .dropdown-menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15em;
      grid-template-columns: 15em;
  -ms-grid-rows: (auto)[6];
      grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
}

.dropdown:last-child:hover > .dropdown-menu {
  left: auto;
  right: 0;
}

.banner__block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner__block .swiper-container {
    width: 100%;
}
.banner__slide {
  position: relative;
  width: 100%;
  height: calc(100vh - 255px);
  color: #fff;
}

.banner__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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;
}

.banner__title {
  text-align: center;
  padding: 1em;
  /* background: rgba(0,0,0,.6); */
  border-radius: 8px;
}
.banner__btn {
  margin-top: 1em;
}
.panel {
  position: absolute;
  bottom: 1.5em;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 1;
}

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

.panel__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  color: var(--title-color);
  font-weight: bold;
  width: 220px;
  height: 90px;
  padding: 1.5em 0;
  padding-left: 2em;
}

.panel__item .item__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}
.panel__item .item__title p {
  line-height: 1.2;
}
.panel__item::after {
  content: "";
  display: block;
  height: 100%;
  border-right: 1px solid rgba(254, 83, 57, 0.2);
}

.panel__item:first-child {
  border-radius: 100px 0 0 100px;
}

.panel__item:last-child {
  border-radius: 0 100px 100px 0;
  background: var(--red-color);
  color: #fff;
}

.panel__item .item__img {
  margin-right: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel__item .item__img img {
  max-width: 40px;
  height: auto;
}
.section__donors {
  padding: 3.5em 0 6em 0;
  background: #F8F8F8;
}

.blood {
  margin-bottom: 4.5em;
}

.blood__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-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blood__title {
  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;
  width: 100%;
  margin-bottom: 17px;
}

.blood__title .h3 {
  font-weight: 200;
}

.blood__rhesus {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--text-color);
}

.rhesus__item {
  border-right: 1px solid #fff;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  width: 100%;
  height: 40px;
  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;
}

.rhesus__item .h3 {
  font-weight: 200;
}

.blood__bottom {
  padding: 20px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blood__bottom .bottom__title {
  position: relative;
}

.blood__bottom .bottom__title::after, .blood__bottom .bottom__title::before {
  content: "";
  position: absolute;
  display: block;
  border-bottom: 1px solid var(--red-color);
  top: -7px;
  width: 44px;
  height: 18px;
}

.blood__bottom .bottom__title::before {
  content: "";
  border-left: 1px solid var(--red-color);
  border-radius: 0 0 0 13px;
  left: -50px;
}

.blood__bottom .bottom__title::after {
  border-right: 1px solid var(--red-color);
  border-radius: 0 0 13px 0;
  right: -50px;
}

.donors__block .desc__block {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 5em;
}

.donors__block .desc__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
}

.donors__block .desc__color {
  margin-right: 4em;
  width: 100px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}

.section__news {
  background: var(--light-color);
}

.news__block {
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 30px;
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 8px;
}

.news__item .item__text {
  padding: 23px 30px;
}
.item__desc a{
  color:#000;
}

.news__item .item__btn {
  margin-top: auto;
  padding: 0 30px;
  padding-bottom: 24px;
}
.news__item .item__img {
  height: 250px;
  width: 100%;
}
.news__item .item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.newsbtns__block {
  padding-top: 4em;
}

.follow__form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 370px 1fr;
      grid-template-columns: 370px 1fr;
  grid-gap: 20px;
}

.follow__form .group__name {
  display: none;
}

.follow__form .form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.follow__form .group__email {
  position: relative;
}

.follow__form .group__email .input__icon {
  position: absolute;
  top: calc(50% - 12px);
  left: 25px;
  display: inline-block;
}

.follow__form .group__email input {
  border-radius: 100px;
  padding-left: 56px;
  width: 100%;
  height: 50px;
  border: none;
}

.follow__form .form-group.accept {
  text-align: right;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.follow__form .form-group.accept .form-control {
  display: inline-block;
}

.follow__form .form-group.accept input {
  margin-right: .5em;
  width: 20px;
  height: 20px;
}

.section__social {
  background: #2e4f4d;
  color: #fff;
}

.section__social .social__title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 48px;
}

.section__social .social__title p {
  line-height: 1.4;
  color:#fff;
}

.section__social .social__block {
  -ms-grid-columns: 500px 1fr;
      grid-template-columns: 500px 1fr;
  grid-gap: 30px;
  align-items: center;
}

.section__social .social__img {
  width: 100%;
}

.section__social .social__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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__social .social__item p {
  margin-top: 14px;
  text-align: center;
}

.section__social .social__item:not(:last-child) {
  margin-right: 3em;
}

.social__img {
  position: relative;
}

.social__img .img__doctor {
  
}

.social__img .img__doctor img {
  width: 100%;
  height: 100%;
}

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

.section__usefull {
  background: #F8F8F8;
}

.usefull__block {
  -ms-grid-columns: (minmax(160px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 30px;
}

.usefull__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}

.usefull__item .item__img {
  margin-bottom: 1em;
  width: 65px;
  height: 65px;
  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;
}

.usefull__item .item__img img {
  max-width: 100%;
}

.usefull__item .item__title {
  text-align: center;
}

/* анкета донора */
.anketa__block {
  padding-bottom: 30px;
}
.anketa__block .form__block {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 30px;
}
.anketa__block .form__item {
  padding: 0 10px;
}
.anketa__block .item__title {
  display: block;
  color: #000;
  font-weight: bold;
}
.anketa__block .form-control {
  display: inline;
  width: auto;
}
.item__title a{
  color:#000;
}

.checkbox-custom, .radio-custom {
  opacity: 0;
  position: absolute;   
}

.checkbox-custom, .checkbox-custom-label, .radio-custom, .radio-custom-label {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}
.checkbox-custom-label, .radio-custom-label {
  position: relative;
}

.checkbox-custom + .checkbox-custom-label:before, .radio-custom + .radio-custom-label:before {
  content: '';
  background: #fff;
  border: 2px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
  content: " ";
  background: #e9392c;
  color: #fff;
}

.radio-custom + .radio-custom-label:before {
  border-radius: 50%;
}

.radio-custom:checked + .radio-custom-label:before {
  content: "";
  background: #e9392c;

}

.checkbox-custom:focus + .checkbox-custom-label, .radio-custom:focus + .radio-custom-label {
  outline: 1px solid #ddd; /* focus style */
}
.anketa__block .form__input.other-info {
  display: flex;
  flex-direction: column;
}
.anketa__block .form__input.other-info textarea {
  border: 2px solid #ddd;
}

.docs__item {
  margin-bottom: 20px;
}
.docs__btn .btn {
  background: #e9392c;
  width: 100%;
  padding: 1em;
  text-align: left;
  color: #fff;
  font-size: 1.1em;
  border-radius: 10px 10px 0 0;
  text-decoration: none;
}
.docs__btn .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: middle;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.docs__btn .btn[aria-expanded=true].dropdown-toggle::after{
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .3em solid;
  border-left: .3em solid transparent;
}
.docs__list, .files__list {
  padding: 0;
  padding-left: 50px;
  list-style: none;
  margin-bottom: 0;
}
.docs__list a, .files__block a {
  line-height: 1.5;
  color: #00608a;
  display: block;
  padding: .5em 0;
}
.docs__subtitle {
  padding-top: 1em;
  text-align: center;
  color: #e9392c;
  font-size: 1.1em;
  font-weight: 700;
}
/* карта сайта */

.sitemap__block {
  margin-bottom: 2em;
  padding: 0 2em;
}
.sitemap__list {
  padding: 0;
}
.sitemap__link {
  transition: .3s;
}
.sitemap__link:hover,
.sitemap__link:focus,
.sitemap__link.active {
  color: #e9392c;
}

/* о клинике */

.responsive-table tr:last-child{
   border-bottom: 1px solid #dee2e6;
}
.responsive-table td:first-child {
  max-width: 300px;
  font-weight: bold;
}
.about {
  margin-bottom: 1.5em;
}

/* наши специалисты */

.workers__block .responsive-table tr td:nth-child(1) {
  width: 20%;
}
.workers__block .responsive-table tr td:nth-child(2) {
  width: 20%;
}
.workers__block .responsive-table tr td:nth-child(3) {
  width: 40%;
}
.workers__block .responsive-table tr td:nth-child(4) {
  width: 20%;
}
.workers__block .responsive-table td:first-child {
  font-weight: normal;
}
.info__block p{
  color:#fff;
}
.phone__block p{
  color:#fff;
}
.baikal_web a{
   color:#fff;
}
.baikal_web p{
  color:#fff;
}
.bottom__text p{
  color: #fff;
}
.info__item p a{
  color:#fff;
}
.aside__item p{
  color: #fff;
}
/* вакансии */
.joboffer {
  margin-bottom: 2em;
}
.joboffer__block {
  padding: 0 1em;
}
.joboffer__item {
  background: rgba(0, 97, 142, 0.06);
  padding: 1em;
  border-radius: 10px;
  margin-bottom: 1em;
}
.joboffer__btn {
  display: flex;
  justify-content: center;
  margin-top: .5em;
}
.joboffer__item .item__title p {
  font-weight: bold;
}
.joboffer__block .modal-header {
  padding: 0;
  border-bottom: 0;
}
.joboffer__block .form-actions {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

/* отзывы */
.feedback__block .comment-list {
  list-style-type: none;
  padding: 0;
}
.feedback__block .ticket-comment:not(:last-child) {
  margin-bottom: 1.5em;
}
.feedback__block .ticket-comment__body {
  padding: 1em;
  border: 1px solid rgba(0, 97, 138, 0.3);
  border-radius: 5px;
  background: rgba(0, 97, 138, 0.1);
}
.feedback__block .ticket-comment__header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 1em;
}
.feedback__block .ticket-comment__author {
  font-weight: bold;
  font-size: 1.2em;
}
.feedback__block .ticket-comment__createdon {
  margin-left: 2em;
}

.feedback__block #ticketForm .form-actions, 
.feedback__block #comment-form .form-actions {
  border-top: none;
}
.feedback__block #comment-editor {
  width: 100%;
}
.feedback__block .comment-form__block {
  margin: 1.5em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feedback__block .comment-form__title {
  margin-bottom: .5em;
}
.feedback__block .modal-content {
  position: relative;
}
.feedback__block .block__btn {
  margin-top: 1em;
}

.faq__block .modal-content {
  padding: 1em;
}
.faq__block .message-title {
  margin-bottom: 1em;
}
.faq__block .ec-message__reply {
  margin-bottom: 1em;
  margin-left: auto;
  padding: 0;
  padding: 19px;
  width: 80%;
  background: rgba(144, 238, 144, 0.397);
  border: 1px solid #e3e3e3;
  border-radius: 4px;
}
.faq__block .ec-message {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f0f0f0;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}
.ec-antispam {
  display: none;
}
.checkin__form .form-group {
  margin-bottom: 1em;
}
.checkin__form .btn__block {
  margin-top: 2em;
}
.checkin__form label, .checkin__form input {
  margin-bottom: .5em;
}
.gallery__block .album__desc {
  padding: .5em;  
}
.gallery__block .album__item img {
  margin: 0;
}
.gallery__item img {
  margin: 0;
}
footer {
  background: var(--footer-color);
  color: #fff;
}

.footer__block {
  padding: 46px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo .logo__img {
  margin-right: 1.5em;
}
.logo__img{
  max-width: 335px;
}
.logo__img img{
  width: 100%;
  height: 100%;
}

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

.footer__social .social__link:not(:last-child) {
  margin-right: 20px;
}

.footer__social img {
  width: 40px;
}

.footer__info {
  line-height: 1.5;
}

.footer__info .info__title {
  opacity: .5;
}

.footer__info .info__item {
  margin-bottom: 1em;
}

.footer__info .phone__block {
  text-align: right;
}

.footer__bottom {
  padding: 2em 0;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.footer__bottom .bottom__text {
  font-size: 13px;
  opacity: .5;
}

@media (max-width: 1199px) {
  .header__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
    padding-right: 25px;
  }
  .header__item:not(:last-child) {
    margin-right: 30px;
  }
  .navblock .nav-item {
    border-left: none;
    border-right: none;
  }
  .navblock .navbar {
    padding: 0;
  }
  .navblock .btn__container, .navblock .navbar-nav {
    background: #2e4f4d;
    display: block;
    width: 960px;
    margin: 0 auto;
  }
  .navblock .dropdown-menu {
    font-size: 1em;
    border: none;
  }
  .dropdown:hover > .dropdown-menu .nav-item {
    border-bottom: none;
    border-right: none;
  }
  .dropdown:hover > .dropdown-menu .nav-link {
    padding: .5em 1em;
  }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--light-color);
    z-index: 2;
  }
  .banner__slide {
    height: 480px;
  }
  .newsbtns__item:first-child {
    margin-bottom: 4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section__social .social__block {
    -ms-grid-columns: 400px 1fr;
        grid-template-columns: 400px 1fr;
    grid-gap: 30px;
    align-items: center;
  }
  .section__social .social__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 32px;
  }
  .section__social .social__title p {
    line-height: 1.2;
  }
}

@media (max-width: 992px) {
  .h1 {
    font-size: 3em;
  }
  .h2 {
    font-size: 2.5em;
  }
  .h3 {
    font-size: 1.5em;
  }
  .h4 {
    font-size: 1.2em;
  }
  .h5 {
    font-size: 1em;
  }
  .header__block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: .5em;
  }
  .header__item {
    margin: 0 0 5px 0;
  }
  .header__item:not(.header__logo) {
    border-right: none;
  }
  .header__logo {
    grid-column: span 2;
    grid-row: span 3;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__info {
    grid-row: span 1;
  }
  .navblock .btn__container,
  .navblock .navbar-nav {
    width: 720px;
  }
  .banner__slide {
    height: 440px;
  }
  .banner__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .panel {
    position: static;
    background: var(--light-color);
  }
  .panel__block {
    padding: 1em 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: .5em;
  }
  .panel__item {
    background: #fff;
    padding: 1.5em 2em;
    border-radius: 100px;
    width: 100%;
  }
  .panel__item::after {
    display: none;
  }
  .panel__item:first-child {
    border-radius: 100px 100px 100px 100px;
  }
  .panel__item:last-child {
    border-radius: 100px 100px 100px 100px;
  }
  .donors__block .desc__block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 2em;
  }
  .donors__block .desc__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1em;
  }
  .donors__block .desc__color {
    margin-right: 2em;
    width: 100px;
    height: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
  .section__social .social__block {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .section__social .social__list img {
    width: 36px;
  }
  .section__social .social__list p {
    display: none;
  }
  .section__social .social__item:not(:last-child) {
    margin-right: 1em;
  }
  .social__img {
    display: none;
  }
  .content__block {
    grid-template-columns: 1fr;
    grid-row-gap: 1.5em;
  }
  .content__inner {
    order: 1;
  }
  .aside__block {
    order: 2;
  }
  .sitemap__block {
    margin-bottom: 1em;
    padding: 0 1em;
  }
}

@media (max-width: 768px) {
  .header__block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0;
  }
  .header__logo {
    border-right: none;
  }
  .navblock .btn__container,
  .navblock .navbar-nav {
    width: 540px;
  }
  .dropdown:hover > .dropdown-menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    grid-auto-flow: row;
    margin-bottom: 1em;
  }
  .banner__slide {
    height: 380px;
  }
  .panel__item {
    height: 60px;
  }
  .donors__block .desc__block {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 2em;
  }
  .follow__form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer__bottom {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer__logo {
    margin-bottom: 3em;
  }
  .footer__social {
    margin-bottom: 3em;
  }
  table {
    border: 0;
  }
  
  table thead {
    display: none;
  }
  table .last {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  table tr {
    display: block;
  }

  table td {
    display: block;
    text-align: left;
    font-size: 13px;
    /* border-bottom: 1px dotted #ccc; */
  }
  table td:last-child {
    border-bottom: 0;
  }

  table td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
  }
  .workers__block .responsive-table tr td:first-child {
    width: 100%;
    border: none;
  }
  .workers__block .responsive-table tr td:nth-child(1n) {
    width: 100%;
  }
  .workers__block .responsive-table tr {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .msearch2__inner {
    align-items: flex-start;
    flex-direction: column;
}
  .banner__slide {
    height: 320px;
  }
  .infoline__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .infoline__item {
    margin: .5em 0;
  }
  .panel__block {
    padding: 1.5em 0;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .panel__item {
    background: #fff;
  }
  .navblock .btn__container,
  .navblock .navbar-nav {
    width: 100%;
    padding: 0 15px;
  }
  .header__item:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
  }
  .header__logo {
    grid-column: span 1;
    grid-row: span 1;
  }
}
/*# sourceMappingURL=main.css.map */