/* MEDIA QUERIES*/


/* 4K DISPLAYS */
@media only screen and (min-device-width:3000px)
{
    html { 
        font-size:32px;
    }
        
    header {
        height: 33vh;
    }
    
    header::after{
        height: 33vh;
    }
}

@media only screen and (min-device-width:1024px) and (max-aspect-ratio: 1/1){
    .content-row-split {
        min-height: 30vh;
    }
}

@media only screen and (min-device-width: 1024px) and (max-width: 1200px) {
    .row_text {
        margin: 0 8vw;
    }
}

/* TABLET - PORTRAIT */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait)
{
    
}

/* PHONE - PORTRAIT */
@media only screen and (max-device-width: 767px){
    
    html {
        font-size: 32px;
    }
    
    .nav_bar {
    }
    
    header{
        height:inherit;
        flex-direction: column-reverse;
        justify-content: center;
        padding: unset;
        max-height: unset;
        padding-top: 4rem;
    }
    
    header::after {
        height:inherit;
    }
    
    #header_left {
        text-align: center;
    }
    
    #header_right {
        width:90vw;
        align-self: center;
        padding:  1rem 3rem;
    }
    
    #header_left {
        width: 90vw;
    }
    
    .header_image {
        height: unset;
        width: 100%;
    }
    
    #section_team {
        flex-wrap: wrap;
    }
    
    footer {
        padding: 1.5rem;
        
        font-size:0.9rem;
    }
}


/* PHONE - LANDSCAPE */
@media only screen and (max-device-width: 1023px) and (orientation: landscape){
    
    html {
        font-size: 16px;
    }
    
    .nav_bar {
    
    }
}
