@media only screen and (max-width: 600px) {
    section, 
    .content {
        flex-direction: column;
    }
    
    img {
        max-width: 100%;
    }
    
    .content {
        padding: 0 10px 30px;
    }
}

section#banner{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    
    @media only screen and (max-width: 600px) {
        flex-direction: column-reverse;
        
        & img {
            height: 450px;
            object-fit: cover;
        }
        
        & img.overlay {
            position: absolute;
            width: 100%;
            top: 93px;
            object-position: -600px;
        }
    }
  
    @media only screen and (min-width: 600px) {
        width: 1260px;
        height: 510px;
    }
    
    & .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        
        @media only screen and (min-width: 600px) {
            padding: 0 80px;
            width: 700px;
        }
        
        & .title {
            font-family: "Arboria-Black", sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: #FFF;
            line-height: 1;
            margin-bottom: 15px;
            text-align: left;
            letter-spacing: -0.72px;
        }
        
        & .subtitle {
            font-size: 15px;
            line-height: 23px;
            margin-top: 10px;
            margin-bottom: 35px;
            color: #FFFFFF96;
            text-align: left;
        }
        
        & .item {
            margin-bottom: 30px;
            
            & .text {
                color: #FFF;
                font-size: 21px;
                letter-spacing: -0.63px;
                margin-bottom: 30px;
            }
        }
    }
    
    @media only screen and (min-width: 600px) {
        & img:not(.overlay) {
            max-width: 560px;
            height: 510px;
            object-fit: cover;
        }
        
        & img.overlay {
            max-width: 1260px;
            height: 510px;
            object-fit: cover;
            object-position: -74px;
        }
    }
}