.banner{
    background: url('../img/remont-banner.jpg') center center;
    background-size: cover;
    height: 530px;
}

.banner .container{
	display: grid;
    grid-template-columns: 600px 1fr;
}

.banner .container .text{
	
}

.banner .container .text h1{
	font-size: 43px;
    font-weight: bold;
    margin-bottom: 0;
}

.banner .container .text p{
	font-size: 22px;
}

.banner .container .text .adress{
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	grid-gap: 30px;
	max-width: 500px;
} 

.banner .container .text .adress-item{
	
} 

.banner .container .text .adress-item span{
	display: inline;
} 

.banner .container .text .adress-item span.metro{
	background: #38b638;
    padding: 0px;
    font-size: 16px;
    color: #fff;
    display: table;
    float: left;
    height: 25px;
    width: 25px;
    text-align: center;
    border-radius: 100%;
    margin-right: 5px;
}


.banner .container .text .adress-item span .local{
    color: #444;
}

.banner .container .img{
	
}

.banner .container .img img{
    max-height: 300px;
    width: auto;
    margin: auto;
    display: table;
}




.model-box-title{
    margin-top: -160px;
}

.model-box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    border-radius: 10px;
    grid-row-gap: 40px;
    padding: 30px 15px;
    overflow: hidden;
    background: #fff;
}

.model-box .box-item{
    text-align: center;
    padding: 0px;
    color: #000;
}

.model-box .box-item .img{
    background: transparent;
    margin-bottom: 15px;
    height: 150px;
}

.model-box .box-item .img img{
	transition: 0.2s;
    height: 100%;
    width: auto;
}

.model-box .box-item span{
    font-size: 15px;
}

.model-box .box-item span.small{
    font-size: 12px;
    color: #adadad;
    display: block;
    max-width: 160px;
    margin: auto;
}

.model-box .box-item:hover span{
    transition: 0.2s;
}

.model-box .box-item:hover span{
    color: var(--accent-color);
}

.model-box .box-item:hover img{
	transform: scale(1.04);
}




.service-sec{
    padding-bottom: 20px;
    padding-top: 0;
}

.bullet {
    padding-top: 0 !important;
}

.service-box{
    padding: 30px;
    overflow: hidden;
    border-radius: 10px;
    background: #0e0e0e;
    margin-bottom: 15px;
}

.service-box .service-title{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.service-box .list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
    grid-row-gap: 0;
}

.service-box .box-item{
    text-align: left;
    padding: 10px;
    color: #fff;
    border-bottom: 1px solid #333333;
}

.service-box .box-item:last-of-type{
    border: none;
}

.service-box .box-item span{
    font-size: 15px;
}

.service-box .box-item:hover span{
    transition: 0.2s;
}

.service-box .box-item:hover span{
    color: var(--accent-color);
}





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

    .banner {
        height: auto;
        padding-top: 55px;
        background: #f5f5f5;
    }
    .banner .container {
        grid-template-columns: 1fr;
    }
    .banner .container .text h1 {
        font-size: 27px;
        margin-bottom: 0;
    }
    .banner .container .text p {
        margin-top: 10px;
        font-size: 21px;
    }
    .banner .container .text .adress {
        grid-template-columns: 3fr 2fr;
        grid-gap: 10px;
    }
    .remont-model{
        padding-bottom: 0;
    }
    .model-box-title {
        margin-top: -60px;
    }
    .model-box {
        grid-template-columns: 1fr 1fr;
        border-radius: 10px;
        grid-gap: 5px;
        border-radius: 10px;
        grid-row-gap: 0px;
        padding: 10px 15px;
    }
    .model-box .box-item {
        padding: 10px 15px;
        border-bottom: 1px solid #f5f5f5;
    }
    .model-box .box-item:last-of-type{
        border: none;
    }
    .model-box .box-item .img{
        display: none; 
    }
    .model-box .box-item span {
        margin-left: 0;
        display: table;
        width: 100%;
        text-align: center;
    }


    .service-box {
        padding: 20px 10px;
        border-radius: 0;
    }
    .service-box .list {
        display: grid;
        grid-template-columns: 1fr;
    }
    .service-box .box-item {
        align-items: center;
    }
    .service-box .box-item:last-of-type {
        border: none;
    }

    .banner .container .img img{
        width: 100%;
        height: auto;
    }
    .model-box .box-item span.small {
        margin-left: 0;
        text-align: left;
    }

    
}


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

    .banner .container .text h1 {
        font-size: 23px;
    }
    .banner .container .text p {
        font-size: 19px;
    }
    .banner .container .text .adress {
        align-items: baseline;
    }
    .model-box {
        grid-gap: 5px;
        padding: 10px 5px;
    }
    .model-box .box-item {
        padding: 10px 5px;
    }

}