*,*::after,*::before{
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: inherit;
}
body{
    font-family: Roboto,sans-serif;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.wrapper{
    max-width: 1900px;
    margin: 0 auto;
}

.header-inner{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    background: no-repeat center;
    background-size: cover;
}
.header-inner::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(rgba(2,4,20,0.70), rgba(1,3,15,0.70));
}

.header-title{
    font-size: 48px;
    z-index: 2;
    text-align: center;
}
.header-descr{
    margin-top: 30px;
    font-size: 20px;
    z-index: 2;
    font-weight: 300;
}
.header-tel{
    z-index: 2;
}
.header-tel strong{
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    display: block;
}
.header-btn{
    z-index: 2;
    width: 206px;
    height: 60px;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-weight: 700;
}
.featured{
    background-color: #f0f0f0;
    padding-top: 135px;
    padding-bottom: 120px;
}
.title{
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 105px;

}
.box-items{
    display: flex;
    justify-content: space-between;
}
.item-img{
    margin: 0 auto;
    min-height: 64px;
    margin-bottom: 25px;
    width: 60px;
}
.item-text{
    font-size: 18px;
    color: #000;
    font-weight: 600;
}
.gallery{
    display: flex;
    justify-content: space-between;
}
.gallery-item img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.gallery-item{
    transition: all .5s;
}
.gallery-item:hover{
    transform: scale(1.1);
}
@media (max-width: 880px){
    .gallery-item img{
        max-width: 300px;
        height: 280px;
        object-fit: cover;
    }
    .gallery{
        flex-wrap: wrap;
        justify-content: center;
    }
    .gallery-item{
        flex-basis: 50%;
    }
}
@media (max-width: 480px){
    .header-inner{
        height: 80vh;
    }
    .header-title, .title{
        font-size: 30px;
    }
    .header-descr{
    font-size: 16px;
    }
    .box-items{
        flex-wrap: wrap;
        justify-content: center;
    }
    .item{
        flex-basis: 60%;
        text-align: center;
        margin-bottom: 40px;
    }
    .gallery-item{
        width: 187px;
        height: 140px;
    }
    .gallery-item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}