.our-top-supporters { 

}

.our-top-supporters .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
    height: fit-content;
}

.our-top-supporters .container .our-top-supporter-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: calc(50% - 16px);
}

.our-top-supporters .container .our-top-supporter-left .title-pre-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.our-top-supporters .container .our-top-supporter-left .pre-title {
    text-align: left;
}

.our-top-supporters .container .our-top-supporter-left .pre-title span { 

}

.our-top-supporters .container .our-top-supporter-left .title { 

}

.our-top-supporters .container .our-top-supporter-left .title h2 { 

}

.our-top-supporters .container .our-top-supporter-left .logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.our-top-supporters .container .our-top-supporter-left .logos .logo-wrapper { 
    width: fit-content;
    height: fit-content;
    user-select: none;
    pointer-events: none;
}

.our-top-supporters .container .our-top-supporter-left .logos .logo-wrapper img { 
    height: 54px;
    width: auto;
    object-fit: contain;
    object-position: center;
    max-width: 145px;
}



.our-top-supporters .container .our-top-supporter-left .excel-button { 
    width: fit-content;
}

.our-top-supporters .container .our-top-supporter-right { 
    width: calc(50% - 16px);
}

.our-top-supporters .container .our-top-supporter-right img { 
    width: 100%;
    height: auto;
    aspect-ratio: 620/320;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.our-top-supporters .container .our-top-supporter-right .right-text-wrapper { 
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    padding-inline: 24px;
    gap: 24px;
}

.our-top-supporters .container .our-top-supporter-right .right-text-wrapper .image-text { 
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(50% - 12px);
}

.our-top-supporters .container .our-top-supporter-right .right-text-wrapper .image-text .name { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #0C1937;
}

.our-top-supporters .container .our-top-supporter-right .right-text-wrapper .image-text .position { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 14px;
    line-height: 150%;
    color: #0C1937;
}

@media (max-width: 992px) {
    .our-top-supporters .container {
        flex-direction: column;
    }

    .our-top-supporters .container .our-top-supporter-left {
        width: 100%;
        align-items: center;
    }

    .our-top-supporters .container .our-top-supporter-right {
        width: 100%;
    }

    .our-top-supporters .container .our-top-supporter-left .pre-title,
    .our-top-supporters .container .our-top-supporter-left .title h2 {
        text-align: center;
    }

    .our-top-supporters .container .our-top-supporter-left .logos {
        justify-content: center;
        gap: 32px;
    }

    .our-top-supporters .container .our-top-supporter-left .excel-button {
        width: 100%;
        text-align: center;
    }

    .our-top-supporters .container .our-top-supporter-left .logos .logo-wrapper {
        width: calc(50% - 16px);
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .our-top-supporters .container .our-top-supporter-left .logos .logo-wrapper img {
        height: 100%;
        width: 100%;
        max-width: 100%;
    }

    .our-top-supporters .container .our-top-supporter-right .right-text-wrapper {
        padding-top: 16px;
    }
    
}