.footerBot{
    /* background-color: red; */
    display:flex;
    justify-content: space-around;
    align-content: flex-start;
    z-index: 120;
    background-color: var(--background-primary);
    position:relative;
}
.footer-logo{
    /* background-color: yellow; */
    padding:10px 30px;
    display: flex;
    /* width:100px; */
}
.footer-logo .logo-light,
.footer-logo .logo-dark{
    max-width: 400px;
    width:250px;
}
.footerBot p, .copyright {
    font-size: 18px;
    color:var(--blackWhite);
}
.footer-wrapper1,
.footer-wrapper2{
    padding:30px;
    /* background-color: pink; */
   align-self: center;
   text-align: center;
}
.footer-wrapper1, .footer-wrapper2{
flex-direction: row;
font-size: 15px;
}

.copyright{
    text-align: center;
    background-color: var(--background-primary);
    border:4px solid var(--background-primary);
    z-index:120;
    position:relative;
    padding:0;
}

@media(width>50px){
    .footerBot{
        flex-direction: column;
        height: auto;
        /* background-color: yellow; */
    }
    .footer-logo{
        /* background-color: yellow; */

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}
@media(width>800px){
    .footerBot{
        flex-direction: row;
        padding:50px 0px;
        height:100px;
    }

    .footer-logo{
        /* background-color: yellow; */
        padding:10px 30px;
        display: flex;
        flex-direction:row;
    }

}