@media screen and (min-width: 1065px){
    .footerParent{
        width: auto;
        height: auto;
        position: relative;
        display: flex;
        padding: 40px;
        background-color: #AA151B;
        border-top: 5px solid #861115;
        color: white;
    }
    
    .footerLeft{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        text-align: right;
        padding-right: 40px;
        flex: 1;
    }
    
    .footerLeftContent{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .footerLogo{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        font-family: 'Kaushan Script', cursive;
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .footerSlogan{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        text-align: center;
        max-width: 244px;
    }
    
    .footerRight{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        padding-left: 40px;
        flex: 1;
    }
    
    .footerRight a{
        color: white;
        position: relative;
        display: block;
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 1065px){
    .footerParent{
        width: auto;
        height: auto;
        position: relative;
        display: block;
        padding: 40px;
        background-color: #AA151B;
        border-top: 5px solid #861115;
        color: white;
    }
    
    .footerLeft{
        width: auto;
        height: auto;
        position: relative;
        display: block;
        text-align: center;
        padding: 40px;
    }
    
    .footerLeftContent{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
    }
    
    .footerLogo{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        font-family: 'Kaushan Script', cursive;
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .footerSlogan{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        text-align: center;
        max-width: 244px;
    }
    
    .footerRight{
        width: auto;
        height: auto;
        position: relative;
        display: block;
        padding: 20px 40px;
        text-align: center;
    }
    
    .footerRight a{
        color: white;
        position: relative;
        display: block;
        margin-bottom: 8px;
    }
}