*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}



a {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}



body {

    color: #fff;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}




.container {
    padding: 10px;
    min-height: 10vh;
}



.btn {
    font-size: 24px;
    line-height: 29px;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    width: 33.5vw;
    cursor: pointer;
    min-height: 10vh;
    border: 1px solid black;
}

.title {
    font-weight: bold;
    font-size: 42px;
    line-height: 39px;
    padding: 20px 90px;
    position: relative;
    padding-bottom: 50px;
    text-transform:uppercase
    
}

@keyframes move {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.title::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(../images/icon.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 43px;
    top: 37px;
    text-decoration: uppercase;
    animation: 2s move infinite linear;
}




/* header */


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

.header__contact {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}

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

.phone {
    margin-right: 40px;
    position: relative;
}

.phone::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/phone.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    left: -20px;
    top: 0;
}

.header__contact-icons {
    margin-right: 10px;
    cursor: pointer;
}



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

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

.topnav a:not(:last-child) {
    margin-left: 20px;
    border-bottom: 1px solid transparent;
    transition: all .5s;
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 20px;
}




.topnav a:hover {
    color: #DB3C8E;
    border-color: #72B73D;
    font-weight: bold;
}




.header__slider {
    display: flex;
}


.icon {
    display: none;
}


.box1 {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5)), url(../images/Rtj1Qt0B_2.png);
    background-position: 25% 65%;
    background-repeat: no-repeat;
    background-size: cover;

}

.box2 {
    background: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5)), url(../images/Rtj1Qt0B_3.png);
    background-position: 55% 75%;
    background-repeat: no-repeat;
    background-size: cover;

}

.box3 {
    background: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5)), url(../images/Rtj1Qt0B_1.png);
    background-position: 55% 65%;
    background-repeat: no-repeat;
    background-size: cover;

}


.box4 {
    background: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5)), url(../images/Rtj1Qt0B_0.png);
    background-position: 55% 55%;
    background-repeat: no-repeat;
    background-size: cover;


}



.box5 {
    background: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5)), url(../images/header-bg5.jpg);
    background-position: 55% 75%;
    background-repeat: no-repeat;
    background-size: cover;

}

.box6 {
    background: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5)), url(../images/header-bg6.jpg);
    background-position: 55% 55%;
    background-repeat: no-repeat;
    background-size: cover;

}

.header__slider__box {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    height: 80vh;
    height: calc(var(--vh, 1vh) * 78);
}

.header__slider__box--1 {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    width: 100%;
}

.header__slider__box--2 {
    font-size: 55px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20%;
    margin-left: 13%;
    padding: 10px;
    width: 900px;
    color: #fff;
    align-items: flex-end;
}


.header__slider-title {
    display: none;
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    width: 350px;
    padding: 10px;
    margin-top: 30px;
    height: 77px;
    border-radius: 10px 0 0 10px;
    animation: changecolor 4s ease infinite;
    align-items: flex-end;
}

@keyframes changecolor {
    from {
        color: #DB3C8E;
    }

    to {
        color: #72B73D;
    }
}

.header__bootom {
    display: flex;
}

.btn1 {
    background-color: #DB3C8E;
    transition: all 1s;
    color: #fff;
}

.btn1:hover {
    background: #72B73D;
    color: #fff;
}

.btn2 {
    transition: all 1s;
    color: #FFFFFF;
    background: #000;
}

.btn2:hover {
    background: #FFFFFF;
    color: #000;
}



.btn3 {
    background: #72B73D;
    transition: all 1s;
    color: #fff;
}

.btn3:hover {
    background: #DB3C8E;
    color: #fff;
}


.header__slider-img {
    height: 200px;
    max-width: 200px;
    margin-left: 50px;
}

.header__slider__main {
    position: relative;
}

/* info */

.info {
    background-color: #000;
    display: flex;
    justify-content: space-around;
    margin: 50px auto;
}


.info__item-title {
    font-weight: 300;
    font-size: 22px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.info__item-text {
    font-weight: bold;
    font-size: 42px;
    line-height: 42px;
    color: #72B73D;
    margin-bottom: 50px;
}


/* advantage */

.advantage {
    max-width: 100%;
    background-color: #000;
    padding: 20px 0;
}



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

.advantage__block {
    height: 100%;
    position: relative;
    cursor: pointer;
}

.advantage__img {
    width: 32.7vw;
    height: 300px;
    transition: all 1s;
    opacity: 0.8;
}



.center {
    display: block;
    position: absolute;
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    width: 80%;
    margin: 0 auto;
    border-left: 5px solid #72B73D;
    padding-left: 10px;
    text-transform: uppercase;
}

.center1 {
    position: absolute;
    font-weight: 300;
    left: 5%;
    top: 50%;
    font-size: 20px;
    line-height: 28px;
    transform: translate(0, -50%);
}





/* area */
.area {
    background-color: #000;
    display: flex;
    flex-direction: column;
}

.area__map {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    height: 700px;
}

/* trafic */

.trafic {
    background-color: #000;
}


.trafic__content {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 100%;
}

.trafic__content-info {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 350px;
    margin: 0 auto;
}


.trafic__content-info__text,
.trafic__content-info__text--green {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
    margin: 20px auto;
    text-align: center;
}

.trafic__content-info__text span,
.trafic__content-info__text--green span {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 40px;
}


.trafic__content-info__text span {
    color: #DB3C8E;
    margin: 0 auto;

}


.trafic__content-info__text--green span {
    color: #72B73D;
    margin: 0 auto;
}

/* map */

.map{
    background-color:#000;
}

.map__block {
    display: flex;
    justify-content: center;
}

.map__block__left {
    display: flex;
}

.map__block-distance {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #000;
}

#map__block-distance--1{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

#map__block-distance--1 img{
    height: 100px;
}


#map__block-distance--1 button {
    width: 100px;
    height: auto;
    outline: 0 !important;
    color: #72B73D;
    background-color: #000;
    outline: 0 !important;
    border: 0;
    font-size: 30px;
    cursor: pointer;
    font-weight: bold;
}

.map__block-map {
    position: relative;
    width: 100%;
}

.map__block-map img{
    width: 100%;
}




#map__block-map--circle1 {
    display: block;
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgb(114, 183, 61, 0.7);
    border-color: #72B73D;
    top: 33%;
    left: 36%;
}

#map__block-map--circle2 {
    display: none;
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgb(114, 183, 61, 0.7);
    border-color: #72B73D;
    top: 21%;
    left: 27%;
}

.map__block-map--circle1__text{
    position: absolute;
    top: 7px;
    left: -80px;
    color:#000;
    font-weight: bold;
    width: 350px;
    font-size: 22px;
}  

.map__block-map--circle2__text{
    position: absolute;
    top: 250px;
    left: 30px;
    color:#000;
    font-weight: bold;
    width: 350px;
    font-size: 22px;
}

.map__block-map--circle1__text span,
.map__block-map--circle2__text span{
    color:#DB3C8E;
    font-weight: bold;
}




.map__block-info {
    background-color: #000;
}

.map__block-info h1 {
    text-align: center;
    padding-top: 20px;
    font-size: 28px;
}

.map__block-info {
    padding-top: 20px;
}

.map__block-info__content1 {
    text-align: center;
    text-align: center;
    margin: 0 auto;
    width: 350px;
}

.map__block-info__content3-icon span {
    font-size: 28px;
    color: #DB3C8E;
    font-weight: bold;
    margin-top: 20px;
}

.map__block-info__content2-icon span {
    font-size: 28px;
    color:#72B73D;
    font-weight: bold;
    margin-top: 20px;
}

.map__block-info__content1-icon span {
    font-size: 28px;
    color:#72B73D;
    font-weight: bold;
}

.map__block-info__content2,
.map__block-info__content3 {
    display: flex;
    justify-content: space-between;
    text-align: center;
 
}

.map__block-info__content3-icon span{
    margin-top: 30px;
}

#map__block-distance--1__button1,
#map__block-distance--1__button2{
    position: relative;
}

#map__block-distance--1:last-child{
    margin-top: 90px;
}


#map__block-distance--1__button1::before{
    content: "";
    position: absolute;
    background-image: url(../images/map_icon4.svg);
    left: 8px;
    top:-90px;
    width: 100px;
    height: 100px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

#map__block-distance--1__button1::after{
    content: "";
    position: absolute;
    background-image: url(../images/map_icon4.svg);
    left: 8px;
    top:31px;
    width: 100px;
    height: 100px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

#map__block-distance--1__button2::before{
    content: "";
    position: absolute;
    background-image: url(../images/map_icon4.svg);
    left: 8px;
    top:29px;
    width: 100px;
    height: 100px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}




.content__map-icon__main{
    width: 350px;
    position: relative;
}

.map__block-info__content1 p{
    position: relative;

}

.map__block-info__content3 .content__map-icon p{
    color:#DB3C8E;
    font-weight: bold;
    font-size: 30px;
}

.map__block-info__content2 .content__map-icon p{
    color:#72B73D;
    font-weight: bold;
    font-size: 30px;
}

.map__block-info__content1 .content__map-icon p{
    color:#72B73D;
    font-weight: bold;
    font-size: 30px;
}

/* .map__block-info__content3-icon::before{
    content:"";
    position: absolute;
    background-image: url(../images/map_icon2.svg);
    left: 20px;
    top:-11px;
    width: 50px;
    height: 50px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;

}

.map__block-info__content2-icon::before{
    content:"";
    position: absolute;
    background-image: url(../images/map_icon3.svg);
    left: 20px;
    top:-11px;
    width: 50px;
    height: 50px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;

}

.map__block-info__content1-icon::before{
    content:"";
    position: absolute;
    background-image: url(../images/map_icon3.svg);
    left: 20px;
    top:-11px;
    width: 50px;
    height: 50px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;

} */

.content__map-icon{
display: flex;
justify-content: center;
width: 100%;
}


.content__map-icon img{
    width: 100px;
    height: 100px;
}

.content__map-icon p{
    align-items:center;
    display: flex;
}










/* partner */


.partner {
    background: #000;
}

.partner__block {
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.partner img {
    max-width: 22vw;
    max-height: 30vh;
}

.partner__block__img {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}



.vis {
    visibility: hidden;
}

text {
    color: white;
    z-index: 5555;
    opacity: 1;
}

/* plan.html */

.roof,
.roof__slider-count1 {
    background-color: #000;
}

.roof__wrapper {
    /* width: 90%; */
    margin: 0 auto;
    position: relative;
    background-image: url(../images/map.PNG);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}




.slick-arrow {
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    cursor: pointer;
    position: absolute;
    bottom: -10%;
    transform: translateY(-50%);
    z-index: 5;
}

.slick-prev-news {
    left: 2%;
}

.slick-next-news {
    right: 2%;
}

.slick-prev-plan {
    left: 2%;
}

.slick-next-plan {
    right: 2%;
}

.slick-prev {
    left: 320px;
}

.slick-next {
    right: 470px;
}

.slick-prev img {
    width: 200px;
}

.slick-next img {
    width: 200px;
}

.roof__slider-count img {
    max-width: 100%;
    max-height: 800px;
    padding: 50px;
}

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

scheme svg {
    margin: 0 auto;
}

.scheme-item {
    display: block;
    max-width: 100%;
    cursor: pointer;
    padding: 10px 10px 0 10px;
}


.scheme-popup {
    display: flex;
    border: 5px solid #72B73D;
    padding: 30px 0;
    font-size: 14px;
    line-height: 14px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #000;
    background-color: #fff;
    width: 90%;
    margin: 0 auto;
}


.scheme-popup__img img {
    width: 600px;
    height: 400px;
}

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

.scheme-item h1 {
    margin: 50px auto;
    text-align: center;
    font-size: 30px;
}

.scheme-popup__content-info {
    font-size: 24px;
}

.scheme-popup__content-info p {
    margin-bottom: 20px;
}

.scheme-popup__content-info p span {
    color: #72B73D
}


.scheme-item__close,
.scheme-item__close-new {
    /* align-self: center; */
    font-size: 18px;
    background-color: #72B73D;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #72B73D;
}

.scheme-popup__content-button {
    display: flex;
}

.scheme-popup__content-button button {
    margin: 10px;
}

.active {
    display: none;
}



polyline {
    fill: #DB3C8E;
    opacity: .8;
    z-index: 555;
    cursor: pointer;
}

/* polyline#color28 {
fill:#72B73D;
} */

.scheme polygon {
    fill: #DB3C8E;
    opacity: .8;
    z-index: 555;
    cursor: pointer;
}

path {
    fill: #DB3C8E;
    opacity: .8;
    z-index: 555;
    cursor: pointer;
}

path#color37,
path#color42{
    fill:#72B73D;

}

polyline:hover {
    fill: #72B73D;
    opacity: .8;
}

.scheme polygon:hover {
    fill: #72B73D;
    opacity: .8;
}

path:hover {
    fill: #72B73D;
    opacity: .8;
}


#color43 {
    animation: colorchanhe 0.1s ease-in-out infinite 0.1s;
    animation-iteration-count: 1;

}

#color31 {
    animation: colorchanhe 0.1s ease-in-out infinite 0.2s;
    animation-iteration-count: 1;

}

#color32 {
    animation: colorchanhe 0.1s ease-in-out infinite 0.3s;
    animation-iteration-count: 1;

}

#color33 {
    animation: colorchanhe 0.1s ease-in-out infinite 0.4s;
    animation-iteration-count: 1;

}

#color34 {
    animation: colorchanhe 0.1s ease-in-out infinite 0.5s;
    animation-iteration-count: 1;

}

#color35 {
    animation: colorchanhe 0.1s ease-in-out infinite 0.6s;
    animation-iteration-count: 1;

}

#color36 {
    animation: colorchanhe 0.1s ease-in-out infinite 0.7s;
    animation-iteration-count: 1;

}

#color37 {
    animation: colorchanhe 0.1s ease-in-out infinite 0.8s;
    animation-iteration-count: 1;

}

#color38 {
    animation: colorchanhe 0.1s ease-in-out infinite 0.9s;
    animation-iteration-count: 1;

}

#color39 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.0s;
    animation-iteration-count: 1;

}

#color40 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.1s;
    animation-iteration-count: 1;

}

#color41 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.2s;
    animation-iteration-count: 1;

}

#color42 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.3s;
    animation-iteration-count: 1;

}

#color30 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.4s;
    animation-iteration-count: 1;

}

#color29 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.5s;
    animation-iteration-count: 1;

}

#color28 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.6s;
    animation-iteration-count: 1;

}

#color27 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.7s;
    animation-iteration-count: 1;

}

#color26 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.8s;
    animation-iteration-count: 1;

}

#color25 {
    animation: colorchanhe 0.1s ease-in-out infinite 1.9s;
    animation-iteration-count: 1;

}

#color24 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.0s;
    animation-iteration-count: 1;

}

#color23 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.1s;
    animation-iteration-count: 1;

}

#color22 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.2s;
    animation-iteration-count: 1;

}

#color21 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.3s;
    animation-iteration-count: 1;

}

#color20 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.4s;
    animation-iteration-count: 1;

}

#color19 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.5s;
    animation-iteration-count: 1;

}

#color18 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.6s;
    animation-iteration-count: 1;

}

#color17 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.7s;
    animation-iteration-count: 1;

}

#color16 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.8s;
    animation-iteration-count: 1;

}

#color15 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.8s;
    animation-iteration-count: 1;

}

#color14 {
    animation: colorchanhe 0.1s ease-in-out infinite 2.9s;
    animation-iteration-count: 1;

}

#color13 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.0s;
    animation-iteration-count: 1;

}

#color12 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.1s;
    animation-iteration-count: 1;

}

#color11 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.2s;
    animation-iteration-count: 1;

}

#color10 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.3s;
    animation-iteration-count: 1;

}

#color9 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.4s;
    animation-iteration-count: 1;

}

#color8 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.5s;
    animation-iteration-count: 1;

}

#color7 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.6s;
    animation-iteration-count: 1;

}

#color6 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.7s;
    animation-iteration-count: 1;

}

#color5 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.8s;
    animation-iteration-count: 1;

}

#color4 {
    animation: colorchanhe 0.1s ease-in-out infinite 3.9s;
    animation-iteration-count: 1;

}

#color3 {
    animation: colorchanhe 0.1s ease-in-out infinite 4.0s;
    animation-iteration-count: 1;

}

#color2 {
    animation: colorchanhe 0.1s ease-in-out infinite 4.1s;
    animation-iteration-count: 1;

}

#color1 {
    animation: colorchanhe 0.1s ease-in-out infinite 4.2s;
    animation-iteration-count: 1;

}


@keyframes colorchanhe {
    0% {
        opacity: 1;
    }

    10% {
        opacity: 0.75;
    }

    15% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.25;
    }
}

.scheme-popup--new {
    border: 5px solid #72B73D;
    padding: 30px 0;
    font-size: 14px;
    line-height: 14px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #000;
    background-color: #fff;
    width: 90%;
    margin: 0 auto;
}

.scheme-popup__arenda{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 10px 50px;
}

.scheme-popup__arenda--left{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.scheme-popup__arenda--content{
    margin: 10px auto;
    max-width: 83%;
}

.scheme-popup__arenda--left img{
   max-width: 80%;
   max-height: auto;
}

.scheme-popup__arenda--right img{
    max-width: 80%;
    max-height: auto;
 }

 .scheme-popup__arenda--left>ul>li{
     margin-top: 10px;
 }

 .scheme-popup__arenda--content div{
     margin-top: 20px;
     text-align: center;
 }

 .scheme-popup__arenda--left>ul>li>a{
     color: #000 !important;
 }

 .scheme-popup__arenda--left>ul>li>img{
     margin-right: 10px;
 }








/* build */

.build {
    background-color: #000;
}



.build__button {
    background-color: #DB3C8E;
    width: 206px;
    height: 58px;
    border-radius: 5px;
    transition: all 1s;
    color: #fff;
    margin-left: 10px;
    cursor: pointer;
    font-size: 20px;
    margin-top: 20px;
    outline: 0 !important;
    border: none;
}

.build__button:hover {
    background-color: #72B73D;
}





.build__block-title {
    text-align: center;
    padding-bottom: 20px;
    font-size: 34px;
    margin-top: 40px;
}

.build__block img {
    margin: 0 auto;
    width: 60%;
    max-height: 650px;
}

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


/* contact */

.contact {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    background-color: #000;
    margin: 50 auto;
    padding: 0 10px;
}

iframe {
    width: 100%;
}

.contact__content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-left: 20px;
}

.contact__map {
    width: 100%;
}

.contact__content-title {
    font-weight: bold;
    font-size: 44px;
    line-height: 39px;
    text-transform: uppercase;
    border-left: 5px solid #72B73D;
    padding-left: 10px;
    margin-left: 20px;
}

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

.contact__content-tel {
    margin-left: 20px;
}

.contact__content-mail {
    margin-left: 20px;
    margin-bottom: -33px;
}

.contact__content-address {
    margin-top: 50px;
}

/* about */

.about {
    background-color: #000;
    padding: 0 50px;
}

.about__content {
    padding-top: 40px;
}

.about__img {
    padding: 0px 0 60px 0;
}

.about__img img {
    width: 300px;
}

.about__content {
    display: flex;
    justify-content: space-around;
}

.about__content-info {
    max-width: 522px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}


.about__content-info__text {
    margin-bottom: 30px;
    font-size: 20px;
}

.about__main {
    font-weight: bold;
}


.about__content-value__text,
.about__content-value__text--green {
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
}


.about__content-value__title,
.about__content-value__title--green {
    font-weight: bold;
    font-size: 64px;
    line-height: 78px;
    margin-bottom: 60px;
}

.about__content-value__title,
.about__content-value__text span {
    color: #DB3C8E;
}

.about__content-value__title--green,
.about__content-value__text--green span {
    color: #72B73D;
}


/* news */

.news {
    background-color: #000;
    padding: 20px 0;

}



.news__blocks {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.news__block {
    height: 100%;
    position: relative;
    cursor: pointer;

}

.news__img {
    width: 24.5vw;
    height: 300px;
    transition: all 1s;
    opacity: 0.7;
}

.news__information {
    display: none;
}


.news__center {
    position: absolute;
    width: 400px;
    top: 50%;
    left: 50%;
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    transform: translate(-50%, 0);
    padding-left: 20px;
    border-left: 5px solid #72B73D;
}


.visible {
    display: none;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: absolute;
    left: 50%;
    top: 200px;
    transform: translate(-50%, -10%);
    background-color: #000;
    color: #fff;
    border-radius: 5%;
    padding: 20px 50px;
    width: 80vw;
}

.visible__btn {
    align-self: center;
}

text {
    cursor: pointer;
}


.cart__close {
    align-self: flex-end;
    font-size: 24px;
    margin: 20px 0;
    background-color: #72B73D;
    color: #fff;
    border-radius: 5px;
    width: 200px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #72B73D;
    text-align: center;
}

.vis__text {
    display: none;
    margin-top: 20px;
    overflow: auto;
    line-height: 1.5;
}

.vis__text p {
    margin-top: 10px;
}


.vis__text2 {
    font-size: 24px;
    color: #72B73D;
    margin-top: 20px;
}

.news__slider {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}


.news__slider-img {
    max-width: 300px;
    max-height: 300px;
    margin-right: 20px;
}






.fake__show {
    display: none;
}

.nonclick {
    pointer-events: none
}

.news__front {
    display: flex;
    justify-content: space-around;
}

video {
    max-height: 100%;
    max-width: 100%;
}


#header__send__block,
#header__send__block1 {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    margin: 0 auto;
}



.post {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    position: relative;


}

.header__send__block-canceled {
    position: absolute;
    left: 50%;
    bottom: -100px;
    width: 300px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    background-color: #DB3C8E;
    transform: translate(-50%, 0);
    color: #fff;
}

input {
    margin-top: 15px;
    text-align: center;
    height: 50px;
    background-color: rgba(51, 51, 51, .9);
    color: #fff;
    padding: 15px;
    border: 1px solid #72B73D;
    font-size: 30px;
    cursor: pointer;
}

.submit__btn {
    background-color: #72B73D;
    text-align: center;
    padding: 0px;
}

.canceled__btn {
    background-color: #000;
    text-align: center;
    padding: 0px;
}












/* картинка на странице */
.minimized {
    cursor: pointer;
    max-width: 250px;
    max-height: 250px;

}


/* увеличенная картинка */
#magnify {
    display: none;
    position: absolute;
    max-width: 50%;
    height: 50%;
    z-index: 9999;
}

#magnify img {
    max-width: 100%;
    max-height: 100%;
}



/* кнопка закрытия */

#close-popup {
    width: 30px;
    height: 30px;

    background: #FFFFFF;
    border: 1px solid #AFAFAF;
    border-radius: 15px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

#close-popup i {
    width: 30px;
    height: 30px;
    background: url(https://codernote.ru/files/cross.png) no-repeat center center;
    background-size: 16px 16px;
    display: block;
}

.create__apply {
    background-color: #DB3C8E;
}

@keyframes rota {
    25% {
        transform: rotate(360deg);
    }
}

#close-popup:hover {
    animation: rota 4s infinite normal;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}











@media screen and (max-width: 1800px) {

    .center1 {
        font-size: 16px;
    }

    .center {
        white-space: normal;
    }

}




@media screen and (max-width: 1600px) {
    .topnav a {
        font-size: 15px;
    }

    .contact__content {
        margin-left: 30px;
    }

    .center1 {
        font-size: 14px;
    }

    .news__center {
        font-size: 18px;
        width: 300px;
    }

    #map__block-map--circle1 {
        top: 33%;
        left: 36%;
    }
    
    #map__block-map--circle2 {
        top: 21%;
        left: 27%;
    }

}

@media screen and (max-width: 1300px) {

    .topnav a {
        display: none;
    }

    .topnav a.icon {
        float: right;
        margin-top: -29px;
        display: block;
        color: #fff;
        font-size: 30px;
    }

    nav {
        width: 100%;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0px;
    }


    .topnav.responsive a {
        float: none;
        display: block;
        text-align: right;
    }

    .topnav.responsive a:first-child {
        padding-top: 20px;
    }


    .header__top {
        display: block;
    }

    .contact {
        flex-direction: column;
    }

    .contact__content {
        margin-top: 30px;
        margin-left: 0;
    }

    .about__content-info {
        max-width: 422px;
    }

    .about__content-value__text,
    .about__content-value__text--green {
        font-size: 20px;
        line-height: 20px;

    }


    .about__content-value__title,
    .about__content-value__title--green {
        font-weight: bold;
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 60px;
    }

    .center1 {
        position: absolute;
        font-size: 18px;
        line-height: 16px;
    }

    .center {
        font-size: 20px;
        line-height: 20px;
    }

    .news__center {
        font-size: 18px;
    }



    .news__img {
        width: 32.4vw;
    }


    .visible {
        left: 50%;
        transform: translate(-50%, -5%);
    }

    .header__slider__box--2 {
        font-size: 45px;
    }

    /* .slick-arrow {
        width: 30px;
        height: 30px;
    } */

    .scheme-popup__img img {
        width: 400px;
    }

    .map__block {
        display: block;
    }


    .map__block-info__content2,
    .map__block-info__content3 {
        justify-content: space-around;
    }

    #map__block-map--circle1 {
        top: 35%;
        left: 37%;
    }
    
    #map__block-map--circle2 {
        top: 25%;
        left: 29%;
    }

    .build__block img{
        width: 90%;
        margin-top: 25px;
    }
    .slick-next{
        right: 200px;
    }

    .slick-prev{
        left: 34px;
    }

    /* .scheme-popup__arenda{
        display: block;
    }

    .scheme-popup__arenda--left{
        margin: 0 auto;
    } */



}

@media screen and (max-width: 1120px) {
    #map__block-map--circle1 {
        top: 35%;
        left: 37%;
    }
    
    #map__block-map--circle2 {
        top: 24%;
        left: 29%;
    }
}

@media screen and (max-width: 1050px) {
    .news__slider-img {
        margin: 0 auto;
    }

    #map__block-map--circle1 {
        top: 32%;
        left: 35%;
    }
    
    #map__block-map--circle2 {
        top: 19%;
        left: 25%;
    }
}

@media screen and (max-width: 900px) {
    .info {
        max-width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }


    .center {
        font-size: 18px;
        line-height: 20px;
    }

    .center1 {
        font-size: 16px;
        line-height: 16px;
    }

    .about__content-value {
        margin: 0 auto;
        width: 420px;
    }

    .about__content-info {
        margin: 0 auto;
    }


    .news__img {
        width: 48vw;
    }

    .news__center {
        font-size: 24px;
        top: 30%;
    }

    .advantage__img {
        width: 48vw;
    }

    .visible {
        left: 50%;
        transform: translate(-50%, -5%);
    }

    .header__slider__box--2 {
        font-size: 45px;
        margin-left: 2%;
        width: 600px;
    }

    .build__block-title {
        margin-top: 20px;
    }

    .scheme-popup__content-info p {
        font-size: 14px;
    }

    #map__block-map--circle1 {
        top: 31%;
        left: 35%;
    }
    
    #map__block-map--circle2 {
        top: 17%;
        left: 24%;
    }





}

@media screen and (max-width: 770px) {
    .title {
        font-size: 30px;
        line-height: 24px;
    }

    .trafic__content {
        flex-direction: column;
        padding: 0 10px;
    }

    .header__slider__box {
        display: block;
    }

    .header__slider-title {
        font-size: 20px;
        line-height: 20px;
        padding-left: 30px;
    }

    .advantage__blocks {
        display: block;
    }

    .advantage__img {
        width: 100vw;
    }

    .center1 {
        width: 80%;
    }

    .header__contact-tel {
        display: flex;
        flex-direction: column;
    }



    .contact {
        width: 100%;
    }

    .about__content {
        flex-direction: column;
    }



    .visible {
        width: 100vw;
        transform: translate(-50%, 0%);
    }

    .news__center {
        font-size: 16px;
    }



    .scheme-popup {
        display: block;
    }


    .scheme-popup__content-info,
    .scheme-popup__img {
        max-width: 400px;
        margin: 0 auto;
    }

    .scheme-popup__content-info p {
        text-align: center;
    }

    .scheme-popup__content-button {
        flex-direction: column;
    }

    .scheme-popup__content-button button {
        width: 100%;
        margin: 10px 0px;
    }

    .scheme-item {
        padding: 20px 10px 0 10px;
    }

    .topnav a:not(:last-child) {
        font-size: 18px;
    }

    #map__block-distance--1 button,
    #map__block-distance--1 button {
        width: 70px;
        font-size: 20px;
    }

    .map__block-info__content3 .content__map-icon p{
        font-size: 20px;
    }
    .map__block-info__content2 .content__map-icon p{
        font-size: 20px;
    }
    .map__block-info__content1 .content__map-icon p{
        font-size: 20px;
    }

    #map__block-map--circle1 {
        top: 28%;
        left: 32%;
    }
    
    #map__block-map--circle2 {
        top: 10%;
        left: 19%;
    }

    #map__block-distance--1__button1::before{
        left: -9px;
        top:-90px;
        width: 100px;
        height: 100px;
    }
    
    #map__block-distance--1__button1::after{

        left: -9px;
        top:19px;
        width: 100px;
        height: 100px;

    }
    
    #map__block-distance--1__button2::before{
        left: -9px;
        top:21px;
        width: 100px;
        height: 100px;
    }

    .scheme-popup__arenda{
        display: block;
    }

    .scheme-popup__arenda--left{
        margin-bottom: 20px;
        text-align: center;
    }

    .scheme-popup__arenda--left img{
        margin: 0 auto;
    }

    .scheme-popup__arenda--right{
        text-align: center;
    }

    .scheme-popup__arenda--content h1{
        font-size: 20px;
    }










}

@media screen and (max-width: 650px) {
    .title {
        font-size: 30px;
        line-height: 32px;
    }

    .news__center {
        font-size: 20px;
    }

    .vis__text2 {
        font-size: 20px;
    }

    .header__slider__box--2 {
        font-size: 30px;
        margin-left: 2%;
        width: 400px;
        margin-top: 30%;
    }

    .btn {
        font-size: 18px;
    }

    .slick-arrow {
        width: 20px;
        height: 20px;
    }

    .build__button {

        margin-left: 25%;
    }




    .news__center {
        font-size: 14px;
        width: 250px;
    }

    .news__img {
        width: 96vw;
    }

    .scheme-popup__img img {
        width: 350px;
    }

    .topnav a:not(:last-child) {
        font-size: 14px;
    }

    .contact__content-title {
        font-size: 36px;
    }

    .about__content-value__text,
    .about__content-value__text--green {
        font-size: 20px;
        width: 400px;
    }

    .about__content-value__title,
    .about__content-value__title--green {
        font-size: 30px;
        width: 400px;
    }

    .map__block__left {
        display: block;
    }

    .map__block-distance{
        display: flex;
        flex-direction: row;
        margin-left: -47px;
        margin-top: -20px;
        padding-bottom: 20px;
    }

    #map__block-distance--1 button {
        font-size: 30px;
        width: 100px;
    }


    /* .map__block-map img {
        margin-left:-75px;
    } */

    #map__block-distance--1 :last-child {
        margin-left: 50px;
    }
/* 
    #map__block-distance--1 :last-child {
    padding-top: 50px;
} */




#map__block-map--circle1 {
    top: 28%;
    left: 32%;
}

#map__block-map--circle2 {
    top: 10%;
    left: 19%;
}

.map__block-info__content1 {
    width: 350px;
}

.map__block-info__content3-icon span,
.map__block-info__content2-icon span,
.map__block-info__content1-icon span{
    font-size: 18px;
}

/* .map__block-info__content1-icon::before{
    left: 95px;
}

.map__block-info__content3-icon::before{
    left: 0;
} */

#map__block-distance--1__button1::before{
    transform: rotate(90deg);
    left: -64px;
    top: -15px;
    width: 75px;
    height: 75px;
    
}

#map__block-distance--1__button1::after{
    transform: rotate(90deg);
    left: 55px;
    top: -15px;
    width: 75px;
    height: 75px;

}

#map__block-distance--1__button2::before{
    transform: rotate(90deg);
    left: 53px;
    top: -15px;
    width: 75px;
    height: 75px;
}

#map__block-distance--1:last-child{
    margin-top: 0px;
}

#map__block-distance--1 :last-child {
    margin-left: 58px;
}

#map__block-distance--1 button {
    font-size: 30px;
    width: auto;
}

.map__block-map--circle1__text{
    font-size: 18px;
}

.map__block-map--circle2__text{
    font-size: 18px;
}

.slick-next{
    right: 200px;
}

.slick-prev{
    left: 34px;
}

.scheme-popup__arenda--content h1{
    font-style: 18px;
}


}

@media screen and (max-width: 440px) {

    .about__content-value__title,
    .about__content-value__title--green {
        font-size: 30px;
        width: 300px;
    }


    .about__content-value__text,
    .about__content-value__text--green {
        font-size: 16px;
        width: 300px;
    }

    #map__block-map--circle1 {
        top: 28%;
        left: 32%;
        width: 100px;
        height: 100px;
    }
    
    #map__block-map--circle2 {
        top: 19%;
        left: 26%;
        width: 150px;
        height: 150px;
    }

    .map__block-map--circle2__text {
        top: 129px;
    }

    #map__block-distance--1__button1::before{
        width: 50px;
        height: 50px;
        left: -52px;
        top: -13px;
            
    }
    
    #map__block-distance--1__button1::after{
        width: 50px;
        height: 50px;
        left: 41px;
        top: -13px;
    }
    
    #map__block-distance--1__button2::before{
        width: 50px;
        height: 50px;
        left: 40px;
        top: -13px;
    }

    #map__block-distance--1 button{
        font-size: 18px;
    }

    .map__block-info__content1 .content__map-icon p{
        font-size: 18px;
    }
    .map__block-info__content2 .content__map-icon p{
        font-size: 20px;
    }
    .map__block-info__content3 .content__map-icon p{
        font-size: 20px;
    }

    .slick-prev {
        left: -40px;
    }
    
    .slick-next {
        right: 150px;
    }

}

@media screen and (max-width: 420px) {
    .news__center {
        font-size: 16px;
        width: 300px;
    }

    .title {
        line-height: 30px;
    }

    .btn {
        font-size: 12px;
    }

    .header__slider__box--2 {
        font-size: 24px;
    }

    input {
        font-size: 18px;
    }

    .header__slider__box--1 {
        display: block;
    }

    .header__slider__box--2 {
        width: 350px;
        margin-top: 90%;
    }

    .scheme-popup__img img {
        width: 300px;
    }

    .trafic__content-info {
        width: 250px;
    }

    .trafic__content-info img {
        width: 250px;
    }

    .trafic__content-info__text {
        font-size: 16px;
    }

    .trafic__content-info__text--green {
        font-size: 16px;
    }

    .about__content-info__text {
        font-size: 18px;
    }

    .about__content-value__title,
    .about__content-value__title--green {
        font-size: 30px;
        width: 300px;
    }


    .about__content-value__text,
    .about__content-value__text--green {
        font-size: 16px;
        width: 300px;
    }





}

@media screen and (max-width: 350px) {
    .title {
        font-size: 20px;
    }

    .btn {
        min-height: 80px;
        line-height: 19px;

    }

    .header__slider-title {
        padding-left: 5px;
    }

    .trafic__content {
        flex-direction: column;
    }


    .phone {
        margin-bottom: 10px;
    }

    .build__block-title {
        font-size: 24px;
        margin-top: 20px;
    }

    .build__button {

        margin-left: 20%;
    }

    .news__center {
        font-size: 14px;
    }

    .header__slider__box--2 {
        font-size: 20px;
        margin-left: 2%;
        width: 300px;
    }

    .about__content-info__text {
        font-size: 14px;
    }

    .about__content-value__title,
    .about__content-value__title--green {
        font-size: 26px;
    }





}