.footer-logos{
    .footer-logos-top{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-top: 1px solid #e4dcd3;
        gap: 20px;
        @media (min-width: 768px){
            flex-direction: row;
            justify-content: space-between;
        }
        .gd{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            @media (min-width: 768px){
                justify-content: flex-start;
            }
        }
        .holding-1{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            @media (min-width: 768px){
                justify-content: flex-end;
            }
            span{
                color: #323232;
                font-weight: 500;
            }
        }
    }
    .footer-logos-bottom{
        padding: 20px 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
        border-top: 1px solid #e4dcd3;
        @media (min-width: 768px){
            justify-content: space-between;
        }
        a{
            display: block;
        }
    }
}