.banks-section {
    background: #0f2137;
padding-block: 60px;
}

.banks-title {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 40px;
}

.banks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
}

.banks-item {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
}

.banks-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;

}



@media (max-width: 900px) {
    .banks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .banks-item {
        height: 76px;
        padding: 14px;
    }
.banks-section {
    background: #0f2137;
padding-block: 40px;
}

}