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

body[gadget="macbook"] .banner{
    background: #fefefe;
}

body[gadget="watch"] .banner{
    background: #fff;
}

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

.banner .container .text{
	
}

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

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

.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{
	height: 320px;
    display: block;
    margin: auto;
}

.banner .container .img img{
    height: 100%;
    width: auto;
}




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

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

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

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

.model-box .box-item{
    text-align: left;
    padding: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333333;
}

.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:nth-of-type(2){
    width: 100px;
    text-align: right;
}

.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-price-box.model-box .box-item{
    display:  inline;
}

.service-price-box .gadget,
.service-price-box .model{
    float: left;
    width:  auto !important;
}
.service-price-box .service-price{
    float: right;
}

.service-price-box .gadget{
    margin-right: 10px;
}











@media screen and (max-width: 480px)  {
    
    .model-box {
        padding: 20px 10px;
        border-radius: 0;
    }

    .model-box .list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .model-box .box-item span:nth-of-type(2) {
        width: 125px;
    }
    .model-box .box-item {
        align-items: center;
    }
    .model-box .box-item:last-of-type {
        border: none;
    }
    .banner {
        height: auto;
        padding-top: 70px;
    }
    .banner .container {
        grid-template-columns: 1fr;
    }
    .banner .container .text h1 {
        font-size: 23px;
    }
    .banner .container .text p {
        font-size: 18px;
    }
    .banner .container .text .adress {
        grid-template-columns: 3fr 2fr;
        grid-gap: 10px;
    }
    .banner .container .img {
        display: none;
    }
    .price{
        padding-bottom: 0;
    }
    .price .container{
        padding: 0;
    }
    .model-box-title {
        margin-top: -30px;
        padding-left: 15px;
    }
    .model-box .model-title {
        padding: 0 10px;
    }




}




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

    .banner .container .text h1 {
        font-size: 20px;
    }
    .banner .container .text .adress {
        align-items: baseline;
    }
    .banner .container .text p {
        font-size: 16px;
        margin-top: 10px;
    }


}