footer {
    width: 100%;
    background:#FB6D48;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footer-logo {
    max-width: 50%;
    width: auto;
}
.footer-logo img {
    display: block;
    margin: 30px 0;
}
.footer-address {
    max-width: 50%;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.footer-menu {
    margin:30px 0;

}
.footer-menu ul{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 50px;
}
.footer-menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
}
@media (max-width: 1100px) {
    .footer-address {
        max-width: 100%;
        font-size: 1rem;
    }
    .footer-menu ul li a {
        font-size: 0.8rem;
    }
}
