/* Media Queries ---------------------------------------- */

@media (max-width: 970px) {

    .page-container {
        max-height: auto !important;
        min-height: 100%;
    }

    .container-with-border {
        flex-direction: column;
        height: 100%;
        min-height: 100%;
        overflow: scroll;
    }

    .one-third-column {
        width: 100%;
        margin-bottom: 10px;
        height: auto !important;
    }

    .one-third-column:nth-child(1) {
        order: 2;
    }

    .one-third-column:nth-child(2) {
        order: 1;
    }

    .one-third-column:nth-child(3) {
        order: 3;
    }


    .one-third-column:nth-child(2) div:nth-child(1) {
        order: 2;
    }

    .logo {
        width: 300px;
    }

    
    .one-half-row {
        border: 1px solid gray;
        height: 250px!important;
        border-radius: 5px;
    }
    
    .one-third-row {
        border: 1px solid gray;
        height: 25%;
        border-radius: 5px;
    }
    
    .one-fourth-row {
        border: 1px solid gray;
        height: 25%;
        border-radius: 5px;
    }
    
    .one-fifth-row {
        border: 1px solid gray;
        height: 25%;
        border-radius: 5px;
    }
    
    .three-fifths-row {
        border: 1px solid gray;
        height: auto;
        border-radius: 5px;
        padding: 20px;
    }

    .one-fourth-column {
        justify-content: center;
    }
    

}

@media (max-width: 500px) {

    .page-container {
        padding: 10px;
    }

}