html, body {
  font-size: 16px;
  font-family: 'Circe';
  background-color: #fff;
  color: #464646;
  min-width: 320px;
}

/* html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  width: 0px;
  background: transparent;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
} */

* {
  margin: 0;
  padding: 0;
  outline: 0;
  list-style-type: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #464646;
}

a:not(.btn):not(.services__item):hover {
  color: #BF000C;
}

.icon {
  width: 16px;
  height: 16px;
  fill: currentColor !important;
  pointer-events: none;
  stroke: currentColor !important;
}

.wrapper {
  padding: 0px 20px;
  max-width: 1210px;
  position: relative;
  margin: 0 auto;
}

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

.justify-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

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

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

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

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

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

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

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

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

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

a, :before, :after, button {
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

input, button, textarea {
  font-family: inherit;
  border: 0;
  background: transparent;
  resize: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #464646;
}

input::-webkit-input-placeholder, button::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #898989;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

input:focus::-webkit-input-placeholder, button:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

button {
  cursor: pointer;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

span, p, b, em, li, h1, h2, h3, h4, h5, h6 {
  cursor: default;
}

main {
  padding-top: 105px;
  position: relative;
  counter-reset: myCounter;
}

.section {
  padding: 40px 0px;
  position: relative;
}

.section__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 65px 0px;
}

.section__container {
  max-width: 1210px;
  padding: 0px 20px;
  margin: 0 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__title {
  margin-bottom: 40px;
  position: relative;
  color: #212121;
}

.section__title span, .section__title h1 {
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
}

.section__title span i, .section__title h1 i {
  position: relative;
  font-style: normal;
  display: inline-block;
  padding-left: 15px;
  margin-left: 20px;
}

.section__title span i:after, .section__title h1 i:after {
  content: '';
  position: absolute;
  left: -2px;
  top: 4px;
  width: 1px;
  height: 28px;
  background: rgba(112, 112, 112, 0.55);
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

.section__title span i:before, .section__title h1 i:before {
  counter-increment: myCounter;
  content: "0" counter(myCounter);
  font-size: 12px;
  font-weight: 900;
  color: #BF000C;
  position: relative;
  top: -5px;
}

.section__count {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.section__count:before {
  counter-increment: myCounter;
  content: "0" counter(myCounter);
}

.section.section--gray {
  background: #F5F5F5;
}

.section.section--border {
  border-top: solid 1px rgba(112, 112, 112, 0.15);
}

.section__title--mb-small {
  margin-bottom: 25px;
}

.section__block {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.section__block:last-child {
  margin-bottom: 0;
}

@media (min-width: 767px) {
  .section__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(((100vw - 188px) * 0.7) + 20px);
            flex: 0 0 calc(((100vw - 188px) * 0.7) + 20px);
    -webkit-transform: translate(-100%, 0%);
            transform: translate(-100%, 0%);
  }
}

@media (min-width: 1200px) {
  .section__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100vw - (((100vw - 1000px) / 2) + ((1210px - 40px) * 0.3) + 20px));
            flex: 0 0 calc(100vw - (((100vw - 1000px) / 2) + ((1210px - 40px) * 0.3) + 20px));
  }
}

.slick-list {
  overflow: hidden;
  width: 100%;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
}

p {
  font-size: 16px;
  line-height: 150%;
}

input {
  height: 43px;
  padding: 0px 17px;
  font-size: 16px;
  border-radius: 6px;
  border: solid 1px rgba(33, 33, 33, 0.2);
}

input::-webkit-input-placeholder {
  color: #212121;
}

textarea {
  padding: 17px;
  border-radius: 6px;
  border: solid 1px rgba(33, 33, 33, 0.2);
  max-height: 134px;
  max-width: 100%;
  min-width: 100%;
  min-height: 134px;
  font-size: 16px;
}

textarea::-webkit-input-placeholder {
  color: #212121;
  font-family: inherit;
  font-size: 16px;
}

.file {
  position: relative;
}

.file label {
  height: 43px;
  padding: 0px 17px;
  background: rgba(180, 180, 180, 0.37);
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.file label:hover {
  background: rgba(180, 180, 180, 0.5);
}

.file label span, .file label .ico {
  pointer-events: none;
}

.file label .icon {
  width: 15px;
  height: 21px;
}

.file label span {
  width: calc(100% - 30px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file label.has-file .icon {
  color: #BF000C;
}

.file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.container {
  position: relative;
  width: 100%;
}

.container__left {
  width: 305px;
}

.container__right {
  width: calc(100% - 305px);
  padding-left: 30px;
}

.ymaps-2-1-79-map-copyrights-promo, .ymaps-2-1-79-copyright__layout, .ymaps-2-1-79-copyright__agreement {
  display: none;
}

@media (max-width: 1075px) {
  main {
    padding-top: 75px;
  }
}

@media (max-width: 995px) {
  .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .container__left, .container__right {
    width: 100%;
    padding: 0;
  }
  .container__left {
    margin-bottom: 30px;
  }
}

.btn {
  height: 55px;
  border-radius: 6px;
  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;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 20px;
  min-width: 205px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
}

.btn.btn--small {
  height: 37px;
}

.btn.btn--red {
  background: #BF000C;
}

.btn.btn--red:hover {
  background: #E9000F;
}

.btn.btn--gray {
  background: #212121;
}

.btn.btn--gray:hover {
  background: #E9000F;
}

.btn.btn--border {
  border: solid 1px transparent;
  background: transparent;
}

.btn.btn--border.btn--gray {
  border: solid 1px #212121;
  color: #212121;
}

.btn.btn--border.btn--gray:hover {
  color: #fff;
  background: #212121;
}

.page-scroll {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 150px;
  width: 28px;
  z-index: 10;
}

.page-scroll a {
  width: 100%;
  height: 28px;
  border-radius: 50px;
  background: #fff;
  font-weight: 900;
  color: #BF000C;
  font-size: 13px;
  white-space: nowrap;
  position: relative;
}

.page-scroll a:before {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: solid 7px;
  color: #fff;
  opacity: 0;
}

.page-scroll a:hover {
  color: #BF000C;
}

.page-scroll a:last-child {
  margin-bottom: 0;
}

.page-scroll a b {
  position: absolute;
  right: 0;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  left: 40px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  pointer-events: none;
}

.page-scroll li {
  margin-bottom: 10px;
}

.page-scroll li:not(.mPS2id-highlight-first) a:hover b {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.page-scroll .mPS2id-highlight-first {
  background: #BF000C;
  color: #fff;
}

.page-scroll .mPS2id-highlight-first:hover {
  color: #fff !important;
}

.page-scroll .mPS2id-highlight-first:before {
  opacity: 1;
  color: #BF000C;
}

.page-scroll .mPS2id-highlight-first b {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  color: #BF000C;
}

.page-scroll.page-scroll--dark a {
  background: #ededed;
  color: #212121;
}

.page-scroll.page-scroll--dark .mPS2id-highlight-first {
  background: #BF000C;
  color: #fff;
}

.arrows a {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  color: rgba(70, 70, 70, 0.5);
  position: relative;
}

.arrows a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #BF000C;
  opacity: .15;
  border-radius: 50px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.arrows a:hover {
  color: #BF000C;
}

.arrows a:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.arrows a .icon {
  width: 22px;
  height: 22px;
}

.arrows__divider {
  width: 1px;
  height: 36px;
  background: #BFBFBF;
  position: relative;
  margin: 0px 25px;
}

.video {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.video__frame {
  width: 100%;
  margin-bottom: 15px;
}

.video__logotype {
  margin-bottom: 15px;
}

.video__logotype img {
  max-width: 90px;
}

.video__info {
  position: relative;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.video__name {
  font-weight: bold;
  line-height: 150%;
}

.video__descr p {
  font-size: 11px;
}

.video .video-js .vjs-big-play-button {
  height: 54px;
  width: 55px;
  top: 50%;
  left: 50%;
  border: 0;
  background-color: rgba(191, 0, 12, 0.6);
  border-radius: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  top: 4px;
  cursor: pointer;
}

.video .vjs-button > .vjs-icon-placeholder:before {
  cursor: pointer;
}

.breadcrumbs {
  height: 49px;
  background: #F5F5F5;
  position: relative;
}

.breadcrumbs .wrapper {
  height: 100%;
}

.breadcrumbs ul {
  height: 100%;
}

.breadcrumbs ul li {
  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;
  font-size: 14px;
  margin-right: 30px;
}

.breadcrumbs ul li:last-child {
  margin-right: 0;
}

.breadcrumbs ul li a {
  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;
  color: rgba(33, 33, 33, 0.3);
}

.request-item {
  width: 100%;
  padding: 27px 24px;
  position: relative;
  border-radius: 6px;
  background: linear-gradient(116deg, #EDEDED 60%, #ADADAD);
  overflow: hidden;
  min-height: 360px;
}

.request-item__inner {
  position: relative;
  z-index: 1;
}

.request-item .btn {
  position: relative;
  z-index: 1;
  width: 100%;
}

.request-item__title {
  font-size: 29px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.request-item p {
  width: 48%;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.request-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.request-item__bg img {
  max-width: 100%;
  max-height: 250px;
}

.seo {
  width: 100%;
  position: relative;
  margin-top: 30px;
  background: #F5F5F5;
  border-radius: 6px;
}

.seo.seo--more .seo__inner:before {
  opacity: 0;
}

.seo__inner {
  padding: 45px 60px;
  position: relative;
  padding-bottom: 0;
  max-height: 180px;
  overflow: hidden;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.seo__inner:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(transparent));
  background: linear-gradient(to top, #f5f5f5, transparent);
  z-index: 1;
}

.seo__more {
  padding: 20px 0px;
}

.table {
  position: relative;
}

.table table {
  width: 100%;
}

.table table thead tr td {
  background: #BF000C;
  padding: 22px 21px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.table table thead tr td:nth-child(1) {
  width: 8%;
  border-radius: 7px 0px 0px 0px;
}

.table table thead tr td:nth-last-child(1) {
  border-radius: 0px 7px 0px 0px;
}

.table table tbody tr:nth-child(odd) td {
  background: #F8F8F8;
}

.table table tbody tr td {
  padding: 22px 21px;
}

.table table tbody tr:nth-last-child(1) td:nth-child(1) {
  border-radius: 0px 0px 0px 7px;
}

.table table tbody tr:nth-last-child(1) td:nth-last-child(1) {
  border-radius: 0px 0px 7px 0px;
}

.invest {
  position: relative;
  width: 100%;
}

.invest__list {
  position: relative;
}

.invest__list a {
  padding: 15px 0px;
  position: relative;
}

.invest__list a .icon {
  width: 26px;
  color: #BF000C;
  height: 26px;
  margin-right: 13px;
}

.invest__list a span {
  pointer-events: none;
  line-height: 26px;
}

.page-info {
  border-radius: 7px;
  height: 52px;
  background: #F8F8F8;
  position: relative;
  color: #212121;
  padding: 0px 15px;
}

.page-info .question__socials {
  margin: 0;
  position: relative;
  top: 2px;
  margin-left: 8px;
}

.page-info .question__socials a {
  padding: 0 8px;
  color: #212121;
}

.page-info .question__socials a:hover {
  color: #BF000C;
}

.map {
  height: 500px;
  position: relative;
}

.map #map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.map__inner {
  position: relative;
  width: 100%;
  z-index: 1;
}

.map__select {
  background: #212121;
  height: 56px;
  border-radius: 0px 0px 6px 6px;
}

.map__select i {
  width: 80px;
  height: 30px;
  border-radius: 50px;
  background: #fff;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.map__select i:before {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50px;
  background: #BF000C;
}

.map__select--checked i {
  background: #BF000C;
}

.map__select--checked i:before {
  background: #fff;
  -webkit-transform: translateY(-50%) translateX(50px);
          transform: translateY(-50%) translateX(50px);
}

.map__name {
  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;
  height: 100%;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  padding: 0px 20px;
  opacity: .3;
}

.map__name:hover {
  color: #fff !important;
  opacity: 1;
}

.map__name--active {
  opacity: 1;
}

.popover-inner > ymaps {
  padding: 12px;
  width: 32px !important;
  height: 32px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popover-inner > ymaps img {
  max-width: 100%;
  position: relative;
  top: 2px;
}

@media (max-width: 575px) {
  .map {
    height: 280px;
  }
  .map__name {
    font-size: 14px;
    padding: 0px 15px;
  }
  .map__select {
    height: 45px;
  }
  .map__select i {
    display: none;
  }
}

@media (max-width: 425px) {
  .map__select {
    width: 100%;
    border-radius: 0;
  }
  .map .wrapper {
    max-width: 100%;
    padding: 0;
  }
}

@media only screen and (max-width: 545px) {
  .page-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px 15px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .page-info span {
    width: 100%;
  }
  .page-info div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-info div span {
    margin-bottom: 15px;
    margin-top: 8px;
    opacity: .5;
  }
  .page-info div .question__socials {
    width: 100%;
    grid-gap: 8px;
  }
}

@media only screen and (max-width: 475px) {
  .table {
    overflow-x: auto;
  }
  .table::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: transparent;
    border-radius: 50px;
  }
  .table::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 50px;
    -webkit-box-shadow: inset 1px 1px 10px rgba(64, 55, 87, 0.3);
            box-shadow: inset 1px 1px 10px rgba(64, 55, 87, 0.3);
  }
  .table table {
    min-width: 800px;
  }
}

@media only screen and (max-width: 445px) {
  .typical blockquote {
    padding: 30px !important;
  }
  .typical blockquote:before {
    top: 1% !important;
  }
}

@media (max-width: 995px) {
  .request-item .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .seo__inner {
    padding: 30px 30px;
  }
}

@media (max-width: 1375px) {
  .page-scroll {
    right: 30px;
  }
  .page-scroll a b {
    display: none;
  }
}

@media (max-width: 675px) {
  .page-scroll {
    display: none !important;
  }
}

#menu {
  display: none;
  z-index: 100;
  overflow: auto;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  overflow-x: hidden;
}

.mm-menu input:focus, .mm-menu input:focus-visible, .mm-menu select:focus, .mm-menu select:focus-visible, .mm-menu textarea:focus, .mm-menu textarea:focus-visible {
  outline: none !important;
}

.mm-wrapper--opened #menu {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.mm-btn--close {
  position: absolute !important;
  right: -10px;
  top: -79px;
}

.mm-menu-logotype {
  padding: 20px;
  position: relative;
  width: 100%;
}

.mm-navbars--top {
  padding-bottom: 12px;
  border-color: #e9e9e9 !important;
}

.mm-listitem__btn, .mm-listitem__text {
  padding: 12px 20px !important;
  font-size: 13px;
}

.mm-listitem:after {
  left: 0 !important;
  border-color: #e9e9e9 !important;
}

.mb-info {
  position: relative;
  background: #F8F8F8;
  width: 100%;
}

.mb-info__item {
  padding: 15px 15px;
  position: relative;
  width: 100%;
  color: #636363 !important;
  font-size: 13px;
}

.mb-info__item .icon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}

.mm-panels {
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.mm-panel {
  position: relative !important;
  overflow: hidden !important;
  min-width: 100%;
}

.mm-panel {
  display: none;
}

.mm-panel--opened {
  display: block;
}

.mm-panel:after {
  content: none !important;
}

.mm-listitem:nth-last-child(1):after {
  content: none !important;
}

.mm-menu {
  --mm-size: 80%;
  --mm-min-size: 320px;
  --mm-max-size: 320px;
}

.mm-btn--next {
  border: 0 !important;
}

.mm-btn--next:after {
  width: 6px !important;
  height: 6px !important;
}

.mm-wrapper--position-left.mm-wrapper--opened .mm-slideout, .mm-wrapper--position-right.mm-wrapper--opened .mm-slideout {
  -webkit-transform: translateX(0px) !important;
  transform: translateX(0px) !important;
}

.mm-searchfield__input input {
  height: 38px !important;
  background: transparent !important;
  border-radius: 4px !important;
  border: solid 1px #E3E3E3 !important;
  padding: 0px 15px !important;
  font-size: 13px !important;
  font-weight: bold;
  outline: none;
}

.mb-socials {
  padding: 15px 0px;
  position: relative;
}

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

.mb-socials .question__socials {
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mb-socials .question__socials a {
  margin: 8px;
  color: #212121 !important;
}

.mb-socials .question__socials a:hover {
  color: #BF000C !important;
}

.mb-socials .question__socials a .icon {
  width: 16px;
  height: 16px;
}

.mb-socials, .mb-text {
  width: 100%;
}

.mb-text {
  padding: 12px 0px;
  position: relative;
  font-size: 11px;
  background: #F8F8F8;
  color: #636363 !important;
}

.mm-navbars--bottom {
  border: 0 !important;
}

.mm-listitem .productions__list-item {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mm-listitem .productions__item-overlay .icon {
  width: 16px;
  height: 16px;
}

.mm-listitem .productions__item-overlay span {
  font-size: 8px;
}

.mm-listitem .productions__item-image {
  width: 44px;
  height: 44px;
}

.mm-listitem .productions__item-info {
  font-size: 14px;
}

.mm-wrapper--position-left .mm-slideout, .mm-wrapper--position-right .mm-slideout {
  will-change: auto !important;
}

@media (max-width: 1075px) {
  #menu {
    display: block;
  }
}

body.active {
  overflow: hidden;
}

body.active .header, body.active main {
  -webkit-filter: blur(15px);
          filter: blur(15px);
  overflow: hidden;
}

.overlayed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  background: white;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 30px;
  padding-top: 60px;
}

.overlayed.animation-closed .popup {
  -webkit-animation: slideOut 0.3s ease;
          animation: slideOut 0.3s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

@-webkit-keyframes slideOut {
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes slideOut {
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.overlayed.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  width: 520px;
  background: #F5F5F5;
  position: relative;
  display: none;
  visibility: hidden;
  -webkit-animation-delay: 1000s;
          animation-delay: 1000s;
  -webkit-animation: slideIn 0.3s ease;
          animation: slideIn 0.3s ease;
  border-radius: 6px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin-bottom: 30px;
  overflow: hidden;
}

@-webkit-keyframes slideIn {
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes slideIn {
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.popup__close {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  color: #BF000C;
  position: absolute;
  right: 13px;
  top: 13px;
  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;
  z-index: 2;
  cursor: pointer;
}

.popup__close .icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.popup__close:hover {
  color: #E9000F !important;
}

.popup__inner {
  padding: 50px 70px;
  position: relative;
  z-index: 1;
  padding-top: 30px;
}

.popup__title {
  width: 100%;
  position: relative;
  text-align: center;
  cursor: default;
  font-size: 37px;
  font-weight: bold;
  line-height: 150%;
  z-index: 1;
  padding-top: 24px;
}

.popup__form {
  position: relative;
}

.popup__form-input {
  position: relative;
  margin-bottom: 15px;
}

.popup__form-input:last-child {
  margin-bottom: 0;
}

.popup__form-input input {
  width: 100%;
}

.popup__form-input .btn {
  width: 100%;
}

.popup__form-input p {
  font-size: 14px;
}

.popup__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.popup__thank-txt {
  font-weight: bold;
  padding-top: 70px;
}

.popup.active {
  display: block;
  visibility: visible;
}

.popup--thank {
  height: 500px;
}

@media only screen and (max-width: 725px) {
  .overlayed {
    padding: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .overlayed .popup {
    width: 100%;
    margin: 0;
    height: 100%;
    overflow: auto;
  }
  .overlayed .popup__review-input {
    width: 100%;
  }
  .overlayed .popup__inner {
    padding: 50px 20px;
  }
}

.header {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 105px;
  z-index: 10;
}

.header .wrapper {
  height: 100%;
}

.header__right {
  position: relative;
}

.header__links {
  position: relative;
  height: 100%;
  margin-right: 50px;
}

.header__links li {
  margin-right: 40px;
  height: 100%;
}

.header__links li:last-child {
  margin-right: 0;
}

.header__links li a {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #BF000C;
  border-radius: 10px;
  opacity: 0;
}

.header__links li a:hover:before {
  width: 100%;
  opacity: 1;
}

.header__phone {
  position: relative;
}

.header__phone-inner a {
  font-weight: bold;
  font-size: 17px;
}

.header__phone-btn-drop {
  position: relative;
  color: #BF000C;
  cursor: pointer;
  margin-left: 10px;
  padding: 7px 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__phone-btn-drop::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #BF000C;
  border-radius: 50px;
  opacity: .15;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}

.header__phone-btn-drop:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.header__phone-btn-drop .icon {
  width: 13px;
  height: 13px;
  position: relative;
}

.header__phone-btn-drop i {
  border: 3px solid transparent;
  border-top: 6px solid;
  color: #BF000C;
  position: relative;
  margin-left: 4px;
}

.header__time {
  position: relative;
  font-size: 14px;
  margin-left: 23px;
}

.header__phone-dropdown {
  position: absolute;
  left: 50%;
  top: 40px;
  padding: 12px 16px;
  -webkit-transform: translateX(-50%) translateY(-30px);
          transform: translateX(-50%) translateY(-30px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.header__phone-dropdown:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.header__phone-dropdown a {
  position: relative;
  z-index: 1;
  padding: 8px 0px;
  white-space: nowrap;
}

.header__phone-dropdown a i {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #fff;
  margin-right: 9px;
}

.header__phone-inner--opened .header__phone-dropdown {
  -webkit-transform: translateX(-50%) translateY(0px);
          transform: translateX(-50%) translateY(0px);
  opacity: 1;
  visibility: visible;
}

.header__mobile {
  position: relative;
  width: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: none !important;
  visibility: hidden;
  margin-left: 20px;
}

.header__mobile span {
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: #BF000C;
  margin: 2px 0px;
}

.header__mobile span:first-child {
  width: 70%;
}

.header--fixed {
  position: fixed;
  background: #fff;
  height: 105px;
}

@media (max-width: 1075px) {
  .header {
    height: 75px;
  }
  .header__links {
    display: none !important;
  }
  .header__mobile {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    visibility: visible;
  }
}

@media (max-width: 675px) {
  .header__logotype {
    width: 45px;
    overflow: hidden;
  }
}

@media (max-width: 425px) {
  .header__time {
    display: none;
  }
}

@media (max-width: 345px) {
  .header__phone-inner a {
    font-size: 15px;
  }
}

.navbar {
  position: fixed;
  height: 100%;
  width: 75px;
  background: #EDEDED;
  z-index: 15;
}

.navbar__logotype {
  width: 100%;
  height: 105px;
  border-bottom: solid 1px rgba(112, 112, 112, 0.13);
  color: #BFBFBF;
}

.navbar__logotype:hover {
  color: #BF000C;
}

.navbar__logotype svg {
  pointer-events: none;
}

.navbar__socials {
  position: relative;
  width: 100%;
  border-top: solid 1px rgba(112, 112, 112, 0.13);
  padding: 20px 0px;
}

.navbar__socials a {
  width: 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;
  padding: 10px 0px;
  color: #BFBFBF;
}

.navbar__socials a .icon {
  width: 22px;
  height: 22px;
}

.navbar__text {
  -webkit-writing-mode: tb;
      -ms-writing-mode: tb;
          writing-mode: tb;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
  color: #BFBFBF;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

.footer {
  position: relative;
}

.footer__top {
  padding: 40px 0px;
  position: relative;
  background: #F5F5F5;
}

.footer__inner {
  position: relative;
  width: 100%;
}

.footer__item {
  position: relative;
}

.footer__item-title {
  font-size: 20px;
  font-weight: 900;
  color: #212121;
  text-transform: uppercase;
  margin-bottom: 18px;
  pointer-events: none;
}

.footer__links--column {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 50px;
          column-gap: 50px;
  -webkit-column-width: 220px;
          column-width: 220px;
}

.footer__links {
  position: relative;
  margin-bottom: 15px;
}

.footer__links:last-child {
  margin-bottom: 0;
}

.footer__links li {
  line-height: 33px;
}

.footer__item-inner {
  position: relative;
  margin-bottom: 20px;
}

.footer__item-inner:last-child {
  margin-bottom: 0;
}

.footer__socials a {
  color: #BFBFBF;
  margin-right: 20px;
}

.footer__socials a:last-child {
  margin-right: 0;
}

.footer__socials .icon {
  width: 22px;
  height: 22px;
}

.footer__contacts-list {
  position: relative;
}

.footer__contacts-list li {
  line-height: 150%;
}

.footer__contacts-list li span {
  font-size: 11px;
}

.footer__pay-methods {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: .34;
}

.footer__bottom {
  height: 63px;
  background: #fff;
  position: relative;
  font-size: 15px;
}

.footer__bottom .wrapper {
  height: 100%;
}

.footer__bottom a {
  white-space: nowrap;
}

.footer__bottom a:hover {
  color: #464646 !important;
  opacity: .8;
}

.footer__bottom a span {
  margin-right: 15px;
  pointer-events: none;
}

@media (max-width: 1075px) {
  .footer__item {
    width: 33.3%;
  }
}

@media (max-width: 825px) {
  .footer__bottom {
    height: auto;
    padding: 20px 0px;
  }
  .footer__bottom .wrapper {
    -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__bottom span {
    padding-bottom: 8px;
    text-align: center;
  }
  .footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__item {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 425px) {
  .footer__bottom a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home {
  padding: 0;
}

.home .section__left {
  background: #F5F5F5;
  padding-bottom: 125px;
}

.home .section__content {
  background: #fff;
}

.home__inner-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.home__divider {
  position: absolute;
  left: 0;
  top: -105px;
  background: #F5F5F5;
  height: 105px;
  width: calc(100vw - (((100vw - 485px) / 2) + ((1210px - 40px) * 0.3) + 20px));
}

.home__inner-content {
  position: relative;
  width: 40%;
  padding-bottom: 100px;
}

.home__inner-content p {
  width: 70%;
  opacity: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.home__item-title {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 45px;
  color: #212121;
  cursor: default;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 60px;
  opacity: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.home__item-title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 1px;
  background: #707070;
}

.home__item-buttons {
  margin-top: 50px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.home__slider-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home__slider-item-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.home__slider-item-inner li {
  width: 100%;
  height: 100%;
  position: relative;
}

.home__slider-item-inner li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.17);
  z-index: 1;
}

.home__slider-item-inner li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center center;
}

.home__slider-item-inner .slick-list, .home__slider-item-inner .slick-track {
  height: 100%;
}

.home__slider-item-inner .slick-slide > div {
  height: 100%;
}

.home__slider-item-nav {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0%;
  bottom: 0;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home__slider-item-nav li {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  border: solid 2px transparent;
  width: 111px !important;
}

.home__slider-item-nav li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.home__slider-item-nav li img {
  width: 111px;
  height: 111px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.home__slider-item-nav .slick-list {
  overflow: initial;
  padding: 0 !important;
}

.home__slider-item-nav .slick-slide {
  margin: 0px 9px;
}

.home__slider-item-nav .slick-slide > div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home__slider-item-nav .slick-current li {
  border: solid 2px #BF000C;
}

.home__slider-item-nav .slick-current li::before {
  opacity: 0;
}

.home__inner .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home__content {
  overflow: hidden;
}

.home__slide-nav {
  position: absolute;
}

.home__slide-control {
  position: relative;
  margin-top: -101px;
  padding-bottom: 65px;
  pointer-events: none;
}

.home__slide-control .arrows {
  width: 40%;
  pointer-events: all;
}

.home .slick-current .home__item-title {
  -webkit-animation: slideDown 0.7s ease-in-out;
          animation: slideDown 0.7s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.home .slick-current .home__inner-content p {
  -webkit-animation: slideDown 0.7s ease-in-out;
          animation: slideDown 0.7s ease-in-out;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.home .slick-current .home__item-buttons {
  -webkit-animation: slideDown 0.7s ease-in-out;
          animation: slideDown 0.7s ease-in-out;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.home .slick-current .home__ellipse-animate {
  -webkit-animation: ellipse 1s ease-in-out;
          animation: ellipse 1s ease-in-out;
}

@-webkit-keyframes ellipse {
  0% {
    -webkit-transform: translate(100%, 100%) scale(0);
            transform: translate(100%, 100%) scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0%, 0%) scale(1.5);
            transform: translate(0%, 0%) scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-100%, -100%) scale(0);
            transform: translate(-100%, -100%) scale(0);
    opacity: 0;
  }
}

@keyframes ellipse {
  0% {
    -webkit-transform: translate(100%, 100%) scale(0);
            transform: translate(100%, 100%) scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0%, 0%) scale(1.5);
            transform: translate(0%, 0%) scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-100%, -100%) scale(0);
            transform: translate(-100%, -100%) scale(0);
    opacity: 0;
  }
}

.home .section__content {
  overflow: hidden;
}

.home__ellipse-animate {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(100%, 100%) scale(0);
          transform: translate(100%, 100%) scale(0);
  width: 1400px;
  height: 1400px;
  border-radius: 50%;
  background: #212121;
  z-index: 5;
}

@media (max-width: 1200px) {
  .home__inner-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home__inner-item .section__content {
    height: 400px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 auto;
            flex: 0 auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-transform: none;
            transform: none;
    position: relative;
  }
  .home__inner-item .home__slider-item-nav li {
    width: 80px !important;
  }
  .home__inner-item .home__slider-item-nav li img {
    width: 80px !important;
    height: 80px !important;
  }
  .home__inner-item .section__left {
    padding: 35px 0px;
  }
  .home__inner-content {
    padding-bottom: 0;
  }
  .home__slide-control {
    margin: 0 !important;
    background: #f5f5f5;
    padding: 45px 0px;
    padding-top: 20px;
  }
  .home__inner-content {
    width: 100%;
  }
  .home__divider {
    display: none;
  }
}

@media (max-width: 475px) {
  .home__inner-content {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home__item-title:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home__slide-control .arrows {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.productions {
  position: relative;
  padding-bottom: 5px;
}

.productions__list {
  position: relative;
  width: 100%;
}

.productions__list-item {
  width: calc(100% / 4);
  margin-bottom: 30px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.productions__list-item:hover .productions__item-overlay {
  opacity: 1;
}

.productions__item-image {
  border-radius: 6px;
  width: 83px;
  height: 83px;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}

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

.productions__item-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #BF000C;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.productions__item-overlay .icon {
  width: 36px;
  height: 24px;
}

.productions__item-info {
  pointer-events: none;
  width: calc(100% - 84px);
  padding-left: 15px;
  font-weight: bold;
  font-size: 16px;
}

.productions__list--small .productions__list-item {
  width: calc(100% / 3);
}

@media (max-width: 1075px) {
  .productions__list-item {
    width: calc(100% / 3);
  }
}

@media (max-width: 725px) {
  .productions__list--small .productions__list-item {
    width: calc(100% / 2);
  }
}

@media (max-width: 695px) {
  .productions__list-item {
    width: calc(100% / 2);
  }
}

@media (max-width: 525px) {
  .productions__list--small .productions__list-item {
    width: calc(100% / 1);
  }
}

@media (max-width: 475px) {
  .productions__list-item {
    width: calc(100% / 1);
  }
}

.about {
  padding: 0;
  overflow: hidden;
}

.about__inner {
  position: relative;
  width: 100%;
}

.about__item {
  width: 50%;
  padding: 40px 0px;
}

.about__item:first-child {
  padding-right: 30px;
}

.about__item:last-child {
  background: #EDEDED;
  padding: 35px;
}

.about__item:last-child:after {
  content: '';
  position: absolute;
  right: -4200px;
  width: 4200px;
  height: 100%;
  top: 0;
  background: #EDEDED;
}

.about .my-video-dimensions {
  width: 100%;
  height: 300px;
}

@media (max-width: 875px) {
  .about__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about__item {
    width: 100%;
    position: relative;
  }
  .about__item:first-child {
    padding-right: 0;
  }
  .about__item:last-child {
    padding-right: 0;
    padding-left: 0;
  }
  .about__item:last-child:before {
    content: '';
    position: absolute;
    left: -4200px;
    width: 4200px;
    height: 100%;
    top: 0;
    background: #EDEDED;
  }
}

@media (max-width: 485px) {
  .about .my-video-dimensions {
    height: 200px;
  }
}

.services__blocks {
  position: relative;
}

.services__block {
  position: relative;
  margin-bottom: 10px;
}

.services__block:nth-child(odd) .services__item:nth-child(1) {
  width: calc(100% / 2 - 4px);
}

.services__block:nth-child(odd) .services__item:nth-child(2) {
  width: calc(100% / 4 - 8px);
}

.services__block:nth-child(odd) .services__item:nth-child(3) {
  width: calc(100% / 4 - 8px);
}

.services__block:nth-child(even) .services__item:nth-child(1) {
  width: calc(100% / 4 - 8px);
}

.services__block:nth-child(even) .services__item:nth-child(2) {
  width: calc(100% / 4 - 8px);
}

.services__block:nth-child(even) .services__item:nth-child(3) {
  width: calc(100% / 2 - 8px);
}

.services__list {
  position: relative;
}

.services__item {
  height: 260px;
  background: #F5F5F5;
  border-radius: 6px;
  position: relative;
  padding: 27px 24px;
}

.services__item .services__item-name {
  color: #212121;
}

.services__item.services__item--red {
  background: #BF000C;
}

.services__item.services__item--red .services__item-name {
  color: #fff;
}

.services__item.services__item--dark {
  background: #212121;
}

.services__item.services__item--dark .services__item-name {
  color: #fff;
}

.services__item i {
  position: absolute;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: solid 5px transparent;
  border-bottom: solid 17px;
  color: #212121;
  opacity: 0;
  visibility: hidden;
}

.services__item-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.services__item-name {
  font-weight: bold;
  line-height: 100%;
  font-size: 27px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.services__more-item {
  width: 100%;
  padding: 24px;
  border-radius: 6px;
  background: #F5F5F5;
  border-top: solid 5px #212121;
  margin-top: 26px;
}

.services__item--active i {
  opacity: 1;
  visibility: visible;
}

.services__more-title {
  font-size: 28px;
  line-height: 100%;
  font-weight: bold;
  margin-bottom: 20px;
  color: #212121;
}

.services__more-block {
  width: 100%;
}

.services__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.services__item-image {
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.services__item:hover .services__img .services__item-image {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.services__item--active .services__item-image {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.services__card-review {
  width: 92%;
  border-radius: 6px;
  background: #fff;
  margin: 0 auto;
  padding: 0px 22px;
  padding-bottom: 17px;
  position: relative;
}

.services__card-review:before {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 47px;
  height: 34px;
  background: url(../images/citate.svg) no-repeat center center/cover;
}

.services__card-user-avatar {
  width: 39px;
  height: 39px;
  border-radius: 50px;
  margin-top: -20px;
  margin-bottom: 10px;
}

.services__card-ratings {
  color: #BF000C;
  margin-bottom: 15px;
}

.services__card-ratings .icon {
  width: 8px;
  height: 8px;
  margin-right: 4px;
}

.services__card-ratings .icon:last-child {
  margin-right: 0;
}

.services__card-text {
  position: relative;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}

.services__card-name {
  font-size: 12px;
}

.services__card-map {
  font-size: 10px;
  color: #BF000C;
}

.services__more-item-close {
  width: 100%;
  display: none;
  visibility: hidden;
}

@media (max-width: 1075px) {
  .services__item {
    width: calc(100% / 3 - 8px) !important;
  }
}

@media (max-width: 750px) {
  .services__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .services__item {
    width: 100% !important;
    margin-bottom: 16px;
  }
  .services__more-item {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    border: 0;
    z-index: 15;
  }
  .services__more-item div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services__more-block {
    margin-bottom: 20px;
  }
  .services__more-item-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: visible;
  }
  .services__more-item-inner {
    overflow: auto;
    height: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.clients__slider {
  position: relative;
}

.clients__slider .arrows {
  width: 100%;
}

.clients__slider-inner {
  position: relative;
  margin-bottom: 30px;
}

.clients__slider-inner img {
  max-width: 180px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.clients__slider-inner li:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

@media (max-width: 475px) {
  .clients .slick-slide li {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contacts__socials {
  position: relative;
  margin-bottom: 30px;
}

.contacts__socials a {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.5);
  margin-right: 40px;
}

.contacts__socials a:last-child {
  margin-right: 0;
}

.contacts__socials a .icon {
  width: 16px;
  margin-right: 10px;
  height: 16px;
}

.contacts__news {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: (minmax(0px, 1fr))[4];
      grid-template-columns: repeat(4, minmax(0px, 1fr));
}

.contacts__news-item {
  position: relative;
}

.contacts__news-item-media {
  width: 100%;
  position: relative;
  max-height: 140px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}

.contacts__news-item-media:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contacts__news-item-media img {
  max-width: 100%;
  border-radius: 6px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.contacts__news-item-info {
  position: relative;
}

.contacts__news-item-info a {
  font-size: 14px;
  color: #BF000C;
  text-decoration: underline;
}

.contacts__news-item-info a:hover {
  color: #212121 !important;
}

.contacts__news-item-date {
  font-size: 14px;
  color: rgba(33, 33, 33, 0.5);
  padding-bottom: 3px;
}

@media (max-width: 995px) {
  .contacts__news {
    -ms-grid-columns: (minmax(0px, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}

@media (max-width: 525px) {
  .contacts__socials {
    -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;
  }
  .contacts__socials a {
    padding: 10px 0px;
  }
  .contacts__news {
    -ms-grid-columns: (minmax(0px, 1fr))[1];
        grid-template-columns: repeat(1, minmax(0px, 1fr));
  }
}

.typical {
  position: relative;
  width: 100%;
}

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

.typical p {
  font-size: 14px;
  line-height: 26px;
}

.typical p a {
  color: #BF000C;
  text-decoration: underline;
}

.typical p a:hover {
  text-decoration: none;
}

.typical h1, .typical h2, .typical h3, .typical h4, .typical h5, .typical h6 {
  color: #212121;
  font-weight: 900;
}

.typical h1 {
  font-size: 27px;
  text-transform: uppercase;
}

.typical h2 {
  font-size: 24px;
  text-transform: uppercase;
}

.typical h3 {
  font-size: 20px;
  text-transform: uppercase;
}

.typical h4 {
  font-size: 18px;
  text-transform: uppercase;
}

.typical h5 {
  font-size: 15px;
  text-transform: uppercase;
}

.typical h6 {
  font-size: 14px;
  text-transform: uppercase;
}

.typical ul {
  position: relative;
}

.typical ul li {
  padding-left: 22px;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 22px;
  position: relative;
}

.typical ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background: #BF000C;
}

.typical ol {
  position: relative;
  counter-reset: myCounter;
}

.typical ol li {
  padding-left: 22px;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 22px;
  position: relative;
}

.typical ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ". ";
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 20px;
  color: #BF000C;
}

.typical blockquote {
  padding: 30px 30px 30px 100px;
  border-radius: 7px;
  background: #F4F4F4;
  position: relative;
  font-weight: 900;
}

.typical blockquote:before {
  content: '';
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 30px;
  background: url(../images/blockquote.svg) no-repeat center center/cover;
}

.contacts__items {
  position: relative;
  margin-bottom: 40px;
}

.contacts__item {
  width: calc(100% / 2 - 8px);
  position: relative;
}

.contacts__item-title {
  font-size: 18px;
  color: #212121;
  font-weight: 900;
  width: 100%;
  margin-bottom: 15px;
}

.contacts__item-list {
  position: relative;
  width: 100%;
}

.contacts__itm {
  padding: 16px 32px;
  border-radius: 6px;
  background: #F5F5F5;
  position: relative;
  margin-bottom: 16px;
}

.contacts__itm.contacts__itm--adress {
  background: #BF000C;
  color: #fff;
}

.contacts__itm.contacts__itm--adress a {
  color: #fff;
}

.contacts__itm.contacts__itm--adress a:hover {
  opacity: .8;
  color: #fff !important;
}

.contacts__itm.contacts__itm--adress .contacts__itm-top {
  color: #fff;
}

.contacts__itm.contacts__itm--adress .contacts__itm-name {
  font-weight: bold;
  margin-left: -20px;
}

.contacts__itm:last-child {
  margin-bottom: 0;
}

.contacts__itm-top {
  position: relative;
  width: 100%;
  color: #212121;
  margin-bottom: 11px;
}

.contacts__itm-name {
  font-weight: 900;
}

.contacts__itm-name .icon {
  margin-right: 6px;
  width: 14px;
  height: 14px;
}

.contacts__itm-phone {
  font-weight: bold;
}

.contacts__itm-bottom {
  font-size: 14px;
}

.contacts__itm-list-i {
  position: relative;
  width: 100%;
  font-size: 14px;
  cursor: default;
  margin-bottom: 24px;
}

.contacts__itm-list-i:last-child {
  margin-bottom: 0;
}

.contacts__itm-label {
  width: 40%;
  position: relative;
  font-weight: 900;
}

.contacts__itm-text {
  width: 60%;
  text-align: right;
}

.contacts__itm--transparent {
  background: transparent;
  padding: 0;
}

.contacts__download {
  font-weight: 900;
  text-decoration: underline;
  color: #212121;
}

.contacts__download:hover {
  text-decoration: none;
}

.contacts__question {
  position: relative;
  width: 100%;
  border-radius: 6px;
  background: #F5F5F5;
  padding-left: 5px;
}

.contacts__question .request-item {
  width: 300px;
  background: #F5F5F5;
}

.contacts__question-inner {
  position: relative;
  width: calc(100% - 300px);
  padding-left: 15px;
  padding-right: 30px;
}

.contacts__question-item {
  width: calc(100% / 2 - 8px);
  position: relative;
}

.contacts__question-item textarea {
  min-height: 105px;
  max-height: 105px;
}

.contacts__question-item p {
  font-size: 14px;
}

.contacts__question-item button, .contacts__question-item input {
  width: 100%;
}

.contacts__question-input {
  margin-bottom: 20px;
}

.contacts__question-input:last-child {
  margin-bottom: 0;
}

@media (max-width: 875px) {
  .contacts__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacts__item {
    width: 100%;
  }
  .contacts__question {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacts .request-item {
    min-height: auto;
    width: 100%;
  }
  .contacts .request-item__bg {
    display: none;
  }
  .contacts .request-item p {
    width: 100%;
  }
  .contacts__question-inner {
    width: 100%;
    padding-bottom: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 575px) {
  .contacts__question-inner form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__question-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .contacts__question-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 495px) {
  .contacts__itm-top, .contacts__itm-bottom {
    -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;
  }
  .contacts__itm-top {
    margin-bottom: 15px;
  }
  .contacts__itm-name {
    margin-left: 0 !important;
    margin-bottom: 9px;
  }
  .contacts__itm-bottom span {
    margin-bottom: 8px;
  }
  .contacts__itm-list-i {
    -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;
    margin-bottom: 15px;
  }
  .contacts__itm-list-i:last-child {
    margin-bottom: 0;
  }
  .contacts__itm-label {
    width: 100%;
    padding-bottom: 8px;
  }
  .contacts__itm-text {
    width: 100%;
    text-align: left;
  }
  .contacts__itm-text br {
    display: none;
  }
}
