@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Noto+Sans:400,700|Open+Sans:400,600,700|PT+Sans:400,700|Roboto:400,500,700|Rubik:400,500,700|Source+Sans+Pro:400,600,700|Ubuntu:400,500,700&display=swap&subset=cyrillic');

:root {
--primary-color: #333;
--accent-color: #772324;
--accent-color-2: #060101;
--box-shadow: 0px 0px 14px 0px rgba(77, 82, 94, 0.15);
--box-shadow-2: 0px 18px 45px #e4e7eb;
}

html {
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    background: #F6f6f6;
    font-size: 16px;
    color: var(--primary-color);
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

div {
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6, .title {
    font-family: 'Rubik', sans-serif;
}

img {
    max-width: 100%;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: -var(-accent-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(119, 35, 36, .2);
    padding-bottom: 2px;
    transition: all .3s ease-out;
}

a:hover {
    border-bottom: 1px solid rgba(119, 35, 36, 0);
}

.border-none {
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.section-title {
    color: #6f2122;
    margin-bottom: 60px;
}

.section-title:after {
    content: "";
    display: block;
    height: 3px;
    width: 70px;
    background: #6f2122;
    margin-top: 6px;
}

.topline {
    padding: 20px 0;
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #fff;
}

.topline-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.logo__img {
    max-width: 170px;
}

.promo {
    position: relative;
}

.promo-slider__title {
    font-size: 3em;
}

.promo-slider__item {
    min-height: 800px;
    display: flex!important;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-color);
    flex-direction: column;
}

.promo-slider__desc {
    max-width: 800px;
    line-height: 1.5;
}

.promo-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    color: var(--primary-color);
    display: flex!important;
    justify-content: space-between;
    justify-content: center!important;
    width: 100%!important;
    z-index: 99;    
    text-align: center;
}

.promo-slider-nav .slick-track {
  transform: none!important;
}

.promo-slider-nav__item {
    /*padding: 20px;*/
    /*position: relative;*/
    /*cursor: pointer;*/
    /*transition: all .2s ease-out;*/
    padding: 20px;
    position: relative;
    cursor: pointer;
    transition: all .2s ease-out;
    vertical-align: top;
    /*background: linear-gradient( 45deg, #efefef, transparent);*/
    background: linear-gradient(45deg, #e2e2e2, #b7b7b7, #e2e2e2);
    box-shadow: 0 1px 1px rgb(0 0 0 / 12%);
    transition: box-shadow .25s;
    /*padding: 30px;*/
    /* min-height: 225px; */
    margin: 0 15px 30px 0;
    border-radius: 7px;
}

.promo-slider-nav__item.slick-current {
    /*background: rgba(255,255,255,.8);*/
    /*color: #752324;*/
    position: relative;
    transition: all .3s ease-out;
}

.promo-slider-nav__item.slick-current:before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    position: absolute;
    right: 20px;
    top: 20px;
    transition: all .3s ease-out;
}

.promo-slider-nav__item.slick-current:after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background: var(--primary-color);
    position: absolute;
    right: 20px;
    top: 20px;
    transition: all .3s ease-out;
}

.promo-slider-nav__num {
    font-size: 6em;
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    opacity: .2;
}

.promo-slider-nav__img {
    max-width: 50px;
    display: inline-block;
    margin: 0 auto;
}

.promo-slider-nav__title {
    font-weight: bold;
    font-size: 1.1em;
    /*border-bottom: 2px solid #752324;*/
    display: block;
    line-height: 1.5;
}


.benefits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.benefits__item {
    /*background: linear-gradient(-45deg, #dedede, #fff);*/
    background: linear-gradient(45deg, #e2e2e2, #b7b7b7, #e2e2e2);
    width: 33%;
    text-align: center;
    border-radius: 10px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    /*box-shadow: var(--box-shadow-2);*/
    box-shadow: 0 1px 1px rgb(0 0 0 / 12%);
    transition: box-shadow .25s;
}

.benefits__item:nth-child(2) {
    height: 200px;
    /*color: #fff;*/
    /*background: linear-gradient(45deg, #782425, #180302);*/
}

/*.benefits__item:hover {*/
/*    box-shadow: rgb(0 0 0 / 12%) 0 35px 90px;*/
/*}*/

.benefits__img {
    max-width: 50px;
    margin: 20px;
}

.benefits__item:nth-child(3) {
    margin-left: -20px;
    z-index: -1;
}

.benefits__item:nth-child(1) {
    margin-right: -20px;
}

.section {
    margin: 100px 0;
}

.section-about {
    text-align: center;
}

/*.section-about:after {*/
/*    content: "";*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 30px;*/
/*    background: url(/img/separator.png);*/
/*    background-size: cover;*/
/*}*/

.about-img img {
    max-width: 300px;
}

.about-text {
    padding-left: 31px;
    /*border-left: 5px solid #772324;*/
    font-size: 22px;
    line-height: 1.25;
    /*color: #6F7983;*/
    max-width: 900px;
}



@keyframes render {
  0% {
    stroke-dasharray: 0 100;
  }
}

.canvas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
}

.title {  
  font-family: "Verdana", sans-serif;
  font-size: 18px;
  line-height: 21px;
  color: #591d48;
}

.caption-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.caption-item {
  position: relative;

  margin: 20px 0;
  padding-left: 30px;
  font-size: 20px;
  cursor: pointer;
}

.caption-item:hover {
  opacity: 0.8;
}

.caption-item::before {
  content: "";
  
  position: absolute;
  top: 0;
  left: 0;
  
  width: 20px;
  height: 20px;
  
  border-radius: 8px;
}

.caption-item:nth-child(1)::before {
  background-color: #448b22;
}

.caption-item:nth-child(2)::before {
  background-color: #f1ae45;
}

.caption-item:nth-child(3)::before {
  background-color: #d6422c;
}

.caption-item:nth-child(4)::before {
  background-color: #3888dd;
}

.caption-item:nth-child(5)::before {
  background-color: #ecd04a;
}

.caption-item:nth-child(6)::before {
  background-color: #501516;
}


.chart {
  min-width: 300px;
}

.unit {
  fill: none;
  stroke-width: 10;
  cursor: pointer;
  
  animation-name: render;
  animation-duration: 1.5s;
  transition-property: all; 
  transition-duration: 1.5s;
}

.unit:hover,
.hovered {
  opacity: 0.8;
  stroke-width: 12;
}

.unit:nth-child(1) {
  stroke: #448b22;
  stroke-dasharray: 42 100;
}

.unit:nth-child(2) {
  stroke: #f1ae45;
  stroke-dasharray: 6 100;
  stroke-dashoffset: -42;
}

.unit:nth-child(3) {
  stroke: #d6422c;
  stroke-dasharray: 24 100;
  stroke-dashoffset: -48;
}

.unit:nth-child(4) {
  stroke: #3888dd;
  stroke-dasharray: 3 100;
  stroke-dashoffset: -72;
}

.unit:nth-child(5) {
  stroke: #ecd04a;
  stroke-dasharray: 22 100;
  stroke-dashoffset: -75;
}

.unit:nth-child(6) {
  stroke: #501516;
  stroke-dasharray: 3 100;
  stroke-dashoffset: -97;
}

.unit {
  /* Здесь должны быть свойства, заданные ранее */
  fill: none;
  stroke-width: 10;
  animation-name: render;
  animation-duration: 1.5s; 
}

.unit:hover {
  opacity: 0.8;
  stroke-width: 12;
}

.unit {
  /* Здесь должны быть свойства, заданные ранее */
  fill: none;
  stroke-width: 10;
  transition-property: all; 
  transition-duration: 1.5s;
}

.hovered {
  opacity: 0.8;
  stroke-width: 12;
}

.priv-item {
    vertical-align: top;
    background: linear-gradient(45deg, #e2e2e2, #b7b7b7, #e2e2e2);
    box-shadow: 0 1px 1px rgb(0 0 0 / 12%);
    transition: box-shadow .25s;
    padding: 30px;
    min-height: 225px;
    margin: 0 0 30px 0;
    border-radius: 7px;
}

.priv-item img {
    max-width: 60px;
}

.priv-item:hover {
    box-shadow: rgb(0 0 0 / 12%) 0 35px 90px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    width: 50px;
    opacity: .2;
    cursor: pointer;
    z-index: 999;
    transition: all .3s ease-out;
}

.slider-arrow__right {
    right: 50px;
}

.slider-arrow__left {
    left: 50px;
}

.slider-arrow:hover {
    opacity: .4;
}

#map {
    position: relative;
}

.map-wrap {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrixtype=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);
}

.contacts-info {
    position: absolute;
    left: 23%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 440px;
    z-index: 1;
    padding: 40px;
    background: #fff;
    box-shadow: rgb(0 0 0 / 12%) 0px 20px 60px 0px, rgb(0 0 0 / 40%) 0px 0px 1px 0px;
    border-radius: 7px;
}

.contacts-info .logo {
    display: block;
    margin-bottom: 20px;
}

.section-contacts {
    margin-bottom: 0;
}

.contacts-info__item {
    display: flex;
    align-items: center;
}

.contacts-info__item p:first-child {
    margin-right: 20px;
}

.contacts-info__item i {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.3em;
}

.contacts-info__item a {
    color: var(--primary-color);
}

.footer {
    font-size: 12px;
    padding: 20px 0;
}

.partners-item {
    border: 1px solid #d8d8d8;
    color: #636363;
    display: flex;
    align-items: center;
    /*margin: 0 0 40px;*/
    /*margin-right: 40px;*/
    padding: 20px;
    border-radius: 7px;
    box-shadow: 0 1px 1px rgb(0 0 0 / 12%);
    margin-bottom: 30px;
    background: #fff;
    filter: grayscale(1);
    transition: all .3s;
}

.partners-item:hover {
    filter: grayscale(0);
}

.partners-item i {
    display: block;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.partners-slider .slider-arrow__left {
    left: -50px;
}

.partners-slider .slider-arrow__right {
    right: -50px;
}

.partners-slider .slider-arrow {
    width: 25px;
    transform: translateY(-70%);
}
  
.partners-slider .slick-slide {
    margin: 0 15px;
}
  
.partners-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.partners-item i {
    margin-right: 10px;
}

.partners-item p {
    margin: 0;
}

.slick-slide {
    outline: 0;
}

.docs-item {
    display: block;
    margin-bottom: 30px;
}

.docs-item img {
    box-shadow: rgb(0 0 0 / 12%) 0px 20px 60px 0px, rgb(0 0 0 / 40%) 0px 0px 1px 0px;
    border-radius: 7px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE 6-9 */
    transition: all .3s ease-out;
}

.docs-item img:hover {
    box-shadow: rgb(0 0 0 / 2%) 0px 20px 60px 0px, rgb(0 0 0 / 40%) 0px 0px 1px 0px;
}









.mobile-menu {
    z-index: 9999999;
}
.mobile-menu__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 30px;
  cursor: pointer;
  transition: .4s;
  float: right;
}
.mobile-menu__icon {
  display: block;
  position: relative;
  background: var(--accent-color);
  width: 90%;
  height: 2px;
  transition: .4s;
  border-radius: 4px;
}
.mobile-menu__icon::after, .mobile-menu__icon::before {
  content: "";
  display: block;
  position: absolute;
  background: var(--accent-color);
  width: 100%;
  height: 2px;
  transition: .4s;
  border-radius: 4px;
}
.mobile-menu__icon::after {
  top: 8px;
}
.mobile-menu__icon::before {
  top: -8px;
}
/*.mobile-menu__container {*/
/*  position: fixed;*/
/*  text-align: center;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  top: 75px;*/
/*  left: 0;*/
/*  right: 0;*/
/*  z-index: 999;*/
/*  height: 0;*/
/*  opacity: 1;*/
/*  transition: .5s;*/
/*  overflow: hidden;*/
  /*background-color: var(--accent-color);*/
/*  background: linear-gradient(45deg, #e2e2e2, #b7b7b7, #e2e2e2);*/
/*  overflow-y: scroll;*/
/*}*/

.mobile-menu__container {
    position: fixed;
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    top: 78px;
    /* left: 0; */
    right: 0;
    z-index: 999;
    height: 0;
    opacity: 1;
    transition: .5s;
    overflow: hidden;
    /* background-color: var(--accent-color); */
    background: linear-gradient(45deg, #e2e2e2, #b7b7b7, #e2e2e2);
    overflow-y: scroll;
    min-width: 30%;
}


.mobile-menu__list {
  transition: .5s;
  list-style: none;
  padding-left: 0;
  margin-top: -50px;
}
.mobile-menu__item {
  font-size: 22px;
  padding-bottom: 15px;
  line-height: 2;
  color: var(--accent-color);
}
.mobile-menu__link {
  text-decoration: none;
  /*color: #fff;*/
  /*border-bottom: 1px solid rgba(255,255,255,.2);*/
  border-bottom: 1px solid rgb(119 35 36 / 30%);
}
.mobile-menu__checkbox {
  display: none;
}
.mobile-menu__checkbox:checked ~ .mobile-menu__nav {
  opacity: 1;
}
.mobile-menu__checkbox:checked ~ .mobile-menu__container {
  height: 100%;
  /*margin-top: 20px;*/
  min-height: 100vh;
  padding: 30px;
}

.mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon {
  background: transparent;
}
.mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::before, .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::after {
  top: 0;
}
.mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.mobile-menu__link i {
    opacity: .5;
    font-size: 15px;
    vertical-align: middle;
}

.mobile-menu__drop-down {
    display: none;
}

.mobile-menu__drop-down-link i {
    position: relative;
    top: -3px;
}

.mobile-menu__drop-down-link {
    cursor: pointer;
}

.overflow {
    overflow: hidden;
    /*position: fixed;*/
}

.btn-callback {
    background: #772325;
    color: #fff;
    border-radius: 7px;
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    border: 2px solid #772325!important;
    box-shadow: 0 4px 16px #bbbbbb;
}

.btn-callback:hover {
    background: #fff;
    color: #772325;
}

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

.social-item {
    font-size: 2em;
    display: inline-block;
    margin: 20px 20px 0 0;
}

.social-item:first-child {
    color: #23d366;
}

.social-item:nth-child(2) {
    color: #0088cc;
}







.modal {
    top: 5%;
}

.modal-header, .modal-content {
    display: block;
    border-radius: 0;
    border: 0;
}

.modal-header {
    text-align: center;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

button.close {
    padding: 0;
    background-color: #0000;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.modal-desc {
    font-size: 15px;
    line-height: 1.5;
}

.modal-title {
    font-size: 22px;
    color: #333;
}

.modal-body {
    padding-top: 0;
    padding: 0;
}








.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
    border: 2px solid;
    border-radius: 2px;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  padding: 15px 15px 10px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 0px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.modal {
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
}

.modal-header, .modal-content {
    display: block;
    border-radius: 0;
    border: 0;
}

.modal-header {
    text-align: center;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

button.close {
    padding: 0;
    background-color: #0000;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    position: absolute;
    right: 20px;
    top: 10px;
    outline: 0;
    font-size: 2em;
    color: #405965;
    opacity: .3;
    transition: all .3s;
    cursor: pointer;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-desc {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.modal-body {
    padding-top: 0;
}

.modal-content {
    box-shadow: none;
}






.white-popup {
  position: relative;
  background: #FFF;
  padding: 0px;
  max-width: 400px;
  margin: 0 auto; }
  
.white-popup img {
    max-width: 100%;
}


.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8); }

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8; }

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0; }

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

/* Газета */

.mfp-newspaper .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0) rotate(500deg);
      -ms-transform: scale(0) rotate(500deg);
          transform: scale(0) rotate(500deg); }

.mfp-newspaper.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }

.mfp-newspaper.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0deg);
      -ms-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg); }

.mfp-newspaper.mfp-ready.mfp-bg {
  opacity: 0.8; }

.mfp-newspaper.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0) rotate(500deg);
      -ms-transform: scale(0) rotate(500deg);
          transform: scale(0) rotate(500deg);
  opacity: 0; }

.mfp-newspaper.mfp-removing.mfp-bg {
  opacity: 0; }

/* Слева направо */

.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px); }

.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0); }

.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.8; }

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0; }

.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0; }

/* Сверху */

.mfp-move-from-top .mfp-content {
  vertical-align: top; }

.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px); }

.mfp-move-from-top.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }

.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0); }

.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8; }

.mfp-move-from-top.mfp-removing .mfp-with-anim {
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
  opacity: 0; }

.mfp-move-from-top.mfp-removing .mfp-bg {
  opacity: 0; }

/* 3d разворот */

.mfp-3d-unfold .mfp-content {
  -webkit-perspective: 2000px;
          perspective: 2000px; }

.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotateY(-60deg);
          transform: rotateY(-60deg); }

.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }

.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg); }

.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.8; }

.mfp-3d-unfold.mfp-removing .mfp-with-anim {
  -webkit-transform: rotateY(60deg);
          transform: rotateY(60deg);
  opacity: 0; }

.mfp-3d-unfold.mfp-removing.mfp-bg {
  opacity: 0; }

/* Отдаление */

.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3); }

.mfp-zoom-out.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }

.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.8; }

.mfp-zoom-out.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
  opacity: 0; }

.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0; }

.white-popup {
  position: relative;
  background: #FFF;
  padding: 0px;
  width: auto;
  margin: 20px auto;
  outline: 0;
}

.modal-dialog {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.modal-left {
    flex: 40% 0 0;
}

.modal-img-wrap {
    position: relative;
}

.modal-img-title {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 0px 15px;
    border-radius: 4px;
    transform: skew(-10deg, 0deg);
    font-weight: bold;
    font-size: 12px;
    color: #2d427a;
    box-shadow: 2px 2px 0 0 #2c427a42;
}

.modal-img-title p {
    transform: skew(10deg, 0deg);
}

.modal-right {
    padding: 15px 30px;
}





















.checkbox {
    display: block;
    max-width: 22.1875rem;
    /*width: 16.5rem;*/
    /*height: 3.75rem;*/
    color: #a7a7a7;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.25rem;
    margin: 15px 5px;
}

.checkbox-dark {
    display: block;
    max-width: 22.1875rem;
    /*width: 16.5rem;*/
    /*height: 3.75rem;*/
    color: #a7a7a7;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.25rem;
    margin: 15px 5px;
}

.checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 2rem;
}

.checkbox label:before {
    height: .9375rem;
    width: .9375rem;
    border: .125rem solid #a7a7a7;
    left: 0;
    top: 50%;
    outline: 0;
    transform: translateY(-50%);
}

.checkbox label:after {
    height: .3125rem;
    width: .3125rem;
    background: #a7a7a7;
    left: .45rem;
    top: 50%;
    outline: 0;
    transform: translateY(-50%);
}

.checkbox-dark label:before {
    height: .9375rem;
    width: .9375rem;
    border: .125rem solid #a7a7a7;
    left: 0;
    top: 50%;
    outline: 0;
    transform: translateY(-50%);
}

.checkbox-dark label:after {
    height: .3125rem;
    width: .3125rem;
    background: #a7a7a7;
    left: .45rem;
    top: 50%;
    outline: 0;
    transform: translateY(-50%);
}

.checkbox a {
    color: #a7a7a7;
    border-bottom: 2px solid rgba(255, 255, 255, .2);
}

.checkbox a:hover, .checkbox-dark a:hover {
    color: #a7a7a7;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
}

.checkbox-dark a {
    color: #a7a7a7;
    border-bottom: 2px solid rgba(0, 0, 0, .1);
}

.checkbox input[type=checkbox] {
    opacity: 0;
    display: none;
}

.checkbox input[type=checkbox]:checked+label::after {
    content: "";
    outline: 0;
}

.checkbox label::after, .checkbox label::before {
    position: absolute;
    content: "";
    display: inline-block;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #2d427a;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(45 66 122 / 25%);
}

.form-medium .input {
    display: inline-block;
    width: 300px;
    margin: 0 30px 0 0;
}


[type="submit"] {
    border: 0;
    cursor: pointer;
    padding: 10px 40px;
    border-radius: 7px;
    background: #782426;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-send {
    display: inline-block;
    margin: 10px 0;
}

.input {
    max-width: 100%;
    border-radius: 7px;
    outline: 0;
    border: 1px solid #782426;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0px;
    padding: 10px;
    width: 90%;
    display: inline-block;
    margin-bottom: 10px;
}

.mfp-content {
    text-align: center;
}


.btn-mobile {
    display: none;
}

.btn-mobile:hover {
    background: transparent;
}


.canvas, .legend {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: url(desaturate.svg#greyscale);
    filter: gray;
    -webkit-filter: grayscale(1);
}

.portfolio img {
    display: block;
    margin-bottom: 30px;
}

/*ul li:before {*/
/*    content: "";*/
/*    display: inline-block;*/
/*    width: 20px;*/
/*    height: 2px;*/
/*    background: #772325;*/
/*    vertical-align: middle;*/
/*    margin-right: 10px;*/
/*}*/

ul li {
    margin: 10px 0;
}


.eco .section-title {
    color: #6f2122;
    margin-bottom: 25px;
}

.eco__img {
    background: url(/img/eco.png) no-repeat;
    width: 100%;
    min-height: 869px;
    background-size: contain;
    margin-top: 30px;
}

.icon-fixed {
    display: block;
    max-width: 35px;
    /*position: fixed;*/
    /*right: 30px;*/
    /*bottom: 30px;*/
    /*z-index: 999;*/
    border: none;
    /*-webkit-animation: spin 3s linear infinite;*/
    /*-moz-animation: spin 3s linear infinite;*/
    /*animation: spin 3s linear infinite;*/
    position: fixed;
    bottom: 100px;
    right: 100px;
    animation: myAnimation 10s infinite;
    /*transition: left 5s cubic-bezier(0, 0, 1, 1);*/
    z-index: 9999;
}

.icon-fixed:hover {
    border: 0px;
    /*transform: translateY(-10px)!important;*/
    -webkit-animation-play-state: paused;
    cursor: pointer;
}

@-moz-keyframes spin {
    0% { -moz-transform: rotate(-10deg); }
    50% { -moz-transform: rotate(20deg); }
    100% { -moz-transform: rotate(-10deg); }
}
@-webkit-keyframes spin {
    0% { -moz-transform: rotate(-10deg); }
    50% { -moz-transform: rotate(20deg); }
    100% { -moz-transform: rotate(-10deg); }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(-10deg);
        transform:rotate(-10deg);
    }
    50% {
        -webkit-transform: rotate(20deg);
        transform:rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(-10deg);
        transform:rotate(-10deg);
    }
}

.eco {
    margin: 150px 0 0;
}

#conf {
    max-width: 40%;
    padding: 20px;
}

.agree-wrap a, .agree-wrap a:hover, .agree-wrap a:active {
    border: 0;
}
.agree-wrap {
    margin: 10px 0;
}

#conf li {
    margin: 10px 0;
}

@keyframes myAnimation {
    0% {
        /*bottom: 100px;*/
        /*right: 100px;*/
        transform: translate(0%) translateY(0%);
    }
    25% {
        /*left: 100px;*/
        /*bottom: 100px;*/
        transform: translateX(-100%) translateY(0%);
    }
    50% {
        /*top: 100px;*/
        /*left: 100px;*/
        transform: translateX(-100%) translateY(100%);
    }
    75% {
        /*top: 100px;*/
        /*right: 100px;*/
        transform: translateX(100%) translateY(0%);
    }
    100% {
        /*bottom: 100px;*/
        /*right: 100px;*/
        transform: translateX(0%) translateY(0%);
    }
}



@media screen and (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    .topline {
        text-align: center;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }
    .logo__img {
        max-width: 150px;
        /*margin-bottom: 20px;*/
    }
    .topline-nav__item {
        margin: 10px 0;
    }
    .promo {
        margin-top: 60px;
    }
    .promo-slider__title {
        font-size: 1.7em;
    }
    .promo-slider-nav {
        position: relative;
        padding: 0;
        display: block!important;
        top: 0;
    }
    .promo-slider-nav__item {
        width: 44%!important;
        padding: 10px;
        margin: 10px;
    }
    
    .promo-slider-nav__title {
        font-size: .9em;
        margin: 0;
    }
    .promo-slider-nav__num {
        font-size: 5em;
    }
    .promo-slider__item {
        min-height: 400px;
        padding: 20px 0;
    }
    .about-text {
        padding-left: 0;
        margin-top: 30px;
    }
    .section {
        margin: 50px 0;
    }
    .benefits__item, .benefits__item:nth-child(2) {
        width: 100%;
        margin-bottom: 20px;
    }
    .benefits__item:nth-child(1) {
        padding-right: 0;
    }
    .benefits__item:nth-child(3) {
        margin-left: 0px;
        z-index: -1;
    }
    .priv-item {
        min-height: auto;
        text-align: center;
    }
    .partners-item {
        margin-bottom: 20px;
    }
    .contacts-info {
        position: relative;
        left: 0;
        top: 0; 
        transform: translateY(0%);
        margin: 30px;
    }
    .section-contacts {
        margin-bottom: 0;
    }
    .contacts-info .logo {
        margin-bottom: 0;
    }
    .mobile-menu__item {
        font-size: 16px;
    }
    .mobile-none {
        display: none;
    }
    /*.mobile-menu__container {*/
    /*    align-items: start;*/
    /*    top: 70px;*/
    /*}*/
    .mobile-menu__container {
        position: fixed;
        text-align: left; 
        display: flex;
        align-items: start;
        justify-content: center;
        top: 73px;
        /* left: 0; */
        right: 0;
        z-index: 999;
        height: 0;
        opacity: 1;
        transition: .5s;
        overflow: hidden;
        /* background-color: var(--accent-color); */
        background: linear-gradient(45deg, #e2e2e2, #b7b7b7, #e2e2e2);
        overflow-y: scroll;
        width: 80%;
    }
    .mobile-menu__list {
        margin-top: 30px;
        padding: 20px;
    }
    .chart {
        min-width: auto;
        max-width: 100%;
        height: auto;
    }
    .checkbox label {
        text-align: left;
    }
    .checkbox label br {
        display: none;
    }
    .btn-mobile {
        display: block;
        margin-top: 20px;
    }
    .partners-slider .slider-arrow {
        display: none!important;
    }
    .eco__img {
        background: url(/img/eco-mob.png) no-repeat;
        width: 100%;
        min-height: 869px;
        background-size: contain;
        margin-top: 30px;
    }
    #conf {
        max-width: 95%;
        padding: 10px;
        margin-top: 95px;
    }
    .icon-fixed {
        bottom: 45px;
        right: 45px;
    }
    ymaps {
        max-height: 400px!important;
    }
}



