body{
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
}
.main-page{
    max-width: 1400px;
    margin: 0 auto; 
}
.start-slide{
    background: url(img/market.jpg) top center no-repeat;
    background-size: cover;
    width: 100%;
    height: 70vh;
    border-radius: 30px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.start-slide .logo{
    background: #fff url(img/vmlogo.png) center center no-repeat;
    width: 300px;
    height: 80px;
    border-radius: 0 0 30px 0;
    background-size: 280px;
}
.start-slide .city-choose{
    margin: auto;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    border-radius: 30px;
    padding: 20px 50px;
    height: 50px;
    line-height: 50px;
}
.start-slide .cities{
    display: flex;
    flex-direction: row;
}
.start-slide .cities #choose_city{
    margin: 0 20px;
    width: fit-content;
    text-align: center;
    font-size: 24px;
    color: #54cf0a;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}
.start-slide .cities #choose_city:before,
.start-slide .cities #choose_city:after{
    position: absolute;
    content: '';
    width: 2px;
    height: 13px;
    border-radius: 1px;
    background-color: #54cf0a;
    right: 0;
    margin-top: 20px;
    transition: 0.5s;
}
.start-slide .cities #choose_city:before{
    transform: rotate(-45deg);
    margin-right: 9px;
}
.start-slide .cities #choose_city:after{
    transform: rotate(45deg);
}
.start-slide .cities #choose_city.show:after,
.start-slide .cities #choose_city.show:before{
    margin-right: 4px;
}

.start-slide .cities #go{
    background-color: #54cf0a;
    color: #fff;
    padding: 0 25px;
    border-radius: 10px;
    text-align: center;
    margin: 5px 10px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}
.start-slide .cities > div{
    position: relative;
}
.start-slide .cities #cities_block{
    display: none;
}
.start-slide .cities #cities_block.show{
    display: block;
    position: absolute;
    left: 50%;
    /* margin-left: -215px; */
    transform: translate(-50%, 0);
    width: 590px;
    background-color: #fff;
    columns: 2;
    padding: 20px;
    border-radius: 10px;
    line-height: 20px;
    margin-top: 20px;
    box-shadow: 0 0 20px #aeaeae;
}

.start-slide .cities #cities_block.show .region-block{
    display: block;
    text-wrap: nowrap;
}
.start-slide .cities #cities_block.show .region-block h5{
    font-size: 16px;
    margin: 0;
    margin-top: 10px;
}
.start-slide .cities #cities_block.show .region-block ul{
    margin: 0;
    padding: 0;
}
.start-slide .cities .city-item{
    margin: 5px 0;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 3px;
    padding: 5px;
    list-style-type: none;
    margin: 0;
}
.start-slide .cities .city-item:hover{
    background-color: #56cf0a69;
}
.stat{
    width: 100%;
    height: 25vh;
    border-radius: 0 0 30px 30px;
    background: linear-gradient(to top, #eeeeee, #fff);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.stat .block{
    width: 33%;
    text-align: center;
}
.stat .block .num{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 900;
    color: #1c96dc;
    width: 100%;
}
.stat .block .plus{
    /* position: absolute; */
    background-color: #54cf0a;
    color: #fff;
    font-size: 18px;
    margin-top: -35px;
    border-radius: 10px;
    padding: 0 10px;
}

.buyer{
    text-align: center;
}
.seller{
    text-align: center;
}
.info{
    display: flex;
    flex-direction: row;
}
.info .left,
.info .right{
    width: 50%;
}
.buyer h1,
.seller h1{
    margin: 50px auto 10px auto;
    padding: 0;
}
.buyer .article,
.seller .article{
    margin: 0 auto 20px auto;
    padding: 0;
}
.button a{
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.buyer .button{
    background-color: #54cf0a;
    color: #fff;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 20px auto;
    cursor: pointer;
}
.seller .button{
    background-color: #1c96dc;
    color: #fff;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 20px auto;
    cursor: pointer;
}
.buyer .info .right{
    background: url(img/buyer.jpg) center 40px no-repeat;
    background-size: 280px;
    padding-top: 320px;
}
.seller .info .left{
    background: url(img/seller.jpg) center 40px no-repeat;
    background-size: 310px;
    padding-top: 320px;
}
.info .block{
    text-align: left;
    background-color: #fff;
    box-shadow: 0 0 20px #aeaeae;
    border-radius: 20px;
    padding: 5px 40px 20px 40px;
    width: 70%;
    margin: 20px auto;
}
.info .block h3{
    padding: 0;
    margin: 20px 0 5px 0;
}
.info .block p{
    padding: 0;
    margin: 0;
}
.actual{
    width: 100%;
    height: 35vh;
    background: url(img/actual.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 30px;
    display: flex;
    justify-content: start;
    margin: 50px auto;
}
.actual .article{
    color: #fff;
    width: 60%;
    font-size: 36px;
    font-weight: 700;
    margin: auto 30px;
    margin-bottom: 30px;
    line-height: 60px;
}
.actual .article .g.bg{
    background-color: #54cf0a;
    border-radius: 10px;
    padding: 0 10px;
    display: inline-block;
}
.actual .article .b.bg{
    background-color: #1c96dc;
    border-radius: 10px;
    padding: 0 10px;
    display: inline-block;
    line-height: 50px;
}
.g.col{
    color:#54cf0a
}
.b.col{
    color: #1c96dc;
}

.footer{
    height: 30vh;
    background: linear-gradient(to bottom, #001023, #121329);
    width: 100%;
    margin-top: 30px;
}

#scrollUp, #scrollDown {
    position: fixed;
    left: 15px;
    padding: 10px;
    width: 40px;
    height: 40px;
    background-color: #ff9100;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
	z-index: 100;
    display: none; /* Сначала кнопки скрыты */
}
#scrollUp {
    bottom: 80px;
}
#scrollUp:before,
#scrollUp:after,
#scrollDown:before,
#scrollDown:after {
    content: '';
    position: absolute;
    left: 12px;
    top: 10px;
    width: 3px;
    height: 20px;
    background-color: #fff;
}
#scrollUp:before{
    transform: rotate(-45deg);
    margin-left: 12px;
}
#scrollUp:after{
    transform: rotate(45deg);
}
#scrollDown {
    bottom: 30px;
}
#scrollDown:before{
    transform: rotate(-45deg);
}
#scrollDown:after{
    transform: rotate(45deg);
    margin-left: 12px;
}

.cookie-notification {
    position: fixed;
    bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
    max-width: 600px;
    background-color: #2d2d2dba;
    color: #fff;
    text-align: center;
    padding: 15px;
	border: 3px solid #fff;
	border-radius: 10px 10px 0 0;
	text-align: left;
	z-index: 1000;
	padding-right: 100px;
	font-size: 14px;
	line-height: 16px;
	box-sizing: border-box;
    display: none;

}

.cookie-notification a {
    color: #FFD700;
    text-decoration: underline;
}

.cookie-notification button {
	position: absolute;
	right: 10px;
	bottom: 10px;
    background-color: #7fcd15;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
	width: 92px;
	border-radius: 5px;
}
.cookie-notification button:hover{
	background-color: #456f0a;
}



#contact-widget{
	/* display: none; */
	position: fixed;
	right: 15px;
	bottom: 30px;
	z-index: 100;
}
#contact-widget .contact-widget{
	background-color: #00a6ff;
	padding: 10px;
	border-radius: 30px;
	width: 40px;
	height: 40px;
	text-align: center;
	display: flex;
	flex-direction: column-reverse;
	transition: 0.5s;
}
#contact-widget .contact-widget.active{
	height: 174px;
}
#contact-widget .floating-button{
	background: #ffffffb6 url(img/buttons/chat-box.png) center center no-repeat;
	background-size: 25px;
	width: 40px;
	height: 40px;
	transition: 0.5s;
	border-radius: 50%;
}
#contact-widget .contact-widget.active .floating-button{
	background: #ffffffb6 url(img/buttons/close.png) center center no-repeat;
	background-size: 25px;
}
#contact-widget .contact-links{
	display: flex;
	flex-direction: column;
}
#contact-widget .contact-links a{
	display: block;
	width: 40px;
	height: 40px;
	margin-bottom: 5px;
	background-color: #fff;
	border-radius: 50%;
}
#contact-widget .contact-links a[title='Telegram']{
	background: #fff url(img/social-media/telegram.png) center center no-repeat;
	background-size: 20px;
}
#contact-widget .contact-links a[title='WhatsApp']{
	background: #fff url(img/social-media/whatsapp.png) center center no-repeat;
	background-size: 20px;
}
#contact-widget .contact-links a[title='Instagram']{
	background: #fff url(img/social-media/instagram.png) center center no-repeat;
	background-size: 20px;
}



@media screen and (max-width: 1024px) {
    .start-slide{
        margin: 0 auto;
        border-radius: 0;
    }
    .start-slide .logo{
        margin: 0 auto;
        margin-top: -2px;
        border-radius: 0 0 30px 30px;
    }
    .start-slide .city-choose{
        width: fit-content;
        min-width: 60%;
        align-items: center;
        justify-content: center;
    }
    .start-slide{
        height: 50%;
        background-position: center center;
    }
    .actual{
        border-radius: 0;
    }
    .actual .article{
        width: 100%;
    }
}
@media screen and (max-width: 800px){
    .stat .block .num{
        flex-direction: column;
    }
    .stat .block .plus{
        margin-top: 0;
    }
    .buyer .button,
    .seller .button {
        width: 80%;
    }
    .start-slide .cities #choose_city{
        margin: 0 10px;
        width: 200px;
        font-size: 16px;
    }
}
@media screen and (max-width: 600px){
    .stat{
        height: fit-content;
        border-radius: 0;
        flex-direction: column;
    }
    .stat .block{
        width: 80%;
    }
    .info{
        flex-direction: column;
    }
    .info .left, .info .right{
        width: 100%;
    }
    .seller .info{
        flex-direction: column-reverse;
    }
    .actual{
        height: 50%
    }
    .actual .article{
        font-size: 28px;
        line-height: 50px;
    }
    .start-slide .cities #cities_block.show{
        width: fit-content;
        margin-left: 0;
        transform: translate(-35%, 0);
        columns: 1;
        padding: 20px;
    }
    .start-slide .cities .city-item{
        margin: 0;
        word-wrap: none;
        display: flex;
    }
    .start-slide .cities #go{
        padding: 0 10px;
        font-size: 14px;
        /* text-transform: uppercase; */
    }
    .start-slide .cities #choose_city{
        width: 150px;
    }
}
@media screen and (max-width: 550px){
    .start-slide .logo{
        width: 250px;
        background-size: 230px;
    }
    .start-slide .city-choose {
        flex-wrap: wrap;
        height: fit-content;
        width: 50%;
        margin-top: 20px;
    }
    .actual .article{
        font-size: 24px;
        line-height: 40px;
    }


}

/*----------------*/


.er-page{
    background: #fff url(img/er-page.jpg) bottom left no-repeat;
    width: 80%;
    height: 100vh;
    background-size: 100%;
    display: flex;
    flex-direction: column;
    align-items:flex-end;
    padding: 0 10%;
}
.er-page h1,
.er-page h3,
.er-page div{
    margin: 20px;
}
.er-page h1{
    margin-top: 20%;
    font-size: 150px;
    color: #6ed106;
}
.er-page h3{
    font-size: 28px;
}
.er-page div{
    font-size: 18px;
}
.er-page a{
    color:#1c96dc;
}

@media screen and (max-width: 375px){
    .er-page{
        background-size: 200%;
    }
    .er-page h1{
        font-size: 125px;
    }
}
@media screen and (max-width: 275px){
    .er-page h1{
        font-size: 100px;
    }
}


.stat{
    display: none;
}













/**/



/**/