#trust {
    padding: 8.3cqw 0 8.3cqw 3.1cqw;
    position: relative;
    
    background-color: #eceae9;
    background-image: url(../images/trust-section-bg.png);
    background-size: cover;
}

.trust-wrapper {
    /* display: flex;
    justify-content: space-between; */
/* 
    display: grid;
    grid-template-columns: 480px auto; */

    display: flex;

    /* max-height: 537px; */
    width: 100%;
}

.trust-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 480px;
    border-right: 1px solid rgba(37, 37, 37, 0.1);

    margin-right: 8%;
}

.trust-right {
    /* flex-grow: 1; */
    /* width: 100%; */
    width: calc(100% - 480px - 8%);
}

.trust-left__text-1 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: rgba(37, 37, 37, 0.6);
}

.trust-left__text-2 {
    font-weight: 500;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #252525;

    margin-top: 20px;
}

.trust-left__text-2 span {
    font-style: italic;
    color: #911e45;
}

.trust-left__text-3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: rgba(37, 37, 37, 0.6);

    width: 80%;
}


.licenses-slide .image {
    margin-bottom: 20px;
    max-height: 675px;
}

.licenses-slide .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.licenses-slide .text {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #252525;
}

.trust-left__licenses-navigation {
    display: flex;
    column-gap: 10px;
}

.trust-left__licenses-navigation > a {
    aspect-ratio: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(44, 44, 44, 0.1);

    background-image: url(../icons/slider-arrow-left.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.trust-left__licenses-navigation > a:hover, .trust-left__licenses-navigation > a:focus, .trust-left__licenses-navigation > a:active {
    border-color: #2c2c2c;
}

.trust-left__licenses-navigation > a.licenses-btn-next {
    transform: rotate(180deg);
}

@media (max-width: 1060px) {
    .trust-left__text-1 {
        font-size: 1.2cqw;
    }

    .trust-left__text-2 {
        font-size: 3.2cqw;
        margin-top: 1cqw;
    }

    .trust-left__text-3 {
        font-size: 1.4cqw;
        margin-top: 2cqw;
    }

    .trust-left__licenses-navigation > a {
        width: 4.8cqw;
        height: 4.8cqw;
    }

    .trust-left {
        width: 36.6cqw;
    }

    .trust-right {
        width: calc(100% - 36.6cqw - 8%);
    }

    .licenses-slide .text {
        font-size: 1cqw;
    }

    .licenses-slide .image {
        margin-bottom: 1.2cqw;
    }
}

@media (max-width: 575px) {
    #trust {
        /* padding: 60px 10px 50px 10px; */
        padding: 60px 10px 140px 10px;
    }

    .trust-wrapper {
        flex-wrap: wrap;
        position: relative;
    }

    .trust-left {
        width: 100%;
        margin: 0;
    }

    .trust-left__text-1 {
        display: none;
    }

    .trust-left__text-2 {
        margin: 0;
        text-align: center;
        font-size: 7cqw;
    }

    .trust-left__text-3 {
        display: none;
    }

    .trust-left__licenses-navigation {
        position: absolute;
        /* top: 100%; */
        bottom: -95px;
        width: 100%;

        display: flex;
        /* margin-top: 12cqw; */
        justify-content: center;
    }
    
    .trust-right {
        width: 100%;
        margin-top: 8cqw;
    }

    .licenses-slide .image {
        margin-bottom: 4cqw;
    }

    .licenses-slide .text {
        font-size: 3.8cqw;
        font-weight: 500;

        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #252525;
        text-transform: unset;
    }

    .licenses-slide .text.visible-on-mobile {
        margin-top: 2.1cqw;

    }

    .licenses-slide .text a {
        font-weight: 400;
        font-size: 3.3cqw;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #911e45;
        text-transform: uppercase;
    }

    .trust-left__licenses-navigation > a {
        width: 12cqw;
        height: 12cqw;
    }
}

