.section-common-trusted-us {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.section-common-trusted-us::before,
.section-common-trusted-us::after {
    content: "";
    position: absolute;
}

.section-common-trusted-us::after {
    background: url(../../../images/icons/ca-bulb-white-icon.svg) no-repeat;
    width: 50px;
    height: 69px;
    background-size: 50px 69px;
    bottom: 15%;
    right: 5%;
}

.section-common-trusted-us::before {
    background: url(../../../images/icons/ca-stars-2-icon.svg) no-repeat;
    width: 160px;
    height: 171px;
    background-size: 160px 171px;
    top: 32px;
    left: 20%;
}

.section-common-trusted-us .section {
    color: var(--white);
    background: var(--primary-color);
    margin: -2px 0;
    padding: 30px 0 0 0;
}

.section-common-trusted-us .section-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.section-common-trusted-us .section-heading {
    align-items: center;
}

.section-common-trusted-us .title {
    color: var(--white);
}

.section-common-trusted-us .description:before {
    margin: 0 auto 16px auto;
}

.section-common-trusted-us .section-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    text-align: center;
}

.section-common-trusted-us .section-logos > div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px dashed rgba(255, 255, 255, 0.15);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 32px;
}

.section-common-trusted-us .section-logos > div img {
    max-width: 125px;
    height: auto;
    filter: brightness(0) invert(1);
}

.section-common-trusted-us .section-logos > div:nth-child(6n) {
    border-right: none;
}

.section-common-trusted-us .section-logos > div:nth-last-child(-n+6) {
    border-bottom: none;
}

.section-common-trusted-us .section-logos img {
    opacity: 0.95;
    transition: opacity 300ms ease-out;
    max-height: 125px;
    width: auto;
}

.section-common-trusted-us .section-logos div:hover img {
    opacity: 1;
}

.section-common-trusted-us .section-more {
    text-align: center;
    padding-top: 64px;
    padding-bottom: 2px;
}

.section-common-trusted-us .section-more a:hover {
    background: var(--white);
}

.section-common-trusted-us .section-more a:hover span {
    color: var(--primary-color);
}

@media (max-width: 1240px) {
    .section-common-trusted-us .section-logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .section-common-trusted-us .section-logos > div {
        border-right: 1px dashed rgba(255, 255, 255, 0.15);
        border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    }

    .section-common-trusted-us .section-logos > div {
        border: 0;
        padding: 0;
    }
}
@media (max-width: 992px) {
    .section-common-trusted-us::before {
        width: 112px;
        height: 120px;
        background-size: 112px 120px;
        top: -32px;
        left: 32px;
    }

    .section-common-trusted-us::after {
        bottom: 64px;
        right: 32px;
    }
}

@media (max-width: 768px) {
    .section-common-trusted-us .section-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
    }

    .section-common-trusted-us::after {
        width: 37px;
        height: 52px;
        background-size: 37px 52px;
        right: 16px;
    }

    .section-common-trusted-us::before {
        width: 78px;
        height: 84px;
        background-size: 78px 84px;
        top: -32px;
        left: 32px;
    }
}
@media (max-width: 576px) {
    .section-common-trusted-us .section-logos > div img {
        max-width: 75px;
    }

    .section-common-trusted-us .section-logos {
        gap: 16px;
    }
}