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

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;
            font-weight: 100;
        }
        
        & .highlight {
            font-size: 18px;
            line-height: 29px;
            margin-top: 10px;
            color: #FFFFFF96;
            text-align: left;
            letter-spacing: -0.54px;
            font-weight: 100;
        }
        
        & .text {
            margin-top: 20px;
            font-size: 18px;
            line-height: 29px;
            letter-spacing: -0.54px;
            color: #FFF;
        }
    }
    
    @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;
        }
    }
}

section#formulario .content {
    
    & .title {
        text-align: left;
        font-size: 38px;
        letter-spacing: -0.57px;
        color: #BFB800;
    }
    
    & .text {
        letter-spacing: -0.54px;
        color: #696158;
        font-size: 18px;
        line-height: 29px;
    }
    
    & .subtitle {
        text-align: left;
        margin-top: 35px;
        margin-bottom: 15px;
    }
    
    & a.etapa {
        color: #BFB800;
        font-family: "Arboria-Black", sans-serif;
        font-size: 16px;
        font-weight: 900;
        margin-right: 10px;
        margin-top: 25px;
        text-transform: uppercase;
        
        @media only screen and (min-width: 600px) {
            transition: margin 0.3s ease-in-out;
            margin-left: 1080px;
        }
        
        &::after {
            content: "";
            border: solid #BFB800;
            border-width: 0px 2px 2px 0;
            display: inline-block;
            padding: 4px;
            transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
            margin-left: 10px;
            transition: margin 0.3s ease-in-out;
        }
        
        &:hover {
            color: #706c00;
            
            
            @media only screen and (min-width: 600px) {
                margin-left: 1070px;
                transition: margin 0.3s ease-in-out;
            }
            
            &::after {
                transition: margin 0.3s ease-in-out;
                border: solid #706c00;
                border-width: 0px 2px 2px 0;
                margin-left: 20px;
            }
        }
    }
    
    @media only screen and (max-width: 600px) {
        .custom-file {
            position: relative;
        }
    }
    
    & .submit {
        float: right;
        margin-top: 50px;
    }
}

