.footer-top {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column-reverse;
    padding-top: 3rem;
    gap: 3rem;
}

.site-footer {
    background: #F3604D;
    background: linear-gradient(130deg, rgba(243, 96, 77, 1) 61%, rgba(151, 63, 52, 1) 100%);
    /* background: #454545; */
}

#menu-footer a {
    font-weight: 900;
    color: #ffffff;
}
#menu-footer a:hover {
    text-decoration: underline;
}
.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-details {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.company-info {
    display: none;
}

.contact-details svg, .contact-details path {
    fill: #ffffff;
    height: 0px;
    width: 0px;
}
.contact-details a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
}
.contact-details a:hover {
    text-decoration: underline;
}
.contact-details li {
    display: flex;
    align-items: center;
    font-weight: 300;
    gap: 1rem;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    flex-shrink: 0;
}

.contact-icon img, .contact-icon svg {
    width: 100%;
    height: auto;
    display: block;
}

.contact-details li:first-of-type {
    font-weight: 900;
}
.contact-details li:last-of-type {
    margin-bottom: 1rem;
}
.footer-logo {
    display: flex;
    order: 1;
    justify-content: end;
}

.footer-logo img {
    max-height: 1.5rem;
    max-width: 10rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-social-icon img, .contact-details img, .mobile-icons img {
    height: auto;
    max-width: 30px;
    width: auto;
}
.footer-social-icon {
    height: auto;
    width: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
    color: #ffffff;
    padding-bottom: 3rem;
    gap: 2rem;
}
.footer-bottom-left, .footer-bottom-right {
    display: flex;
}
#menu-footer-secondary {
    display: flex;
    gap: 1rem;

}

#menu-footer-secondary a {
    color: #ffffff;
}
#menu-footer-secondary a:hover {
    text-decoration: underline;
}

.mobile-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-block: 1rem;
    flex-direction: column;
}

.mobile-icon {
    width: 20px;
    flex-shrink: 0;
    height: auto;
}
.mobile-icons-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.mobile-icons-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.mobile-icons-socials img {
    width: 30px;
    height: auto;
    flex-shrink: 0;
}


@media (min-width: 768px) {
    .footer-top {
        display: grid;
        align-items: start;
        text-align: start;
        grid-template-columns: 1fr 2fr auto;
    }
    .footer-bottom {
        flex-direction: row;
        align-items: flex-start;
        padding-block: 3rem;
    }
    #menu-footer-secondary {
        flex-direction: row;
    }
    .company-info {
        display: block;
    }
    .mobile-icons {
        display: none;
    }
}

@media (min-width: 1024px) {


}