/* ///////////////////////
////////////404 404 404 404 404 404 404 404 404 404 404 */

.p404 {
    font-size: 100px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 6px; 
    text-align: center;
}

.content__block__404 p {
    font-size: 24px;
    border-top: 1px solid rgba(38, 163, 222, 1);
    letter-spacing: 3px;
    color: #fff;
    margin: 15px;
    text-align: center;
}

.page__404 {
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 84vh;
    padding: 124px 0;
    background: url(../../assets/img/mf.png) no-repeat;
    background-position: center;
    background-size: cover;
}

.transition-loader-inner p {
    font-size: 24px;
    padding-top: 20px;
    color:#26a3de;
    /* margin-bottom: 40px; */
}

.img__block__404 {
    position: relative;
    display: flex;
    justify-content: center;
}


.button__404 {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button__404__left {
    width: 200px;
    height: 50px;
    text-transform: uppercase;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.button__404__left:before {
    content: '';
    width: 150%;
    position: absolute;
    height: 100%;
    background: rgba(38, 163, 222, 1);
    right: -170%;
    transform: skewX(-45deg);
    transition: .6s;
}

.button__404__left:after {
    content: 'Ð½Ð°Ð·Ð°Ð´';
    width: 100%;
    position: absolute;
    height: 100%;
    right: -100%;
    transition: .6s;
    top: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button__404__left:hover:before {
    right: -60%;
    cursor: pointer;
}

.button__404__left:hover:after {
    right: 0;
    cursor: pointer;
}

.button__404__right {
    width: 200px;
    height: 50px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(38, 163, 222, 1);
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.button__404__right:before {
    content: '';
    width: 150%;
    position: absolute;
    height: 100%;
    background: #fff;
    left: -170%;
    transform: skewX(45deg);
    transition: .6s;
    pointer-events: none;
}

.button__404__right:after {
    content: 'Ð½Ð° Ð³Ð»Ð°Ð²Ð½ÑƒÑŽ';
    width: 100%;
    position: absolute;
    height: 100%;
    left: -100%;
    transition: .6s;
    top: 0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.button__404__right:hover:before {
    left: -60%;
    cursor: pointer;
}

.button__404__right:hover:after {
    left: 0;
    cursor: pointer;
}



/* ///////////////////////////////////////// Ð¿Ñ€ÐµÐ»Ð¾Ð´ÐµÑ€ */

.cont_preloader{
    position: fixed;
    z-index: 555;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: #fff  */;
    display: flex;
    justify-content: center;
    align-items: center;
    /* pointer-events: none; */
  /* display: none; */
}
.transition-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.transition-loader-inner {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  width: 100%;
  color: #1e1e1e;
  padding: 0 100px;
  text-align: center;
}

.transition-loader-inner label {
  font-size: 1em;
  padding: 1%;
  opacity: 0;
  display: inline-block;
}

.transition-loader-inner label:after {
      content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    background: rgba(38, 163, 222, 0.8);
}

.transition-loader-inner label:nth-child(1) {
  -webkit-animation: loader 3s 600ms infinite ease-in-out;
  animation: loader 3s 600ms infinite ease-in-out;
}

.transition-loader-inner label:nth-child(2) {
  -webkit-animation: loader 3s 500ms infinite ease-in-out;
  animation: loader 3s 500ms infinite ease-in-out;
}

.transition-loader-inner label:nth-child(3) {
  -webkit-animation: loader 3s 400ms infinite ease-in-out;
  animation: loader 3s 400ms infinite ease-in-out;
}

.transition-loader-inner label:nth-child(4) {
  -webkit-animation: loader 3s 300ms infinite ease-in-out;
  animation: loader 3s 300ms infinite ease-in-out;
}

.transition-loader-inner label:nth-child(5) {
  -webkit-animation: loader 3s 200ms infinite ease-in-out;
  animation: loader 3s 200ms infinite ease-in-out;
}

.transition-loader-inner label:nth-child(6) {
  -webkit-animation: loader 3s 100ms infinite ease-in-out;
  animation: loader 3s 100ms infinite ease-in-out;
}

@keyframes loader {
  0% {
    opacity: 0;
    transform: translateX(-300px) scale(1);
  }
  33% {
    opacity: 1;
    transform: translateX(0px) scale(2);
  }
  66% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(300px) scale(2);
  }
}

@-webkit-keyframes loader {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-300px);
  }
  33% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  66% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(300px);
  }
}

/* /////////////////////////////////////// */
html {
    color: #505050;
}

.bgbg {
    height: 100vh;
    width: 100%;
    
    /* for new year cardd 
    background-color: #928A97;
    background-image: url("https://fezbrest.com/assets/new_year/card_page/img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
    overflow: hidden;
     end for new year card */
}

.button__link.sss{
    margin-bottom: 0;
}
/*/////////////////////////////////////Ðž Ð½Ð°Ñ*/

.fancybox-slide>* {
    padding: 0;
    width: 90%;
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}

.block__page {
    width: 100%;
    /* margin-top: 100px !important;   for Yandex NY garland - новогодняя мотня 2.1 */
}

.block__page .page__one {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto ;
    padding: 55px 0;
}

.about__us__info {
    display: flex;
    justify-content: space-between;
   /*  align-items: center; */
}
.about__us__info a{
    width: 49%;
}
.about__us__info__text{
    width: 50%;
}
.about__us__info img {
    
    width: 100%;
    margin-left: 35px;
}

.about__us__title {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid #26a3de;
    margin-bottom: 15px;
    text-transform: uppercase;
    color:#26a3de;
}

.rezident__title {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid #26a3de;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
    color:#26a3de;
}

.about__us__title a{
    color:#26a3de;
    text-decoration:none;
    text-align: center;
}

.about__us__info__text p {
    margin-bottom: 13px;
    font-size:17px;
    text-align: justify;
}
.history__block__page .fa {
    line-height: 24px;
    letter-spacing: 1px;
	margin-bottom: 5px;
}
.page__one a {
    /* color: #26a3de; */
    color: #505050;
    transition: .3s;
}

.page__one .info a {
    text-decoration: none;
}
    
.page__one .pdf__img {
    margin-right: 35px;
    
}
.page__one .all a {
    margin-right: 35px;
    
}
.page__one a:hover {
  transition: 0.5s;
  /* color: #044ea6; */
  color: #26A3DE;
}

.button__link {
    position: relative;
    margin-top: 20px;
    margin-bottom: 40px;
    /* display: none; */
}

a.link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 60px;
    text-align: center;
    line-height: 56px;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 18px;
    border: 2px solid #26a3de;
    color: #fff;
    background-color: #26a3de;
    transition: 0.5s;
    overflow: hidden;
}

a.link:hover {
    color: #26a3de;
}

a.link span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    transition: 0.5s;
    z-index: -1;
}

a.link span:nth-child(1) {
    top: -100%;
    left: -100%;
}

a.link:hover span:nth-child(1) {
    top: 0;
    left: 0;
}

a.link span:nth-child(2) {
    bottom: -100%;
    left: -100%;
}

a.link:hover span:nth-child(2) {
    bottom: 0;
    left: 0;
}

a.link span:nth-child(3) {
    top: -100%;
    right: -100%;
}

a.link:hover span:nth-child(3) {
    top: 0;
    right: 0;
}

a.link span:nth-child(4) {
    bottom: -100%;
    right: -100%;
}

a.link:hover span:nth-child(4) {
    bottom: 0;
    right: 0;
}

.slick-slide img {
    display: block;
    padding: 5px;
    width: 100%;
}

a.link2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 60px;
    text-align: center;
    line-height: 56px;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 18px;
    border: 2px solid #ee3840;
    color: #fff;
    background-color: #ee3840;
    transition: 0.5s;
    overflow: hidden;
}

a.link2:hover {
    color: #ee3840;
}

a.link2 span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    transition: 0.5s;
    z-index: -1;
}

a.link2 span:nth-child(1) {
    top: -100%;
    left: -100%;
}

a.link2:hover span:nth-child(1) {
    top: 0;
    left: 0;
}

a.link2 span:nth-child(2) {
    bottom: -100%;
    left: -100%;
}

a.link2:hover span:nth-child(2) {
    bottom: 0;
    left: 0;
}

a.link2 span:nth-child(3) {
    top: -100%;
    right: -100%;
}

a.link2:hover span:nth-child(3) {
    top: 0;
    right: 0;
}

a.link2 span:nth-child(4) {
    bottom: -100%;
    right: -100%;
}

a.link2:hover span:nth-child(4) {
    bottom: 0;
    right: 0;
}

.reverse {
    color: #fff;
    letter-spacing: 2px;
}

.plus {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 70px; */
    margin-top: 25px;
}

.plus__text {
    text-align: center;
    color: #fff;
}

.plus__text__title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bg1 {
    background: url(../../assets/img/decor/par.png);
}

.blr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.slider__rez {
    margin: 20px auto;
    width: 95%;
}

.slider__rez .parent__list {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider__rez .list {
    width: 165px;
    height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 12px 1px rgba(0, 0, 0, .1);
}
.slider__rez .list p{
    height: 30%;
    display: flex;
    justify-content:center;
    align-items: flex-start;
    text-align: center;
   margin-bottom: 5px;
}
.img__slider__rez{
    height: 100%;
      display: flex;
    justify-content:center;
    align-items: center;
    overflow: hidden;
}
.img__slider__rez img{
   width: 80%;
}
.l__text {
    text-align: center;
}

.all {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: -20px;
    /* margin-bottom: 60px; */
}

.plus__text {
    width: 240px;
}

.plus__text__title {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.bg__news {
    background: #e6e6e6;
}

.news {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.news .news__block {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 30%; /* for two columns value was 48% */
    margin-bottom: 20px;
    flex-direction: column; /* for three columns */
}

.news__block a{
    margin-right:0;
    margin-bottom:4px;
}
.news .news__block img {
    width: 330px; /* for two columns value was 270px */
    max-height: 215px;
}

@media (max-width: 1150px) {
    .news .news__block{
    width: 48%; /* for two columns value was 48% */
    }
    .news .news__block img {
    width: 270px; /* for two columns value was 270px */
    }
}

@media (max-width: 930px) {
    .news {
        flex-direction: column;
    }
    .news .news__block {
        width: 100%;
        margin-bottom: 15px;
        flex-direction: initial;
    }
    .news .news__block__text {
        margin-left: 8px;
    }
}

@media (max-width: 560px) {
    .news .news__block {
        flex-direction: column; /* for three column */
    }
    .news .news__block__text {
        margin-left: 0;
    }
}

.news__block__text__title {
    color: #26a3de;
    text-decoration: underline;
    text-transform: uppercase;
}

.news__block__text span {
    color: #9a9a9a;
}

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

.block__bottom .block__team__info {
    width: 48%;
}


/*///////////////////////////////////////////////*/


/*/////////////////////////////////////////////////*/


/*///////////////  ÐšÐÐš ÐÐÐ¡ ÐÐÐ™Ð¢Ð˜*/

.block__page iframe {
    width: 100%;
}

.bg__search {
    /*  background: #fff;  */
}

.bg__search .page__one {
    padding: 35px 0 5px;
}

.bg__search .page__one:last-child {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 20px;
}

.top__form{
    width: 96%;
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    padding: 35px;
    margin: 0 auto;
    padding-left: 0;
}
.top__form form{
   /*  width: 60%; */
    display: flex;
    flex-direction: column;
}
.top__form form h3{
   color: #000;
    font-family: 'Roboto', sans-serif;
}
.top__form form input{
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, .5);
    margin: 5px;
    padding: 5px;
    background: none;
    color: #000;
    font-family: 'Roboto', sans-serif;
    width:100%;
}
.top__form form input::placeholder,.top__form form textarea::placeholder{
    color: #000;
    font-family: 'Roboto', sans-serif;
}
.top__form form button{
   width: 20%;
   padding: 10px;
   background: rgba(238, 56, 64,1);
    transition: .2s;
    min-width: 110px;
    color:white;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    text-transform: lowercase;
}
.top__form form button:hover{
cursor:pointer;
       background:rgba(238, 56, 64,.8);
}
.top__form form input:focus,.top__form form textarea:focus{
    outline: none;
    
}
.top__form form textarea{
       margin: 5px;
    padding: 5px;
    background: none;
    color: #0c0000;
    width: 100%;
    border: 1px solid rgba(10, 1, 1, 0);
    border-bottom: 2px solid rgba(21, 0, 0, 0.5);
}
/*////////////////////////////////////////////*/


/*///////////////////////////////////////////////*/


/*///////////////////////// Ð¤ÑƒÑ‚ÐµÑ€*/
.footer__all__top{
    width: 100%;
    /* border-bottom: 13px solid #fff; */
    background: linear-gradient(to right, rgba(255, 255, 255, .9) 50%, rgba(38, 163, 222, .8) 50%);
}
.top__footer{
    width: 1170px;
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    padding: 35px;
    margin: 0 auto;
    padding-left: 0;
}

.top__footer form{
    width: 45%;
    display: flex;
    flex-direction: column;
}
.top__footer form h3{
   color: #fff;
    font-family: 'Roboto', sans-serif;
}
.top__footer form input{
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    margin: 5px;
    padding: 5px;
    background: none;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    width:100%;
}
.top__footer form input::placeholder,.top__footer form textarea::placeholder{
    color: #fff;
    font-family: 'Roboto', sans-serif;
}
.top__footer form button{
   width: 20%;
   padding: 10px;
   background: rgba(238, 56, 64,1);
    transition: .2s;
    min-width: 110px;
    color:white;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    text-transform: lowercase;
    margin-bottom: 10px;
}
.top__footer form button:hover{
cursor:pointer;
       background:rgba(238, 56, 64,.8);
}
.top__footer form input:focus,.top__footer form textarea:focus{
    outline: none;
    
}
.top__footer form textarea{
    margin: 5px;
    padding: 5px;
    background: none;
    color: white;
    width:100%;
    border: 1px solid rgba(255, 255, 255, .5);
      border-bottom: 2px solid rgba(255, 255, 255, .5);
}

.social,
.contact__footer,
.button__footer {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.social a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 5px;
    transition: .6s;
    overflow: hidden;
}

.social a:hover i {
    color: #fff;
}

.social a i {
    font-size: 30px;
    transition: .6s;
    color: #002d5b;
}

.social a:hover {
    background: #002d5b;
}

.button__footer {
    display: flex;
}

.button__footer {
    display: flex;
    justify-content: space-around;
    /* flex-direction: column; */
    /* height: 130px; */
    align-items: center;
}

.button__footer .button__link a {
    width: 200px;
}

.link,
.link2 {
    text-transform: lowercase;
}

.footer .page__one {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}

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

.contact__footer a {
    color: #000;
    text-decoration: none;
}

.contact__footer a:hover {
    color: #fff;
}

.contact__footer i {
    margin-right: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #002d5b;
    border-radius: 50%;
    font-size: 20px;
}

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

.tel,
.mail,
.address {
    /*margin-bottom: 5px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact__footer .tel, .mail, .address{
    margin-bottom: 5px;
}
.slick-prev:before,
.slick-next:before {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    color: #969696;
    opacity: .75;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev,
.slick-next {
    top: 45%;
}

/*/////////////////////////// MEDIA*/

/*
.home3__slider__text {
    pointer-events: none;
}
*/

@media (max-width: 1280px) {
    .block__page .page__one,
    .home3__slider__text {
        padding-left: 15px;
        padding-right: 15px;
    }
    .home3__slider__text {
        padding-left: 35px;
        padding-right: 35px;
    }
    .bg__search .page__one:last-child {
        display: flex;
        justify-content: center;
        padding: 15px 0 35px;
        flex-wrap: wrap;
    }
}


@media (max-width: 1200px) {
    .top__footer{
    width: 100%;
    
}
.top__footer{
    padding: 35px;
}
}


@media (max-width: 930px) {
     /*.home3__slider__text{
         height: 50vh;
     }  head height for NY Garland */
     .about__us__info img {
    max-width: 100%;
}
    .about__us__info {
        flex-direction: column;
    }
    .about__us__info img {
        margin: 0 auto 50px;
        width: 100%;
    }
}

@media (max-width: 800px) {
        .top__footer{
   flex-direction: column;
}
.top__footer form{
    width: 100%;
}
.contact__footer{
     width: 100%;
}
}

@media (max-width: 768px) {
    .block__page .page__one {
        padding-left: 15px;
        padding-right: 15px;
    }
    .home3__slider__text {
        height: 100vh;
    }
    .plus {
        flex-direction: column;
    }
    .plus__text {
        width: 100%;
        margin-bottom: 15px;
    }
    .footer .page__one {
        flex-direction: column;
        align-items: center;
    }
    .footer .page__one .social,
    .footer .page__one .contact__footer,
    .footer .page__one .button__footer {
        width: 100%;
        margin-bottom: 10px;
        /*justify-content: center;*/
        /*align-items: center;*/
    }
}

@media (max-width: 48rem) {
    .home3 .home__block__all {
        height: 100vh;
    }
    .home3__slider__text h1 {
        font-size: 1.9rem;
    }
}

@media (max-width: 500px) {
    .news__block {
        flex-direction: column;
    }
    .news__block img {
        margin-bottom: 10px;
        width: 70%;
    }
}

/*////////// Ð˜Ð¡Ð¢ÐžÐ Ð˜Ð¯ Ð¡Ð¢Ð ÐÐÐ˜Ð¦Ð /////////////////*/

.history__block__page .page__one__before {
    position: relative;
    padding-top: 0;
}

.history__block__page .page__one__before:before {
    content: '';
    position: absolute;
    left: 50%;
    border: 1px solid #208be0;
    height: 99%;
}

.history__block__page .page__one__before:after {
    content: '';
    position: absolute;
    left: 50%;
    border-top: 2px solid #208be0;
    border-bottom: 2px solid #208be0;
    height: 99%;
    top: 0;
    width: 21px;
    margin-left: -10px;
}

.history__block__page {
    margin-top: 40px;
}

.history__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4f4f4f;
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 768px) {
    .history__info {
        flex-direction: column;
    }
    .history__info__years {
        order: -1;
    }
    .history__info__text {
        margin-bottom: 20px;
        width: 100%;
    }
}

.history__info:nth-child(even) {
    flex-direction: row-reverse;
}

.history__info__text {
    width: 40%;
       transform: rotateX(90deg);
    transition: .4s;
    transition-delay: .2s;
}

.history__info__years {
    opacity: 0;
    width: 95px;
    height: 95px;
    background-color: #208be0;
    border-radius: 50%;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .4s;
}
.history__info__years.fade-in {
   opacity: 1;
}
.history__info__years:before {
    content: '';
    position: absolute;
    width: 140%;
    top: 50%;
    border: 1px solid #208be0;
    z-index: -1;
}

.history__info__years div {
    width: 90%;
    height: 90%;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
}

.history__info__img {
    max-width: 40%;
    width: 100%;
    height: 245px;
    margin-bottom: 40px;
    transform: rotateX(90deg);
    transition: .4s;
    transition-delay: .2s;
}
.history__info__img.fade-in {
    transform: rotateX(0deg);
}
.history__info__text.fade-in {
    transform: rotateX(0deg);
}
.history__info__img img {
    width: 95%;
    border-radius: 15px;
    /* height: 100%; */
    max-height: 330px;
}

@media (max-width: 768px) {
    .history__info {
        flex-direction: column;
    }
    .history__info:nth-child(even) {
        flex-direction: column;
    }
    .history__info__years {
        order: -1;
    }
    .history__info__text {
        margin-bottom: 20px;
        width: 90%;
    }
    .history__block__page .page__one__before:before {
        display: none;
    }
    .history__block__page .page__one__before:after {
        display: none;
    }
    .history__info__img {
        max-width: 90%;
        width: 100%;
        height: 245px;
        margin-bottom: 40px;
    }
    .history__info__years:before {
        width: 1140%;
    }
    .history__block__page .page__one {
        padding-bottom: 15px;
    }
}


/*///////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////////*/


/*//////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////*/


/*//////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////*/


/*////////// Ð¡Ð­Ð— Ð‘Ñ€ÐµÑÑ‚ ÑÐµÐ³Ð¾Ð´Ð½Ñ Ð¡Ð¢Ð ÐÐÐ˜Ð¦Ð /////////////////*/

.sez__info__slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slick__sez {
    width: 380px;
    height: 380px;
    margin-left: 20px;
    margin-bottom: 10px;
    border-left: 1px solid #208be0;
    border-bottom: 1px solid #208be0;
    padding-left: 5px;
    padding-bottom: 5px;
}

.slick__sez div {
    width: 100%;
    height: 100%;
}

.slick__sez div img {
    width: 100%;
    height: 100%;
    padding: 0;
}

.sez__link__firm {
    margin-top: 20px;
}

.sez__link__firm a {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .sez__info__slider {
        flex-direction: column;
    }
    .sez__info__slider__text {
        order: 1;
    }
    .slick__sez {
        margin-bottom: 40px;
        margin-left: 0;
    }
}

@media (max-width: 400px) {
    .slick__sez {
        width: 100%;
        height: 300px;
    }
}


/*///////////////////////////////////////////////////////*/


/*///////  slick arrow sez*/

.sez .slick-prev,
.sez .slick-next {
    top: 105%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #208be0;
    width: 30px;
    height: 30px;
    overflow: hidden;
    transition: .3s;
}

.sez .slick-prev:hover,
.sez .slick-prev:focus,
.sez .slick-next:hover,
.sez .slick-next:focus {
    background: #044ea6;
}

.sez .slick-prev:before,
.sez .slick-next:before {
    font-size: 40px;
    line-height: 0;
    height: 100%;
    margin-top: -5px;
}

.sez .slick-prev {
    left: auto;
    right: 35px;
}

.sez .slick-prev:before {
    content: 'â€¹';
    color: #fff;
}

[dir='rtl'] .sez .slick-prev:before {
    content: 'â€¹';
    color: #fff;
}

.sez .slick-next {
    right: 0;
}

.sez .slick-next:before {
    content: 'â€º';
    color: #fff;
}

[dir='rtl'] .sez .slick-next:before {
    content: 'â€º';
    color: #fff;
}


/*/////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////////*/


/*//////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////*/


/*//////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////*/


/*////////// ÐŸÐ°Ñ€Ñ‚Ð½ÐµÑ€Ñ‹ Ð¡Ð¢Ð ÐÐÐ˜Ð¦Ð /////////////////*/

.partner__img__logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.partner__img__logo__block .line__border {
    width: 195px;
    height: 195px;
}

.partner__img__logo__block {
    margin: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #4f4f4f !important;
        transform: rotateX(90deg);
    transition: .4s;
    transition-delay: .2s;
}
.partner__img__logo__block.fade-in {
    transform: rotateX(0deg);
}

.partner__img__logo__block:hover .line__border img {
    border: 27px solid rgba(74, 172, 251, .4);
}

.partner__img__logo__block .line__border {
    border: 1px solid #208be0;
    border-radius: 50%;
    overflow: hidden;
    transition: .6s;
}

.partner__img__logo__block .line__border img {
    width: 100%;
    height: 100%;
    border: 7px solid rgba(74, 172, 251, .4);
    border-radius: 50%;
    transition: .6s;
}

.firm__label {
    text-align: center;
    margin: 10px;
    width: 195px;
}
.security__rool{
    color: #fff;
    margin-bottom: 15px;
}
.security__rool a{
    color: #fff;
}
@media (max-width: 600px) {
    .partner__img__logo__block .line__border {
        width: 125px;
        height: 125px;
    }
    .firm__label {
        width: 135px;
        margin: 3px;
        word-wrap: break-word;
    }
    .partner__img__logo__block {
        margin: 5px 5px;
    }
    .page__one a {
        /* margin-right: 10px; */
        /* width: 45%; */
    }
   .page__one .pdf__img {
    margin-right:10px;
}
     .page__one a img{
       width: 100%;
    } 
     .page__one .pdf__doc a img,
     .page__one .filter a img{
       width: auto;
    }
    
    .page__one  .plus__text a img{
       width: 25%;
    }
}


/*/////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////////*/


/*//////////////////////////////////////////////////////*/

.animate {
    opacity: 0;
    transition: all 1s ease-out;
    transform: translateX(30px);
}

.animate.fade-in {
    opacity: 1;
    transition: all .5s ease-out;
    transform: translateX(0);
}

.block__page {
    position: relative;
    z-index: 55;
}

.bgk {
    /*  background: #fff;  */
}

.fk {
    transition: .6s;
}


/*///////////////////////////////////////////////*/


/*///////////////////////// Ð˜ÐÐ’Ð•Ð¡Ð¢ÐŸÐ ÐžÐ•ÐšÐ¢Ð«*/

.investment {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.investment__margin2{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.investment__margin2 .button__link a{
    position: static;
    text-align: center;
    line-height: 60px;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 18px;
    border: 2px solid #26a3de;
    color: #fff;
    background-color: #26a3de;
    transition: 0.5s;
    overflow: hidden;
    margin: 0;
    padding: 10px 15px;  
    border: none;
}
.investment__margin2 .button__link a:hover{
    background: red;   
    box-shadow: 0 0 4px 0 rgb(81, 181, 228);
}
.investment__block {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
    line-height: 20px;
    box-shadow: 0 0 14px 1px rgb(81, 181, 228);
    margin: 15px;
    min-height: 550px;
    width: 360px;
}

.investment__block b {
    margin-bottom: 30px;
}

.investment__block p {
    margin-top: 30px;
}

.img__block__investment {
    position: relative;
    width: 270px;
    height: 270px;
}

.pdf__img {
    position: absolute;
    z-index: 55;
    right: -47px;
    bottom: -15px;
}

.pos__img {
    width: 100%;
}

.investment__margin {
    padding: 0 !important;
}

.investment__margin2 {
    padding-bottom: 0 !important;
}
.investment{
    margin-top: -55px;
}
@media (max-width: 1300px) {
    .investment {
        justify-content: center;
    }
}
.filter_cont{
    width:25%;
}
.map_cont{
    width:70%;
    margin-left:5%;
}
.msearch2{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}
@media (max-width: 600px) {
    .pdf__img {
        right: -22px;
    }
    .investment__margin2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
}


/*/////////////////////////////////////////////////////*/


/*///////////////////////////////////////////////*/


/*///////////////////////// Ð˜ÐÐ’Ð•Ð¡Ð¢ÐŸÐ ÐžÐ•ÐšÐ¢Ð«*/

#wr-tabs {
    width: 100%;
    margin: 10px auto 40px;
}

#wr-tabs .tabs {
    /* background-color: #fff  */;
    margin-bottom: 3px;
    display: flex;
    justify-content: flex-start;
    color: #505050;
}

#wr-tabs .tabs:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}

#wr-tabs .tabs .tab {
    cursor: pointer;
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    text-align: center;
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, .1);
}

#wr-tabs .tabs .tab:first-child {
    box-shadow: -2px 0 6px 1px rgba(0, 0, 0, .1);
}

#wr-tabs .tabs .tab:last-child {
    box-shadow: 2px 0 6px 1px rgba(0, 0, 0, .1);
}

#wr-tabs .tabs .tab:nth-child(1) {
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, .1);
}

#wr-tabs .tabs .tab:last-child {
    border-right: none;
}

#wr-tabs .tabs .tab:hover,
#wr-tabs .tabs .tab.active {
    color: #26a3de;
    border-bottom: 3px solid #26a3de;
}

#wr-tabs .content {
    /* background-color: #fff  */;
}

#wr-tabs .content .tab-cont {
    display: none;
    padding: 15px 0;
}

#wr-tabs .content .tab-cont.active {
    display: block;
}


/*/////////////////////////////////////////////////////*/


/*///////////////////////////////////////////////*/


/*///////////////////////// ÐŸÐ¾Ñ€ÑÐ´Ð¾Ðº Ñ€ÐµÐ³Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ð¸*/

#wr-tabs2 {
    width: 100%;
    margin: 40px auto;
}

#wr-tabs2 .tabs {
    /* /* background-color: #fff  */; */
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
    color: #505050;
    padding: 0 15px;
}

#wr-tabs2 .tabs:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}

#wr-tabs2 .tabs .tab {
    cursor: pointer;
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    text-align: center;
    position: relative;
    border-bottom: 3px solid transparent;
}

#wr-tabs2 .tabs .tab .img__rule {
    transition: .6s;
}

#wr-tabs2 .tabs .tab:hover .img__rule {
    background-color: #208be0;
}

#wr-tabs2 .tabs .tab:hover .img__rule {
    background-color: #208be0;
}

.arrow {
    position: absolute;
    right: -32px;
    top: 50%;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* opacity: 0; */
}

.arrow img {
    width: 100%;
}

#wr-tabs2 .tabs .tab:hover,
#wr-tabs2 .tabs .tab.active {
    color: #26a3de;
    border-bottom: 3px solid #26a3de;
}


/* #wr-tabs2 .tabs .tab.active .arrow{
     opacity: 1;
 } */

#wr-tabs2 .content {
    /* background-color: #fff  */;
}

#wr-tabs2 .content .tab-cont {
    display: none;
    padding: 15px 10px;
}

#wr-tabs2 .content .tab-cont.active {
    display: block;
}


/*//////////  ÑÐ¾Ñ‚Ñ€ÑƒÐ´Ð½Ð¸ÐºÐ¸*/

.block__team__contact {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    color: #505050;
}

.block__team__contact__one {
    width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 15px;
}

.block__team__contact__one p {
    margin: 3px 0;
}

.block__team__contact__one img {
    width: 100%;
    margin-bottom: 5px;
}

.classificate {
    color: #a9a9a9;
}


/*//////////////// Ð¸Ð½Ñ„Ð¾ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ð°Ñ*/

.block__team__info {
    color: #505050;
    margin-top: 15px;
}

.block__team__info ul {
    margin-top: 10px;
}

.block__team__info ul li i {
    color: #26a3de;
    margin-right: 5px;
}

.block__team__info ul li {
    margin-bottom: 3px;
}

.block__team__info p {
    line-height: 27px;
}

.block__info__title {
    color: #26a3de;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.block__info__img__list {
    display: flex;
    padding-top: 10px;
}

.block__info__img__list img {
    margin-right: 30px;
    margin-bottom: 20px;
    max-width: 180px;
    max-height: 180px;
}

.litle__contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.litle__contact .fa {
    background-color: #505050;
    color: #fff;
    padding: 4px;
    border-radius: 50%;
    margin-right: 5px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_sd {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
}

.slide_down{
    height: 53px;
    width: 53px;
    border-radius: 50px;
    border: 3px solid #ffffff;
    position: absolute;
    bottom:15px;
    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;
    -webkit-animation: pulse 1s infinite;
            animation: pulse 1s infinite;
    cursor: pointer;
    z-index: 50;
    -webkit-transform:translateX(-150%);
        -ms-transform:translateX(-150%);
            transform:translateX(-150%);
}

.slide_down_inner{
    height: 35px;
    width: 35px;
    
    border-radius: 50px;
    background: #26a3de url(../../assets/img/slide_down.png) center no-repeat;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.7);
  }
  70% {
      -webkit-box-shadow: 0 0 0 20px rgba(255,255,255, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.7);
    box-shadow: 0 0 0 0 rgba(255,255,255, 0.7);
  }
  70% {
      -moz-box-shadow: 0 0 0 20px rgba(255,255,255, 0);
      box-shadow: 0 0 0 20px rgba(255,255,255, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
      box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}
.black__class {
    color: #505050;
    text-decoration: underline;
}

@media (max-width: 500px) {
    #wr-tabs .tabs {
        flex-direction: column;
    }
    .block__info__img__list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 20px;
    }
}

#wr-tabs .content .maps__cont.active {
    display: flex;
    justify-content: space-between;
}

.maps__cont .map__inf {
    width: 50%;
    height: 400px;
}

.maps__cont .conSoc {
    width: 50%;
}

.maps__cont .conSoc a {
    color: #000;
}

.maps__cont .social,
.maps__cont .contact__footer,
.maps__cont .button__footer {
    width: 100%;
}

.maps__cont .contact__footer i {
    margin-right: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #002d5b;
    border-radius: 50%;
    font-size: 20px;
}

@media (max-width: 900px) {
    #wr-tabs .content .maps__cont.active {
        flex-direction: column;
    }
    .maps__cont .map__inf {
        width: 100%;
    }
    .maps__cont .conSoc {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .maps__cont .map__inf {
        height: 280px;
    }
}


/*/////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////////*/


/*///////////////////////////////////////////////*/


/*///////////////////////// ÐÐ´Ð¼Ð¸Ð½Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ*/

.administration b {
    margin-bottom: 15px;
}

.admin__text {
    margin-bottom: 20px;
}

.administration__block__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.administration__img__text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 45%;
    margin: 12px 5px 0 0;
}

.administration__img__text img {
    margin-right: 10px;
}

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

.facilities i {
    color: #26a3de;
}

.facilities div span {
    color: #26a3de;
    text-decoration: underline;
    margin-right: 15px;
}

.facilities__img__block {
    margin: 30px 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.fa-check{
    width: -webkit-fill-available;
	margin-left: 10px;
}
.fa-check:before{
    color: rgb(38, 163, 222);
}
.facilities__img__block div {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-transform: uppercase;
    color: #26a3de;
    width: 150px;
    height: 180px;
    margin: 0 15px;
}

.facilities__img__block div img {
    height: 70px;
    margin: 0 auto 10px;
}

.facilities__img__block div p span {
    margin-right: 4px;
}

.pdf2 {
    margin-bottom: 25px;
}

.facilities__block__text {
    margin-top: 10px;
    margin-bottom: 30px;
}

.blue__text__fac {
    margin: 10px 0 5px;
    color: #26a3de;
    text-transform: uppercase;
    padding-top: 10px;
}

@media (max-width: 500px) {
    .about__us__title {
        white-space: normal;
    }
}

@media (max-width: 800px) {
    .facilities__img__block {
        justify-content: center;
    }
    .button__footer {
    margin-top: 15px;
    justify-content: space-between;
    flex-direction: column;
    height: 130px;
    align-items: center;
}
.footer__all__top{
    width: 100%;
    border-bottom: 13px solid #fff;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .5) 15%, rgba(38, 163, 222, .97) 85%);
}
.top__footer form{
    margin-top: 15px;
}
}


/*////////////////////////////////////////////////*/


/*////////////////////////////////////////////////////////////////*/


/*///////////////////////////////////////////////*/


/*///////////////////////// ÐŸÐ¾Ñ€ÑÐ´Ð¾Ðº Ñ€ÐµÐ³Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ð¸*/

.registration__block__shem {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /*height: 355px;*/
    position: relative;
    margin-bottom: 40px;
}

.block__shem {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 170px;
}

.registration__block__shem:before {
    content: '';
    position: absolute;
    top: 125px;
    width: 100%;
    border-bottom: 2px solid #26a3de;
}

.block__shem p:last-child {
    margin-top: 20px;
    text-align: center;
}

.block__shem p span {
    font-size: 64px;
    color: #26a3de;
}

.img__rule {
    background-color: #26a3de;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1100px) {
    .tabs {
        flex-direction: column;
    }
    .registration__block__shem:before {
        display: none;
    }
    .block__shem p span {
        display: none;
    }
    .block__shem {
        width: 100%;
        border-bottom: 1px solid #208be0;
    }
    .block__shem p {
        text-transform: uppercase;
    }
  /*   #wr-tabs2 .tabs .tab.active {
      border-left: 3px solid #ee3840;
      border-bottom: none;
      margin-bottom: 0;
  } */
    #wr-tabs2 .tabs .tab.active:before {
            content: '';
            position: absolute;
            width: 27px;
            height: 3px;
            background: #26a3de;
            left: -20px;
            top: 14px;
    }
     #wr-tabs2 .tabs .tab.active:after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            border-top: 2px solid #26a3de;
            border-right: 2px solid #26a3de;
            left: -7px;
            top: 9px;
            transform: rotate(45deg);
    }
    #wr-tabs2 .tabs .tab.active .block__shem {
    width: 100%;
    border-bottom: none;
}
    .block__shem p:last-child {
        margin-top: 0;
    }
    .img__rule {
        width: 140px;
        height: 140px;
        display: none;
    }
    .arrow {
        display: none;
    }
}

@media (max-width: 960px) {
    .img__rule {
        width: 100px;
        height: 100px;
    }
    .img__rule img {
        width: 50%;
    }
    .arrow {
        height: 78%;
    }
    .arrow img {
        width: 100%;
        padding: 0 2px;
    }
}

@media (max-width: 768px) {
    .registration__block__shem {
        flex-direction: column;
        height: auto;
        align-items: center;
        justify-content: center;
    }
    .arrow {
        display: none;
    }
    .img__rule {
        width: 170px;
        height: 170px;
        margin: 5px;
    }
    .img__rule img {
        width: 50%;
    }
    .registration__block__shem:before {
        display: none;
    }
    .block__shem {
        width: 100%;
        border-bottom: 2px solid #26a3de;
    }
}

.registration ul {
    font-weight: bold;
}

.registration ul li {
    font-weight: normal;
}

.registration i {
    color: #26a3de;
    margin-right: 10px;
}

.nav__link__reg {
    margin-top: 0px;
}

.nav__link__reg li {
    margin: 4px 40px;
    /* width: 50%; */
}

.nav__link__reg li:first-child {
    margin-top: 15px;
}

.reg__pdf__doc__block {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.pdf__doc a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px 0;
    color: #26a3de;
}

.pdf__doc a img {
    margin-right: 10px;
}


/*////////////////////////////////////////////////*/


/*////////////////////////////////////////////////////////////////*/


/*///////////////////////////////////////////////*/


/*///////////////////////// Ð“Ð¾ÑÑƒÐ´Ð°Ñ€ÑÑ‚Ð²ÐµÐ½Ð½Ð°Ñ Ñ€ÐµÐ³Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ*/

.state ul li i,
.agreement ul li i,
.obtaining ul li i {
    color: #26a3de;
    margin-right: 5px;
}

.state ul {
    margin-bottom: 15px;
}

.state p a,
.agreement p a,
.obtaining p a {
    margin-right: 0;
}

.state b i {
    font-weight: normal;
}

.online .facilities__block__text .blue__text__fac {
    margin-bottom: 20px;
    margin-top: 25px;
}

.obtaining p span {
    color: #26a3de;
    margin-right: 5px;
}


/*///////////////////////////////////////////////*/


/*////////////////////////////////////////////////*/


/*///////////////////////////////////////////////*/


/*///////////////////////// Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ð°ÐºÐºÐ°Ñ€Ð´Ð¸Ð¾Ð½Ð°*/

.all {
    text-align: center;
}

.all input[type="radio"] {
    display: none;
}

.all input[type="radio"]:checked+label {
    background-color: #2980b9;
    color: white;
}

.all input[type="radio"]:checked+label:before {
    content: 'Close All';
}

.all label {
    position: relative;
    margin: 0;
    padding: 0.3125rem 1.875rem;
    font-size: 0.875rem;
    font-weight: 300;
    color: #2980b9;
    background-color: white;
    border: 0.0625rem solid #2980b9;
    border-radius: 6.1875rem;
}

.all label:before {
    content: 'Open All';
}

.accordion {
    position: relative;
    width: 100%;
    /*box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.3);*/
}

.accordion .trigger {
    margin-bottom: 0.3125rem;
}

.accordion .trigger input[type= "checkbox"] {
    display: none;
}


.accordion .trigger .checkbox {
    position: relative;
    display: block;
    text-transform: uppercase;
    width: 100%;
    margin: 0;
    padding: 0.625rem;
    color: white;
    cursor: pointer;
    background-color: #26a3de;
}

.accordion .trigger .checkbox i {
    position: absolute;
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    right: 1.25rem;
}

.accordion .trigger .checkbox i:before,
.accordion .trigger .checkbox i:after {
    position: absolute;
    content: '';
    width: 1rem;
    height: 0.1875rem;
    background-color: white;
    transition: -webkit-transform 250ms;
    transition: transform 250ms ease;
    transition: transform 250ms ease, -webkit-transform 250ms ease;
}

.accordion .trigger .checkbox i:before {
    -webkit-transform: translate(-0.3125rem, 0.5rem) rotate(45deg);
    -ms-transform: translate(-0.3125rem, 0.5rem) rotate(45deg);
    transform: translate(-0.3125rem, 0.5rem) rotate(45deg);
}

.accordion .trigger .checkbox i:after {
    -webkit-transform: translate(0.3125rem, 0.5rem) rotate(-45deg);
    -ms-transform: translate(0.3125rem, 0.5rem) rotate(-45deg);
    transform: translate(0.3125rem, 0.5rem) rotate(-45deg);
}

.accordion .trigger .content__accordion {
    position: relative;
    max-height: 0;
    padding: 0;
    overflow-y: hidden;
    font-size: 1rem;
    line-height: 1.5;
    /*background-color: whitesmoke;*/
    transition: max-height 500ms ;
}

.accordion .trigger .content__accordion h3 {
    margin: 1.875rem 0 0.9375rem 1.875rem;
}


.accordion .trigger .content__accordion.activate{
    max-height: 331.875rem;
    transition: max-height 500ms ;
    /* padding: 10px 0; */
}


/*///////////////////////////////////////////////*/


/*////////////////////////////////////////////////*/


/*///////////////////////////////////////////////*/


/*//////////////////////////////Ð—Ð°ÐºÐ¾Ð½Ð¾Ð´Ð°Ñ‚ÐµÐ»ÑŒÑÑ‚Ð²Ð¾*/

.content__accordion {
    width: 95%;
    margin: 0 auto;
}

.pdf__doc__accordion {
    width: 80%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 15px 0;
}

.pdf__doc__accordion img {
    margin-right: 15px;
    height: 50px;
}

.trigger {
    background-color: #ebebeb;
}

.residents__block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.residents__block .filter {
    width: 250px;
    margin-right: 30px;
}

.residents__text__filter {
    width: 100%;
    background-color: #26a3de;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    text-align: center;
}

.select__on {
    width: 100%;
    margin: 5px 0;
    background-color: #323232;
    color: #fff;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
}

.select__on select {
    height: 100%;
    border: none;
    background-color: #26a3de;
    color: #fff;
}

.select__on select option {
    padding: 5px;
}

.residents__block .accordion .trigger #checkbox-1:checked+label {
    background-color: #323232;
}

.residents__block .accordion .trigger .checkbox {
    background-color: #323232;
}

.residents__block .accordion .trigger .content__accordion {
    background-color: #505050;
}

.residents__block .content__accordion {
    width: 100%;
    padding: 10px;
}

.residents__block input[type='radio']+label:hover,
.residents__block input[type='radio']:focus+label {
    color: #fff;
}

.residents__block input[type='radio']+label {
    padding: 0 10px;
    color: #fff;
}

.residents__block .accordion .trigger .checkbox {
    text-transform: lowercase;
}

.residents__block {
    width: 100%;
}

.residents__block__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 85%;
}

.residents__block__page activate {
  height: 450px;

}
.residents__block__page {
    width: 30%;
    min-width: 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    min-height: 280px;
    height: 400px;
    position: relative;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .2);
    margin: 5px 5px 25px 5px;
    /*  transform: rotateX(90deg); */
    transition: .4s;
    transition-delay: .2s;
}
.residents__block__page.fade-in {
    transform: rotateX(0deg);
}
.residents__block__page img {
    width: 92%;
}

.rel {
    position: relative;
}

.residents__block__page .info {
    padding: 5px;
    width: 100%;
    height: 0px;
    position: relative;
    top: 0;
    /*height: 93%;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #d2d2d2;
    opacity: 0;
    pointer-events: none;
    z-index: 44;
    transition: 0.5s;
}

.residents__block__descr.activate {
    display: none;
    visibility: hidden;
}

.info.activate {
    opacity: 1;
    pointer-events: auto;
    height: 100px;
}

.arrow__info {
    width: 100%;
    background: #d2d2d2;
    display: flex;
    justify-content: center;
    padding: 5px 0;
}

.arrow__info i {
    transition: .6s;
}

.arrow__info.on i {
    transform: rotateX(180deg);
}

.arrow__info:hover {
    cursor: pointer;
}

.residents__block__page .info i {
    margin-right: 10px;
    transition: .6s;
}

.residents__block__page .info a {
    margin: 0;
}

.residents__block__page p {
    text-align: center;
    margin-top: 15px;
    /* width: 100px; */
}

.rezid p {
  margin-top: 50px;
}

section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.3125rem;
}

input[type='radio'] {
    height: 0;
    width: 0;
}

input[type='radio']+label {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: .3em 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type='radio']+label>ins {
    position: absolute;
    display: block;
    bottom: 0;
    left: 2em;
    height: 0;
    overflow: hidden;
    text-decoration: none;
    transition: height 300ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type='radio']+label>ins>i {
    position: absolute;
    bottom: 0;
    font-style: normal;
    color: #4FC3F7;
}

input[type='radio']+label>span {
    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;
    margin-right: 1em;
    height: 1em;
    background: transparent;
    border: 0.125rem solid #9E9E9E;
    border-radius: 0.125rem;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type='radio']+label:hover,
input[type='radio']:focus+label {
    color: #000;
}

input[type='radio']+label:hover>span,
input[type='radio']:focus+label>span {
    background: rgba(255, 255, 255, 0.1);
}

input[type='radio']:checked+label>ins {
    height: 100%;
}

input[type='radio']:checked+label>span {
    border: .5em solid #4FC3F7;
    -webkit-animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
    animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type='radio']:checked+label>span:before {
    content: "";
    position: absolute;
    top: 0.4em;
    left: .5em;
    -webkit-animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
    animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
}


/* ////////////////////////////////////////
///////////////////////// ÐšÐ°Ñ€Ñ‚Ð° */


/*.ymaps-2-1-60-balloon__content{*/


/*background: transparent !important;*/


/*}*/


/*.ymaps-2-1-60-balloon__layout{*/


/*background: transparent !important;*/


/*}*/


/*.ymaps-2-1-60-balloon{*/


/*box-shadow: none !important;*/


/*}*/

.ymaps-2-1-60-islets_map-lang-ru {
    width: 100%;
}

.balunBody {
    /*background: #fff;*/
    padding: 25px;
}

.balunHeader {
    color: #fff;
    font-weight: bold;
    background-color: rgba(88, 181, 213, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@-webkit-keyframes shrink-bounce {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    33% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes shrink-bounce {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    33% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes checkbox-check {
    0% {
        width: 0;
        height: 0;
        border-color: #212121;
        -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    33% {
        width: .2em;
        height: 0;
        -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    100% {
        width: .2em;
        height: .5em;
        border-color: #212121;
        -webkit-transform: translate3d(0, -0.5em, 0) rotate(45deg);
        transform: translate3d(0, -0.5em, 0) rotate(45deg);
    }
}

@keyframes checkbox-check {
    0% {
        width: 0;
        height: 0;
        border-color: #212121;
        -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    33% {
        width: .2em;
        height: 0;
        -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    100% {
        width: .2em;
        height: .5em;
        border-color: #212121;
        -webkit-transform: translate3d(0, -0.5em, 0) rotate(45deg);
        transform: translate3d(0, -0.5em, 0) rotate(45deg);
    }
}

.residents {
    margin-bottom: 5px;
}
.filter a{
    display: flex;
    align-items: center;
}
.filter a img{
    margin-right: 10px;
}
@media (max-width: 820px) {
    .residents__block {
        flex-direction: column;
    }
    .residents__block .filter {
        margin-bottom: 25px;
        width: 100%;
    }
    .residents__block__info {
        width: 100%;
        justify-content: center;
    }
    .residents__block__page {
        width: 32%;
    }
    .block__bottom {
        flex-direction: column;
    }
    .block__bottom .block__team__info {
        width: 100%;
    }
}
@media (max-width: 930px) {
    .about__us__info__text {
    width: 95%;
}
.about__us__info a {
    width: 95%;
}
}

@media (max-width: 780px) {
    .residents__block__page {
        width: 48%;
    }
}
@media (max-width: 530px) {
    .residents__block__page {
        width: 100%;
    }
}

.residents .contact__footer .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 15px;
}

.residents .contact__footer a {
    color: #505050;
}

.residents .contact__footer i {
    color: #fff;
    background-color: #505050;
}

.template {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: 340px;
    height: 100%;
    margin-bottom: 30px;
}

.template img {
    margin-right: 15px;
    margin-bottom: 15px;
    height: 100%;
    width: 50%;
}

.template__block {
    width: 255px;
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin: 0 10px;
}

.template__block div {
    height: auto;
    width: 100%;
    display: flex;
    padding: 5px;
    /* padding-top: 5px; */
    align-items: center;
    justify-content: center;
}

.template__block div:nth-child(even) {
    background-color: #ccefff;
}

.template__block div:nth-child(odd) {
    background-color: #a7e2fd;
}

.residents .template .template__title {
    background-color: #26a3de;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.template__info {
    width: 100%;
}

@media (max-width: 1120px) {
    .template {
        flex-direction: column;
    }
    .template__block {
        margin: 10px 0;
        width: 100%;
    }
    .template img {
        width: 100%;
    }
    .template {
        max-height: 100%;
    }
    .template__block {
        height: auto;
    }
}

@media (max-width: 700px) {
    .nav__link__reg li {
        width: 90%;
    }
}


/* ////////////////////////////////////////
///////////////////////// ÐšÐ°Ñ€Ñ‚Ð°-ÑÐ°Ð¹Ñ‚Ð° */

.block__page .bn {
    padding-bottom: 0;
}

.block__page .bt {
    padding-top: 0;
}

.map__site__only span {
    margin-right: 10px;
}

.map__site__only a {
    text-decoration: none;
    text-transform: uppercase;
}

.sub__menu__map {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 35px;
    line-height: 25px;
}

.map__site__only {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 30px;
}

.first__link__map__site {
    font-size: 1.5rem;
    font-weight: bold;
    color: #26a3de;
}

.sub__menu__map {
    text-transform: none;
}

.sub__menu__map a {
    text-transform: none;
    font-weight: 700;
}

.sub__menu__map.black__inf a {
    color: #505050;
    font-weight: 400;
}



@media (max-width: 1100px) {
    .multi__langvich {
        position: absolute;
        right: 60px;
    }
}

.multi__langvich {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 5px;
    border-left: 1px solid #fff;
    padding: 10px;
}

#select {
    background: transparent;
    border: none;
    color: #fff;
    text-transform: uppercase;
    width: 50px;
}

#select option {
    background: #26a3de;
}

.header3__block .navMenu2.active {
    background-color: rgba(38, 163, 222, 1);
}

.header3 {
    transition: .6s;
}

.header3.active {
    background-color: rgba(38, 163, 222, 1);
}
@media (max-width: 1200px) {
    .header3__block {
        letter-spacing: 0;
    }
    #wr-tabs .tabs {
    padding: 0 15px;
    }
    #wr-tabs .content .tab-cont {
        display: none;
        padding: 15px 10px;
    }
    .header3__block .navMenu a span {
        padding: 0.35rem;
    }
    .header3__block .navMenu .link__nav span {
        padding: 0.35rem;
    }
}
.rezid {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}
.pagination{
    display: flex;
}
.pagination li a{
    color: #1e1e1e;
    text-decoration: none;
    margin-right: 10px;
    font-size: 1.2rem;
}
.pagination li.active a{
    color: rgba(38, 163, 222, 1);
    /* font-size: 1.3rem; */
    font-weight: bold;
}
.pagination li.disabled {
   font-size:16px;
}
div.pagination{
    width: 100%;
    display: flex;
    justify-content: center;
    background: #d2d2d2;
    padding: 5px;
}
.history__block__page .page__one{
    padding-bottom: 25px;
   
}
.agreement p img{
 margin: 10px;

}
.ananas p img{
 margin-left: 0;

}
.agreement p{
     float: left;
     margin-bottom:10px;
     width: 100%;
}
.ananas p{
    float: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.ananas p:nth-child(4){
    margin-top: 10px;
    margin-bottom: 5px;
}
.ananas p:nth-child(5),
.ananas p:nth-child(6),
.ananas p:nth-child(7),
.ananas p:nth-child(8),
.ananas p:nth-child(9){
        height: 30px;
}
.ananas p.block__info__title{
    margin-bottom: 0;
}
.agreement p:last-child{
    /* margin-top: 20px; */
   /*  margin-left: 25px; */
}
.ananas p:last-child{
    margin: 0;
}
.fa:before{
    margin-left: 2px;
}
.fa-phone:before {
    margin-top: 3px;
}
.litle__contact p{
    display: flex;
}
.history__block__page .location p img{
float: right;
    margin: 25px 92px;
    max-width: 510px;
    height: auto;
}
#wr-tabs2 .content .tab-cont:first-child img{
    width: 100%;
    max-width: 240px;
}
#wr-tabs2 .content .tab-cont .first_tab{
    display: flex;
    justify-content: flex-start;
    
}
#wr-tabs2 .content .first_tab .por_reg_first{
    width: 24%;
    /*margin-right: 30px;*/
}
@media (max-width: 900px) {
  .history__block__page .location p img{
    float: right;
    margin: 5px 15px;
    max-width: 409px;
    height: auto;
}  
#wr-tabs2 .content .first_tab .por_reg_first{
    width: 47%;
    margin-right: 30px;
    margin-bottom: 20px;
}
}
@media (max-width: 700px) {
    .first__link__map__site {
        font-size: 1.3rem;
    }
    #wr-tabs2 .content .first_tab img{
    width: 100%;
}
#wr-tabs2 .content .first_tab{
    display: flex;
    justify-content: flex-start; 
    flex-wrap: wrap;
}
#wr-tabs2 .content  .first_tab .por_reg_first{
    width: 85%;
    margin-right: 30px;
    margin-bottom: 20px;
}
    .location p img{
        width: 100%;
        height: auto;
    }
    .agreement p img{
        width: 100%;
        margin: 0;
        height: auto;
    }
    .header3__block .navMenu2 .nav__menu__2{
        font-size: .9rem;
    white-space: normal;
    }
    .agreement .ananas p img {
        width: auto;
        margin: 20px;
        height: auto;
}
.ananas p.block__info__title {
    margin-bottom: 20px;
}
.ananas p:nth-child(5), .ananas p:nth-child(6), .ananas p:nth-child(7), .ananas p:nth-child(8), .ananas p:nth-child(9) {
    height: auto;
}
.facilities__img__block div {
    height:  150px;
}
.history__block__page .fa {
    line-height: 21px;
    letter-spacing: 1px;
}
  .history__block__page .location p img{
    float: right;
    margin: 10px 0;
    max-width: 100%;
    height: auto;
} 
}

.footer3 {
    background-color: rgba(38, 163, 222, .8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer3 p {
    margin: 7px;
    color: #fff;
}

.footer3 a {
    color: #fff;
    text-decoration: none;
    transition: .6s;
    position: relative;
}

.footer3 a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    background: #ee3840;
    width: 0;
    transition: .6s;
}

.footer3 a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: #ee3840;
    width: 0;
    transition: .6s;
}

.footer3 a:hover:before,
.footer3 a:hover:after {
    width: 50%;
}

.footer3 a:hover {
    text-decoration: none;
}

@media (max-width: 1200px) {
    .footer3 {
        padding: 0 15px;
        flex-direction: column;
    }
    .footer3 a {
        margin-bottom: 15px;
    }
}

/*.filter5 {
   width: 26.875rem; 
  min-width: 11.875rem;
  margin: 1.25rem 1.875rem 0 0; 
  } 
   @media (max-width: 34.375rem) {
    .filter5 {
       min-width: 11.25rem; 
      margin-right: 0.625rem; } } */
  .filter5 .accordion {
    width: 100%; }

.filter5 .all {
  text-align: center; }
  .filter5 .all input[type="checkbox"] {
    display: none; }
    .filter5 .all input[type="checkbox"]:checked + label {
      background-color: #2980b9;
      color: white; }
      .filter5 .all input[type="checkbox"]:checked + label:before {
        content: 'Close All'; }
  .filter5 .all label {
    position: relative;
    margin: 0;
    padding: 0.3125rem 1.875rem;
    font-size: 0.875rem;
    font-weight: 300;
    color: #2980b9;
    background-color: white;
    border: 0.0625rem solid #2980b9;
    border-radius: 6.1875rem; }
    .all label:before {
      content: 'Open All'; }

.filter5 .accordion {
  position: relative;
  /* width: 80%; */
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.3); }
  .filter5 .accordion .trigger {
    margin-bottom: 0.3125rem; }

.filter5 .accordion .trigger input[type= "checkbox"] {
  display: none;
}

    .filter5 .accordion .trigger .checkbox {
      position: relative;
      display: block;
      width: 100%;
      margin: 0;
      padding: 0.625rem;
      color: white;
      cursor: pointer;
      font-weight:400;}
          /* .filter6 .accordion {
      width: 66%;} */
      .filter5 .accordion .trigger .checkbox i {
        position: absolute;
        display: inline-block;
        width: 1.25rem;
        height: 1.25rem;
        right: 1.25rem; }
        .filter5 .accordion .trigger .checkbox i:before, .accordion .trigger .checkbox i:after {
          position: absolute;
          content: '';
          width: 1rem;
          height: 0.1875rem;
          background-color: white;
          transition: -webkit-transform 250ms ease;
          transition: transform 250ms ease;
          transition: transform 250ms ease, -webkit-transform 250ms ease; }
        .filter5 .accordion .trigger .checkbox i:before {
          -webkit-transform: translate(-0.3125rem, 0.5rem) rotate(45deg);
              -ms-transform: translate(-0.3125rem, 0.5rem) rotate(45deg);
                  transform: translate(-0.3125rem, 0.5rem) rotate(45deg); }
        .filter5 .accordion .trigger .checkbox i:after {
          -webkit-transform: translate(0.3125rem, 0.5rem) rotate(-45deg);
              -ms-transform: translate(0.3125rem, 0.5rem) rotate(-45deg);
                  transform: translate(0.3125rem, 0.5rem) rotate(-45deg); }
    .filter5 .accordion .trigger .content {
      position: relative;
      max-height: 0.0625rem;
      padding: 0;
      overflow-y: auto;
      font-size: 0.875rem;
      line-height: 1.5;
      background-color: whitesmoke;
      transition: max-height 500ms ease-in-out; }
      .filter5 .accordion .trigger .content h3 {
        margin: 1.875rem 0 0.9375rem 1.875rem; }
      .filter5 .accordion .trigger .content p {
        margin: 0 1.875rem 1.875rem; }

.filter5 .accordion .trigger .content.activate {
  max-height: 21.875rem;
  transition: max-height 500ms ease-in-out;
}
.filter5 section {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
padding: 0.3125rem; }

.filter5 input[type='checkbox'] {
height: 0;
width: 0; }

.filter5 input[type='checkbox'] + label {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: .3em 0;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
color: #000;
transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1); }
.filter6 input[type='checkbox'] + label {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: .3em 0;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
color: #fff;
transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1); }
.filter5 input[type='checkbox'] + label > ins {
position: absolute;
display: block;
bottom: 0;
left: 2em;
height: 0;
overflow: hidden;
text-decoration: none;
transition: height 300ms cubic-bezier(0.4, 0, 0.23, 1); }

.filter5 input[type='checkbox'] + label > ins > i {
position: absolute;
bottom: 0;
font-style: normal;
color: #4FC3F7; }

.filter5 input[type='checkbox'] + label > span {
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;
margin-right: 1em;
width: 1em;
height: 1em;
background: transparent;
border: 0.125rem solid #9E9E9E;
border-radius: 0.125rem;
cursor: pointer;
transition: all 250ms cubic-bezier(0.4, 0, 0.23, 1); }

.filter5 input[type='checkbox'] + label:hover, input[type='checkbox']:focus + label {
color: #000; }
.filter6 input[type='checkbox'] + label:hover, .filter6 input[type='checkbox']:focus + label {
color: #fff;
cursor: pointer;}
.filter5 input[type='checkbox'] + label:hover > span, input[type='checkbox']:focus + label > span {
background: rgba(255, 255, 255, 0.1); }

.filter5 input[type='checkbox']:checked + label > ins {
height: 100%; }

.filter5 input[type='checkbox']:checked + label > span {
border: .5em solid #f1952e;
-webkit-animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
        animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1); }
.filter6 input[type='checkbox']:checked + label > span {
border: .5em solid #26a3de;
-webkit-animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
        animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1); }
.filter5 input[type='checkbox']:checked + label > span:before {
content: "";
position: absolute;
top: 0.4em;
left: .5em;
-webkit-animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
        animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards; }

@-webkit-keyframes shrink-bounce {
0% {
  -webkit-transform: scale(1);
          transform: scale(1); }
33% {
  -webkit-transform: scale(0.85);
          transform: scale(0.85); }
100% {
  -webkit-transform: scale(1);
          transform: scale(1); } }

@keyframes shrink-bounce {
0% {
  -webkit-transform: scale(1);
          transform: scale(1); }
33% {
  -webkit-transform: scale(0.85);
          transform: scale(0.85); }
100% {
  -webkit-transform: scale(1);
          transform: scale(1); } }

@-webkit-keyframes checkbox-check {
0% {
  width: 0;
  height: 0;
  border-color: #212121;
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
          transform: translate3d(0, 0, 0) rotate(45deg); }
33% {
  width: .2em;
  height: 0;
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
          transform: translate3d(0, 0, 0) rotate(45deg); }
100% {
  width: .2em;
  height: .5em;
  border-color: #212121;
  -webkit-transform: translate3d(0, -0.5em, 0) rotate(45deg);
          transform: translate3d(0, -0.5em, 0) rotate(45deg); } }

@keyframes checkbox-check {
0% {
  width: 0;
  height: 0;
  border-color: #212121;
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
          transform: translate3d(0, 0, 0) rotate(45deg); }
33% {
  width: .2em;
  height: 0;
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
          transform: translate3d(0, 0, 0) rotate(45deg); }
100% {
  width: .2em;
  height: .5em;
  border-color: #212121;
  -webkit-transform: translate3d(0, -0.5em, 0) rotate(45deg);
          transform: translate3d(0, -0.5em, 0) rotate(45deg); } }

.filter5 .filterCost {
width: 90%;
margin-bottom: 0.9375rem;
margin-left: 0.625rem; }
.filter5 .filterCost label {
  width: 100%; }
.filter5 .filterCost input {
  width: 3.125rem;
  border: none;
  border-bottom: 0.0625rem solid #000;
  background: transparent;
  color: #f1952e;
  text-align: center; }

#options {
width: 100%; }
#options form {
  width: 100%; }
  #options form label {
    width: 100%; }
#options input {
  width: 3.125rem;
  border: none;
  border-bottom: 0.0625rem solid #000;
  background: transparent;
  color: #f1952e;
  text-align: center; }

#price, #price2 {
padding: 0.3125rem;
width: 5rem; }

#options {
width: 100%;
padding: 0.3125rem; }

#slider_price {
width: 80%;
margin: 0.625rem auto 1.25rem; }

.ui-slider .ui-slider-range {
background-color: #51B5E4; }
fieldset.trigger{
    border:0;
    margin:0;
    padding:0;
}
.mse2_number_inputs{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    font-size:14px;
}
#mse2_filters .mse2_number_slider{
    margin:10px;
    margin-bottom:15px!important;
}

.variable-width{
    width: 100%;
}
.variable-width .img__slider__flex{
    padding: 5px;
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
}
.variable-width div img  {
    margin: auto;
    width: 100%;
}
.sub_btn, .res_btn{
    padding:10px 15px;
    color:white;
    font-weight: 600;
    background-color:rgb(38, 163, 222);
}
.location p, .administration p{
    margin-bottom:10px;
}

.ymaps-2-1-65-balloon__layout, .ymaps-2-1-65-balloon__content, .ymaps-2-1-65-balloon__tail:after{
    background-color: #ccefff !important;
}
.ymaps-2-1-65-balloon{
    color:black !important;
}
.ymaps-2-1-65-balloon__content{
    padding:0 !important;
}
.ya_bubl_title{
    padding:15px;
    font-size:16px;
    background:#26a3de;
    text-transform:uppercase;
    color:white;
    font-weight:700;
    text-align:center;
}
.ya_bubl_subtitle{
    padding:10px 15px;
    font-size:14px;
    background:#a7e2fd;
    text-transform:uppercase;
    color:#4f4f4f;
    font-weight:700;
    text-align:center;
}
.ya_bubl_content{
    padding:15px 20px;
    font-size:14px;
    color:#4f4f4f;
    background: #ccefff;
}
.resident_btn{
    padding: 5px 10px;
    text-decoration:none;
    color:white;
    background:#26a3de;
}
.mb5{
    margin-bottom:10px;
}
.header__video-wrapp  {
    position:absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    
}
.header__video-box {
    text-align: center;
    margin: 0 -1000px;
    height: 100%;
}
.header__video {
    display: inline-block;
    vertical-align: top;
    height: 100%;
    min-height: 768px;
}
.home3 .home__block__all .video .bg30 {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.text_brest{
            width: 56%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    }
.img_brest{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.form_filter_acordion{
    position:absolute;
    top:225px;
    left:1%;
    z-index:500;
    max-width:300px;
}
@media (max-width: 600px) {
    .location{
        display: flex;
        flex-direction: column;
    }
    .text_brest{
        width: 100%;
        padding-right: 25px;
    }
    .img_brest{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
}
@media (max-width: 768px) {
    .msearch2{
        align-items:center;
        flex-direction:column-reverse;
    }
    .form_filter_acordion{
        position:static;
        margin-bottom: 40px;
    }
}
.section_404_block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section_404_block_text h6{
    font-size: 135px;
}
.section_404_block_text p{
    font-size: 45px;
}
.section_404_block_buttons{
    display: flex;
    padding-right: 10px;
}
.containerButton{
        border: solid;
    background: #51b5e4;
    color: white;
    margin: 10px 15px;
    padding: 10px 15px;
    border-radius: 10%;
}
.btn a{
    color: white;
    text-decoration: none;
}
@media all and (max-width:1200px) {
    .bg__search .slider-new {
        width: 93% !important;
        margin: 0 auto;
    }
}
@media all and (max-width:767px) {
    .bg__search .slider-new {
        width: 85% !important;
        margin: 0 auto;
    }
}

.scrollup {
  position: fixed; /* фиксированная позиция */
  color: #fff; /* цвет текста */
  background-color: #26A3DE; /* цвет заднего фона */
  right: 8px; /* расстояние от правого края 20px*/
  bottom: 0px; /* расстояние от нижнего края */
  padding: 4px 10px; /* отступы до содержимого блока */
  font-size: 20px; /* размер шрифта (иконки) */
  border-top-left-radius: 4px; /* скругление верхнего левого угла */
  border-top-right-radius: 4px; /* скругление верхнего правого угла */
  cursor: pointer; /* форма курсора */
  display: none; /* не отображать элемент */
  text-align: center; /*выравнивание содержимого элемента по центру */
  z-index: 1; /*на передний план */
}
.scrollup:hover {
  background-color: #286090; /* цвет заднего фона при наведении */
}
