* {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    box-shadow: none;
}

#home {
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    width: 100%;
    position: relative;
}

#home::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.40));
    z-index: 1;
}

.wrap {
    width: 1200px;
    margin: 0 auto;
}

#home div {
    z-index: 2;
}

h1 {
    font-size: 68px;
    font-weight: 600;
    z-index: 10;
    text-align: center;
    margin-top: auto;
    text-transform: uppercase;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.case {
    padding-top: 90px;
    padding-bottom: 150px;
}

.case h2 {
    font-size: 42px;
    text-align: center;
    padding-bottom: 105px;
    padding-top: 60px;
}

#cases > *:nth-child(odd) {
    background-color: #d6d6d6;
}

#cases > *:nth-child(even) {
    background-color: #a6a6a6;
}

img {
    width: 100%;
}

.left, .right {
    width: 50%;
    padding: 0 20px; 
}

.case .wrap {
    display: flex;
    justify-content: space-between;
}

.left div {
    padding: 25px 0;
    display: flex;
}

.left .case-logo img {
    width: initial;
    max-width: 330px;
    max-height: 165px;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left div:not(:first-child) img {
    width: 65px;
    height: 65px;
}

.left p {
    font-size: 28px;
    line-height: 1.17;
    padding-left: 30px;
}

a {
    color: #ff8562;
    text-decoration: none;
}

footer {
    height: 74px;
    background-color: black;
    text-align: center;
    border-top: 4px solid #e5e3df;
}

footer a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

footer img {
    width: 80px;
    margin-top: 22px;
    opacity: .4;
    transition: all .1s ease-in;
}

footer a:hover img {
    opacity: 1;
}

@media (max-width: 1220px) {
    .wrap {
        width: 960px;
    }

    .left p {
        font-size: 26px;
    }

    .case {
        padding-top: 80px;
        padding-bottom: 130px;
    }
}

@media (max-width: 980px) {
    .wrap {
        width: 640px;
    }

    .case .wrap {
        flex-direction: column-reverse;
    }

    .left, .right {
        width: 100%;
    }

    .left {
        padding-top: 30px;
    }
    
    .case {
        padding-top: 70px;
        padding-bottom: 110px;
    }
}

@media (max-width: 700px) {

    .left, .right {
        padding: 0;
    }

    .wrap {
        width: 100%;
        padding: 0 20px;
    }

    .left p {
        font-size: 24px;
    }

    h1 {  
        font-size: 32px;
    }

    .case h2 {
        font-size: 30px;
    }

    img {
        max-width: 100%;
    }
    
    .case {
        padding-top: 60px;
        padding-bottom: 90px;
    }
}

@media (max-width: 380px) {
    .left p {
        font-size: 18px;
    }
    
    .case {
        padding-top: 50px;
        padding-bottom: 70px;
    }
}