@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {padding: 0;margin: 0;border: 0;box-sizing: border-box;}
a {text-decoration: none;color: inherit;}
ul, ol, li {list-style: none;}
img {vertical-align: top;}
h1, h2, h3, h4, h5, h6 {font-weight: inherit;font-size: inherit;}
html, body {height: 100%;line-height: 1;}
textarea, button, input {font-weight: inherit;font-size: inherit;color: inherit;font-family: inherit;}
button {cursor: pointer;background-color: inherit;}

body {
  font: normal normal 16px/1.5em "Lato", sans-serif;
  color: #272736;
  background-color: #ffffff;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}
.wrapper > main {
  flex-grow: 1;
}
[class*="__container"] {
  max-width: 1230px;
  margin: 0 auto;
}

[class*="__title"] {
  font-size: 36px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 45px;
}
@media (max-width: 1280px) {
  [class*="__container"] {
    padding: 0 50px;
  }
  [class*="__title"] {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}

@media (max-width: 1020px) {
  [class*="__container"] {
    padding: 0 40px;
  }
  [class*="__title"] {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  [class*="__container"] {
    padding: 0 15px;
  }
  [class*="__title"] {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}

h2 {
  font: normal bold 36px/1.2em "Lato", sans-serif;
  color: #272736;
  margin-bottom: 1.25em;
  text-align: center;
}
h3 {
  text-align: center;
  font: normal bold 24px/1.2em "Lato", sans-serif;
  color: #272736;
  margin-top: 2em;
}
.subtitle { padding-bottom: 2.5em; text-align: center }
h2 + .subtitle { margin-top: -2.2em; }
small { font-size: 85%; }
mark {
  padding: 5px 10px;
  background: #E9F8FF;
  color: inherit;
  border-radius: 5px;
}

.section {background-color: #fff; padding: 90px 0;}
.section-grey {background-color: #f4f7fa; padding: 90px 0; }
.section-blue {background-color: #00539f; padding: 40px 0; color: #fff; }
.section + .section,
.section-grey + .section-grey,
.section-blue + .section-blue { padding-top: 0; }

.two-col,
.three-col,
.four-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
}
.three-col {grid-template-columns: 1fr 0.5fr 1fr;}


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

ul.pretty-list { list-style: none; }
ul.pretty-list li {
  padding-left: 25px;
  background: url('../images/bubble-blue.svg') 0 5px no-repeat;
  background-size: 10px 15px;
  margin-bottom: 15px;
}

.button {
  padding: 12px 45px;
  border: 1px solid #00539f;
  border-radius: 15px;
  font-size: 16px;
  color: #00539f;
  text-align: center;
  white-space: nowrap;
  transition: .2s all;
  display: inline-block;
  text-transform: uppercase;
}
.button__icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.button:hover {
  background-color: #1e93f2;
  color: #fdb913;
  border-color: #1e93f2;
}

.button-solid {color: #fdb913;background-color: #00539f;}
.button-solid-secondary {color: #00539f; background-color: #fdb913; border-color: #fdb913;}
.button-solid-secondary:hover {color: #00539f; background-color: #ee9c32; border-color: #ffd46f07;}

.button-simple {
  color: #00539f;
  border: none transparent;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  border-radius: 0;
}
.button-simple .button__text {
  border-bottom: 1px dashed #00539f;
  transition: border-color 0.2s;
}
.button-simple:hover { background-color: transparent; }
.button-simple:hover .button__text { border-bottom-color: #fdb913; }

.button--disabled {
  background: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
  color: #fff !important;
  cursor: auto;
  pointer-events: none;
}

.full_width {width: 100%;}
.icons-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
}
.icons-item__icon { width: 64px; }

.panel-grey {
  background-color: #f4f7fa;
  border-radius: 15px;
  padding: 35px 40px 20px;
}

.info-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  background-color: #fce1d5;
  padding: 20px 25px 20px;
  margin: 40px auto 0;
  border-radius: 5px;
}
.info-box__icon { width: 40px; height: 40px; }
.info-box__content {font-size: 16px; line-height: 24px; color: #272736;}

.numbers-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.number-item {
  width: calc(33.3333% - 20px);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
}
.number-item__number {
  color: #e5e5e5;
  font-weight: bold;
  font-size: 64px;
  line-height: 64px;
  margin-top: -4px;
}

@media (max-width: 1280px) {
  .four-col {grid-template-columns: repeat(2, 1fr); }
  .numbers-list { justify-content: flex-start; }
}

@media (max-width: 1020px) {
  .number-item { width: calc(50% - 15px); }
}

@media (max-width: 767px) {
  h2 { font-size: 24px;}
  h3 { font-size: 18px;}
  .subtitle { padding-bottom: 2em; }
  h2 + .subtitle { margin-top: -1.5em; }
  .section,
  .section-grey,
  .section-blue {padding: 60px 0; }
  .two-col,
  .three-col,
  .four-col {gap: 15px; grid-template-columns: 1fr;}
  .mob-hide {display: none}
  .panel-grey { padding: 30px 25px 15px}
  .numbers-list { flex-direction: column; }
  .number-item { width: auto; }
  .number-item__number {font-size: 60px;}
}

[class*="__content"] h2 { text-align: left; }
[class*="__content"] h3 { margin-bottom: .8em; }
[class*="__content"] p { margin-bottom: 1em; }
[class*="__content"] a:not(.button) {color: #00539f; transition: .2s color; cursor: pointer;}
[class*="__content"] a:not(.button):hover {color: #1e93f2;}
@media (max-width: 767px) {
  [class*="__content"] h2,
  [class*="__content"] .button-container { text-align: center; }
}

/* -----------header-------------- */
.header {
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  height: 70px;
}
.header a{
  cursor: pointer;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

.header__block,
.footer__block {
  width: max-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7vw;
}
.footer__block {
  align-items: flex-start;
}
.container_burger {
  display: none;
}
.header__logo{}
.vc_logo__full { display: block; }
.vc_logo__min {
  display: none;
}
.menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
.menu__item a:hover {
  color: #00539f;
  transition: .2s color;
}
#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  /* left: 55px; */
  top: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #0053a0;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -10px;
}
.menu__btn > span::after {
  content: '';
  top: 10px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 70px;
  left: -100%;
  width: 262px;
  height: 100%;
  margin: 0;
  padding: 40px 0;
  list-style: none;
  background-color: #fff;
  box-shadow: inset 0px 2px 10px rgba(0, 0, 0, 0.1);
  transition-duration: .25s;
  bottom: 0;
}
.menu_b_item {
  display: block;
  padding: 25px 40px;
  font-size: 16px;
  text-decoration: none;
  transition-duration: .25s;
}
.menu_b_item:hover {
  background-color: #CFD8DC;
}

.header__phone { display: block; }
.header__phone__title {
  font-size: 11px;
  font-weight: 700;
  line-height: 12px;
  text-transform: uppercase;
  text-align: left;
  color: #00539f;
  margin: 0;
}
.header__phone__number {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #272736;
  transition: color 0.2s ease-in-out;
}
.header__phone__number:hover {
  color: #fdb913;
}
.header__phone__number:active {
  color: #f08a00;
}
.header__phone__number-icon {
  width: 20px;
  height: 20px;
  fill: #9d9d9d;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.header__phone__description {
  font-size: 9px;
  font-weight: 700;
  line-height: 12px;
  /* text-transform: uppercase; */
  color: #cecece;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 335px;

}
.header__phone-mobile {
  display: none;
}

@media (max-width: 1020px) {
  .header__menu {
    display: none;
  }
  .container_burger {
    display: block;
  }
  .header .widget_nav_menu>div,.header .widget_nav_menu .menu-main-container,.header .widget_nav_menu .menu-main-ru-container {
    position:fixed;
    top: 70px;
    bottom: 0;
    background: #fff;
    left: 0;
    transform: translateX(-150%);
    width: 265px;
    z-index: 102;
    transition: transform 0.5s ease-in-out;
    box-shadow: inset 0px 2px 10px rgba(0, 0, 0, 0.1)
  }
}
@media (max-width: 768px) {
  .container_burger {
    display: block;
    width: 40px;
    height: 40px;
  }
  .vc_logo__min,
  .header__phone-mobile {
    display: block;
  }

  .vc_logo__full,
  .header .button,
  .header__phone {
    display: none;
  }

  .header__online_basket {
    display: block;
    width: 47px;
  }
  .header {padding: 15px 0;}
}

/* ----------footer------------ */
.footer {
  padding: 35px 0;
  background-color: #fff;
  font-size: 14px;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.footer__social {
  text-align: left;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.footer__copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  text-align: left;
}
@media (max-width: 768px) {
  .footer_menu {
    display: none;
  }
  .footer {
    margin-top: 40px;
    padding: 10px 0;

  }
}


/* ----------theme----------- */
.theme {
  background: url("../images/mobile011.jpg") center  no-repeat;

  background-color: #ead8aa;
  margin-top: 70px;
  padding: 0;
  background-size: contain;
}
.theme__container {
  min-height: 35vw;
  padding: 120px 50px 60px;
  position: relative;
}
.theme__content {
  position: absolute;
  width: 50%;
  bottom: 10px;
  left: calc(50% - 113.3px);
}
.theme__content h1 {
  font-size: 64px;
  line-height: 1em;
  font-weight: 700;
  margin-bottom: .3em;
}
.theme__content h3 {
  font-size: 24px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 2.5em;
}
.theme__content p {
  font-size: 20px;
  line-height: 1.25em;
  padding: 0;
  margin: 0 0 2em;
}
.theme__content small {font-size: 13px;}
.theme .button {
  margin-bottom: 1em;
}
@media (min-width: 1420px) {
  .theme__content {
    left: calc(50% - 113.3px);
    bottom: 10px;}
}
@media (min-width: 1600px) { .theme__content {bottom: 30px;}}
@media (max-width: 1020px) { 
  .theme { background: url("../images/mobile012.png") center  no-repeat;
    background-size: cover;}
    .theme__container {
      height: 84vw;
      padding: 80px 40px 40px;
    } 
    .theme__content {
      position: absolute;
      width: 50%;
      bottom: 20px;
      left: calc(50% - 113.3px);
    }
     
 }
 @media (max-width: 767px) { 
    .theme__content {
      bottom: 0px;
    }
     
 }

/* -----------benefits----------- */
.sinevo-benefits { padding: 30px 0 !important; }
@media (max-width: 1280px) { .sinevo-benefits .icons-item { align-items: center; } }
@media (max-width: 767px) { .sinevo-benefits { display: none; } }

/* -----------block-with-image----------- */
.block-with-image {}
.block-with-image .block-with-image__image { width: 100%; display: block; }

.block-with-small-image .two-col { grid-template-columns: 1fr 2fr; }
.block-with-small-image-right .two-col { grid-template-columns: 2fr 1fr; }
.block-with-small-image img,
.block-with-small-image-right img { display: block; max-width: 250px; margin: 0 auto; }
@media (max-width: 767px) {
  .block-with-image .block-with-image__image { max-width: 450px; margin: 0 auto; }
  .block-with-small-image .two-col,
  .block-with-small-image-right .two-col{ grid-template-columns: 1fr; }
}

/* -----------order----------- */

.order { text-align: center; }
.order h2 {color: #fff;}
.order .three-col p { line-height: 32px; }
.order strong { font-size: 24px; }
.order del { text-decoration-color: #f1672f; }
.order .buttons {margin: 40px 0 1.5em; }




/* -----------faq----------- */
.faq {}
.faq-list {display: flex; flex-direction: column; gap: 20px; max-width: 750px; margin: 0 auto; }
.faq-list .faq-item {
  border-radius: 15px;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
.faq-list .faq-question {
  position: relative;
  background-color: #00539f;
  border-radius: 15px;
  margin: 0;
  padding: 18px 70px 22px 25px;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: #ffffff;
  transition: all 0.2s;
  cursor: pointer;
}
.faq-list .faq-question:hover {background-color: #1e93f2;}
.faq-list .faq-question::before,
.faq-list .faq-question::after {
  content: "";
  display: block;
  position: absolute;
  top: 33px;
  right: 24px;
  width: 20px;
  height: 2px;
  background-color: #fff;
}
.faq-list .faq-question::after {
  transform: rotate(90deg);
  transition: .2s transform;
}
.faq-list .faq-answer {
  overflow: hidden;
  height: 0;
  transition: 0.2s height;
}
.faq-list .faq-answer-content {
  padding: 0 25px 25px 25px;
  font-size: 18px;
  line-height: 28px;
}
.faq-list .faq-answer-content p { margin-bottom: 1em; }
.faq-list .open .faq-question {
  background-color: #fff;
  color: #272736;
}
.faq-list .open .faq-question::before,
.faq-list .open .faq-question::after {background-color: #00539f;}
.faq-list .open .faq-question::after {transform: rotate(180deg);}

.faq-list .faq-answer a {color: #00539f;}
.faq-list .faq-answer a:hover {color: #1e93f2;}

.faq-list .faq-answer td { padding-bottom: 10px; }
.faq-list .faq-answer th { width: 250px; text-align: left; padding-bottom: 10px; }

/* immuno */

/* .white_block div { justify-content: center; align-items: center;
  border-radius: 10px; background-color: #fff;height: 100%; padding: 10px;}
  
.white_block div p { margin-bottom: 0;} */

.steps-item {
    width: calc(33.3333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #f4f7fa;
    border-radius: 15px;
    padding: 30px 20px;

}
/* .steps-item p{
  margin-bottom: 0;
} */
/* .steps-item-title {
  mar
} */
@media (max-width: 1020px) {
  .steps-item { width: calc(50% - 15px); }
}
@media (max-width: 767px) {
  .steps-item { width: 100%; }
}

.step_two-list {
  display: flex;
  gap: 22px;
  flex-direction: row;
}

.step_two-item {
  align-items: flex-start;
  background-color: #f4f7fa;
  border-radius: 15px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.block_center {
  margin: 30px auto;
  border: 2px solid #0053a0;
  width: 60%;
}
.flower-list {
  display: grid;
  grid-auto-flow: row;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
  justify-items: center;
}

@media (max-width: 767px) {
  .step_two-list { flex-direction: column; }
  .block_center {  width: 100%; }
  .icons-item__icon {display: none;}  
  .flower-list {  grid-template-columns:  1fr;   gap: 10px;  }
}


.three-col-center-item {
  text-align: center;
}

.tablepress {
  display: grid;
  gap: 2px;
  grid-template-columns:  1fr 1fr 74px;
  max-width: 750px;
  margin: 0 auto;

}

.tablepress div{
  background-color: #f4f7fa;
  padding: 10px;
}
.center {
  text-align: center;
  margin: 0 auto;
}
.pd-top {
  padding-top: 60px;
}
.three-col-center-item img{
  width: 40px;
  height: 40px;
}
.gap_num {
  gap: 3vw;
}
.padding_num {
  padding: 12px 25px;
}
.mg-left {
  margin-left: 5vw;
}
.mg_bottom {
  margin-bottom: 30px;
}
/* .width_num {
  width: 80%;
} */
 .flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3vw;
  margin-bottom: 3vw;
 }
 .num {
  font-size: 28px;
  margin-bottom: 10px;
  color: #004996;
  font-weight: bold;

 }
 @media (max-width: 374px) {
  .num {
    font-size: 22px;
  }}

 .i__icon {
  width: 120px;
 }
 .immunocap__icon {
  width: 90px;
 }

 @media (max-width: 1280px) {
  .theme__container {

    padding: 20px 50px 20px;
  }
  .theme__content h3 {font-size: 22px;}
}
@media (max-width: 1020px) {
  .theme__content {width: 70%;}
}
@media (max-width: 767px) {
  .theme__content h1 {font-size: 52px;}
  .theme__container {
    height: 84vw;
    padding: 80px 40px 40px;
  }
  .immunocap__icon {
    width: 80px;
   }
   .margin_num {
    margin-left: 20px;
  }
  
  /* .theme__content {
    width: 100%;
    padding: 50px 0;
    text-align: center;
  } */
  .theme__content h1 {font-size: 42px;}
  .theme__content h3 {font-size: 21px;}
  .theme__content p {font-size: 18px;}
}
.button-container { margin: auto; }
.shadow {
  box-shadow: 1px 2px 8px rgba(0, 0, 0, .15);
}
.map__container {
  box-shadow: 4px 7px 14px #dee3e7;
  padding: 24px 32px;
  width: max-content;
  border-radius: 5px;
}
.map_button {
  display: flex;
  gap: 20px;
  font-size: 38px;
  line-height: 40px;
  justify-content: center;
  text-wrap: nowrap;
}
@media (max-width: 767px) {
  .map_button {font-size: 24px;
  }
  .map__container {
    /* margin: 0 auto; */
    padding: 12px 6vw;
  }
  
  }
  @media (max-width: 440px) {
    .map_button {font-size: 18px;
    }    
    }
  