.banner{
    background: url(../img/home-bg.jpg) center;
    background-size: cover;
    height: 500px;
}

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

.banner .container .text{
	
}

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

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

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

.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 .img{
	
}

.banner .container .img img{
	
}





.model-box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.05);
    background: #ffffff;
    margin-top: -120px;
}

.model-box .box-item{
    text-align: center;
    padding: 30px 20px;
    color: #fff;
}

.model-box .box-item .img{
    background: #fff;
    margin-bottom: 15px;
    height: 110px;
    overflow: hidden;
}

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

.model-box .box-item span{
    color: #000;
    transition: 0.2s;
    font-size: 16px;
}

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

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




.home-video .container{
    display: grid;
    grid-template-columns: 1fr 430px;
    grid-gap: 40px;
    align-items: center;
}

.home-video .container .text h2{
    margin-top: 0;
}

.home-video .video-box{
    max-height: 310px;
}
.home-video .video-box .youtube{
    cursor: pointer !important;
    transition: 0.2s;
}
.home-video .video-box .youtube:hover{
    filter: brightness(0.9);
}

.home-video .video-box iframe{
    max-width: 550px;
    max-height: 310px;
}






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

.banner {
    height: auto;
    padding-top: 60px;
}

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

.banner .container .text h1 {
    font-size: 27px;
}

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

.banner .container .text .adress {
    grid-template-columns: 3fr 2fr;
    grid-gap: 10px;
}

.service-box .container{
    padding: 0;
}

.model-box {
    grid-template-columns: 1fr;
    border-radius: 0;
    margin-top: -40px;
}

.model-box .box-item {
    padding: 20px;
}

.home-video{
    padding-top: 0;
}

.home-video .container {
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

    
}