/* Блок Clients */
.clients {
    position: relative;
    overflow: hidden;
}

.clients__container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.clients__title {
    position: relative;
    margin-bottom: 20px;
    left: 32px;
}

.clients__title h1 {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    position: absolute;
    top: 40%;
    left: 7px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.clients__title span {
    font-family: 'Jost', sans-serif;
    font-size: 150px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.03);
    margin: 0;
    line-height: 1;
}

.clients__content {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.clients__swiper {
    width: 100%;
}

.clients__swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
    padding: 20px 0;
}

.clients__slide {
    flex-shrink: 0;
    height: auto;
    aspect-ratio: 1.35;
}

.clients__link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #171717;
    border: 1px solid #000000;
    border-radius: 13px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.clients__link::after {
    opacity: 0.3;
}

.clients__image {
    width: auto;
    max-width: 60%;
    display: block;

    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .clients {
        padding: 70px 0;
    }

    .clients__title {
        margin-bottom: 25px;
        left: 12px;
    }

    .clients__title h1 {
        font-size: 18px;
        font-weight: 500;
        top: 20%;
        left: 3px;
    }

    .clients__title span {
        font-size: 60px;
        line-height: 40px;
    }
}