.agency-clients {
    margin-top: 120px;
    margin-bottom: 120px;
}

.agency-clients__title {
    margin-bottom: 48px;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: -0.32px;
}

.agency-clients__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 120px;
    gap: 12px;
}

.agency-clients__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 120px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--se-stroke-color);
    border-radius: 5px;
}

.agency-clients__logo-wrapper > img {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 991px) {
    .agency-clients {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .agency-clients__wrapper {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .agency-clients {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .agency-clients__wrapper {
        margin-bottom: 48px;
    }

    .agency-clients__title {
        padding-left: 0;
        margin-bottom: 24px;
        font-size: 26px;
        line-height: 32px;
        text-align: left;
    }

    .agency-clients__logo-wrapper {
        width: 132px;
        height: 72px;
        padding: 18px;
    }
}