/* section-trusted-partners css */
.section-trusted-partners {
    background: #080808;
    padding-inline: 1.5rem;
    padding-block: 10rem;
    margin-bottom: 1rem;
}
.trusted-partners-title-wrap .sec-title-separate {
    width: 43%;
}
.trusted-partners-title-wrap .sec-tagline {
    margin-bottom: 0.9rem;
    display: inline-flex;
}
.trusted-partners-title-wrap .sec-text {
    width: 28%;
    color: rgba(var(--light-rgb), 0.4);
}
.trusted-partners-wrap {
    --gap: 2rem;
    margin-top: 6rem;
    gap: var(--gap);
}
.trusted-card {
    --icon-size: 4.6rem;
    width: calc((100% - (var(--gap) * 2)) / 3);
    border-radius: 1.6rem;
    background: #0D0D0D;
    padding: 2.4rem;
}
.trusted-card-icon-bx {
    display: flex;
    align-items: center;
    margin-bottom: 1.6rem;
}
.trusted-card-icon {
    width: var(--icon-size);
	min-width: var(--icon-size);
    height: var(--icon-size);
    border-radius: 1rem;
    color: var(--light);
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trusted-card-heading {
    color: var(--light, #FFF);
    font-size: 1.6rem;
    font-weight: 700;
    padding-left: 1.6rem;
}
.trusted-card-text {
    color: rgba(var(--light-rgb), 0.5);
    font-size: 16px;
    font-weight: 400;
}
@media (max-width: 1050px) {
    .section-trusted-partners {
        padding-block: 5rem;
    }
    .trusted-partners-title-wrap .sec-title-separate {
        width: 48%;
    }
    .trusted-partners-title-wrap .sec-text {
        width: 34%;
    }
    .trusted-partners-wrap {
        --gap: 1.2rem;
        margin-top: 4rem;
    }
    .trusted-card {
        width: calc((100% - (var(--gap) * 2)) / 3);
        border-radius: 0.8rem;
        padding: 1.6rem;
    }
	.trusted-card-icon { border-radius: 0.6rem; }
}
@media (max-width: 991px) {
    .trusted-partners-title-wrap .sec-title-separate {
        width: 50%;
    }
    .trusted-partners-title-wrap .sec-text {
        width: 36%;
    }
}
@media (max-width: 768px) {
    .trusted-card {
        width: calc((100% - (var(--gap) * 1)) / 2);
    }
    .trusted-partners-title-wrap .sec-title-separate {
        width: 100%;
    }
    .trusted-partners-title-wrap .sec-text {
        width: 100%;
    }
}
@media (max-width: 520px) {
    .trusted-card {
        width: 100%;
    }
}