.footer-container{
    width: 100%;
    padding-left: var(--wp--custom--px);
    padding-right: var(--wp--custom--px);
    padding-top: var(--wp--custom--gap);
    padding-bottom: var(--wp--custom--gap);
    background-color:var(--wp--preset--color--background) ;
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.footer-logo{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer-logo img{
    width: 100%;
    max-width: 300px;
}
.footer-contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}
.footer-adress, .footer-phone, .footer-email{
    font-size: var(--wp--preset--font-size--p-button);
    font-family: var(--wp--preset--font-family--alexandria) !important;
    font-weight: 300;
    color: var(--wp--preset--color--dark);
    display: flex;
    flex-direction: row;
    gap: 10px;
}

hr{
    width: 100%;
    border-top: 1px solid var(--wp--preset--color--dark);  
}
@media (max-width:768px){

.footer-container{
    flex-direction: column;
    gap: 75px;
    align-items: flex-start;
}

}
