/* Display More Complex Footer (e. Home, FAQ, Contact Us Pages)  */
.logged-out-footer{
    background-color: var(--navy);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logged-out-footer .footer-content{
    width: var(--mw-content);
    margin: 0 auto;
    color: white;
}

.logged-out-footer .footer-content .footer-top{
    display: flex;
    justify-content: left;
    align-items: center;
}

.logged-out-footer .footer-content .footer-top .footer-text-image{
    width: 50%;
    min-height: 250px;
    padding: 10px 0;
}

.logged-out-footer .footer-content .footer-top .footer-text-image img{
    width: 271px;
    height: 47px;
}

.logged-out-footer .footer-content .footer-top .footer-text-image p{
    font-family: 'Raleway-Medium';
    font-size: 16px;
    padding: 20px 0;
    line-height: 1.5;
    max-width: 400px;
}

.logged-out-footer .footer-content .footer-top .footer-text-image a{
    color: white;
    text-decoration: none;
    font-family: 'Raleway-Bold';
    font-size: 14px;
}

.logged-out-footer .footer-content .footer-top .footer-text-image a:hover{
    color: var(--verylightorange);
}

.logged-out-footer .footer-content .footer-top .footer-links{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 100px;
    margin-bottom: 20px;
}

.logged-out-footer .footer-content .footer-top .footer-links a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Raleway-Bold';
}

.logged-out-footer .footer-content .footer-top .footer-links a:hover{
    color: var(--verylightorange);
}

.logged-out-footer .footer-content .footer-bottom{
    border-top: 2px solid var(--orange);
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.logged-out-footer .footer-content .footer-bottom p{
    font-family: 'Raleway-Medium';
    font-size: 14px;
    padding: 0;
}

/* tablets */
@media(max-width: 900px){
    .logged-out-footer{
        min-height: 333px;
    }
    .logged-out-footer .footer-content .footer-top{
        justify-content: space-between;
    }

    .logged-out-footer .footer-content .footer-top .footer-text-image img{
        width: 225px;
        height: 39px;
    }
    
    .logged-out-footer .footer-content .footer-top .footer-text-image p{
        font-size: 14px;
        max-width: 390px;
    }

    .logged-out-footer .footer-content .footer-top .footer-links{
        gap: 20px 50px;
    }
}

/* phones */
@media(max-width: 600px){
    .logged-out-footer{
        min-height: 530px;
        padding: 0;
    }
    
    .logged-out-footer .footer-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .logged-out-footer .footer-content .footer-top{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .logged-out-footer .footer-content .footer-top .footer-text-image{
        width: 100%;
        min-height: 210px;
        padding: 15px;
    }
    
    .logged-out-footer .footer-content .footer-top .footer-text-image img{
        width: 271px;
        height: 47px;
    }
    
    .logged-out-footer .footer-content .footer-top .footer-text-image p{
        font-size: 14px;
    }
    
    .logged-out-footer .footer-content .footer-top .footer-text-image a{
        color: white;
        text-decoration: none;
        font-family: 'Raleway-Bold';
        font-size: 14px;
    }
    
    .logged-out-footer .footer-content .footer-top .footer-links{
        border-top: 2px solid var(--orange);
        width: 100%;
        padding: 50px 15px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 100px;
        margin-bottom: 20px;
    }
    
    .logged-out-footer .footer-content .footer-top .footer-links a{
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-family: 'Raleway-Bold';
    }
    
    .logged-out-footer .footer-content .footer-top .footer-links a:hover{
        color: var(--verylightorange);
    }
    
    .logged-out-footer .footer-content .footer-bottom{
        border-top: none;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 15px;
        margin: 0;
        color: var(--navy);
    }
    
    .logged-out-footer .footer-content .footer-bottom p{
        font-family: 'Raleway-Medium';
        font-size: 12px;
        padding: 3px;
        margin: 0;
    }
}
