.trusted {
    position: relative;
    overflow: hidden;
}

.trusted .trusted-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1432px;
    min-width: 342px;
    position: relative;
}

.trusted-by-clients {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    width: 300%;
    position: relative;
    transition: left 0.5s ease;
}

.trusted-by-clients.carousel-first {
    left: calc(100% + 16px);
}

.trusted-by-clients.carousel-second {
    left: 0;
}

.trusted-by-clients.carousel-third {
    left: calc(-100% - 16px);
}

.trusted-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0 32px 0;
    gap: 16px;
    width: calc(100% - 32px);
    background: #F8F7F5;
    border-radius: 20px;
    box-sizing: border-box;
    user-select: none;
}

.trusted-logo p, .trusted-logo h2 {
    text-align: center;
    max-width: 303px;
}

.trusted-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trusted-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trusted-title.main-title, .main-title-description {
    display: none;
}

.trusted-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 16px;
}

.trusted-carousel-control-icon {
    width: 6px;
    height: 6px;
    border-radius: 25px;
    background: rgba(196, 196, 206, 1);
}

.trusted-carousel-control-icon.control-active {
    width: 18px;
    height: 6px;
    border-radius: 25px;
    background: rgba(49, 49, 52, 1);
}

.trusted-bg-image-left { display: none; }
.trusted-bg-image-right { display: none; }

@media only screen and (min-width: 768px) {
    .trusted-logo p, .trusted-logo h2 {
        max-width: 580px;
    }
}

@media only screen and (min-width: 992px) {
    .trusted-bg-image-left {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }
    .trusted-bg-image-right {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }

    .trusted-logo p, .trusted-logo h2 {
        max-width: 830px;
    }

    .trusted {
        pointer-events: none;
        max-width: 1432px;
        margin: 0 40px;
        border-radius: 32px;
    }

    .trusted .trusted-wrapper {
        background: #F8F7F5;
        border-radius: 32px;
        padding-top: 64px;
    }

    .trusted-logo .trusted-title {
        display: none;
    }

    .trusted-logo {
        padding-bottom: 0;
    }

    .trusted-carousel-controls {
        display: none;
    }

    .trusted-title.main-title, .main-title-description {
        display: flex;
        position: relative;
        z-index: 2;
    }

    .trusted-title.main-title {
        margin-bottom: 12px;
    }

    .main-title-description {
        max-width: 672px;
        margin-bottom: 64px;
        text-align: center;
    }

    .trusted-by-clients {
        width: 100%;
        padding-left: 48px;
        padding-right: 48px;
        padding-bottom: 64px;
        box-sizing: border-box;
    }

    .trusted-by-clients.carousel-first,
    .trusted-by-clients.carousel-second,
    .trusted-by-clients.carousel-third {
        left: unset;
    }
}