body{margin:0;font-family:sans-serif}
.header{display:flex;justify-content:space-between;padding:20px;background:#f5f5f5;align-items: center;}
.logo{height:40px}
.hero{
    text-align:center;
    position: relative;
    height: 500px;
    width: 100%;
}
.hero-img{
    width:100%;
    height:300px;
    object-fit:cover;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    z-index: -1;
}
h1 {
    color: #ffffff;
    max-width: 700px;
    text-align: left;
    padding: 10% 50px 50px 50px;
    margin: 0;
}
.about{
    padding:20px;
    width: 80%;
    margin: 50px auto;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #333333;
    border-radius: 8px;
    background: #cddeeb;
}
.contacts {
    display: flex;
    font-size: 18px;
    font-weight: 600;
}
.phone {
    margin-right: 20px;
}
.footer{background:#222;color:#fff;padding:20px;text-align:center}

@media (max-width: 600px) {
    h1 {
        font-size: 30px;
    }
    .contacts {
        flex-wrap: wrap;
        justify-content: right;
    }
    .phone {
    margin-right: 0px;
    }   
}
