.footer{
    display:flex;
    align-items: center;
    background-color: #000;
    padding: 3.5rem 9.375rem;  

}

.footer_logo{
    width: 12.3125rem;
}

.footer_logo img{
    width: 100%;
}

.footer_content{
    margin-left: 3.875rem;
    line-height: 1.5;
}

.footer_content h2{
    font-weight: 700;
}

.footer_content h2, .footer_content p{
    color: #fff;
}

@media screen and (max-width: 1023px){
    .footer{
        padding: 20px 27px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer_content{
        margin-left: 0;
        margin-top: 20px;
    }

    .footer_logo img{
        width: auto;
        height: 25px;
    }

    .footer_content{
        font-size: 12px;
    }
    
}