.site-footer {
    width: 100%;
    height: auto;
    background-color: #192C5D;
    padding: 48px 20px;
}

.site-footer h4 {
    color: #E3AF64;
    font-family: var(--secondary-font);
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 152% */
}


.desktop-flex {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__social-media {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(246, 244, 231, 0.05);
}

.social-media__links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-media__links a svg {
    width: 18px;
    height: 18px;
}

.footer__associated-with {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(246, 244, 231, 0.05);
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid rgba(246, 244, 231, 0.05);
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.footer__associated-with .footer-partners {
    display: flex;
    gap: 48px;
    align-items: center;
}


.footer-partners .footer-partners__item img {
    width: 100%;
    height: auto;
    width: 75px;
}

.footer__copy {
    display: flex;
    flex-direction: column;
    gap:32px;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    color:  #F6F4E7;
    text-align: center;
    text-overflow: ellipsis;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%; /* 25.6px */
}

.footer__copy a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.footer__menu .footer-contact-us-btn {
    display: flex;
    height: 32px;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #E3AF64;
    overflow: hidden;
    color:  #E3AF64;
    text-overflow: ellipsis;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 171.429% */
    letter-spacing: 0.14px;
}
.footer-menu-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.footer-menu-list li a{
    color:  #F6F4E7;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}
  .desktop-partners {
        display: none;
    }
    .mobile-partners {
        display: flex;
    }
    .footer__menu-header {
        display: flex;
        align-items:center;
        justify-content: space-between;
    }

.desktop-partners .footer-partners .footer-partners__item {
    height: auto;
}

@media (min-width: 1024px) {
    .footer__menu-header  {
        padding-right: 25px;
    }
    .desktop-partners {
        display: flex;
    }
    .mobile-partners {
        display: none;
    }
    .site-footer {
        padding: 48px 0;
    }
    .footer-container {
        max-width: 1060px;
        margin:0 auto;
    }
    .desktop-flex {
        flex-direction: row;
        border-bottom: 1px solid rgba(246, 244, 231, 0.05);
        margin-bottom: 32px;
    }
    .desktop-flex > * {
        flex: 1 0 0;
    }
    .footer__social-media,
    .footer__menu,
    .footer__associated-with {
        padding: 0;
        border-bottom: 0;
    }
    
    .footer-menu-list {
        height: 42px;
        row-gap: 8px;
        column-gap: 32px;
        align-self: stretch;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}