#clientSection {
    display: flex;
    align-items: center;

    background-color: #353535;
    height: 100vh;
}

#clientSection .client-content {
    padding: 0 60px;
}

#clientSection .client-content .our-client-title {
    display: flex;
    flex-direction: column;
    gap: 24px;

    color: #FFF;
}

#clientSection .client-content .our-client-title p,
#clientSection .client-content .our-client-title strong {
    font-size: 20px;
    line-height: 30px;
}

#clientSection .client-content .our-client-items {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

#clientSection .client-content .our-client-items .our-client-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#clientSection .client-content .our-client-items .our-client-item .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #FFF;

    width: 300px;
    aspect-ratio: 1/1;
}

#clientSection .client-content .our-client-items .our-client-item .logo-image {
    width: 230px;
    height: 155px;
}

#clientSection .client-content .our-client-items .our-client-item .logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#clientSection .client-content .our-client-items .our-client-item .name {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

#clientSection .client-content .our-client-no-data {
    width: min-content;
    border-bottom: 3px solid #FFF;
    padding-bottom: 35px;

    color: #FFF;
    font-size: 32px;
}