в начало / site_files / css / main.css   

176 КБ 12.12.2023 15:44:33
@charset "UTF-8";

@media (max-width: 48em) {
  html {
    font-size: 1.3333vw;
    / / 100 / 320 * 5 vw -webkit-text-size-adjust: none;
  }

  .container {
    padding: 0 3.2rem;
    width: 100%;
  }

}

* {
  /* -webkit-box-sizing: border-box;
           box-sizing: border-box;*/
  margin: 0;
  padding: 0;
  border: 0;
  outline: none !important;
  list-style: none;
}

html {
  overflow-x: hidden;
}

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: "TT Norms";
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.blocked {
    overflow: hidden;
}
.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: "TT Norms";
  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: #455271;
  margin-bottom: calc(24 * 1px + (40 - 24) * ((100vw - 320px) / (1920 - 320)));
}

h3 {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: bold;
  font-size: calc(13 * 1px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 144.5%;
  letter-spacing: -0.025em;
  color: #455271;
  margin-bottom: calc(1 * 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) {
  .inn1 {
    display: block;
  }

  .inn2 {
    display: none;
  }
}

@media (max-width: 992px) {
  .inn1 {
    display: none;
  }

  .inn2 {
    display: block;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }

}

@media (min-width: 1270px) {
  .container {
    max-width: 1300px;
  }
}

.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: #455271;
}

.navbar__light .navbar__list a {
  color: #455271;
}

.navbar__light .navbar__search__input {
  background-color: white;
}

.navbar__light .navbar__search__input input {
  border-bottom: 1px solid #455271;
  color: #455271;
}

.navbar__dark {
  background: #455271;
}

@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: #455271;
  }
}

.navbar__dark .navbar__list a {
  color: white;
}

@media all and (max-width: 992px) {
  .navbar__dark .navbar__list a {
    color: #455271;
  }
}

.navbar__dark .navbar__search__input {
  background: #455271;
}

.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: #455271;
  -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 #455271;
  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 #455271;
  }
}

.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: "TT Norms";
  font-style: normal;
  font-weight: 300;
  font-size: 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: "TT Norms";
  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: #DF2143;
}

.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: #DF2143;
  -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: "TT Norms";
  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: #455271;
  margin-bottom: calc(15 * 1px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
  cursor: pointer;
}

.navbar .navbar__head__item a {
  color: #455271
}

.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: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(17 * 1px + (25 - 17) * ((100vw - 320px) / (1920 - 320)));
  line-height: 24px;
  color: #455271;
  margin-bottom: calc(15 * 1px + (35 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.navbar .navbar__tabitem:hover {
  color: #DF2143;
}

.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: "TT Norms";
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 * 1px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 150%;
  color: #DF2143;
  -webkit-transition: .3s;
  transition: .3s;
}

.navbar .navbar__phone:hover {
  color: #D74E7B;
}

.navbar .navbar__email {
  display: block;
  font-family: "TT Norms";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 140%;
  color: #455271;
  margin-bottom: calc(22 * 1px + (32 - 22) * ((100vw - 320px) / (1920 - 320)));
}

.navbar .navbar__email:hover {
  color: #D74E7B;
}

.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: TT Norms;
  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: TT Norms;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search .navbar__search__input :-ms-input-placeholder {
  font-family: TT Norms;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search .navbar__search__input ::-ms-input-placeholder {
  font-family: TT Norms;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search .navbar__search__input ::placeholder {
  font-family: TT Norms;
  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 #455271;
}

.navbar .navbar__search__md button {
  background-color: transparent;
}

.navbar .navbar__search__md input {
  width: 100%;
  padding: 0px 15px;
  background-color: transparent;
  font-family: TT Norms;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #455271;
}

.navbar .navbar__search__md ::-webkit-input-placeholder {
  font-family: TT Norms;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search__md :-ms-input-placeholder {
  font-family: TT Norms;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search__md ::-ms-input-placeholder {
  font-family: TT Norms;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.navbar .navbar__search__md ::placeholder {
  font-family: TT Norms;
  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 #DF2143;
  font-family: "TT Norms";
  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: #DF2143;
  -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: #DF2143;
  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: 147vh;
  max-height: 865px;
}

@media all and (max-width: 1050px) {
  .header {
    max-height: 1125px;
  }
}

.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-top: 90px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(119, 137, 178, 0.8));
}

< ?

/*padding: calc(70 * 1px + (115 - 70) * ((100vw - 320px) / (1920 - 320))) 0 calc(22 * 1px + (115 - 22) * ((100vw - 320px) / (1920 - 320))) 0; */
?>.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: "TT Norms";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #DF2143;
  margin: 10px 0;
}

.header__phone:hover {
  color: #D74E7B;
}

.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: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(14 * 1px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 140%;
  color: #000000;
}

.header__title {
  max-width: 600px;
  width: 100%;
  font-family: "TT Norms";
  font-style: normal;
  font-weight: bold;
  font-size: calc(28 * 1px + (60 - 28) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  color: #536274;
  padding-bottom: calc(11 * 1px + (25 - 11) * ((100vw - 320px) / (1920 - 320)));
}

.header__text {
  max-width: 440px;
  width: 100%;
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(16 * 1px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 152.5%;
  color: #536274;
  /* 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: #DF2143;
  -webkit-box-shadow: 0px 4px 9px rgba(223, 33, 67, 0.26);
  box-shadow: 0px 4px 9px rgba(223, 33, 67, 0.26);
  font-family: "TT Norms";
  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: #D74E7B;
}

.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 #455271;
  font-family: "TT Norms";
  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: #455271;
  -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: #455271;
  color: white;
}

.call__btn:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

/* CUSTOM STYLES start */

/* HEADER USLUGI CUSTOM start */
.header_bg_uslugi {
  height: 720px;
  position: relative;
}

.header_wrapper_uslugi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(119, 137, 178, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.header_title_uslugi {
  width: 100%;
}

.title_usluga {
  color: #455271;
  font-weight: 700;
  font-size: 56px;
  line-height: 130%;
}

.text_usluga {
  color: #455271;
  font-size: 24px;
  line-height: 130%;
  font-weight: 500;
}

.header_hero_content {
  display: flex;
  padding: 0 20px;
}

.header_hero_content h2 {
  color: #000;
}

.header_zapis {
  width: 385px;
  background: #fff;
  padding: 32px 16px;
  margin-bottom: 16px;
  /* height: 385px;*/
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.header_zapis_text {
  width: 80%;
}

.header_uslugi {
  width: 240px;
  background: #fff;
  padding: 32px 16px;
  margin-bottom: 16px;
  font-size: 16px;
  /*height: 285px;*/
  margin-top: 32px;
  margin-left: 118px;
}

.header_uslugi img {
  display: inline;
  float: right;
}

.header_uslugi img {
  display: inline;
  float: right;
}

.header_hero_text {
  font-size: 28px;
  font-weight: 400;
  line-height: 19px;
}

.header_uslugi li {
  font-weight: 400;
  line-height: 19px;
  color: #455271;
  padding-bottom: 12px;
}

.zapis_input {
  background: #FFFFFF;
  border: 1px solid #000000;
  padding: 10px 15px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.zapis_button {
  background: #DF2143;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #fff;
  font-size: 18px;
  margin-bottom: 32px;
}

.header_zapis_personal {
  width: 80%;
  text-align: start;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

@media all and (max-width: 1160px) {
  .header_bg_uslugi {
    height: 990px;
  }

  .header_title_uslugi {
    margin: auto;
    max-width: 385px;
  }

  .header_hero_content {
    flex-direction: column;
    align-items: center;
  }

  .header_zapis {
    /* width: 65%; */
    height: 470px;
    width: auto;
  }

  .header_uslugi {
    width: 100%;
    max-width: 385px;
    margin-left: 0px;
  }
}

@media all and (max-width: 665px) {
  .header_bg_uslugi {
    height: 1300px;
  }

  .title_usluga {
    font-size: 38px;
  }
}


/* REVIEWER CUSTOM start */


.reviewer_img {
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.reviewer_text {
  background-color: #455271;
  color: #fff;
  padding: 16px;
  margin-bottom: 32px;
}

.reviewer_text_proveril {
  margin-bottom: 3px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.reviewer_text_bold {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}

/* REVIEWER CUSTOM stop */

/* CUSTOM STYLES stop */

/* ------------------------------------------------------------------ */
/* HEADER */
.text__red {
  color: #DF2143 !important;
  font-family: "TT Norms";
}

.text__bold {
  font-weight: 700 !important;
}

.text__thin {
  font-weight: 300 !important;
}

.text__small {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  color: #C4C5C5;
}

.text__16 {
  font-family: "TT Norms";
  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: #455271;
}

.text__20 {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 140%;
  color: #536274;
  text-align: left;
  text-justify: inter-word;
}

.text__20 a,
.city_names {
  color: #DF2143;
}

.text__20__bold {
  font-family: "TT Norms";
  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: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(20 * 1px + (28 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 100%;
  color: #455271;
}

blockquote {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(12 * 1px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 140%;
  color: #455271;
  border-left: calc(4 * 1px + (8 - 4) * ((100vw - 320px) / (1920 - 320))) solid #DF2143;
  padding: 0 24px;
}

.block__text blockquote {
  color: #fff;
}

.text__28 {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(20 * 1px + (28 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 130.5%;
  color: #455271;
}

.text__30 {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(26 * 1px + (30 - 26) * ((100vw - 320px) / (1920 - 320)));
  line-height: 130.5%;
  color: #455271;
}

.text__32 {
  font-family: "TT Norms";
  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: #455271;
}

.title__28 {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: bold;
  font-size: calc(19 * 1px + (28 - 19) * ((100vw - 320px) / (1920 - 320)));
  line-height: 100%;
  color: #455271;
}

@media all and (max-width: 767px) {
  .title__28 {
    text-transform: uppercase;
    line-height: 144%;
  }
}

.title__38 {
  font-family: TT Norms;
  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: "TT Norms";
  font-style: normal;
  font-weight: thin;
  font-size: calc(18 * 1px + (23 - 18) * ((100vw - 320px) / (1920 - 320)));
  line-height: 100%;
  color: #DF2143;
}

.title__46 {
  font-family: "TT Norms";
  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: #455271;
}

.title__46__red {
  font-family: "TT Norms";
  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: #DF2143;
}

.title__100 {
  font-family: "TT Norms";
  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: "TT Norms";
  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;
  padding-left: 10px;
}

.block__text__32 {
  font-family: "TT Norms";
  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 #DF2143;
  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: TT Norms;
  font-style: normal;
  font-weight: 300;
  font-size: calc(14 * 1px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  color: #455271;
}

.info__title {
  font-family: "TT Norms";
  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: #455271;
}

.info__title__red {
  font-family: "TT Norms";
  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: #DF2143;
}

.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: "TT Norms";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #DF2143;
  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: "TT Norms";
  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 #DF2143;
  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: "TT Norms";
  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: "TT Norms";
  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 #DF2143;
}

.card__mark>div {
  line-height: 140%;
}

.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: #FF8399;
}

.card__mark::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -5px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background-color: #DF2143;
}

.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: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #455271;
}

.ph__input {
  background-color: #fff;
  height: 56px;
  padding: 20px 16px;
  margin-bottom: 10px;
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 100%;
  color: #455271;
}

::-webkit-input-placeholder {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #C4C5C5;
}

:-ms-input-placeholder {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #C4C5C5;
}

::-ms-input-placeholder {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #C4C5C5;
}

::placeholder {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #C4C5C5;
}

.mailing__submit {
  padding: 20px 0;
  background: #DF2143;
  -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: "TT Norms";
  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: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.mailing__submit:hover {
  background-color: #D74E7B;
}

.mailing__submit:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mailing__text {
  font-family: "TT Norms";
  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;
  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: "TT Norms";
  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: #455271;
}

.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: "TT Norms";
  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: "TT Norms";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #455271;
}

.staff__title__red {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #DF2143;
  margin-bottom: 20px;
}

.staff__text {
  font-family: "TT Norms";
  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: #455271;
  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: "TT Norms";
  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: #455271;
  margin-bottom: calc(20 * 1px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.staff__info__slider__text {
  font-family: "TT Norms";
  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: #455271;
  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%;
  margin-top: 30px;
}

.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: #DF2143;
  margin-bottom: 20px;
}

.keepin__title {
  font-family: TT Norms;
  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: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 120%;
  color: #000000;
  margin-bottom: calc(6 * 1px + (11 - 6) * ((100vw - 320px) / (1920 - 320)));
}

.keepin__link {
  display: block;
  font-family: "TT Norms";
  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: #D74E7B;
}

.keepin__schedule__title {
  font-family: "TT Norms";
  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: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(14 * 1px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  color: #000000;
  margin-bottom: calc(11 * 1px + (20 - 11) * ((100vw - 320px) / (1920 - 320)));
}

.keepin__email {
  display: block;
  font-family: "TT Norms";
  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__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: "TT Norms";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
  color: #455271;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer__logo:hover {
  color: #D74E7B;
}

.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: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.50);
  cursor: pointer;
}

.footer__link:hover {
  text-decoration: underline;
  color: #D74E7B;
}

.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: "TT Norms";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 140%;
  color: #455271;
  margin-bottom: calc(22 * 1px + (32 - 22) * ((100vw - 320px) / (1920 - 320)));
}

.footer__email:hover {
  color: #D74E7B;
}

@media all and (max-width: 767px) {
  .footer__email {
    text-align: center;
  }
}

.footer__phone {
  display: block;
  font-family: "TT Norms";
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 * 1px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 150%;
  color: #DF2143;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer__phone:hover {
  color: #D74E7B;
}

@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 #455271;
}

@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: "TT Norms";
  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: #455271;
}

.footer__rights__right {
  font-family: "TT Norms";
  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: #455271;
}

.footer__info__adress {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: calc(16 * 1px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 120%;
  color: #455271;
  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: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  padding: 25px 0;
}

.breadcrumbs li {
  margin-right: 5px;
}

.breadcrumbs li a {
  color: #DF2143;
}

@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: "TT Norms";
  padding-right: 10px;
  padding-left: 10px;
}

.breadcrump__item a {
  font-family: "TT Norms";
  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: "TT Norms";
  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: "TT Norms";
  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: 991px) {
  .service__card__wrap {
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
  }
}

@media all and (max-width: 767px) {
  .service__card__wrap {
    -webkit-box-flex: 30%;
    -ms-flex: 30%;
    flex: 30%;
    max-width: 30%;
    transform: translateY(-10%);
    -webkit-transform: translateY(-10%);
  }

  .service__card {
    margin-bottom: 0;
  }
}

@media all and (max-width: 575px) {
  .service__card__wrap {
    -webkit-box-flex: 40%;
    -ms-flex: 40%;
    flex: 40%;
    max-width: 40%;
  }
}

.skill__card__ratio {
  border-radius: 11px;
  -webkit-transition: .3s;
  transition: .3s;
}

.service__card__title {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #455271;
}

.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: "TT Norms";
  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: #455271;
  margin-bottom: 23px;
}

.info__list__item {
  display: block;
  font-family: "TT Norms";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #455271;
  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: "TT Norms";
  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: #455271;
  opacity: 0.58;
}

.info__list__subtitle__red {
  position: relative;
  z-index: 1;
  font-family: "TT Norms";
  font-style: normal;
  font-weight: bold;
  font-size: calc(12 * 1px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: 15px;
  text-transform: uppercase;
  color: #DF2143;
  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: #455271;
  font-family: "TT Norms";
  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 #455271;
  -webkit-transition: .3s;
  transition: .3s;
}

.info__list__btn:hover {
  background: transparent;
  color: #455271;
}

.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: "TT Norms";
  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: #455271;
}

.benefits__text {
  font-family: "TT Norms";
  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: #455271;
}

.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: "TT Norms";
  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: #DF2143;
}

.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: 900px;
  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: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  color: #455271;
}

.popup__list input {
  height: 56px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 22px;
  font-family: "TT Norms";
  color: #455271;
  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: #DF2143;
  -webkit-box-shadow: 0px 4px 9px rgba(223, 33, 67, 0.26);
  box-shadow: 0px 4px 9px rgba(223, 33, 67, 0.26);
  font-family: "TT Norms";
  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: #D74E7B;
}

.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: "TT Norms";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: #455271;
}

.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: #455271;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.gotop span {
  font-family: "TT Norms";
  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: "TT Norms";
  font-size: 40px;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  color: #455271;
}

.marg_top {
  margin-top: 75px;
}

.error404 {
  text-align: center
}

.error404 a {
  color: #455271
}

.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: "TT Norms";
  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: #455271;
}

.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: "TT Norms";
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: #DF2143;
  padding: 20px 0;
}

.price_table tr {
  background: #fff;
  font-family: "TT Norms";
  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: #455271;
}

.cell_set_name {
  margin: 7px;
}

.cell_set_price {
  margin: 7px;
}

.price_btn {
  max-width: 242px;
  /* width: 100%; */
  height: 40px;
  border: 1px solid #DF2143;
  font-family: "TT Norms";
  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: #DF2143;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: white;
  padding: 5px;
  /* padding: calc(5 * 1px + (15 - 5) * ((100vw - 320px) / (1920 - 320))); */
}

.price_table a {
  color: #DF2143;
  font-size: 20px;
}

.price_btn:hover {
  background-color: #DF2143;
  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: #DF2143;
}

.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;
  padding-bottom: 20px;
  padding-left: 52px;
  color: #4b5152;
}

.text__20 li {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid #DF2143;
}

.text__20 li>div {
  line-height: 140%;
}

.text__20 li:last-child {
  border-left: 2px solid transparent;
}

.text__20 li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  min-width: 16px;
  min-height: 16px;
  border-radius: 50%;
  background-color: #FF8399;
}

.text__20 li::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -5px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background-color: #DF2143;
}

.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;
}

/* .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%, #DF2143 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%, #DF2143 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: #df2143 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: "TT Norms";
}

@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: #DF2143;
  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; */
  border-radius: 10px;
  margin: 0px;
  max-width: initial;
}

.form_control {
  margin: initial;
}

.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;
}

.regions_link {
  color: #DF2143;
  text-decoration: underline;
}

.regions_link:hover {
  text-decoration: none
}


.city-list {
  max-height: 600px;
  /* display: grid; */
  /* max-width: 400px; */
  /* grid-template-columns: 47% 47%; */
  overflow: auto;
  /* gap: 5px; */
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
}

.city-list a {
  display: inline-block;
  font-size: 14px;
  text-decoration: underline;
  position: relative;
  flex: 0 1 33.33%;
  text-align: center;
}

.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: #455271;
  font-size: 16px;
  font-family: "TT Norms";
}

.district-select select option {
  color: #455271;
  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 #DF2143;
}

.site-nav a {
  color: #455271;
}

.site-nav li {
  position: relative;
  line-height: 25px;
  color: #455271;
}

.site-nav li:before {
  content: '';
  height: 6px;
  width: 6px;
  position: absolute;
  left: -10px;
  top: 9px;
  border-radius: 50px;
  box-sizing: border-box;
  background-color: #DF2143;
}

.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;
  align-items: center;
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
}

@media screen and (min-width: 520px) {
  .search-form-footer {
    display: flex;
    align-items: center;
  }

  .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: #455271;
}

.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: #455271;
}

.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: #455271;
}

.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: TT Norms;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #455271;
}

.advantages-list-item-text {
  font-family: TT Norms;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #455271;
}

.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: TT Norms;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #455271;
}

.advantages-list-item-text {
  font-family: TT Norms;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #455271;
}


@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: #455271;
  padding-top: 16px;
  padding-bottom: 16px;
}

.our_chambers-title {
  font-family: TT Norms;
  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: #DF2143;
}

.our_chambers-slider-text {
  padding: 16px;
  background: #FFFFFF;
}

.our_chambers-slider-text-title {
  font-family: TT Norms;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #455271;
}

.our_chambers-slider-text-list {
  padding-left: 19px;
}

.our_chambers-slider-text-list li {
  position: relative;
  font-family: TT Norms;
  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 #DF2143;
}

.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: #DF2143;
  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: TT Norms;
  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: TT Norms;
  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: #DF2143;
  height: 56px;
}

.our_chambers-slider-btn-order a {
  font-family: TT Norms;
  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: TT Norms;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #455271;
  text-align: center;
}

.our_chambers-slider-btn-order-wa a {
  color: #455271;
}

.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: '';
}

.mfp-fade-our_chambers .mfp-close {
  color: #DF2143 !important;
  font-size: 40px;
}

.alt_div {
  width: 100%;
  max-width: 200px;
}

.alt_div input,
.alt_div textarea {
  width: 100%;
}

.alt_div textarea {
  height: 112px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 22px;
  font-family: "TT Norms";
  color: #455271;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
}

.col_3_display {
  display: none !important;
}

@media (max-width: 992px) {
  .img_display_1 {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .img_display_2 {
    display: none !important;
  }

  .col_3_display {
    display: block !important;
  }
}

.block__caption {
  padding-top: 0;
}

.block__text_1 {
  background-color: #fff;

  padding: 0px 30px 25px 30px;
  padding: calc(40 * 1px + (60 - 40) * ((100vw - 320px) / (1920 - 320))) calc(25 * 1px + (45 - 25) * ((100vw - 320px) / (1920 - 320)));
  color: #536274;
  border-left: calc(4 * 1px + (8 - 4) * ((100vw - 320px) / (1920 - 320))) solid #DF2143;
}

.block__text {
  color: #536274;
}

.card__mark__white::before {
  background-image: linear-gradient(90deg, #fff 0.00%, #DF2143 0.0%);
}

.card__mark__white {
  border-left: 2px solid red;
}

.importent {
  border-left: 0;
  padding: 0;
}

.mailing {
  margin: 80px 0 80px 0;
}

.block__text_1 blockquote {
  color: #536274;
  border-left: 0;

}

.block__caption h2 {
  color: #536274;
}

.col_2 {
  max-width: 100%;
}

.block__caption {}

.block__caption h2 {
  text-align: left;
}


.text__20_vers li {
  border-left: 4px solid #B9B9B9;
  padding-left: 8px;
  text-align: initial;
}

.test {
  border-left: calc(4 * 1px + (8 - 4) * ((100vw - 320px) / (1920 - 320))) solid #DF2143;
  padding-left: 16px;
}

.text__30_mar {
  margin-left: 4%;
  margin-bottom: 4%;
}

.test_zakaz {
  width: 100%;
  display: flex;
}

.text__20_vers {
  height: 25rem;
  margin-top: 22px;
}

.col_3_flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .text__20_vers {
    height: 17rem;
    margin-top: 22px;
  }
}


@media (max-width: 992px) {
  .text__20_vers {
    height: 19em;
    margin-top: 22px;
  }

  .col_3_flex {
    max-width: 100%;
  }

  .col_3_flex:last-child .text__20_vers {
    height: initial;
  }
}

.header__caption__wrap {
  padding-top: 120px;
  height: calc(100% - 30px);
}

.block__text li {
  color: #536274 !important;
}

@media (max-width: 505px) {
  .header_bg_uslugi {
    height: 1090px;
  }
}

.navbar {
  border-top: 4px solid #455271;
  width: 100%;
  position: relative;
  min-height: initial;
  top: 0;
  z-index: 1010;
  -webkit-transition: .5s;
  transition: .5s;
}

.consultation {
  box-sizing: border-box;
  padding: 0.5em 1em;
  background-color: #026060;
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultation__text {
  margin: 0;
  color: #fff;
  font-size: 1.1em;
  line-height: 120%;
  text-align: center;
}

.consultation__text-decor {
  padding: 0 3px;
  border: 1px solid #fff;
  border-radius: 3px;
}

@media (max-width: 575px) {
  .consultation__text {
    font-size: 1em;
  }
}


.breadcrump {
  margin-top: 0 !important;
}

.article_img {
  width: 40%;
  float: right;
  padding: 15px;
}

@media(max-width: 700px) {
  .article_img {
    width: 100%;
    float: inherit;
  }
}

html {
  scroll-behavior: smooth;
}

.menu_container {
  max-width: 648px;
  margin-top: 40px;
}

.menu {}

.menu-tittle {
  background: #DF2143;
  text-align: left;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 16px 0px 16px 32px;
}

.menu-tittle h3 {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
  color: #FFFFFF;
}

.menu-elements-container {
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.menu-elements {
  margin: 0;
}

.menu-element {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #455271;
  text-decoration: none;
}

.menu-element:hover {
  color: #DF2143;
  cursor: pointer;
}

.menu-element-item {
  list-style: none;

}

@media (max-width: 768px) {
    .header_fm_container_f {
        margin-bottom: 0 !important;
        margin-top: 20px;
    }
    .header-plashki {
        height: auto;
    }
    .info__sale {
        height: 100%;
    }
    header {
      
        padding: 0 !important;

    }
    header .nav_bar-new  {
        position: 20px;
        padding-bottom: 20px;
        max-height: calc(100vh - 103px);
        overflow: auto;
    }
    header.scrolled .nav_bar-new {
        max-height: calc(100vh - 20px);
    }

  .menu_container {
    margin: 0 auto;
    max-width: 335px;
    margin-top: 25px;
  }

  .header_zapis {
    height: 325px
  }

  .menu-elements-container {
    padding: 16px;
  }

  .menu-tittle h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 140%;
  }

  .menu-tittle {
    padding: 16px 0px 16px 16px;
  }

  .menu-element {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
  }

}
@media (max-width: 440px) {
  
    .info__sale {
        height: auto;
    }
    .info__sale p {
        max-width: 100vw;
    }
    .header-plashki {
        height: auto;
    }
    header .nav_bar-new  {
        max-height: calc(100vh - 118px);
    }

}
@media (max-width: 405px) {
    .header-plashki {
        height: auto;
    }
    header .nav_bar-new  {
        max-height: calc(100vh - 139px);
    }
}
h3 {
  font-family: "TT Norms";
  font-style: normal;
  font-weight: bold;
  font-size: calc(13 * 1px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 144.5%;
  letter-spacing: -0.025em;
  color: #455271;
  margin-bottom: calc(1 * 1px + (40 - 24) * ((100vw - 320px) / (1920 - 320)));
  ;
}



.header_fm {
  display: flex;
  justify-content: space-between;
}

.header_fm_container_f {
  display: flex;
  margin-bottom: 20px;
}

.header_fm_container_l {
  display: flex;
}


.bar1,
.bar2,
.bar3 {
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  transform: rotate(35deg);
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  transform: rotate(-35deg) translate(-8px, -1px);
}

.logo_container {

  margin-right: 30px;
}

.number_container {
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}

.number_container_hotline {
  display: flex;
  flex-direction: column;
  margin-right: 60px;
}


.adress_container-text {
  margin-bottom: 5px;
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #333333;
}

.adress_container-adress {
  margin: 0;
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  text-decoration-line: underline;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #DF2143;
}

.number_container-text {
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #333333;
}

.number_container-phone {
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #333333;
}

.number_container_hotline-text {
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #333333;
}

.number_container_hotline-phone {
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #333333;
}


.header_button-call {
  /* padding: 10px 30px; */
  width: 164px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DF2143;
  text-decoration: none;
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #FFFFFF;
  margin-right: 5px;
  text-align: center;
}

header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.header_button {
  display: flex;
}

.nav_bar-new {
  width: 100%;
}

.number_container_mob-phone {
  display: none;
}

.mobile_container {
  display: none;
}


.header-container_new-nav-list {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  /* padding: 15px 0;*/
}

.menu_arrow {
  margin: 0;
  border: none;
  background-color: #fff;
}

.mobile_link_form-link {
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  text-decoration-line: underline;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #DF2143;
}


.header-container_new-nav-list-item {
  padding: 0;
  margin: 0;
  position: relative;
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #333333;
}

.header-container_new-nav-list-item-link svg {
  transition: transform .4s ease-in-out;
}


/*.header-container_new-nav-list-item:not(:last-child) {
        margin-right: 49px;
    }*/

.header-container_new-nav-list-item-link-first {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  padding: 0;
  text-align: center;
  height: 35px;
  background: rgba(223, 33, 67, 0.15);
  text-decoration: none;
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #DF2143;
  transition: all 0.5s ease;
}

.header-container_new-nav-list-item-link-first:hover {
  background: #455271;
  color: #FFFFFF;
}

.header-container_new-nav-list-item-link-first svg {
  margin-right: 8px;
}

.someclass {
  transition: all 0.5s ease;
}

.header-container_new-nav-list-item-link-first:hover .someclass {
  fill: rgb(253, 253, 253);
}

.adress_container {
  display: flex;
  flex-direction: column;
}

.submenu_new-list {
  display: none;
  position: absolute;
  z-index: 999;
  list-style: none;
  padding: 20px 25px;
  width: max-content;
  left: 0;
  top: 100%;
  background: #EBF3FA;
}

.submenu_new-list li a {
  text-decoration: none;
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #333333;
}

.header-container_new-nav-list-item-link {
  display: flex;
  white-space: nowrap;
  align-items: center;
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #333333;
  text-decoration: none;
}

.header-container_new-nav-list-item-link svg {
  margin-left: 5px;
}

.header-container_new-nav-list-item-link .header_button-call {
  display: block;
}

.header-container_new-nav-list-item-container {
  height: 100%;
  padding-bottom: 15px;
}

.header-container_new-nav-list-item.hover-mob>.submenu-container_new>.submenu_new>.submenu_new-list {
  display: block;
}

.header-container_new-nav-list-item.hover>.submenu-container_new>.submenu_new>.submenu_new-list {
  display: block;
}

.header-container_new-nav-list-item.hover>.header-container_new-nav-list-item-container>.btn-arrow-menu>.arrow-item {
  transform: rotate(-180deg);
}


.submenu_new-list-item-link {
  display: block;
  font-family: 'TT Norms';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  font-feature-settings: 'pnum'on, 'lnum'on;
  color: #333333;
  transition: color 0.5s ease;
}

.submenu_new-list-item-link {
  margin-bottom: 15px;
}

.submenu_new-list-item-link:hover {
  color: #DF2143;
}

.mobile_menu-item {
  display: none;
}

.mobile-menu-container-information {
  display: flex;
  margin-bottom: 25px;
}

.mobile-menu-container {
  display: none;
}

.header-container_new-nav-list-item-link:hover .btn-svg {
  transform: rotate(-180deg);
}






@media (max-width: 1600px) {
  .container {
    max-width: 1300px;
  }
}

@media (max-width: 1266px) {
  /* .header-container_new-nav-list-item {
            margin-right: 25px;
        }*/
}

@media (max-width: 1150px) {
  .container {
    max-width: 1120px;
  }

  /* .header-container_new-nav-list-item:not(:last-child) {
            margin-right: 10px;
        }*/
}


@media (max-width: 992px) {
  .container {
    max-width: 970px;
  }

  .number_container_hotline {
    margin-right: 10px;
  }

  .number_container {
    margin-right: 5px;
  }

  /*.header-container_new-nav-list-item:not(:last-child) {
            margin-right: 15px;
        }*/

  .header-container_new-nav-list-item-link {
    font-size: 10px;
  }

  .header-container_new-nav-list-item-link-first {
    width: 74px;
    height: 26px;
  }



  .header-container_new-nav-list {
    justify-content: space-between;
  }
}


@media (max-width: 768px) {
  .container {
    max-width: 750px;
  }

  .number_container {
    display: none;
  }

  .header_button-call {
    padding: 10px 15px
  }

  .adress_container {
    display: none;
  }

  .header-container_new-nav {
    display: none;
  }

  .container {
    max-width: 320px;
  }

  .header_button {
    display: none;
  }

  .number_container_hotline {
    display: none;
  }

  .logo_item {
    width: 150px;
    height: 31px;
    margin-bottom: 15px;
  }

  .number_container_mob-phone {
    display: initial;
    font-family: 'TT Norms';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    font-feature-settings: 'pnum'on, 'lnum'on;
    color: #333333;
  }

  .header_fm {
    display: initial;
  }

  .header_fm_container_f {

    justify-content: space-between;
  }

  .logo_container {
    margin-right: initial;
    display: flex;
    flex-direction: column;
  }

  .mobile_container {
    display: initial;
  }

  .mobile-menu-container {
    display: initial;
  }


  .mobile_burger {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0px;
  }

  .telegram_svg {
    margin-right: 20px;
  }

  .mobile_link_form-i {
    font-family: 'TT Norms';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    text-decoration-line: underline;
    font-feature-settings: 'pnum'on, 'lnum'on;
    color: #DF2143;
  }

  .first-menu-element {
    display: none;
  }

  .nav-open {
    display: initial;
  }

  .header-container_new-nav-list {
    flex-direction: column;
    align-items: initial;
  }

  .header-container_new-nav-list-item {
    border-bottom: 1px solid #D9E4EE;
  }

  .submenu_new-list {
    position: initial;
  }

  .header-container_new-nav-list-item:not(:last-child) {
    margin-right: 0px;
  }

  .header-container_new-nav-list-item-link {
    justify-content: space-between;
    font-family: 'TT Norms';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    font-feature-settings: 'pnum'on, 'lnum'on;
    color: #333333;
  }

  .submenu_new-list-item-link {
    font-family: 'TT Norms';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    font-feature-settings: 'pnum'on, 'lnum'on;
    color: #333333;
  }

  .submenu_new-list {
    padding: 15px 0;
    background: initial;
  }


  .header-container_new-nav-list-item-container {
    padding: 15px 0;
  }

  .mobile_menu-item {
    display: initial;
  }

  .submenu_new-list-item-link-mobile {
    display: block;
    font-family: 'TT Norms';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    font-feature-settings: 'pnum'on, 'lnum'on;
    color: #333333;
    text-decoration: none;
    padding: 15px 0;
  }

  .number_container-mobile {
    margin-right: 25px;
  }

  .number_container-text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    white-space: nowrap;
  }

  .number_container-phone {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    white-space: nowrap;
  }

  .number_container_hotline-text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    white-space: nowrap;
  }

  .number_container_hotline-phone {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    white-space: nowrap;
  }

  .info__caption {
    max-width: initial !important;
    margin-right: initial !important;
  }

  .menu_container {
    max-width: 335px !important;
  }

  .card__mark>div {
    line-height: 160%;
  }

  .card__mark__white>div {
    line-height: 160%;
  }
}

@media (max-width: 550px) {}


@media (max-width: 350px) {
  .container {
    max-width: 320px;
  }
}

.left_side_item {
  left: -150px;
}

.result_wrapper {
  padding: 24px;
  background-color: #fff;
  max-width: 500px;
  border-radius: 10px;
}

.mfp-wrap {
  overflow: initial !important;
}








  .popup  {
 height: 100vh;
 left: 50%;
 opacity: 0;
 pointer-events: none;
 position: fixed;
 top: 50%;
 transform: translate3d(-50%,  -50%,  0);
 width: 100%;
 z-index: 2000;
 transition: opacity 0.4s;
 background-color: #0b0b0ba9;
 /*-webkit-backdrop-filter: blur(4px);
 backdrop-filter: blur(4px);*/
 display: none;
  }
  .popup.popup-response {
    z-index: 10000;
  }
  .popup.active  {
 display: block;
  }
  .popup__body  {
 width: 100%;
 min-height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 60px 15px 20px;
  }
  .popup.open  {
 opacity: 1;
 pointer-events: all;
  }
  .popup__content  {
 width: 100%;
 max-width: 532px;
 border-radius: 30px;
 position: relative;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 10px;
 padding: 40px 24px 24px;
 scale: 0.3;
 transition: scale 0.4s;
 background-color: #fff;
 box-shadow: 0 0 30px 0 rgba(255,  255,  255,  0.1);
  }
  .popup.open .popup__content  {
 scale: 1;
  }
  .close-popup  {
 position: absolute;
 top: -16px;
 right: -16px;
 width: 49px;
 cursor: pointer;
 height: 49px;
 transition: width 0.3s linear,  height 0.3s linear,  top 0.3s linear,  right 0.3s linear;
  }


















@font-face {
  font-family: 'TT Norms';
  src: local('TT Norms Light'), local('TT Norms-Light'),
    url('/netcat_template/template/redesign/fonts/TTNorms-Light.woff2') format('woff2'),
    url('/netcat_template/template/redesign/fonts/TTNorms-Light.woff') format('woff');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TT Norms';
  src: local('TT Norms Medium'), local('TT Norms-Medium'),
    url('/netcat_template/template/redesign/fonts/TTNorms-Medium.woff2') format('woff2'),
    url('/netcat_template/template/redesign/fonts/TTNorms-Medium.woff') format('woff');
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'TT Norms';
  src: local('TT Norms Bold'), local('TT Norms-Bold'),
    url('/netcat_template/template/redesign/fonts/TTNorms-Bold.woff2') format('woff2'),
    url('/netcat_template/template/redesign/fonts/TTNorms-Bold.woff') format('woff');
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}

/* glob */

body {
  font-family: 'TT Norms', sans-serif;
}

body.lock {
  overflow: hidden;
}

main {
  min-height: 100vh;
}

input::-webkit-input-placeholder {
  color: #455271;
  opacity: 0.5;
}

input::-moz-placeholder {
  color: #455271;
  opacity: 0.5;
}

input:-ms-input-placeholder {
  color: #455271;
  opacity: 0.5;
}

input::-ms-input-placeholder {
  color: #455271;
  opacity: 0.5;
}

input::placeholder {
  color: #455271;
  opacity: 0.5;
}

.btn-mb {
  display: none;
}

.accor-full {
  max-height: 0;
  -webkit-transition: max-height .2s ease;
  -o-transition: max-height .2s ease;
  transition: max-height .2s ease;
  overflow: hidden;
}

.content-body p {
  color: #455271;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px;
}

.content-body p:last-child {
  margin-bottom: 0;
}

.content-body a {
  color: #E42145;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px;
}

.content-body h1 {
  color: #FFF;
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  line-height: 60px;
}

.content-body h2 {
  color: #1C2230;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 45px;
}

.content-body h2 span {
  color: #6A758D;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
}

.content-body h3 {
  color: #1C2230;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 25px;
  margin-top: 60px;
}

.content-body h3:first-child {
  margin-top: 0;
}

.content-body h3 span {
  color: #6A758D;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.content-body ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  gap: 5px;
  margin-bottom: 25px;
  padding-left: 15px;
}

.content-body ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  gap: 5px;
  margin-bottom: 25px;
  padding-left: 15px;
}

.content-body ul li {
  color: #455271;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  list-style: disc;
}

.content-body ol li {
  color: #455271;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  list-style: disc;
}

.content-body ul li::marker {
  width: 6px;
  height: 6px;
  color: #E42145;
}

.content-body ol li::marker {
  width: 6px;
  height: 6px;
  color: #E42145;
}

.content-body .bold {
  font-weight: 700;
}

.content-body blockquote {
  text-align: center;
  color: #FFF;
  background-color: #232D44;
  padding: 35px 110px;
  border-radius: 15px;
  position: relative;
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  margin-top: 45px;
}

.content-body blockquote::after {
  content: url(/netcat_template/template/redesign/img/shtrih.svg);
  position: absolute;
  top: -10px;
  left: 30px;
}

.content-body blockquote::before {
  content: url(/netcat_template/template/redesign/img/shtrih.svg);
  position: absolute;
  bottom: -10px;
  right: 30px;
}

.bg-grey {
  background-color: #F5F9FC;
  padding: 150px 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.page__service .mb {
  margin-bottom: 100px;
}

.mb {
  margin-bottom: 150px;
}

.mr {
  margin-right: 60px;
}

.btn-pink {
  border-radius: 5px;
  background-color: #DF2143;
  color: #FFF;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.btn-pink:hover {
  background-color: rgba(223, 33, 67, 0.75);
  ;
  cursor: pointer;
}

.btn-white {
  border-radius: 5px;
  background-color: #FFF;
  color: #DF2143;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.75);
  ;
}

/* contraindications */

.contraindications {
  background-color: #026060;
}

.contraindications__text {
  padding: 10px 0;
  color: #FFF;
  text-align: center;
}

/* mobilization */

.mobilization {
  background-color: #FF2200;
}

.mobilization__text {
  padding: 3px 0;
  color: #FFF;
  text-align: center;
}

/* header */


.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.header__logo {
  margin-right: 30px;
}

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

.header__right-title {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 5px;
}

.header__mob-img {
  display: none;
}

.header__left-title:first-child {
  margin-right: 30px;
}

.header__left-content:nth-child(2n) {
  margin-right: 60px;
}

.header__left-content:last-child {
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__left-content:last-child button {
  margin-right: 5px;
}

.header__left-title {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 5px;
}

.header__right-text {
  color: #DF2143;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.header__left-text {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.header__menu-burger {
  display: none;
}

.header__logo {
  margin-right: 30px;
}

.menu__list {
  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;
}

.menu__link {
  text-decoration: none;
}

.menu__link-text {
  color: #333;
  font-weight: 700;
  line-height: 20px;
}

.menu__list:first-child .menu__item:first-child .menu__link-text {
  color: #DF2143;
}

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

.menu__item:first-child {
  border-radius: 5px;
  background-color: rgba(223, 33, 67, 0.15);
  padding: 7px 20px;
}

.menu__item:first-child .menu__item-icon {
  margin-right: 8px;
}

.menu__item:first-child .menu-link {
  color: #DF2143;
}

.menu__item button {
  margin-right: 5px;
}

.menu__sub-list {
  position: absolute;
  top: 100%;
  left: 0px;
  border-radius: 10px;
  background-color: #F5F9FC;
  padding: 20px;
  min-width: 196px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin-top: 15px;
  -webkit-transition: opacity .2s ease, visiability .2s ease;
  -o-transition: opacity .2s ease, visiability .2s ease;
  transition: opacity .2s ease, visiability .2s ease;
}

.menu__item.active>.menu__sub-list-wrapper>.menu__sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.menu__item-burger {
  position: relative;
}

.menu__sub-item {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 15px;
}

.menu__sub-item a {
  color: #333;
}

.menu__sub-item:last-child {
  margin-bottom: 0;
}

nav ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 0;
}

.header__left-btn {
  padding: 10px 25px;
}

.header__left-icon {
  background-color: #EDF5FB;
  padding: 10px;
  border-radius: 5px;
}

.header__bottom-info-mobile {
  display: none;
}

/* hero */

.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%), url('/images/hero-bg.webp'), lightgray 0px -257.5px / 100% 174.15% no-repeat;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.55)), to(rgba(0, 0, 0, 0.55))), url('/images/hero-bg.webp'), lightgray 0px -257.5px / 100% 174.15% no-repeat;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%), url('<?= $f_mainBanner?>'), lightgray 0px -257.5px / 100% 174.15% no-repeat;
}

.hero__info-container {
  padding: 135px 290px;
}

.hero__title {
  margin-bottom: 30px;
}

.hero .hero_subtitle {
  margin-bottom: 45px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  padding: 0px 50px;
}

.hero__service {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  padding-bottom: 45px;
}

.hero__service-item {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero__service-item:hover {
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.hero__info-btn {
  text-align: center;
}

.hero-btn:first-child {
  padding: 15px 30px;
  margin-right: 15px;
  color: #FFF;
}

.hero-btn:last-child {
  padding: 15px 78px;
}

.hero .hero__service-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.hero__service-icon {
  margin-bottom: 45px;
  -ms-flex-item-align: end;
  align-self: flex-end;
}


.hero .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-top: 20px;
}

.breadcrumbs .breadcrumbs__item {
  list-style: none;
  color: rgba(255, 255, 255, 0.50);
}

.breadcrumbs .breadcrumbs__item:last-child {
  color: #FFF;
}

/* advantages */

.advantages__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 45px;
}

.advantages__block .advantages__item-icon {
  margin-bottom: 20px;
}

.advantages .advantages__item-title {
  color: #455271;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}

.advantages__block-item:last-child {
  border-radius: 15px;
  background-color: #E42145;
  padding: 32px 35px;
}

.advantages__block-item:last-child .advantages__item-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.advantages__block-item:last-child .advantages__item-text {
  color: #FFF;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
}

.advantages__block-item:last-child .advantages__item-text a {
  color: #FFF;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

/* services */

.services__header {
  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;
  margin-bottom: 25px;
}

.services__header h3 {
  margin-bottom: 0;
}

.services__title {
  margin-bottom: 0;
}

.services__link {
  display: flex;
  align-items: baseline;
}

.services__link a {
  color: #E42145;
}

.services__link img {
  margin-left: 10px;
}

.services__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 40px;
}

.services__block-item {
  position: relative;
}

.services__block-item:hover {
  cursor: pointer;
}

.services__block-item:hover .services__item-title {
  color: #E42145;
}

.services__block .services__item-img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 218px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.services__block .services__item-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}

.services__block-item .services__item-title {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 0;
}

/* about */

.about__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D7E4ED;
  padding-bottom: 40px;
  margin-bottom: 60px;
}

.about__title {
  margin-bottom: 25px;
}

.about__content {
  margin-right: 50px;
}

.about .about__ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 2fr;
  grid-template-columns: 1fr 2fr;
  padding: 0;
  gap: 10px;
}

.about .about__ul li {
  list-style: none;
}

.about__ul a {
  color: #E42145;
  text-decoration: underline;
}

.about__ul a:hover {
  color: rgba(228, 33, 69, 0.70);
}

.about__img {
  max-height: 540px;
  max-width: 536px;
}

.about__img img {
  border-radius: 20px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.about__content-item {
  padding-left: 20px;
  border-left: 4px solid #E42145;
}

.about__bottom .about__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.about__content-item p:first-child {
  color: #455271;
  font-size: 58px;
  font-weight: 700;
  line-height: 50px;
}

.about__content-item p:first-child span {
  font-size: 28px;
  font-weight: 700;
  line-height: 50px;
}

/* prices */

.table-prices {
  background-color: #F5F9FC;
  border-radius: 15px;
  padding: 25px 30px;
}

.prices__table__title {
  color: #FFF;
  text-align: center;
  border-radius: 5px;
  background: #DF2143;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  padding: 20px 0;
}

.table-prices__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.table-prices__row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.table-prices__name {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(60% - 10.7px);
  flex: 0 1 calc(60% - 10.7px);
  margin-right: 16px;

}

.table-prices__name .table-prices__text {
  color: #455271;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.table-prices__price .table-prices__text {
  color: #455271;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.table-prices__price {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 16px;
}

.table-prices__text {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
}

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

.table-prices__button {
  font-size: 15px;
  line-height: 20px;
  color: #DF2143;
  text-align: right;
  font-weight: 500;
  background-color: #F5F9FC;
}

/* form */

.form {
  margin-top: 60px;
}

.form .form__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  background-color: #F5F9FC;
  padding: 45px 55px 45px 55px;
  overflow: hidden;
}

.form .form__content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: #DF2143;
}

.form .form__info {
  margin-right: 20px;
  color: #455271;
  font-size: 15px;
  line-height: 20px;
}

.form .form__title {
  color: #455271;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}

.form .form__application-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.form .form__input {
  border-radius: 5px;
  background-color: #E3EDF4;
  padding: 15px 20px;
  border: none;
  margin-right: 10px;
  outline: none;
  cursor: pointer;
}

.form .form__btn {
  padding: 15px 75px;
}

.form .form__application-text {
  opacity: 0.5;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
}

.form .form__application-text a {
  color: #455271;
  text-decoration: underline;
}

.page__service .form .form__content {
  display: block;
}

.page__service .form .form__subtitle {
  margin-bottom: 25px;
}

/* specialists */

.specialists__top {
  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;
}

.specialists h2 {
  margin-bottom: 0;
}

.specialists__top {
  margin-bottom: 45px;
}

.specialists__slider-btn {
  background-color: rgba(228, 33, 69, 0.10);
  padding: 15px 17px;
  border-radius: 50%;
}

.specialists__slider-btn:hover path {
  stroke: #FFF;
}

.specialists__slider-btn:hover {
  background-color: #E42145;
  ;
}

.specialists__slider-btn_prev {
  margin-right: 15px;
}

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

.specialists__item-img {
  overflow: hidden;
  margin-bottom: 20px;
}

.specialists__item-img img {
  height: 470px;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}

.specialist__item-info {
  border-left: 4px solid #E42145;
  padding-left: 15px;
}

.specialists .specialists__item-title {
  color: #455271;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}

/* nav__article */

.nav__article {
  background: url(/netcat_template/template/redesign/img/logo-ul.svg);
}

.nav__article-info {
  background-color: #F5F9FC;
  border-radius: 15px;
}

.nav__article-title {
  background-color: #DF2143;
  border-radius: 15px 15px 0 0;
  padding: 15px 25px;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

.nav__article-list {
  position: relative;
  padding: 20px 40px;
  border-radius: 15px;
}


.nav__article-list li {
  color: #455271;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  list-style: decimal;
}

/* faq */

.question__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 5px;
  background-color: #FFF;
  color: #455271;
  padding: 20px 10px 20px 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  width: 100%;
}

.question-grey {
  background-color: #F5F9FC;
}

.question__title .question__title-decor {
  background-color: rgba(228, 33, 69, 0.10);
  border-radius: 50%;
  padding: 13px;
}

.question__title-text {
  text-align: start;
}

.question__info {
  margin-bottom: 15px;
  background-color: #E6F0F8;
  border-radius: 5px;
}

.faq .faq__accor .active {
  padding: 25px;
}

/* page__service */

.page__service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding: 0;
}

.aside {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 280px;
  flex: 1 0 280px;
}
.aside__wrapper {
    position: sticky;
    top: 145px;

}
.page__service-left {
  max-width: 960px;
}


/* tariff */

.tariffs__slider {
  padding: 10px;
}

.tariff__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.tariff__list-item {
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tariff__item-top {
  background-color: #F5F9FC;
  padding: 15px 30px;
  min-height: 80px;
}

.tariff__list-item:last-child .tariff__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tariff__item-top .tariff__item-title {
  color: #E42145;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 0;
}

.tariff__item-top .tariff__item-subtitle {
  color: #455271;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
}

.tariff__item-bottom .tariff__item-info {
  padding-left: 0;
  margin-bottom: 0;
}

.tariff__item-bottom .tariff__item-info li {
  padding-left: 10px;
  border-left: 2px solid #DF2143;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  list-style: none;
}

.tariff__item-info li:last-child {
  margin-bottom: 25px;
}

.tariff__item-bottom {
  background-color: #FFF;
  padding: 30px;
  border-radius: 15px;
  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;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.tariff__item-btn {
  width: 100%;
  padding: 15px 0;
}

/* aside__reviewer */

.aside__reviewer {
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 15px;
}

.reviewer__img {
  padding: 20px 50px 0;
}

.reviewer__info {
  background-color: #232D44;
  padding: 20px 25px;
  border-radius: 0px 0px 15px 15px;
}

.reviewer__info-name {
  margin-bottom: 20px;
}

.reviewer__info .reviewer__info-title {
  color: rgba(255, 255, 255, 0.50);
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  margin-bottom: 5px;
}

.reviewer__info .reviewer__info-subtitle {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}


/* aside__services */

.aside__services {
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  padding: 25px 20px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.aside__services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #DF2143;
}

.aside__services .aside__services-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.aside__services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.aside__services-list a {
  text-decoration: underline;
  color: #455271;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  margin-bottom: 10px;
}

/* aside__graph */

.aside__stage {
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  padding: 25px 20px 20px;
  position: relative;
  overflow: hidden;
}

.aside__stage::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #DF2143;
}

.aside__stage .graph__list-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.aside__stage .graph__item-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
}

.aside__stage .graph__list-item {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #DF2143;
  padding-bottom: 20px;
}

.aside__stage .graph__list-item:last-child {
  border-left: 2px solid transparent;
}

.aside__stage .graph__list-item::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -5px;
  min-width: 7px;
  min-height: 7px;
  border-radius: 50%;
  background-color: #DF2143;
}

.aside__stage .graph__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  min-width: 15px;
  min-height: 15px;
  border-radius: 50%;
  background-color: #FF8399;
}

.aside__stage-btn {
  width: 100%;
  padding: 15px 0;
}

/* footer */

.footer {
  padding-top: 80px;
  background-color: #232D44;
}

.footer__top {
  padding-bottom: 80px;
}

.footer__top-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer__info-mob {
  display: none;
}

.footer__logo img {
  margin-bottom: 25px;
}

.footer__link {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin-bottom: 40px;
}

.footer__link a {
  color: rgba(255, 255, 255, 0.50);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
}

.footer__link a:hover {
  color: #FFF;
}

.footer__block input {
  background-color: rgba(255, 255, 255, 0.10);
}

.footer__block input::-webkit-input-placeholder {
  color: #FFF;
}

.footer__block input::-moz-placeholder {
  color: #FFF;
}

.footer__block input:-ms-input-placeholder {
  color: #FFF;
}

.footer__block input::-ms-input-placeholder {
  color: #FFF;
}

.footer__block input::placeholder {
  color: #FFF;
}

.footer__search {
  border-radius: 5px;
  padding: 12px 15px;
  border: none;
  font-size: 13px;
  background: url(/netcat_template/template/redesign/img/poisk.svg) no-repeat center right 15px;
  margin-bottom: 70px;
}

.footer__block-text {
  color: rgba(255, 255, 255, 0.50);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.footer__block:nth-child(2n) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.footer__block:last-child {
  margin: 0 auto;
}

.footer__head {
  color: rgba(255, 255, 255, 0.50);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 10px;
}

.footer__list {
  padding: 0;
}

.footer__list li {
  color: #FFF;
  list-style-type: none;
  margin-bottom: 10px;
}

.footer__list a {
  color: #FFF;
  text-decoration: none;
}

.footer__list a:hover {
  color: rgba(255, 255, 255, 0.50);
}

.footer__block:last-child .footer__head {
  color: #FFF;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 5px;
}

.footer__block:last-child span {
  color: #FFF;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.footer__block:last-child .footer__nomber {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}

.footer__block-item {
  margin-bottom: 25px;
}

.footer__block:last-child .footer__block-item:nth-child(5n) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__block-item a {
  color: #fff;
  text-align: center;
}

.footer__btn {
  padding: 10px 25px;
  margin-right: 5px;
}

.footer__icon {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.10);
  padding: 10px;
}

.footer__container {
  padding: 15px
}

.footer__bottom {
  text-align: center;
  color: #FFF;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  opacity: 0.5;
  background-color: #1A2337;
}

@media(max-width:1300px) {

  /* glob */

  .container {
    padding: 0 15px;
  }

}

@media(max-width:1200px) {

  .btn-desc {
    display: none;
  }

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

  /* header */
  .header__right-block {
    display: none;
  }

  .header__left-soc {
    margin-right: 60px;
  }

  .header__menu {
    padding: 0 15px;
    border-top: 1px solid #E4EDF3;
  }

  .header__bottom {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    overflow: auto;
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    -o-transition: transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
    z-index: 10;
  }

  .header__bottom-info-mobile {
    display: block;
    padding: 20px 15px;
    background-color: #F5F9FC;
  }

  .info-mobile__text {
    color: #0D2436;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .info-mobile__text span {
    color: #0D2436;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
  }

  .info-mobile__btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
  }

  .info-mobile__btn {
    width: 100%;
    padding: 15px 0;
    margin-right: 5px;
  }

  .header.active .header__bottom {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .header__menu-burger {
    display: block;
  }

  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    width: 100%;
  }

  .menu__item {
    width: 100%;
    margin-right: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DFDFF2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 50%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .menu__item:last-child {
    border: none;
  }

  .menu__item:first-child {
    background-color: #FFF;
    border-radius: 0;
    padding: 20px 0;
  }

  .menu__list:first-child .menu__item:first-child .menu__link-text {
    color: #0D2436;
  }

  .menu__item:first-child .menu-link-arrow {
    display: none;
  }

  .menu__link-text {
    color: #0D2436;
  }

  .menu__sub-item {
    position: relative;
    max-width: initial;
  }

  .menu__item-burger {
    position: relative;
  }

  .menu__sub-list {
    display: block;
    position: initial;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    min-width: initial;
    -webkit-box-shadow: initial;
    box-shadow: initial;
    background-color: initial;
    padding: 20px 0 0 20px;
  }

  .menu__sub-list.accor-full-content {
    padding: 0;
  }

  .menu__sub-list.accor-full-content .menu__sub-item {
    color: rgba(13, 36, 54, 0.65);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .menu__item-icon path {
    stroke: #EA1414;
  }

  .menu__item.active .menu__item-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .menu__item.active .menu__item-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  /* hero */

  .hero .breadcrumbs {
    display: none;
  }

  /* page */

  .page__service {
    display: block;
  }

  .page__service-left {
    max-width: 100%;
  }

  /* aside */

  /* aside__reviewer */

  .aside__reviewer {
    margin-bottom: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .reviewer__info {
    border-radius: 0 15px 15px 0;
    width: 100%;
  }

  /* aside__services */

  .aside__services {
    display: none;
  }

  /* aside__stage */

  .aside__stage {
    display: none;
  }

  /* hero */

  .hero__info-container {
    padding: 60px 90px;
  }

  .hero .hero_subtitle {
    padding: 0;
  }

  /* about */

  .about__img {
    max-height: 390px;
    max-width: 396px;
  }

  /* form */

  .form .form__content {
    display: block;
  }

  .form .form__subtitle {
    margin-bottom: 10px;
  }

  /* footer */

  .footer__block:nth-child(2n) .footer__block-item:first-child {
    margin-right: 10px;
  }

}

@media(max-width:990px) {

  /* header */

  .header__left-content:nth-child(2n) {
    display: none;
  }

  .header__left-soc {
    margin-right: 20px;
  }

  /* hero */

  .hero__info-container {
    padding: 40px 45px;
  }

  /* advantages */

  .advantages__block {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  /* services */

  .services__block {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  /* about */

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

  .about__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    max-height: 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .about__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 0;
  }

  .about__bottom .about__content {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
  }

  /* form */

  .form .form__application-data {
    display: block;
  }

  .form .form__input {
    width: 100%;
    margin-bottom: 10px;
  }

  .form .form__btn {
    width: 100%;
  }

  /* prices */
  .table-prices {
    padding: 20px;
  }

  .table-prices__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .table-prices__name {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

}

@media(max-width:768px) {

  /* glob */

  .mb {
    margin-bottom: 70px;
  }

  .page__service .mb {
    margin-bottom: 70px;
  }

  .bg-grey {
    padding: 70px 0;
  }

  .content-body h1 {
    font-size: 48px;
    line-height: 45px;
  }

  /* header */

  .hero__info-container {
    padding: 40px 0;
  }

  .header__left-btn {
    display: none;
  }

  .header__left-soc {
    display: none;
  }

  .header__left-title {
    display: none;
  }

  .header__left-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__mob-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 6px;
    background-color: #EDF5FB;
    border-radius: 4px;
    margin-right: 8px;
  }

  /* hero */

  .hero .hero_subtitle {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-btn:first-child {
    margin-bottom: 5px;
    margin-right: 0;
  }

  /* advantages */

  .advantages__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
  }

  .advantages__block-item {
    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;
  }

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

  .advantages__block-item:last-child {
    padding: 20px;
  }

  /* form */

  .form .form__content {
    padding: 20px 25px;
  }

  /* prices */

  .table-prices__row {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .table-prices__text {
    font-size: 14px;
    line-height: 20px;
  }

  .table-prices__button {
    font-size: 14px;
    line-height: 20px;
  }

  /* faq */

  .question__title-text {
    text-align: start;
    font-size: 18px;
  }

  /* footer */

  .footer {
    padding-top: 40px;
  }

  .footer__top {
    padding-bottom: 40px;
  }

  .footer__top-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__info-desk {
    display: none;
  }

  .footer__head {
    margin-bottom: 5px;
  }

  .footer__list li {
    margin-bottom: 5px;
  }

  .footer__info-mob {
    display: block;
  }

  .footer__block:nth-child(2n) {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .footer__block:last-child {
    margin: 0;
  }

  .footer__bottom {
    padding: 15px
  }

  .footer__link {
    margin-bottom: 20px;
  }

  .footer__search {
    margin-bottom: 20px;
  }
}

@media(max-width:575px) {

  /* glob */

  .content-body h1 {
    font-size: 34px;
    line-height: 35px;
  }

  .content-body h2 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .content-body h2 span {
    font-size: 26px;
    line-height: 30px;
  }

  .content-body h3 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 20px;
  }

  .content-body h3 span {
    font-size: 20px;
    line-height: 25px;
  }

  .content-body p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .content-body ul {
    margin-bottom: 15px;
  }

  .content-body ul li {
    font-size: 14px;
  }

  .content-body blockquote {
    margin-top: 30px;
    font-size: 16px;
    line-height: 20px;
    padding: 20px;
  }

  /* contraindications */

  .contraindications__text {
    font-size: 12px;
    line-height: 15px;
  }

  /* mobilization */

  .mobilization__text {
    font-size: 10px;
    line-height: 15px;
  }

  /* header */

  .header__left-text {
    font-size: 12px;
    line-height: 15px;
  }

  .header__logo {
    margin-right: 15px;
  }

  .logo__picture {
    max-width: 125px;
  }

  .header__left-content {
    margin-right: 15px;
  }

  .menu__item {
    gap: 40%;
  }

  /* hero */

  .hero .hero_subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  /* aside */

  /* aside__reviewer */

  .reviewer__info .reviewer__info-title {
    font-size: 12px;
  }

  .reviewer__info .reviewer__info-subtitle {
    font-size: 14px;
  }

  .reviewer__img {
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 15px 25px 0;
  }

  /* nav__article */

  .nav__article-title {
    font-size: 16px;
    line-height: 20px;
  }

  .nav__article-list li {
    font-size: 14px;
    line-height: 20px;
  }

  .nav__article-list {
    background: none;
    padding: 15px 30px;
    margin-bottom: 5px;
  }

  /* advantages */

  .advantages__item-icon {
    width: 25px;
  }

  .advantages .advantages__item-title {
    font-size: 18px;
    line-height: 25px;
  }

  .advantages__block .advantages__item-icon {
    margin-bottom: 10px;
  }

  .advantages__block-item:last-child .advantages__item-title {
    font-size: 14px;
    line-height: 20px;
  }

  .advantages__block-item:last-child .advantages__item-text {
    font-size: 18px;
    line-height: 25px;
  }

  /* services */

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

  .services__header h3 {
    margin-bottom: 0;
  }

  /* about */

  .about__content-item {
    padding-left: 8px;
  }

  .about__content-item p:first-child {
    font-size: 38px;
    line-height: 35px;
  }

  .about__content-item p:first-child span {
    font-size: 18px;
    line-height: 35px;
  }

  /* form */

  .form .form__title {
    font-size: 16px;
    line-height: 20px;
  }

  .form .form__subtitle {
    font-size: 12px;
    line-height: 15px;
  }

  .form .form__application-text {
    font-size: 12px;
    line-height: 15px;
  }

  .form .form__application-text a {
    font-size: 12px;
    line-height: 15px;
  }

  .form .form__input {
    max-width: 90%;
  }

  /* specialists */

  .specialists__top {
    margin-bottom: 10px;
    ;
  }

  .specialists__navigation {
    display: none;
  }

  .specialists .specialists__item-title {
    font-size: 16px;
    line-height: 20px;
  }

  /* faq */

  .faq {
    margin-top: 25px;
  }

  .question__title-text {
    font-size: 14px;
    line-height: 20px;
  }

  .question__title .question__title-decor {
    padding: 8px 13px;
  }

  .question__title-decor svg {
    width: 12px;
  }

  .question-grey {
    padding: 10px 15px;
  }

  .faq .faq__accor .active {
    padding: 15px;
  }

  /* tariff */

  .tariff__item-top {
    padding: 15px 20px;
  }

  .tariff__item-top .tariff__item-title {
    font-size: 16px;
  }

  .tariff__item-top .tariff__item-subtitle {
    font-size: 16px;
  }

  .tariff__item-bottom .tariff__item-info li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .tariff__list {
    grid-column-gap: 0;
  }

  .tariff__item-bottom {
    padding: 15px 20px;
  }

  /* footer */

  .footer__head {
    font-size: 14px;
  }

  .footer__block-item {
    margin-bottom: 20px;
  }

  .footer__link {
    gap: 5px;
  }

  .footer__list a {
    font-size: 14px;
  }

  .footer__block:last-child .footer__nomber {
    font-size: 16px;
    line-height: 20px;
  }

  .footer__block:last-child .footer__head {
    font-size: 12px;
  }

  .footer__block:last-child span {
    font-size: 14px;
  }

  .footer__btn {
    width: 100%;
  }

  .footer__block-text {
    font-size: 12px;
    line-height: 15px;
  }

  .footer__bottom {
    font-size: 12px;
    line-height: 15px;
  }
}


/* reviews */

.reviews__top {
  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;
}

.reviews h2 {
  margin-bottom: 0;
}

.reviews__top {
  margin-bottom: 45px;
}

.reviews__slider-btn {
  background-color: rgba(228, 33, 69, 0.10);
  padding: 15px 17px;
  border-radius: 50%;
}

/*
.reviews__slider-btn:hover path {
  stroke: #FFF;
}

.reviews__slider-btn:hover {
  background-color: #E42145;
  ;
}*/
.reviews__slider-btn {
    opacity: .7;
}

.reviews__slider-btn:hover {
    opacity: 1;
}

.reviews__slider-btn_prev {
  margin-right: 15px;
}

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

.reviews__item-img {
  overflow: hidden;
  margin-bottom: 20px;
}

.reviews__item-img img {
  height: 470px;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}

.reviews__item-info {
  border-left: 4px solid #E42145;
  padding-left: 15px;
}

.reviews .reviews__item-title {
  color: #455271;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}

@media(max-width:575px) {
  /* reviews */

  .reviews__top {
    margin-bottom: 10px;
  }

  .reviews__navigation {
    display: none;
  }

  .reviews .reviews__item-title {
    font-size: 16px;
    line-height: 20px;
  }
}

.tg {
    background-color: #E8F6FF;
    box-shadow: 0px 3px 30px 0px #0000001A;
    position: relative;
}

.tg__img {
    position: absolute;
    bottom: 0;
    right: 70px;
}

.tg__title {
    color: #455271;
    font-size: 48px;
    font-weight: 700;
    line-height: 67px;
}

.tg__content {
    padding: 32px;
    max-width: 470px;
}

.tg__block {
    box-shadow: 0px 3px 20px 0px #00000026;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 15px;
}

.tg__block-title {
    color: #455271;
    font-size: 28px;
    font-weight: 700;
    line-height: 39px;
}

.tg__block-subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #DF2143;
}

.tg__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 15px;
    padding-left: 20px;
}

.tg__list li {
    list-style: disc;
}

.tg__list li::marker {
    width: 6px;
    height: 6px;
    color: #E42145;
}

.specialist-item {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  width: 100%;
  max-width: 840px;
  justify-content: space-between;
}

.specialist-item .title-specialist {
  color: var(--, #455271);
  font-family: TT Norms;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.container-specialist-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  column-gap: 20px;
}


.container-specialist-card .staff-detail_img {
  margin: 0;
  border-radius: 10px;
}

.specialist.inform {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
}

.specialist.inform .artickle-inform {
  border-left: 6px solid #DF2143;
  padding: 10px 20px 10px 20px;
  border-radius: 6px;
}

.specialist.inform .artickle-inform p span {
  color: var(--, #455271);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;

}
.specialist.inform .artickle-inform p {
  color: var(--, #333);
  font-size: 18x;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;

}

.specialist-item .specialist-grafick {
  background: #F5F9FC;
  border-left: 6px solid #DF2143;
  padding: 30px 40px 30px 40px;
  border-radius: 6px;
}

.container-specialist-card .mailing_submit,
.container-specialization .mailing_submit {
  max-width: 270px;
  padding: 10px 40px 10px 40px;
}

.specialist-item .specialist-grafick .grafik  {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 60px;
}

.specialist-item .specialist-grafick .grafik p {
  max-width: 321px;
  min-width: 321px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.specialist-item .specialist-grafick .grafik p {
  color: var(--, #333);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; 
}

.specialist-item .specialist-grafick .grafik p span {
  color: var(--, #333);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.grafik .grafik-column-1, 
.grafik .grafik-column-2 {
  width: 100%;
  max-width: 321px;
}

.specialist-grafick h3 {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 20px;
}

.breadcrumbs-specialist .container {
  max-width: 1300px !important;
  display: flex;
  flex-direction: row;
  width: 100% !important;
}

.breadcrumbs-specialist .breadcrump__item:first-child {
  padding-left: 0px;
}

.breadcrumbs-specialist {
  margin-top: 40px;
}

.breadcrumbs-specialist .breadcrump__item {
  padding-left: 0;
  padding-right: 0;
}

.breadcrump__item a {
  text-decoration: none;
  color: rgba(51, 51, 51, 0.70);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.breadcrumbs-specialist-container .button-back {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 10px;
  padding: 0 20px;
  color: var(--, #333);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; 
  margin-top: 20px;
}

.breadcrumbs-specialist-container a .button-back {
  color: #333;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; 
}

.container-look-problems,
.container-specialization {
  margin: 80px auto 80px;

}
.look-problems {
  border-radius: 10px;
  border: 1px solid #DF2143;
  background: #F6FEFF;
}
.look-problems-title h3,
.specialization-title h3,
.slider-top .slider-top__title {
  color: #333;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 30px;
}

.slider-top__title h3 {
    margin-bottom: 0;
}

.look-problems-title h3 span,
.specialization-title h3 span,
.slider-top .slider-top__title span {
  color: #6A758D;
}

.container-look-problems .look-problems {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.container-look-problems .column-background {
  width: 100%;
  max-width: 75px;
  padding: 15px 0;
  background-color: #DF2143;
  border-radius: 10px 0 0 10px;
  text-align: center;
}

.container-look-problems .column-background span {
  color: #FFF;
  font-size: 76px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.container-look-problems .column-article {
  width: 100%;
  padding: 30px 40px 30px 85px;
}

.container-look-problems .column-article p {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.container-specialization .specialization-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  justify-items: stretch;
  row-gap: 30px;
}

.container-specialization .specialization-article p {
  border-left: 6px solid #DF2143;
  display: block;
  height: fit-content;
  border-radius: 6px;
  padding: 5px 15px;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; 
}

.container-specialization .mailing_submit {
  width: 100%;
}

.breadcrumbs-specialist a {
  color: #333;
}

.breadcrumbs-specialist-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.breadcrumbs-specialist-container .breadcrumbs-specialist {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 8px;
}

.breadcrumbs-specialist-container .breadcrumbs-specialist .breadcrump__item {
  color: rgba(51, 51, 51, 0.70);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.breadcrumbs-specialist .breadcrump__item a,
.breadcrumbs-specialist .breadcrump-divider {
  color: rgba(51, 51, 51, 0.70);
}

.breadcrumbs-specialist-container .breadcrumbs-specialist .breadcrump__item.active {
  color:#333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.doctor-documents__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 3px;
}

.doctor-documents .slider-btn {
  display: inline-flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 30px;
  background: rgba(223, 33, 67, 0.20);
  opacity: 0.7;
}

.doctor-documents .slider-btn:hover {
  opacity: 1;
}

.container-card-doctor {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-specialist-card {
  margin-top: 40px;
}

.slider-container {
  margin-top: 107px;
}

.container-look-problems,
.container-specialization {
  margin-top: 80px;
}

.container-specialization {
  margin-bottom: 80px;
}

.content-body.slider-top,
.content-body.slider-top  .content-body h2 {
  margin: 0;
  margin-bottom: 0;
} 

.content-body.slider-top .content-body h2 {
  margin-bottom: 0 !important;
}

.doctor-documents__container .slider-top__btn-group {
  margin-bottom: 30px;
  display: flex;
  column-gap: 42px;
  flex-direction: row;
  flex-wrap: nowrap;
}

.content-body.slider-top  .content-body h2

@media (min-width: 768px) {
  .owl-slider.slider-diplom .owl-slider-diplom  .owl-dots {
    display: none;
  }
}

@media (max-width: 1280px) {
  .main .container-specialist-card {
    column-gap: 40px;
  }
  .specialization-title h3 {
    font-size: 34px;
  }
}

@media (max-width: 900px) {
  .specialist-item .title-specialist {
    font-size: 38px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .specialist-grafick h3 {
    font-size: 26px;
  }
  .container-specialist-card {
    flex-wrap: wrap;
    justify-content: center;
  }
  .specialization-title h3 {
    font-size: 32px;
  }
  .container-look-problems .column-background span {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  .container-specialization .specialization-article {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
  .look-problems-title h3, 
  .specialization-title h3,
  .slider-top .slider-top__title {
    font-size: 30px;
  }
  .container-specialization .specialization-article p,
  .container-look-problems .column-article p {
    font-size: 16px;
  }
  .container-look-problems .column-background span {
    font-size: 56px;
  }
  .main .container-specialist-card {
    margin: 20px auto;
  }
  .container-look-problems, .container-specialization {
    margin: 50px auto 50px;
  }
  .owl-slider.slider-diplom .owl-slider-diplom  .owl-nav {
    display: none;
  }
  .owl-slider.slider-diplom {
    padding: 0px 0px 0 20px;
  }
  .slider-container {
    margin-top: 80px;
  }
}


@media (max-width: 575px) {
  .specialist-item .title-specialist {
    font-size: 32px;
  }
  .specialist-grafick h3 {
    font-size: 24px;
    margin-bottom: 23px;
  }
  .specialist-item .specialist-grafick .grafik p span {
    font-size: 16px;
  }
  .specialist-item {
    margin-top: 20px;
  }
  .specialist.inform {
    column-gap: 16px;
    row-gap: 16px;
    flex-direction: column;
  }
  .specialist-item .specialist-grafick {
    order: 1;
  }
  .specialist-item {
    row-gap: 15px;
  }
  .container-specialist-card .mailing_submit,
  .container-specialization .mailing_submit {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .container-specialist-card .mailing_submit,
  .container-specialization .mailing_submit {
    max-width: none;
  }
  .specialist-item .specialist-grafick {
  padding: 20px;
  }
  .grafik .grafik-column-1, .grafik .grafik-column-2 {
  flex-direction: column;
  row-gap: 15px;
  }
  .specialist-item .specialist-grafick .grafik p {
  min-width: auto;
  }
  .container-look-problems .column-article {
    padding: 14px 15px 23px 15px;
  }
  .look-problems-title h3, 
  .specialization-title h3,
  .slider-top .slider-top__title {
    font-size: 28px;
  }
  .container-look-problems .column-background span {
    font-size: 44px;
  }
  .container-specialization .mailing_submit {
    margin-top: 50px;
    margin-bottom: 0;
  }
  .slider-container {
    margin-top: 50px;
  }
}

@media(max-width : 340px) {
  .specialist-item .specialist-grafick .grafik p {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  }
}

@media(max-width : 1308px) and (min-width : 900px) {
  .grafik .grafik-column-1, .grafik .grafik-column-2 {
  max-width: none;
}
.specialist-item .specialist-grafick .grafik p {
  max-width: none;
}
}
@media(max-width : 828px) and (min-width : 240px) {
  .grafik .grafik-column-1, .grafik .grafik-column-2 {
  max-width: none;
}
.specialist-item .specialist-grafick .grafik p {
  max-width: none;
}
}

@media(max-width : 990px) {
    .tg__img {
        display: none;
    }
}

@media(max-width : 575px) {
    .tg__title {
        font-size: 28px;
        line-height: 39px;
    }

    .tg__list {
        grid-template-columns: 1fr;
    }

    .tg__block {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .tg__block img {
        max-width: 56px;
        margin: 0 auto;
    }

    .tg__content {
        padding: 20px 0;
    }
    .services__header h3,
    .services__header h3 span {
      font-size: 26px;
      line-height: 30px;
    }
}

.swiper-pagination {
  position: relative;
  margin-top: 25px;
}
.swiper-pagination span {
  background-color: #DF2143;
  width: 12px;
  height: 12px;
}

.header-plashki  {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1002;
  margin: 0px 0 20px 0;
}
.info__sale {
  padding: 6px;
}

.services__instalment {
  display: flex;
  column-gap: 40px;
  flex-direction: row;
  align-items: flex-start;
  padding: 10px;
  background-color: #F5F9FC;
  border-radius: 25px;
}

.services__advantages {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  column-gap: 5px;
  margin-bottom: 15px;
}

.services__advantages.advantages {
  display: inline-flex;
  padding: 7px 15px 8px 15px;
  background-color: #ffff;
  border-radius: 63px;
  color: #455271;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  align-content: center;
  align-items: center;
  column-gap: 6px;
}

.services__content.content {
  color: #455271;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}

.services__phone.phone a {
  color: #DF2143;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}

.services__header {
  max-width: 560px;
}

.services__header h3 {
  color: #1C2230;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
}

.services__header h3 span {
  color: #6A758D;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
}

.services__content {
  margin-bottom: 15px;
}

.services__phone {
  margin-bottom: 30px;
}

.services__wrapper {
  width: 100%;
  max-width: 450px;
}

.services__wrapper img {
  border-radius: 20px;
}

.services__items {
  padding: 30px 0 30px 0px;
}

@media (max-width: 768px) {
  .services__instalment {
    flex-direction: column;
    align-items: center;
  }
  .services__wrapper {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }
  .services__wrapper img {
    width: 100%;
  }
  .services__header h3,
  .services__header h3 span {
    font-size: 30px;
    line-height: 30px;
  }
  .services__advantages.advantages, 
  .services__content.content {
    font-size: 14px;
  }
  .services__phone.phone {
    font-size: 17px;
  }
  .services__header {
    margin-bottom: 22px;
  }
  .services__advantages {
    margin-bottom: 20px;
  }
  .services__phone {
    margin-bottom: 25px;
  }
  .services__instalment .btn-pink {
    font-size: 12px;
  }
  .services__instalment .hero-btn {
    padding: 15px 20px;
  }
  .services__items {
    padding: 0;
  }
} 
html {
     opacity: 1 !important;
}
#select-city{
background-color: #fff;
padding: 40px 24px 24px;
border-radius: 30px;
}