@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none !important;
  list-style: none;
}

html,
body {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  background-color: #fff !important;
  height: 100%;
  width: 100%;
  font-size: 100%;
  position: relative;
  font-family: "Roboto";
  background: #F5F9FC !important;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.bottom {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

a,
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

textarea {
  resize: none !important;
  overflow: auto;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

h2{
	font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: calc(20 * 1px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
    line-height: 144.5%;
    letter-spacing: -0.025em;
    color: #000130;
	margin-bottom: calc(24 * 1px + (40 - 24) * ((100vw - 320px) / (1920 - 320)));
}

img {
  display: block;
  max-width: 100%;
}

.noscroll {
    overflow-y: hidden;
}

.overflow_x {
  overflow-x: hidden;
}

.abs_center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bg_center {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.flex_center {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.justify_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.text__center {
  text-align: center;
}

@media all and (max-width: 767px) {
  .text__md__center {
    text-align: center;
  }
}

.mx_auto {
  margin-left: auto;
  margin-right: auto;
}

.shadow {
  -webkit-transition: .3s;
  transition: .3s;
}

.shadow:hover {
  -webkit-box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(0, 0, 0, 0.4);
}

.opacity {
  -webkit-transition: .3s;
  transition: .3s;
}

.opacity:hover {
  opacity: 0.75;
}

.img_fluid {
  width: 100%;
  height: auto;
  margin: 0;
}

.img_ratio {
  position: relative;
  overflow: hidden;
   height: 0; 
}

.img_ratio > img {
  width: 100%;
  /*height: 100%;*/
   position: absolute;
  top: 0;
  left: 0; 
  /* -o-object-fit: cover;
     object-fit: cover; */
}

.div_ratio {
  position: relative;
  overflow: hidden;
  height: 0;
}

.div_ratio > div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 992px) {
  .md_none {
    display: none !important;
  }
}

.md_block {
  display: none;
}

@media all and (max-width: 992px) {
  .md_block {
    display: block;
  }
}

@media all and (max-width: 992px) {
  .lg_none {
    display: none !important;
  }
}

.container {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.container p{margin-bottom:10px;}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}

@media (min-width: 1270px) {
  .container {
    max-width: 1210px;
  }
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  max-width: 100%;
}

.col_2 {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .col_2 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}

.col_3 {
  -webkit-box-flex: 33.333%;
      -ms-flex: 33.333%;
          flex: 33.333%;
  max-width: 33.333%;
}

@media (max-width: 767px) {
  .col_3 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}

.col_4 {
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  max-width: 25%;
}

@media (max-width: 1200px) {
  .col_4 {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .col_4 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}

.col_5 {
  -webkit-box-flex: calc(100% / 5);
      -ms-flex: calc(100% / 5);
          flex: calc(100% / 5);
  max-width: calc(100% / 5);
}

@media (max-width: 1200px) {
  .col_5 {
    -webkit-box-flex: calc(100% / 3);
        -ms-flex: calc(100% / 3);
            flex: calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media (max-width: 992px) {
  .col_5 {
    -webkit-box-flex: calc(100%);
        -ms-flex: calc(100%);
            flex: calc(100%);
    max-width: calc(100%);
  }
}

/* Slick track */
.slick-list {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-width: 100% !important;
  overflow: hidden;
}

.slick-disabled {
  opacity: 0.3;
}

.slick-slide > div {
  height: 100%;
}

/* Slick track */
.ibg {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ibg .ibg__img {
  display: none;
}

.show {
  cursor: pointer;
  position: relative;
}

.show__body {
  display: none;
  max-width: 100vw;
  overflow-x: hidden;
  height: calc(90vh - 75px);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-left: calc(50vw - 605px);
  background-color: #EBF3FA;
  z-index: 1;
}

@media all and (max-width: 767px) {
  .show__body {
    height: calc(100vh - 45px);
    overflow-y: auto;
    padding-left: calc(50vw - 375px);
  }
}

@media all and (max-width: 992px) {
  .show__body {
    padding-left: calc(50vw - 485px);
    height: calc(100vh - 45px);
  }
}

.show__img__rotate {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.show__body__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
}

.faq__accordeon__head {
  cursor: pointer;
  position: relative;
}

.faq__accordeon__body {
  display: none;
  padding: 15px calc(30 * 1px + (47 - 30) * ((100vw - 320px) / (1920 - 320)));
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 11px 11px;
  z-index: 1;
}

.faq__accordeon__img {
  -webkit-transition: .3s;
  transition: .3s;
  margin-left: 5px;
}

.faq__accordeon__img__rotate {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.tab_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* NAVBAR */
/* ------------------------------------------------------------------ */
.navbar__light {
  background-color: rgba(255, 255, 255, 0.8);
}

.navbar__light .navbar__logo {
  color: #6170E7;
}

.navbar__light .navbar__list a {
  color: #6170E7;
}

.navbar__light .navbar__search__input {
  background-color: white;
}

.navbar__light .navbar__search__input input {
  border-bottom: 1px solid #6170E7;
  color: #6170E7;
}

.navbar__dark {
  background: #6170E7;
}

@media all and (max-width: 992px) {
  .navbar__dark {
    background-color: white;
  }
}

.navbar__dark .navbar__logo {
  color: white;
}

@media all and (max-width: 992px) {
  .navbar__dark .navbar__logo {
    color: #6170E7;
  }
}

.navbar__dark .navbar__list a {
  color: white;
}

@media all and (max-width: 992px) {
  .navbar__dark .navbar__list a {
    color: #6170E7;
  }
}

.navbar__dark .navbar__search__input {
  background: #6170E7;
}

.navbar__dark input {
  border-bottom: 1px solid white;
  color: white;
}

@media all and (max-width: 992px) {
  .navbar__dark input {
    border-bottom: none;
  }
}

.dark__scroll {
  background-color: #6170E7;
  -webkit-box-shadow: 0 4px 30px 0px rgba(0, 0, 0, 0.14), 0 7px 15px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 30px 0px rgba(0, 0, 0, 0.14), 0 7px 15px -5px rgba(0, 0, 0, 0.2);
}

@media all and (max-width: 992px) {
  .dark__scroll {
    background-color: white;
  }
}

.navbar {
  border-top: 4px solid #6170E7;
  width: 100%;
  min-height: 75px;
  position: fixed;
  z-index: 1010;
  -webkit-transition: .5s;
  transition: .5s;
}

@media all and (max-width: 992px) {
  .navbar {
    min-height: 45px;
    border-top: 2px solid #6170E7;
  }
}

.navbar .navbar__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar .navbar__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* margin-right: 70px; */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: ышяу(24, 16);
  line-height: 150%;
  text-transform: uppercase;
}

.navbar .navbar__logo img {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 550px){
.navbar .navbar__logo img {width: 215px;}
}

@media all and (max-width: 1200px) {
  .navbar .navbar__logo {
    margin-right: 0;
  }
}

@media screen and (max-width: 992px) {
  .navbar .navbar__box {
    position: fixed;
    top: 0;
    right: 0;
    width: 0px;
    height: calc(100vh - 45px);
    margin-top: 65px;
    background-color: #EBF3FA;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 1;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.navbar .nav__toggle {
  width: 100vw;
}

.navbar .navbar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.navbar .navbar__list a {
  padding: 15px calc(0 * 1px + (20 - 0) * ((100vw - 320px) / (1920 - 320)));
  cursor: pointer;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media all and (max-width: 992px) {
  .navbar .navbar__list a {
    font-size: 17px;
    padding: 10px 20px;
  }
}

.navbar .navbar__list .navbar__active a {
  color: #6170E7;
}

.navbar .navbar__list li {
  margin: 15px 0;
}

@media all and (max-width: 992px) {
  .navbar .navbar__list li {
    margin: 10px 0;
  }
}

@media screen and (max-width: 992px) {
  .navbar .navbar__list {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.navbar .navbar__stripe {
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #6170E7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
}

@media screen and (max-width: 992px) {
  .navbar .navbar__stripe {
    display: none;
  }
}

.navbar .navbar__open {
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 30px;
  width: 25px;
  border-radius: 1px;
  display: none;
}

.navbar .navbar__open:hover {
  opacity: 0.6;
}

@media screen and (max-width: 992px) {
  .navbar .navbar__open {
    display: block;
  }
}

.navbar .navbar__close {
  position: relative;
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
  margin-left: 34px;
}

.navbar .navbar__close:hover {
  opacity: 0.6;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.navbar .navbar__cover {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  right: 0;
  height: 0;
  width: 100%;
  -webkit-transition: .5s;
  transition: .5s;
}

.navbar .navbar__tabheads {
  padding: calc(30 * 1px + (70 - 30) * ((100vw - 320px) / (1920 - 320))) 20px;
  padding-right: 0;
}

.navbar .navbar__head__item {
  position: relative;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(17 * 1px + (25 - 17) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(20 * 1px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  color: #6170E7;
  margin-bottom: calc(15 * 1px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
  cursor: pointer;
}
.navbar .navbar__head__item a{color:#6170E7}
.navbar .navbar__head__item a:hover{color:#e44e69;}

.navbar .navbar__head__item:not(:first-child) .navbar__head__item__mark {
  display: none;
}

.navbar .navbar__head__item .navbar__head__item__mark {
  content: '';
  position: absolute;
  top: 5px;
  right: -15px;
  background-color: #EBF3FA;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar__tabitems {
  background-color: #F5F9FC;
  padding: calc(30 * 1px + (70 - 30) * ((100vw - 320px) / (1920 - 320))) calc(15 * 1px + (100 - 15) * ((100vw - 320px) / (1920 - 320)));
  height: 100%;
}

@media all and (max-width: 992px) {
  .navbar .navbar__tabitems {
    display: none;
  }
}

.navbar .navbar__tabitem {
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(17 * 1px + (25 - 17) * ((100vw - 320px) / (1920 - 320)));
  line-height: 24px;
  color: #6170E7;
  margin-bottom: calc(15 * 1px + (35 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.navbar .navbar__tabitem:hover {
  color: #6170E7;
}

.navbar .navbar__back {
  display: none;
  margin-bottom: 23px;
}

.navbar .navbar__back img {
  margin-right: 15px;
}

@media all and (max-width: 992px) {
  .navbar .navbar__back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.navbar .navbar__phone {
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 * 1px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 150%;
  color: #6170E7;
  -webkit-transition: .3s;
  transition: .3s;
}

.navbar .navbar__phone:hover {
  color: #4a5cf1;
}

.navbar .navbar__email {
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 140%;
  color: #6170E7;
  margin-bottom: calc(22 * 1px + (32 - 22) * ((100vw - 320px) / (1920 - 320)));
}

.navbar .navbar__email:hover {
  color: #4a5cf1;
}

.navbar .navbar__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.navbar .navbar__search .navbar__search__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .5s;
  transition: .5s;
  max-width: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 810px;
  padding: 15px 0;
  border-radius: 50px;
}

.navbar .navbar__search .navbar__search__input input {
  margin-left: 20px;
  width: 100%;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  background-color: transparent;
}

@media all and (max-width: 1270px) {
  .navbar .navbar__search .navbar__search__input {
    width: 675px;
  }
}

.navbar .navbar__search .navbar__search__input ::-webkit-input-placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search .navbar__search__input :-ms-input-placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search .navbar__search__input ::-ms-input-placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search .navbar__search__input ::placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search .navbar__search__input .navbar__search__close {
  cursor: pointer;
}

.navbar .navbar__search button {
  background-color: transparent;
}

.navbar .navbar__search img {
  margin: 0px 15px;
  cursor: pointer;
}

@media all and (max-width: 992px) {
  .navbar .navbar__search {
    display: none;
  }
}

.navbar .navbar__search__md {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0 5px 0;
  margin: 0 20px 40px;
  border-bottom: 1px solid #6170E7;
}

.navbar .navbar__search__md button {
  background-color: transparent;
}

.navbar .navbar__search__md input {
  width: 100%;
  padding: 0px 15px;
  background-color: transparent;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #6170E7;
}

.navbar .navbar__search__md ::-webkit-input-placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search__md :-ms-input-placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search__md ::-ms-input-placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search__md ::placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

@media all and (max-width: 992px) {
  .navbar .navbar__search__md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.navbar .navbar__accordeon__body {
  display: none;
  padding: 15px 0px 15px 10px;
}

.navbar .navbar__humburger {
  cursor: pointer;
  margin-left: 20px;
}

.navbar .navbar__humburger:hover {
  opacity: .75;
}

.navbar .navbar__btn {
  max-width: 242px;
  width: 100%;
  height: 40px;
  border: 1px solid #6170E7;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  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;
  text-transform: uppercase;
  color: #6170E7;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: white;
  padding: calc(5 * 1px + (15 - 5) * ((100vw - 320px) / (1920 - 320)));
}

@media all and (max-width: 767px) {
  .navbar .navbar__btn {
    max-width: 280px;
  }
}

.navbar .navbar__btn:hover {
  background-color: #6170E7;
  color: white;
  border: 1px solid white;
}

.navbar .navbar__btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/* ------------------------------------------------------------------ */
/* NAVBAR */
/* HEADER */
/* ------------------------------------------------------------------ */
.header {
  position: relative;
  height: 100vh;
  max-height: 700px;
}

.header__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__caption__wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: calc(70 * 1px + (115 - 70) * ((100vw - 320px) / (1920 - 320))) 0 calc(22 * 1px + (115 - 22) * ((100vw - 320px) / (1920 - 320))) 0;
  background: rgba(0, 0, 0, 0.5);
}

.header__caption {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__phone__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 767px) {
  .header__phone__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header__phone {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #6170E7;
  margin: 10px 0;
}

.header__phone:hover {
  color: #4a5cf1;
}

.header__phone:not(:last-child) {
  border-right: 1px solid #93A0BA;
  padding-right: 15px;
}

/* .header__phone:last-child {
  padding-left: 15px;
} */

@media all and (max-width: 767px) {
  .header__phone:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
  .header__phone:last-child {
    padding-left: 0;
  }
}

.phone__text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(14 * 1px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 140%;
  color: #fff;
}

.header__title {
  max-width: 600px;
  width: 100%;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(28 * 1px + (60 - 28) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  color: #fff;
  padding-bottom: calc(11 * 1px + (25 - 11) * ((100vw - 320px) / (1920 - 320)));
}

.header__text {
  max-width: 440px;
  width: 100%;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(16 * 1px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 152.5%;
  color: #fff;
  padding-bottom: calc(33 * 1px + (50 - 33) * ((100vw - 320px) / (1920 - 320)));
}

.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 767px) {
  .header__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.audience__btn {
  max-width: 320px;
  width: 100%;
  height: 56px;
  padding: 20px 10px;
  background: #6170E7;
  -webkit-box-shadow: 0px 4px 9px #6170e7cf;
          box-shadow: 0px 4px 9px #6170e7cf;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  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;
  text-transform: uppercase;
  color: #F2F2F2;
  -webkit-transition: .3s;
  transition: .3s;
  margin-right: 36px;
}

.audience__btn img {
  margin-left: 18px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media all and (max-width: 767px) {
  .audience__btn {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media all and (max-width: 992px) {
  .audience__btn .audience__btn__img {
    display: none;
  }
}

.audience__btn:hover {
  background-color: #4a5cf1;
}

.audience__btn:hover img {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.audience__btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.call__btn {
  max-width: 320px;
  width: 100%;
  height: 56px;
  border: 2px solid #6170E7;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  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;
  text-transform: uppercase;
  color: #6170E7;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: rgba(255, 255, 255, 0.75);
}

@media all and (max-width: 767px) {
  .call__btn {
    max-width: 100%;
  }
}

.call__btn:hover {
  background-color: #6170E7;
  color: white;
}

.call__btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/* ------------------------------------------------------------------ */
/* HEADER */
.text__red {
  color: #6170E7 !important;
  font-family: "Roboto";
}

.text__bold {
  font-weight: 700 !important;
}

.text__thin {
  font-weight: 300 !important;
}

.text__small {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  color: #C4C5C5;
}

.text__16 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(14 * 1px + (19 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: #6D6E95;
}

.text__20 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 140%;
  color: #6D6E95;
  text-align: justify;
  text-justify: inter-word;
}

.text__20 a, .city_names{
  color: #6170E7;
}

.text__20__bold {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(12 * 1px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 169%;
  color: #536274;
}

.importent {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(20 * 1px + (28 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 100%;
  color: #6170E7;
}
blockquote {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 140%;
  color: #6170E7;
  border-left: calc(4 * 1px + (8 - 4) * ((100vw - 320px) / (1920 - 320))) solid #6170E7;
  padding: 0 24px;
}
.block__text blockquote {color:#fff;}

.text__28 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(20 * 1px + (28 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 130.5%;
  color: #6170E7;
}

.text__30 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(26 * 1px + (30 - 26) * ((100vw - 320px) / (1920 - 320)));
  line-height: 130.5%;
  color: #6170E7;
}

.text__32 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(20 * 1px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 144.5%;
  letter-spacing: -0.025em;
  color: #000130;
}

.title__28 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(19 * 1px + (28 - 19) * ((100vw - 320px) / (1920 - 320)));
  line-height: 100%;
  color: #000130;
}

@media all and (max-width: 767px) {
  .title__28 {
    text-transform: uppercase;
    line-height: 144%;
  }
}

.title__38 {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: calc(20 * 1px + (38 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 102.5%;
  letter-spacing: -0.025em;
  color: #536274;
}

.title__28__red {
  font-family: "Roboto";
  font-style: normal;
  font-weight: thin;
  font-size: calc(18 * 1px + (23 - 18) * ((100vw - 320px) / (1920 - 320)));
  line-height: 100%;
  color: #6170E7;
}

.title__46 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(26 * 1px + (46 - 26) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(31 * 1px + (54 - 31) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
  text-transform: uppercase;
  color: #000130;
}

.title__46__red {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(26 * 1px + (46 - 26) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(31 * 1px + (54 - 31) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
  text-transform: uppercase;
  color: #000130;
}

.title__100 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(46 * 1px + (100 - 46) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(40 * 1px + (80 - 40) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: #536274;
  padding-right: 18px;
}

.p_15 {
  padding: 15px;
}

.pb__15 {
  padding-bottom: 15px;
}

.mb__15 {
  margin-bottom: 15px;
}

.pb__20 {
  padding-bottom: 20px;
}

.mb__20 {
  margin-bottom: 20px;
}

.pb__40 {
  padding-bottom: calc(24 * 1px + (40 - 24) * ((100vw - 320px) / (1920 - 320)));
}

.mb__40 {
  margin-bottom: calc(24 * 1px + (40 - 24) * ((100vw - 320px) / (1920 - 320)));
}

.mb__65 {
  margin-bottom: calc(40 * 1px + (65 - 40) * ((100vw - 320px) / (1920 - 320)));
}

.pb__65 {
  padding-bottom: calc(40 * 1px + (65 - 40) * ((100vw - 320px) / (1920 - 320)));
}

.pb__100 {
  padding-bottom: calc(60 * 1px + (100 - 60) * ((100vw - 320px) / (1920 - 320)));
}

.mb__100 {
  margin-bottom: calc(60 * 1px + (100 - 60) * ((100vw - 320px) / (1920 - 320)));
}

.block {
  position: relative;
}

.block__content {
  width: 100%;
  height: 100%;
  background: rgba(69, 82, 113, 0.8);
  padding: calc(40 * 1px + (100 - 40) * ((100vw - 320px) / (1920 - 320))) 0;
}

@media all and (max-width: 767px) {
  .block__content {
    padding-bottom: 0;
  }
}

.block__caption {
  padding: 38px 0;
  padding-left: calc(40 * 1px + (100 - 40) * ((100vw - 320px) / (1920 - 320)));
}
.block__caption h2{color:#fff}
.block__text li{color:#fff!important}
@media all and (max-width: 992px) {
  .block__caption {
    padding-left: 0;
  }
}

.block__text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 165%;
  color: #FFFFFF;
  text-align: justify;
  text-justify: inter-word;
}

.block__text__32 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(20 * 1px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}

strong {
  font-weight: 600;
}

.importent {
  border-left: calc(4 * 1px + (8 - 4) * ((100vw - 320px) / (1920 - 320))) solid #6170E7;
  padding: 0 24px;
}

.rounded__box {
  background-color: #fff;
  border-radius: 11px;
  padding: calc(30 * 1px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
}

/* ----------------------------------------------
 * Generated by Animista on 2020-4-28 5:5:13
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/* ----------------------------------------------
 * Generated by Animista on 2020-4-28 7:25:4
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation kenburns-top
 * ----------------------------------------
 */
@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

.kenburns-top {
  -webkit-animation: kenburns-top 20s ease-out both;
  animation: kenburns-top 20s ease-out both;
}

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.8em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.tracking-in-expand {
  -webkit-animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

/**
 * ----------------------------------------
 * animation tracking-in-contract
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-contract {
  0% {
    letter-spacing: 0.1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

@keyframes tracking-in-contract {
  0% {
    letter-spacing: 0.1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

.tracking-in-contract {
  -webkit-animation: tracking-in-contract 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s both;
  animation: tracking-in-contract 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s both;
}

/*
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-3-4 17:10:42
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation jello-horizontal
 * ----------------------------------------
 */
@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  3% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  4% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  5% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  6.5% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  7.5% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  10%,
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  3% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  4% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  5% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  6.5% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  7.5% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  10%,
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.jello-horizontal {
  -webkit-animation: jello-horizontal 10s both infinite;
  animation: jello-horizontal 10s both infinite;
}

[data-aos="aos_shadow"].aos-animate {
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

[data-aos="aos_scale"] {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

[data-aos="aos_scale"].aos-animate {
  -webkit-transform: scale(1);
          transform: scale(1);
}

[data-aos="aos_rotate"].aos-animate {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

[data-aos="blur"] {
  -webkit-filter: blur(4px);
          filter: blur(4px);
}

[data-aos="blur"].aos-animate {
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.info {
  padding: calc(40 * 1px + (100 - 40) * ((100vw - 320px) / (1920 - 320))) 0;
}

.info__caption {
  -webkit-box-flex: calc(100% / 3 * 2);
      -ms-flex: calc(100% / 3 * 2);
          flex: calc(100% / 3 * 2);
  max-width: calc(100% / 3 * 2);
  width: 100%;
  padding-right: 80px;
}

@media all and (max-width: 767px) {
  .info__caption {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
}

.info__subtitle {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-size: calc(14 * 1px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  color: #6D6E95;
}

.info__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(20 * 1px + (46 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(24 * 1px + (54 - 24) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: #000130;
}

.info__title__red {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(20 * 1px + (46 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(24 * 1px + (54 - 24) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: #6170E7;
}

.info__video {
  -webkit-box-flex: calc(100% / 3);
      -ms-flex: calc(100% / 3);
          flex: calc(100% / 3);
  max-width: calc(100% / 3);
  width: 100%;
}

@media all and (max-width: 767px) {
  .info__video {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
    width: 100%;
  }
}

.play__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media all and (max-width: 767px) {
  .play__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow: auto;
  }
}

.info__iframe__wrap {
  width: 100%;
  padding-bottom: 5px;
}

@media all and (max-width: 767px) {
  .info__iframe__wrap {
    min-width: 90%;
    padding: 10px;
  }
}

.info__iframe {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: calc(315 / 560 * 100%);
}

.info__iframe > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.info__link {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #6170E7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}

.info__link img {
  margin-left: 15px;
  -webkit-transition: .3s;
  transition: .3s;
}

.info__link:hover {
  opacity: 0.8;
}

.info__link:hover img {
  -webkit-transform: translate(5px);
          transform: translate(5px);
}

@media all and (max-width: 767px) {
  .info__link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 28px 0;
  }
}

.quote {
  position: relative;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(20 * 1px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(20 * 1px + (38 - 20) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
  color: #536274;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: calc(25 * 1px + (50 - 25) * ((100vw - 320px) / (1920 - 320)));
  margin: calc(20 * 1px + (40 - 20) * ((100vw - 320px) / (1920 - 320))) 0;
}

.quote .quote__left {
  position: absolute;
  top: 0;
  left: 0;
}

.quote .quote__left img {
  width: calc(50 * 1px + (140 - 50) * ((100vw - 320px) / (1920 - 320)));
  height: auto;
}

.quote .quote__right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.quote .quote__right img {
  width: calc(50 * 1px + (140 - 50) * ((100vw - 320px) / (1920 - 320)));
  height: auto;
}

.card {
  border-top: 8px solid #6170E7;
  background-color: #fff;
  padding: calc(40 * 1px + (60 - 40) * ((100vw - 320px) / (1920 - 320))) calc(25 * 1px + (45 - 25) * ((100vw - 320px) / (1920 - 320)));
}

@media all and (max-width: 767px) {
  .card__md__m {
    margin-bottom: calc(40 * 1px + (100 - 40) * ((100vw - 320px) / (1920 - 320)));
  }
}

.card__wrap__thin {
  max-width: 461px;
  width: 100%;
}

@media all and (max-width: 992px) {
  .card__wrap__thin {
    min-width: 100%;
    padding-bottom: calc(24 * 1px + (40 - 24) * ((100vw - 320px) / (1920 - 320)));
  }
}

.statistics__left {
  padding-right: calc(20 * 1px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.statistics__center {
  max-width: 290px;
  width: 100%;
}

.statistics__center .statistics__number {
  padding: 0 calc(20 * 1px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
}

.statistics__center .statistics__text {
  padding-left: calc(20 * 1px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.statistics__right {
  padding-left: calc(20 * 1px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.statistics__number {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(46 * 1px + (100 - 46) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(54 * 1px + (118 - 54) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: #FFFFFF;
}

.statistics__text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(8 * 1px + (16 - 8) * ((100vw - 320px) / (1920 - 320)));
  line-height: 140%;
  color: #FFFFFF;
}

.card__mark {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid #6170E7;
}

.card__mark > div {
  line-height: 80%;
}

.card__mark:last-child {
  border-left: 2px solid transparent;
}

.card__mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  min-width: 16px;
  min-height: 16px;
  border-radius: 50%;
  background-color: #6170E7;
}

.card__mark::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -5px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background-color: #6170E7;
}

.card__mark__white {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid white;
}

.card__mark__white > div {
  line-height: 100%;
}

.card__mark__white:last-child {
  border-left: 2px solid transparent;
}

.card__mark__white::before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  min-width: 16px;
  min-height: 16px;
  border-radius: 50%;
  background-color: #D9D9D9;
}

.card__mark__white::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -5px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background-color: white;
}

.ticket {
  background: #FFFFFF;
  border-radius: 11px;
  padding: 0 calc(20 * 1px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
  min-height: 93px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ticket__caption {
  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;
  width: 100%;
}

.mailing {
  padding: 40px 0;
  background-image: url(../img/mailing/mailing.jpg);
}

@media all and (max-width: 992px) {
  .mailing {
    background-image: url(../img/mailing/mailing_1.jpg);
  }
}

.mailing__caption {
  padding-bottom: 24px;
  padding-right: 20px;
}

@media all and (max-width: 767px) {
  .mailing__caption {
    padding-right: 0;
  }
}

.mailing__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 470px;
  width: 42%;
}

@media all and (max-width: 767px) {
  .mailing__form {
    width: 100%;
    max-width: 100%;
  }
}

.mailing__input {
  background-color: #fff;
  height: 56px;
  padding: 20px 16px;
  margin-bottom: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #6170E7;
}
.ph__input {
  background-color: #fff;
  height: 56px;
  padding: 20px 16px;
  margin-bottom: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 100%;
  color: #6170E7;
}

::-webkit-input-placeholder {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #C4C5C5;
}

:-ms-input-placeholder {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #C4C5C5;
}

::-ms-input-placeholder {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #C4C5C5;
}

::placeholder {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #C4C5C5;
}

.mailing__submit {
  padding: 20px 0;
  background: #6170E7;
  -webkit-box-shadow: 0px 4px 25px rgba(255, 92, 147, 0.5);
          box-shadow: 0px 4px 25px rgba(255, 92, 147, 0.5);
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  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;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 11px;
  -webkit-transition: .3s;
  transition: .3s;
}

.mailing__submit:hover {
  background-color: #4a5cf1;
}

.mailing__submit:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mailing__text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  text-align: center;
  color: black;
}

.mailing__text a {
  text-decoration: underline;
}

@media all and (max-width: 767px) {
  .mailing__text {
    padding-top: 20px;
  }
}

.skills {
  padding-top: calc(60 * 1px + (100 - 60) * ((100vw - 320px) / (1920 - 320)));
}

.skills__img__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media all and (max-width: 767px) {
  .skills__img__box {
    overflow-x: auto;
  }
}

.skills__img__container {
  padding-right: 30px;
}

@media all and (max-width: 992px) {
  .skills__img__container {
    padding-right: 0;
  }
}

.skills__img__wrap {
  padding: 5px;
  width: 100%;
  /* max-width: calc(100% / 3); */
}

@media all and (max-width: 767px) {
  .skills__img__wrap {
    max-width: 80%;
    min-width: 80%;
  }
}

.skills__img {
  /* padding-top: calc(176.39 / 224.38 * 100%); */
  overflow: hidden;
}

.skills__img img {
  -webkit-transition: .7s;
  transition: .7s;
}

.skills__img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.skill__card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -16px;
}

@media all and (max-width: 767px) {
  .skill__card__row {
    margin: 0 -7px;
  }
}

.skill__card__wrap {
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  max-width: 25%;
  padding: 16px;
  position: relative;
}

@media all and (max-width: 767px) {
  .skill__card__wrap {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
    padding: 7px;
  }
}

.skill__card__ratio {
  overflow: hidden;
  padding-top: 100%;
}

.skill__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 11px;
  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;
  padding: calc(20 * 1px + (40 - 20) * ((100vw - 320px) / (1920 - 320))) calc(30 * 1px + (60 - 30) * ((100vw - 320px) / (1920 - 320)));
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.skill__card img {
  height: 60%;
  margin-bottom: calc(10 * 1px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.skill__card:hover {
  -webkit-box-shadow: 0 0 30px 0 rgba(198, 212, 234, 0.5);
          box-shadow: 0 0 30px 0 rgba(198, 212, 234, 0.5);
}

.skill__card__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: calc(10 * 1px + (22 - 10) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(12 * 1px + (26 - 12) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
  color: #6170E7;
}

.staff__container {
	
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #DFEFFF;
  -webkit-box-shadow: 0 -20px 20px 0 rgba(198, 212, 234, 0.3);
          box-shadow: 0 -20px 20px 0 rgba(198, 212, 234, 0.3);
  /*padding-left: calc(50vw - 450px);*/
}
@media all and (min-width: 1300px) {
  .staff__container {
    padding-left: calc(50vw - 550px);
  }
}
@media all and (min-width: 1400px) {
  .staff__container {
    padding-left: calc(50vw - 450px);
  }
}

/*@media all and (max-width: 767px) {
  .staff__container {
    padding-left: calc(50vw - 375px);
  }
}*/

@media all and (min-width: 992px) {
  .staff__container {
	 max-height: 550px;
  }
}
@media all and (max-width: 992px) {
  .staff__container {
    /*padding-left: calc(50vw - 485px);*/
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/*@media all and (max-width: 1270px) {
  .staff__container {
    padding-left: calc(50vw - 340px);
  }
}
@media (max-width: 991px) {
  .staff__container {
    padding-left: 0;
  }
}*/
.staff__caption {
  padding: calc(25 * 1px + (86 - 25) * ((100vw - 320px) / (1920 - 320))) 20px 20px 20px;
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  max-width: 100%;
}

@media all and (max-width: 992px) {
  .staff__caption {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

.staff__subtitle {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  color: #536274;
  margin-bottom: calc(20 * 1px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.staff__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #6170E7;
}

.staff__title__red {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #6170E7;
  margin-bottom: 20px;
}

.staff__text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(14 * 1px + (19 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
  color: #6170E7;
  margin-bottom: calc(20 * 1px + (100 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.staff__slider__img__wrap {
  border-right: 2px solid white;
  display: block !important;
}
.staff__slider {
	height: 45%;
}
.staff__slider__img {
  padding-top: 200%;
}

.current__staff__slider {

  width: 100%;
  max-width: 28%;
}
@media (min-width: 991px){
.current__staff__slider {
	min-width:300px;
}	

}
@media all and (max-width: 992px) {
  .current__staff__slider {
    max-width: 40%;
  }
}

@media all and (max-width: 767px) {
  .current__staff__slider {
	min-height: 430px;
    max-width: 100%;
  }
}

.current__staff__slider__img__wrap {
  display: block !important;
  height: 100%;
}

@media all and (max-width: 767px) {
  .current__staff__slider__img__wrap {
    padding: 15px;
    padding-right: 0;
  }
}

.current__staff__slider__img {
  padding-top: calc(612 / 430 * 100%);
  height: 100%;
}

@media all and (max-width: 767px) {
  .current__staff__slider__img {
	 max-width: 300px;
    padding-top: 100%;
    width: calc(260 * 1px + (1500 - 260) * ((100vw - 320px) / (1920 - 320)));
  }
}

.staff__right {
  width: 100%;
  max-width: 55%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (max-width: 992px) {
  .staff__right {
    max-width: 60%;
  }
}

@media all and (max-width: 767px) {
  .staff__right {
    max-width: 100%;
  }
}

@media all and (max-width: 767px) {
  .staff__slider {
    display: none;
  }
}

.staff__slider .slick-slide {
  cursor: pointer;
}

.staff__slider .slick-current {
  display: none;
}

.staff__info__slider__wrap {
   -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; 
  max-width: 100%;
  background-color: #fff;
  height:60%
}

.staff__info__slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 370px;
  height: 100%;
}

.staff__info__slider .slick-slide > div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media all and (max-width: 767px) {
  .staff__info__slider {
    max-width: 100%;
  }
}

.staff__info__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;
  padding: 15px calc(15 * 1px + (43 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.staff__info__slider__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(20 * 1px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(24 * 1px + (38 - 24) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
  color: #6170E7;
  margin-bottom: calc(20 * 1px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.staff__info__slider__text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(14 * 1px + (19 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
  color: #6170E7;
  margin-bottom: calc(18 * 1px + (48 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.map {
  position: relative;
  height: 100vh;
  max-height: calc(342 * 1px + (770 - 342) * ((100vw - 320px) / (1920 - 320)));
  width: 100%;
}

.keepin {
  position: relative;
  background-color: #fff;
}

.keepin__box {
  position: absolute;
  top: 50%;
  left: calc(50vw - 595px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  z-index: 1;
  padding: calc(20 * 1px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
}

@media all and (max-width: 1210px) {
  .keepin__box {
    left: calc(50vw - 485px);
  }
}

@media all and (max-width: 992px) {
  .keepin__box {
    position: static;
    left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.keepin__line {
  height: calc(4 * 1px + (6 - 4) * ((100vw - 320px) / (1920 - 320)));
  width: 94px;
  background: #6170E7;
  margin-bottom: 20px;
}

.keepin__title {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: calc(22 * 1px + (31 - 22) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(26 * 1px + (37 - 26) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: #000000;
  margin-bottom: calc(23 * 1px + (41 - 23) * ((100vw - 320px) / (1920 - 320)));
}

.keepin__adress {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 120%;
  color: #6D6E95;
  margin-bottom: calc(6 * 1px + (11 - 6) * ((100vw - 320px) / (1920 - 320)));
}

.keepin__link {
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(12 * 1px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 20px;
  color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
}

.keepin__link:hover {
  color: #4a5cf1;
}

.keepin__schedule__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(16 * 1px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  color: #000000;
}

.keepin__schedule {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(14 * 1px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  color: #6D6E95;
  margin-bottom: calc(11 * 1px + (20 - 11) * ((100vw - 320px) / (1920 - 320)));
}

.keepin__email {
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  color: #000000;
}

.keepin__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.keepin__social a:not(:last-child) {
  margin-right: 20px;
}

.keepin__icon {
  -webkit-transition: 1s;
  transition: 1s;
}

.keepin__icon:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.footer {
  padding-top: calc(17 * 1px + (100 - 17) * ((100vw - 320px) / (1920 - 320)));
  padding-bottom: calc(0 * 1px + (62 - 0) * ((100vw - 320px) / (1920 - 320)));
}

.footer__logo__wrap {
  width: 100%;
  max-width: 25%;
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
}

@media all and (max-width: 1200px) {
  .footer__logo__wrap {
    max-width: 19%;
    -webkit-box-flex: 19%;
        -ms-flex: 19%;
            flex: 19%;
  }
}

@media all and (max-width: 992px) {
  .footer__logo__wrap {
    margin-bottom: 17px;
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

@media all and (max-width: 767px) {
  .footer__logo__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__logo {
  display: block;
  padding: 0 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
  color: #6170E7;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer__logo:hover {
  color: #4a5cf1;
}

.footer__col {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 224px;
  -webkit-box-flex: 224px;
      -ms-flex: 224px;
          flex: 224px;
}

@media all and (max-width: 992px) {
  .footer__col {
    display: none;
  }
}

.footer__link {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 140%;
  color: #6170E7;
  cursor: pointer;
}

.footer__link:hover {
  text-decoration: underline;
  color: #4a5cf1;
}

.footer__info {
  padding: 0 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media all and (max-width: 767px) {
  .footer__info {
    padding: 0;
  }
}

.footer__info__box {
  width: 100%;
  max-width: 280px;
}

@media all and (max-width: 992px) {
  .footer__info__box {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media all and (max-width: 767px) {
  .footer__info__box {
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    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;
  }
}

.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__email {
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 140%;
  color: #6170E7;
  margin-bottom: calc(22 * 1px + (32 - 22) * ((100vw - 320px) / (1920 - 320)));
}

.footer__email:hover {
  color: #4a5cf1;
}

@media all and (max-width: 767px) {
  .footer__email {
    text-align: center;
  }
}

.footer__phone {
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 * 1px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 150%;
  color: #6170E7;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer__phone:hover {
  color: #4a5cf1;
}

@media all and (max-width: 767px) {
  .footer__phone {
    text-align: center;
  }
}

.rights {
  padding: calc(15 * 1px + (32 - 15) * ((100vw - 320px) / (1920 - 320))) 0;
  border-top: 1px solid #6170E7;
}

@media all and (max-width: 767px) {
  .rights {
    border-top: none;
  }
}

.footer__rights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media all and (max-width: 767px) {
  .footer__rights {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__rights__left {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  /* line-height: 30px; */
  line-height: 140%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6170E7;
}

.footer__rights__right {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(8 * 1px + (14 - 8) * ((100vw - 320px) / (1920 - 320)));
  /* line-height: calc(16 * 1px + (30 - 16) * ((100vw - 320px) / (1920 - 320))); */
  line-height: 140%;
  letter-spacing: 0.05em;
  color: #6170E7;
}

.footer__info__adress {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(16 * 1px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  color: #6170E7;
  margin-bottom: calc(12 * 1px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
}

@media all and (max-width: 767px) {
  .footer__info__social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__info__btn {
  min-width: calc(280 * 1px + (270 - 280) * ((100vw - 320px) / (1920 - 320)));
}

.breadcrump {
  margin-top: 75px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 767px) {
  /* .breadcrump {
    display: none;
  } */
}

@media all and (max-width: 992px) {
  .breadcrump {
    margin-top: 72px;
  }
}

.breadcrump__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrump__item {
  font-family: "Roboto";
  padding-right: 10px;
  padding-left: 10px;
}

.breadcrump__item a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #473038;
  text-decoration: underline;
}

.breadcrump__item span {
  padding-left: 10px;
}

.breadcrump__item:last-child a {
  text-decoration: none;
  pointer-events: none;
}

.breadcrump__item:last-child span {
  display: none;
}

.header__dark {
  height: 478px;
  position: relative;
}

@media all and (max-width: 767px) {
  .header__dark {
    min-height: 100vh;
  }
}

.header__dark__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (max-width: 767px) {
  .header__dark__img {
    display: none;
  }
}

.header__dark__img__md {
  display: none;
}

@media all and (max-width: 767px) {
  .header__dark__img__md {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}

.header__dark__caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(69, 82, 113, 0.8)), to(rgba(69, 82, 113, 0.8)));
  background: linear-gradient(0deg, rgba(69, 82, 113, 0.8), rgba(69, 82, 113, 0.8));
}

.header__dark__caption {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.header__dark__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: calc(20 * 1px + (10 - 20) * ((100vw - 320px) / (1920 - 320)));
}

@media all and (max-width: 767px) {
  .header__dark__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header__dark__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(32 * 1px + (40 - 32) * ((100vw - 320px) / (1920 - 320)));
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: 'liga'off;
          font-feature-settings: 'liga'off;
  color: #FFFFFF;
}

.header__dark__text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: calc(15 * 1px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
  max-width: 670px;
  margin-bottom: calc(30 * 1px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
}

.service__card {
  margin-bottom: -100px;
}

.service__card__wrap {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-flex: calc(100% / 7);
      -ms-flex: calc(100% / 7);
          flex: calc(100% / 7);
  max-width: calc(100% / 7);
  position: relative;
}

@media all and (max-width: 767px) {
  .service__card__wrap {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
}

.skill__card__ratio {
  border-radius: 11px;
  -webkit-transition: .3s;
  transition: .3s;
}

.service__card__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #6170E7;
}

.info__list {
  border: 10px solid rgba(69, 82, 113, 0.3);
  padding: 20px;
  position: relative;
  margin-bottom: 28px;
}

.info__list_graph {
  /* border: 10px solid rgba(69, 82, 113, 0.3); */
  padding: 20px;
  position: relative;
  margin-bottom: 28px;
}

.info__list__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 130%;
  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;
  text-transform: uppercase;
  color: #6170E7;
  margin-bottom: 23px;
}

.info__list__item {
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #6170E7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px;
}

.info__list__footer {
  height: calc(180 * 1px + (230 - 180) * ((100vw - 320px) / (1920 - 320)));
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.info__list__subtitle {
  position: relative;
  z-index: 1;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(10 * 1px + (13 - 10) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(12 * 1px + (15 - 12) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: #6170E7;
  opacity: 0.58;
}

.info__list__subtitle__red {
  position: relative;
  z-index: 1;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(12 * 1px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 15px;
  text-transform: uppercase;
  color: #6170E7;
  opacity: 0.58;
  margin-bottom: calc(45 * 1px + (80 - 45) * ((100vw - 320px) / (1920 - 320)));
}

.info__list__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  max-width: 216px;
}

@media all and (max-width: 992px) {
  .info__list__img {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .info__list__img {
    display: block;
  }
}

.info__list__btn {
  max-width: 242px;
  width: 100%;
  height: 56px;
  position: relative;
  z-index: 1;
  background: #6170E7;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 2px solid #6170E7;
  -webkit-transition: .3s;
  transition: .3s;
}

.info__list__btn:hover {
  background: transparent;
  color: #6170E7;
}

.info__list__btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.benefits {
  background-color: #fff;
  padding: calc(20 * 1px + (70 - 20) * ((100vw - 320px) / (1920 - 320))) 0;
  -webkit-box-shadow: 0 0 30px 0 rgba(198, 212, 234, 0.5);
          box-shadow: 0 0 30px 0 rgba(198, 212, 234, 0.5);
}

.benefits__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 992px) {
  .benefits__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefits__heading .benefits__img {
    margin-bottom: 15px;
  }
  .benefits__heading .benefits__title {
    text-align: center;
  }
}

@media all and (max-width: 767px) {
  .benefits__heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .benefits__heading .benefits__img {
    margin-bottom: 0;
  }
  .benefits__heading .benefits__title {
    text-align: left;
  }
}

.benefits__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(14 * 1px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(17 * 1px + (24 - 17) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: #6170E7;
}

.benefits__text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(14 * 1px + (19 - 14) * ((100vw - 320px) / (1920 - 320))) s;
  letter-spacing: -0.02em;
  color: #6170E7;
}

.benefits__img {
  width: calc(55 * 1px + (99 - 55) * ((100vw - 320px) / (1920 - 320)));
  margin-right: calc(14 * 1px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.benefits__col {
  -webkit-box-flex: calc(100% / 5);
      -ms-flex: calc(100% / 5);
          flex: calc(100% / 5);
  max-width: calc(100% / 5);
}

@media all and (max-width: 992px) {
  .benefits__col {
    min-width: calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media all and (max-width: 767px) {
  .benefits__col {
    min-width: calc(80%);
    max-width: calc(80%);
  }
}

@media all and (max-width: 992px) {
  .overflow__auto {
    overflow-x: auto;
  }
}

.benefits__link {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(16 * 1px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  text-align: center;
  color: #536274;
  -webkit-transition: .3s;
  transition: .3s;
  padding-left: 5px;
}

.benefits__link:hover {
  color: #6170E7;
}

.price__content {
  position: relative;
  margin-top: -500px;
}

.price__img {
  height: 600px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.price__shadow {
  -webkit-box-shadow: 0 0 30px 0 rgba(198, 212, 234, 0.5);
          box-shadow: 0 0 30px 0 rgba(198, 212, 234, 0.5);
}

.mfp-content {
  padding: calc(30 * 1px + (100 - 30) * ((100vw - 320px) / (1920 - 320))) 0;
}

.popup {
  margin-top: 100px;
  padding: calc(15 * 1px + (30 - 15) * ((100vw - 320px) / (1920 - 320)));
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 10px rgba(69, 82, 113, 0.3);
          box-shadow: 0 0 0 10px rgba(69, 82, 113, 0.3);
  max-width: 430px;
  margin: auto;
  position: relative;
  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;
  z-index: 3000 !important;
}

.popup__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup__list label {
  margin-bottom: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  color: #6170E7;
}

.popup__list input {
  height: 56px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 22px;
  font-family: "Roboto";
  color: #6170E7;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
}

.popup__btn {
  width: 100%;
  height: 56px;
  margin-bottom: 25px;
  padding: 20px 10px;
  background: #6170E7;
  -webkit-box-shadow: 0px 4px 9px #6170e7cf;
          box-shadow: 0px 4px 9px #6170e7cf;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  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;
  text-transform: uppercase;
  color: #F2F2F2;
  -webkit-transition: .3s;
  transition: .3s;
}

.popup__btn img {
  margin-left: 18px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media all and (max-width: 767px) {
  .popup__btn {
    max-width: 280px;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media all and (max-width: 992px) {
  .popup__btn .audience__btn__img {
    display: none;
  }
}

.popup__btn:hover {
  background-color: #4a5cf1;
}

.popup__btn:hover img {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.popup__btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.popup__caption {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: #6170E7;
}

.gotop__wrap {
  position: fixed;
  right: 15px;
  bottom: 15px;
}

.gotop {
  width: calc(45 * 1px + (90 - 45) * ((100vw - 320px) / (1920 - 320)));
  height: calc(45 * 1px + (90 - 45) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 10px 0 rgba(69, 82, 113, 0.15);
          box-shadow: 0 10px 10px 0 rgba(69, 82, 113, 0.15);
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6170E7;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.gotop span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: calc(12 * 1px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 20px;
  text-align: center;
}

@media all and (max-width: 992px) {
  .gotop span {
    display: none;
  }
}

.gotop:hover {
  -webkit-box-shadow: 0 20px 30px 0 rgba(69, 82, 113, 0.2);
          box-shadow: 0 20px 30px 0 rgba(69, 82, 113, 0.2);
}
/*# sourceMappingURL=main.css.map */
.order{text-align:center;}
.order .audience__btn{margin: 15px auto;}
.title_request{font-family: "Roboto";
font-size:40px;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    color: #6170E7;}
.marg_top{margin-top: 75px;}
.error404{text-align:center}
.error404 a{color:#6170E7}
.error404 a:hover{color:#e44e69;}
.info__iframe img {position:absolute;width:100%;height:100%; object-fit: cover; top:0;bottom:0;margin:auto}
.info__title_price{
	padding-top: 20px;
	text-align:center;
	font-family: "Roboto";
	font-style: normal;
	font-weight: bold;	
	font-size: calc(20 * 1px + (46 - 20) * ((100vw - 320px) / (1920 - 320)));
	line-height: calc(24 * 1px + (54 - 24) * ((100vw - 320px) / (1920 - 320)));
	text-transform: uppercase;
	color: #000130;
}
.price_table{margin:auto auto 20px auto;border-spacing: 3px 10px;}
.price_table tr td:nth-child(1) {width: 60%;}
.price_table tr td:nth-child(2) {width: 30%;text-align:center;}
.price_table tr td:nth-child(3) {width: 10%;}
@media (max-width: 480px){
  .price_table{
    width: 100%
  }
  .price_table tr td:nth-child(1),
  .price_table tr td:nth-child(2),
  .price_table tr td:nth-child(3) {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 5px 0
  }
}
.price_subtitle{
	text-align: center;
    font-family: "Roboto";
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: #6170E7;
    padding: 20px 0;
}
.price_table tr{
    background: #fff;
	font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
	font-size: 20px;
   /*  font-size: calc(20 * 1px + (28 - 20) * ((100vw - 320px) / (1920 - 320))); */
    line-height: 130.5%;
    color: #6D6E95;
}
.cell_set_name{margin:7px;}
.cell_set_price{margin:7px;}
.price_btn {
	max-width: 242px;
    width: 100%;
    height: 40px;
    border: 1px solid #6170E7;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    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;
    text-transform: uppercase;
    color: #6170E7;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: white;
	padding:5px;
    /* padding: calc(5 * 1px + (15 - 5) * ((100vw - 320px) / (1920 - 320))); */
}
.price_table a{color:#6170E7;font-size: 20px;}
.price_btn:hover{
background-color: #6170E7;
    color: white;
    border: 1px solid white;
}
@media (max-width: 600px){
	.price_subtitle{font-size:17px}
	.price_table tr{font-size: 15px;}
	.price_table a{font-size: 15px;}		
}
@media (max-width: 400px){
	.price_subtitle{font-size:15px}
	.price_table tr{font-size: 13px;}
	.price_table a{font-size: 13px;}		
}
.policy_link{color:#6170E7;}
.alt_div{margin:auto;}
.alt_bottom_part{text-align: center;margin: auto;}
.text__20 li {
	font-size: calc(12 * 1px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
    /* font-size: 20px; */
    font-weight: normal;
    line-height: calc(16 * 1px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    margin-bottom: 20px;
    padding-left: 52px;
    color: #4b5152;
}
.text__20 ul li:before {
    position: absolute;
    top: 9px;
    left: 17px;
    width: 10px;
    height: 10px;
    content: '';
    border-radius: 50%;
    background-image: linear-gradient(90deg, #fff 0.00%, #6170E7 0.0%);
}
.text__20 ol li:before {
    position: absolute;
    text-align: center;
    top: 2px;
    left: 0;
    width: 23.75px;
    height: 25px;
	line-height:26px;
    content: '';
    color: #fff;
    border-radius: 50%;
    background-image: linear-gradient(90deg, #fff 0.00%, #6170E7 0.0%);
}
.text__20 ol{
counter-reset: myCounter;
}
.text__20 ol li:before{
	counter-increment: myCounter;
    content: counter(myCounter);
}
/*
.text__20 ol li:nth-of-type(1):before{
	content: '1';
}
.text__20 ol li:nth-of-type(2):before{
	content: '2';
}
.text__20 ol li:nth-of-type(3):before{
	content: '3';
}
.text__20 ol li:nth-of-type(4):before{
	content: '4';
}
.text__20 ol li:nth-of-type(5):before{
	content: '5';
}
.text__20 ol li:nth-of-type(6):before{
	content: '6';
}
.text__20 ol li:nth-of-type(7):before{
	content: '7';
}
.text__20 ol li:nth-of-type(8):before{
	content: '8';
}
.text__20 ol li:nth-of-type(9):before{
	content: '9';
}
.text__20 ol li:nth-of-type(10):before{
	content: '10';
}
.text__20 ol li:nth-of-type(11):before{
	content: '11';
}*/
.tw h2{color:#fff}
.block__text a{color:#ff0c38}
.ph__input::-webkit-input-placeholder {font-size:30px;}
.ph__input::-moz-placeholder          {font-size:30px;}
.ph__input:-moz-placeholder           {font-size:30px;}
.ph__input:-ms-input-placeholder      {font-size:30px;}
@media (max-width: 360px){
	.breadcrump__item a{font-size:13px}
	.breadcrump__item{font-size:13px}
}
.menu_arrow {display:none;}
@media screen and (max-width: 992px){
.menu_arrow {
    display: block;
    transform: rotate(-90deg);
    height: 18px;
    width: 18px;
    border: #6170E7 1px solid;
    border-radius: 2px;
	margin-right: 20px;
}
.menu_string {
	display: flex;
	align-items: center;
    justify-content: space-between;
	width:100%
}
}
.stati__breadcrump-link{
	text-decoration: underline!important;
    pointer-events: auto!important;
}
.stati
{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 50px 0 20px;
}
@media screen and (max-width: 1050px)
{
    .stati
    {
        margin-top: 0px;
    }
}
@media screen and (max-width: 750px)
{
    .stati
    {
        margin-top: 0px;
    }
}
@media screen and (max-width: 950px)
{
    .stati
    {
        padding: 50px 0 0;
    }
}
@media screen and (max-width: 750px)
{
    .stati
    {
        padding: 50px 0 0;
    }
}
.stati__title
{
    font-size: 40px;
    font-weight: bold;
    line-height: 47px;
    margin-bottom: 75px; 
    text-align: center;
    color: #4b5152;
    font-family: "Roboto";
}
@media screen and (max-width: 950px)
{
    .stati__title
    {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 45px;
    }
}
@media screen and (max-width: 750px)
{
    .stati__title
    {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 35px;
    }
}
.stati__row
{
    display: grid;
    width: 100%;
    margin-bottom: 115px; 
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 84px 117px;
}
@media screen and (max-width: 1150px)
{
    .stati__row
    {
        grid-gap: 44px 55px;
    }
}
@media screen and (max-width: 950px)
{
    .stati__row
    {
        margin-bottom: 80px; 
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 700px)
{
    .stati__row
    {
        max-width: 450px;
        margin: 0 auto 40px; 
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
}
.stati__item
{
    width: 100%;
    padding: 38px 43px 30px; 
    border-radius: 0px;
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .25);
	transition: all .80s ease;
}
@media screen and (max-width: 700px)
{
    .stati__item
    {
        padding: 20px 15px 10px;
    }
}
.stati__pic
{
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
.stati__img
{
	width:100%;
    max-width: 100%;
    height: auto;
	margin-bottom: 20px;
}
.stati__info
{
    font-size: 17px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 0; 
    text-align: center;
    color: #4b5152;
}
.stati__item:hover {

	color: #fff;
    background-color: #6170E7;
    box-shadow: none;
}
.stati__item:hover .stati__info{
	color: #fff;
}
.inside_filter {text-align: center;margin-top:20px}
.inside_city {width:25%;padding: 10px 0!important;}
@media screen and (max-width: 950px){.inside_city {width:33%;}}
@media screen and (max-width: 700px){.inside_city {width:50%;}}
@media screen and (max-width: 450px){.inside_city {text-align: center;width:100%}}
.hide {display: none!important;}
.subfolder_ul {flex-wrap: wrap;display: flex;margin-bottom: 30px;}
.city__filter {max-width:320px;min-width:270px;}
.form_control {margin:auto}
.flex_box {display: -webkit-box;display: -moz-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-ms-flex-wrap: wrap;-webkit-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-align: flex-start;-webkit-align-items: flex-start;-webkit-box-align: flex-start;align-items: flex-start;float: none; }
.review_wrapper {margin: 15px 0;padding: 0 10px;}
.fancy_photo img {transition: all .3s ease-out;margin:10px 0}
.fancy_photo:hover img {transition: all .3s ease-out;transform: scale(1.05);}
.ph_gal {justify-content: space-around;margin-bottom: 30px;}
.header_location {height: 100%;align-items: center;display: flex;padding: 0 15px;color: #6D6E95;}
.regions_link {color: #6170E7;text-decoration:underline;}
.regions_link:hover {text-decoration:none}
.city-list a {display: inline-block;font-size: 14px;margin: 0 15px 15px;text-decoration: underline;position: relative; }
.city-list {max-width: 400px;}
.navbar__box {display: flex;align-items: center;}

.district-select {
	padding: 0 10px;
	margin-top: 20px;
}
.district-select select {
	padding: 10px 15px;
	width: 100%;
	border: 1px solid #eee;
	color: #6170E7;
	font-size: 16px;
	font-family: "Roboto";
}
.district-select select option {
	color: #6170E7;
	font-size: 16px;
}	

.review_city{
    font-size: calc(15 * 1px + (28 - 19) * ((100vw - 320px) / (1920 - 320)));
}

.review_city:before{
    content: '';
    width: 40%;
    border-bottom: 2px solid #6170E7;
}

.site-nav a {
    color: #6170E7;
}

.site-nav li {
    position: relative;
    line-height: 25px;
    color: #6170E7;
}

.site-nav li:before {
    content: '';
    height: 6px;
    width: 6px;
    position: absolute;
    left: -10px;
    top: 9px;
    border-radius: 50px;
    box-sizing: border-box;
    background-color: #6170E7;
}

.site-nav li ul {
    margin-left: 15px;
}

.site-map_wr {
  padding: 0 10px;
  margin-top: 20px;
  white-space: nowrap;
  line-height: 40px;
}

.search-container {
  margin: 0 auto;
}

.search-form {
  display: flex;
}

.search-input {
  padding: 9px;
  flex-basis: 80%;
  height: 40px;
  line-height: 40px;
}

.search-link {
  display: block;
  margin-bottom: 5px;
}

.search-input-button {
  height: 40px;
  line-height: 40px;
  padding: 0;
  padding-left: 9px;
  padding-right: 9px;
  cursor: pointer;
  margin: 0;
  flex-basis: 20%;
}

.search-result {
  padding: 20px;
  overflow: auto;
  height: 300px;
  background: #acb6c324;
}

.search-form-footer {
  display: none;
  margin-top: 20px;
  padding: 0px 10px 0px 10px;
}

.search-form-footer-mobile {
  display: flex;
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
}

@media screen and (min-width: 520px) {
  .search-form-footer {
    display: flex;
  }
  .search-form-footer-mobile {
    display:  none;
  }
}

.staff-block_wr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.staff-block_item {
  width: 300px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
}

.staff-block_item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.staff-block_item-img {
  height: 380px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.staff-block_item-text-wr {
  padding: 5px;
}

.staff-block_item-text_title {
  font-size: 26px;
  font-weight: 600;
  color: #000130;
}

.staff-detail-wr {
  text-align: center;
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
}

.staff-detail_back-link {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.staff-detail_back-link-text {
  display: inline-block;
  vertical-align: top;
  color: #6170E7;
}

.staff-detail_img {
  margin: 0 auto;
}
.staff-detail_text {
  text-align: center;
  margin-top: 10px;
}

.staff-block_detail-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.staff-block_item-text_text {
  color: #6D6E95;
}

.advantages-list-wr {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.advantages-list-item {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}


@media screen and (min-width: 450px) {
  .advantages-list-item {
      width: 320px;
      margin-bottom: 32px;
      padding-left: 0;
      padding-right: 0;
      
  }
}

@media screen and (min-width: 1000px) {
  .advantages-list-item {
    margin-right: 32px;
  }
}


.advantages-list-item-img {
    margin: 0 auto;
}

.advantages-list-item-title {
    margin-bottom: 16px;
    margin-top: 16px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #6170E7;
}

.advantages-list-item-text {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #6170E7;
}

.advantages-list-wr {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.advantages-list-item {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}


@media screen and (min-width: 450px) {
  .advantages-list-item {
      width: 320px;
      margin-bottom: 32px;
      padding-left: 0;
      padding-right: 0;
      
  }
}

@media screen and (min-width: 1000px) {
  .advantages-list-item {
    margin-right: 32px;
  }
}


.advantages-list-item-img {
    margin: 0 auto;
}

.advantages-list-item-title {
    margin-bottom: 16px;
    margin-top: 16px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #6170E7;
}

.advantages-list-item-text {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #6170E7;
}


@media screen and (min-width: 576px) {
  .our_chambers-wr {
    display: grid;
    grid-gap: 16px 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .our_chambers-wr {
    display: grid;
    grid-gap: 16px 32px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.our_chambers-item {
    max-width: 368px;
    margin: 0 auto;
}

.our_chambers-slider {
  width: 100%;
  height: 230px;
  position: relative;
}

.our_chambers-title-wr {
  background: #6170E7;
  padding-top: 16px;
  padding-bottom: 16px;
}

.our_chambers-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 28px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-left: 52px;
  position: relative;
  margin-bottom: 0!important;
}

.our_chambers-title:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  left: -18px;
  top: 10px;
  background: #6170E7;
}

.our_chambers-slider-text {
  padding: 16px;
  background: #FFFFFF;
}

.our_chambers-slider-text-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #6170E7;
}

.our_chambers-slider-text-list {
  padding-left: 19px;
}

.our_chambers-slider-text-list li {
  position: relative;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #585858;
}

.our_chambers-slider-text-list li:before {
  content: '';
  position: absolute;
  left: -12px;
  top: 7px;
  border: 4px solid transparent;
  border-left: 4px solid #6170E7;
}

.our_chambers-slider-tags {
  margin-top: 12px;
  margin-bottom: 12px;
}

@font-face {
  font-family: "Montserrat-Regular";  
  src: url("/site_files/fonts/Montserrat-Regular.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal;
}

@font-face {
  font-family: "Montserrat-Bold";  
  src: url("/site_files/fonts/Montserrat-Bold.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal;
}

.our_chambers-slider-tags div {
  background: #FFF0F3;
  font-family: Montserrat-Bold;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #6170E7;
  padding: 8px 6px;
  margin-bottom: 4px;
  text-align: center;
  width: fit-content;
}

.our_chambers-slider-tags div:last-child {
  margin-bottom: 0;
}

.our_chambers-slider-btn-wr {
  padding-top: 6px;
  padding-bottom: 16px;
}

.our_chambers-slider-btn-price {
  line-height: 28px;
  color: #373737;
  text-align: center;
  margin-bottom: 6px;
}

.our_chambers-slider-btn-price span {
  font-family: Roboto;
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #373737;
  margin-right: 8px;
}

.our_chambers-slider-btn-price span:last-child {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  margin-right: 0;
  height: 38px;
  display: inline-block;
  vertical-align: top;
  text-transform: none;
}

.our_chambers-slider-btn-order {
  background: #6170E7;
  height: 56px;
}
.our_chambers-slider-btn-order a {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 56px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our_chambers-slider-btn-order-wa {
  padding-top: 16px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #6170E7;
  text-align: center;
}

.our_chambers-slider-btn-order-wa a {
  color: #6170E7;
}

.our_chambers-slider-btn-order-img {
  margin-left:  12px;
}

.our_chambers-slider .slick-prev, .our_chambers-slider .slick-next {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  top: 102px;
  background: #FFFFFF;
  opacity: 1;
} 

.our_chambers-slider .slick-prev {
    left: 0;
}

.our_chambers-slider .slick-next {
    right: 0;
}

.our_chambers-slider .slick-prev img, .our_chambers-slider .slick-next img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.5);
  cursor: pointer;
}

.our_chambers-slider .slick-next img {
  -moz-transform: scale(-0.5);
  -o-transform: scale(-0.5);
  -webkit-transform: scale(-0.5);
  transform: scale(-0.5);
}

.our_chambers-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.our_chambers-slider-img-overlay {
  content: '';
  position: absolute;
  background-color: rgba(223,33,67,40%);
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.our_chambers-slider-img-overlay-search {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/site_files/img/our_chambers/search.svg');
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.slick-slide:hover .our_chambers-slider-img-overlay, .slick-slide:hover .our_chambers-slider-img-overlay-search {
  display: block;
}

.our_chambers-popup-wr {
  position: absolute;
  width: 500px;
  height: 250px;
  background-color: #fff;
}

.our_chambers-slider-link {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
}

.list__site-map {
 padding: 0px 0px 0px 40px;
 color: #6170E7;
  list-style: disc;
}

.mfp-fade-our_chambers .mfp-close {
    color: #6170E7!important;
    font-size: 40px;
}

.list__site-map a{
 color: #6170E7;

}
.main__site-map ul{
 list-style-type: disc;
}
.list__site-map ul li{
 list-style-type: disc;
}
.blog__title {
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 700;
    line-height: 47.21px;
    text-align: center;
}

.blog__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
}

.blog__item {
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-basis: calc((100% - 50px) / 2);
}

.blog__item-img {
    margin-right: 24px;
}

.blog__item-text {
    padding: 20px 24px 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog__item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 21.24px;
    text-align: left;
    margin-bottom: 10px;
    color: #4B5152;
}

.blog__item-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.52px;
    text-align: left;
    color: #4B515299;
    margin-bottom: 12px;
    color: #4B5152CC;
}

.blog__item-picture {
    width: 201px;
    height: 201px;
    overflow: hidden;
    display: block;
    border-radius: 20px;
}

.blog__item-picture img {
    object-position: top;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.blog__item-date {
    display: flex;
}

.blog__item-date p:first-child {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.52px;
    text-align: left;
    color: #4B515299;
    margin-right: 12px;
}

.blog__item-date p:last-child {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.52px;
    text-align: left;
    color: #4B5152;
}

@media (max-width: 1270px) {
    .blog__item {
        flex-basis: calc((100%));
    }
}

@media (max-width: 700px) {
    .blog__title {
        font-size: 32px;
        font-weight: 700;
        line-height: 37.77px;
        text-align: center;
    }

    .blog__item-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 18.88px;
        text-align: left;
    }

    .blog__item-subtitle {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.52px;
        text-align: left;
    }

    .blog__item-date p:first-child {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.52px;
        text-align: left;
    }

    .blog__item-date p:last-child {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.52px;
        text-align: right;
    }
}

@media (max-width: 666px) {
    .blog__item-picture {
        width: 100%;
        display: flex;
        justify-content: center;
        height: auto;
    }

    .blog__item {
        display: block;
    }

    .blog__item-img {
        margin-right: 0px;
    }

    .blog__item-text {
        padding: 16px;
    }

    .blog__items {
        gap: 16px;
    }
}

.banner-doctor__prof p:first-child::before {
	display: block;
	content: "";
	width: 16px;
	height: 16px;
	background: url("../img/blog/chic.png") center center no-repeat;
	background-size: cover;
    position: absolute;
    left: 0px;
    top: 2px;
}

.banner-doctor__experience p:last-child::before {
	display: block;
	content: "";
	width: 16px;
	height: 16px;
	background: url("../img/blog/calend.png") center center no-repeat;
	background-size: cover;
    position: absolute;
    left: 0px;
    top: 2px;
}

.text-citation__doctor-job::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/blog/chic.png) center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 2px;
}

.text-citation__doctor-experience::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/blog/calend.png) center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 2px;
}

.page-blog__container {
    padding-top: 50px;
}

.page-blog__container p {
    margin-bottom: 0px;
}

.banner-text__top {
    display: flex;
    width: fit-content;
}

.banner-text__top p {
    font-size: 16px;
    font-weight: 400;
    line-height: 18.88px;
    text-align: left;
    color: #FFFFFF;
    border-radius: 10px;
    background: #FFFFFF1A;
    padding: 8px 12px;
}

.banner-text__top p:first-child {
    margin-right: 12px;
}

.banner-text__bottom h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 33.04px;
    text-align: left;
    color: #FFFFFF;
}

.page-blog__banner-doctor {
    background-color: white;
    padding: 20px 24px;
    border-radius: 10px;
}

.banner-doctor__date {
    padding-bottom: 10px;
    border-bottom: 1px solid #6170E61A;
    margin-bottom: 62px;
    display: flex;
    justify-content: space-between;
}

.page-blog__banner-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 28px;
    padding-top: 30px;
    padding-left: 30px;
}

.banner-doctor__date p {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    color: #4B5152;
}

.banner-doctor__info {
    display: flex;
}

.banner-doctor__img {
    margin-right: 20px;
}

.banner-doctor__img img {
    object-position: top;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.banner-doctor__picture {
    width: 142px;
    height: 142px;
    overflow: hidden;
    display: block;
    border-radius: 10px;
}

.banner-doctor__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
    text-align: left;
    color: #4B5152;
    margin-bottom: 16px;
}

.banner-doctor__prof {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #4B5152;
    margin-bottom: 6px;
    position: relative;
    padding-left: 24px;
}

.banner-doctor__experience {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #4B5152;
    position: relative;
    padding-left: 24px;
}

.page-blog__text-block {
    display: flex;
    margin-bottom: 60px;
}

.page-blog__text-main {
    margin-right: 60px;
    width: 71.5%;
}

.page-blog__text-img img {
    object-position: top;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.page-blog__text__picture {
    width: 275px;
    height: 404px;
    overflow: hidden;
    display: block;
    border-radius: 10px;
}

.page-blog__text-main {
    margin-right: 60px;
}

.page-blog__text-main h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 47.6px;
    text-align: left;
    margin-bottom: 20px;
    color: #4B5152;
}

.page-blog__text-main h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    text-align: left;
    color: #4B5152;
}

.page-blog__text-main p {
    color: #4B5152;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    margin-bottom: 20px;
}

.text-citation__doctor__picture {
    width: 60px;
    height: 60px;
    overflow: hidden;
    display: block;
    border-radius: 50%;
    margin-right: 16px;
}

.text-citation__doctor__picture img {
    object-position: top;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.text-citation {
    padding: 30px 30px 30px 40px;
    background-color: white;
    border-left: 3px solid #006AB5
}

.text-citation__text {
    color: #4B5152;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 25.2px;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EFF1FC
}

.text-citation__text p {
    padding-bottom: 0px;
}

.text-citation__doctor {
    display: flex;
}

.text-citation__doctor-top {
    display: flex;
    padding-right: 40px;
    border-right: 1px solid #EFF1FC
}

.text-citation__doctor-comment {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #4B5152;
    margin-bottom: 4px;
}

.text-citation__doctor-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: left;
    color: #4B5152;
}

.text-citation__doctor-job {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #4B5152;
    margin-bottom: 4px;
    padding-left: 26px;
    position: relative;
}

.text-citation__doctor-experience {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #4B5152;
    padding-left: 26px;
    position: relative;
}

.page-blog__text-main>ul>li::before {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #006AB5;
    position: absolute;
    top: 10px;
    left: 0;
}

.page-blog__text-main>ul>li {
    position: relative;
    padding-left: 20px;
    color: #4B5152;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
}

.page-blog__text-main>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 30px;
}

.text-citation__doctor-bottom {
    padding-left: 40px;
}

.page-blog__text-main>ol {
    counter-reset: list 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
}

.page-blog__text-main>ol>li::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: counter(list);
    counter-increment: list;
    width: 28px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 1;
    height: 28px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #4B5152;
    color: #4B5152;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #4B5152;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
}

.page-blog__text-main>ol>li {
    position: relative;
    padding-left: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #4B5152;
}

.page-blog__text-main table {
    overflow-x: auto;
    max-width: 100%;
}

.page-blog__text-main table::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.page-blog__literature-title {
    font-weight: 700;
    font-size: 26px;
    line-height: 140%;
    color: var(--tekst);
    margin-bottom: 30px;
}

.page-blog__literature ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
    list-style-type: none;
    counter-reset: item;
}

.page-blog__literature ol li {
    display: flex;
    gap: 12px;
    color: var(--tegi);
    opacity: 0.85;
    align-items: center;
}

.page-blog__literature ol li::before {
    content: counter(item);
    counter-increment: item;
    display: block;
    min-width: -moz-max-content;
    min-width: max-content;
    border: none;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #006AB5;
    opacity: 0.4;
}

.page-blog__literature-bottom {
    display: flex;
    gap: 20px;
}

.page-blog__literature-item {
    flex: 1 0 40%;
    border-radius: 10px;
    padding: 20px;
    background: white;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: var(--tekst);
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.full-stars {
    text-align: center;
}

.full-stars .rating-group {
    display: inline-flex;
}

.full-stars input {
    position: absolute;
    left: -9999px;
}

.full-stars label {
    margin: 0;
    cursor: pointer;
}

.full-stars label svg {
    margin: 0 2px;
    height: 18px;
    width: 20px;
    fill: var(--color-temno-zelenyy);
    transition: fill 0.3s;
}

.full-stars input:checked~label svg {
    fill: transparent;
}

.full-stars .rating-group:hover label svg {
    fill: var(--color-temno-zelenyy);
}

.full-stars .rating-group input:hover~label svg {
    fill: transparent;
}

.page-blog__literature-item p {
    margin: 0 !important;
}

.page-blog__literature-links {
    display: flex;
    gap: 6px;
}

.page-blog__literature-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    background: #006AB5;
}

.page-blog__literature .page-blog__literature-title {
    margin-bottom: 30px;
}

.page-blog__text-main table {
    display: block;
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.apage-blog__text-main table thead tr th:first-child {
    border-radius: 10px 0 0 0;
}

.page-blog__text-main table thead th {
    border: none;
    padding: 20px 25px;
    border-right: 1px solid #006AB51A;
    font-weight: 500;
    font-size: 14px;
    color: var(--tekst);
    background: #006AB51A;
    color: #4B5152;
}

.page-blog__text-main table tbody td {
    border-right: 1px solid #f2f8f7;
    border-bottom: 1px solid #f2f8f7;
    padding: 20px;
    font-size: 14px;
    vertical-align: top;
    background-color: white;
    color: #4B5152;
}

.page-blog__text-main table thead tr th:first-child {
    border-radius: 10px 0 0 0;
}

.page-blog__text-main table thead tr th:last-child {
    border-right: none;
    border-radius: 0 10px 0 0;
}

@media (max-width: 1270px) {
    .banner-text__bottom h1 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .page-blog__banner {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .banner-text__top {
        margin-bottom: 90px;
    }

    .text-citation__text {
        border-bottom: 0px solid #EFF1FC;
    }

    .text-citation__doctor-top {
        padding-right: 0px;
    }
}

@media (max-width: 600px) {
    .banner-doctor__picture {
        width: 50px;
        height: 50px;
    }

    .banner-doctor__img {
        margin-right: 16px;
    }

    .banner-doctor__text {
        padding: 0px;
    }

    .banner-doctor__date {
        margin-bottom: 16px;
    }

    .banner-text__top p {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.52px;
    }

    .banner-text__bottom h1 {
        font-size: 20px;
        font-weight: 700;
        line-height: 23.6px;
        text-align: left;
    }

    .page-blog__banner-text {
        padding: 10px;
    }

    .banner-doctor__date p {
        font-size: 12px;
        font-weight: 400;
        line-height: 16.8px;
        text-align: left;
    }

    .banner-doctor__name {
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
        text-align: left;
    }

    .banner-doctor__prof {
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-align: left;
    }

    .banner-doctor__experience {
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
    }

    .page-blog__banner-doctor {
        padding: 20px;
    }
}

@media (max-width: 688px) {
    .page-blog__text-main table {
        overflow-x: auto;
        max-width: 100%;
    }
}

@media (max-width: 1270px) {
    .text-citation {
        padding: 16px;
    }

    .text-citation__doctor-top {
        padding-right: 0px;
    }

    .page-blog__text-main h2 {
        font-size: 24px;
        font-weight: 700;
        line-height: 33.6px;
        text-align: left;
    }

    .page-blog__text-main h3 {
        font-size: 22px;
        font-weight: 700;
        line-height: 30.8px;
        text-align: left;
    }
}

@media (max-width: 992px) {

    .text-citation__doctor {
        display: flex;
        flex-direction: column;
    }

    .text-citation__doctor-top {
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid #EFF1FC;
    }

    .text-citation__text p {
        margin-bottom: 0px;
    }

    .text-citation__doctor-bottom {
        padding-left: 0px;
    }

    .text-citation {
        border-left: 0px solid #006AB5;
        border-top: 3px solid #006AB5;
    }

    .text-citation__doctor__picture {
        width: 50px;
        height: 50px;
    }

    .page-blog__text-main>ol>li {
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-align: left;
    }

    .page-blog__text-main>ul>li {
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-align: left;
    }

    .page-blog__text-main>ol>li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .page-blog__text-main>ol>li {
        padding-left: 34px;
    }
}

@media (max-width: 919px) {

    .page-blog__text-block {
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }

    .page-blog__text-img {
        margin-bottom: 19px;
    }

    .page-blog__text-main {
        margin-right: 0px;
        width: 100%;
    }

    .page-blog__text__picture {
        width: 100%;
    }

    .page-blog__text-main p {
        font-size: 14px;
        font-style: italic;
        font-weight: 400;
        line-height: 19.6px;
        text-align: left;
    }

    .text-citation__doctor-comment {
        font-size: 12px;
        font-weight: 400;
        line-height: 16.8px;
        text-align: left;
    }

    .text-citation__doctor-job {
        font-size: 12px;
        font-weight: 400;
        line-height: 16.8px;
        text-align: left;
    }

    .text-citation__doctor-experience {
        font-size: 12px;
        font-weight: 400;
        line-height: 16.8px;
        text-align: left;
    }

    .text-citation__doctor-name {
        font-size: 14px;
        font-weight: 500;
        line-height: 19.6px;
        text-align: left;
    }
}

.page-blog__literature_bottom {
    display: flex;
    gap: 20px;
}

@media (max-width: 717px) {
    .page-blog__text__picture {
        height: 200px;
    }
}

@media (max-width: 919px) {
    .page-blog__literature_bottom {
        flex-direction: column;

    }
}

#shareButton {
    cursor: pointer;
}

.header__dark__text__doctor-picture,
.header__dark__text__doctor-job,
.header__dark__text__doctor-experience,
.staff-block_detail-link--none {
    display: none;
}
.header__dark__text__doctor-link {
    color: white;
}









