.leaders {
    position: relative;
    overflow: hidden;
    background-color: var(--black);
    padding: 40px 0;
    margin-top: 0
}

.leaders__head {
    text-align: center;
    margin-bottom: 32px
}

@media (min-width: 760px) {
    .leaders {
        padding: 60px 0
    }

    .leaders__head {
        margin-bottom: 40px
    }
}

@media (min-width: 1200px) {
    .leaders {
        padding: 80px 0
    }

    .leaders__head {
        margin-bottom: 48px
    }
}

.leaders__title {
    color: var(--white)
}

.leaders__title b, .leaders__title span, .leaders__title strong {
    color: var(--primary)
}

.leaders__description {
    color: var(--gray-200);
    margin-top: 16px
}

.leaders__description p {
    margin-top: 0;
    margin-bottom: 0
}

.leaders__description p:not(:first-of-type) {
    margin-top: 8px
}

.leaders__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 32px
}

@media (min-width: 760px) {
    .leaders__cards {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 16px;
        margin-bottom: 40px
    }
}

@media (min-width: 1200px) {
    .leaders__cards {
        gap: 24px;
        margin-bottom: 48px
    }

    .leaders__card:hover {
        background-color: rgba(255, 255, 255, .2)
    }
}

.leaders__card {
    border-radius: 100px;
    background-color: rgba(255, 255, 255, .1);
    -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .12);
    padding: 10px 26px 10px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: var(--white);
    -webkit-transition: background-color var(--transition);
    transition: background-color var(--transition)
}

.leaders__card[href="#"] {
    cursor: default;
}

.leaders__card[href="#"]:hover {
    background-color: rgba(255, 255, 255, .1);
}

.leaders__card-image-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.leaders__card-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.leaders__card-text {
    font-weight: var(--fw-bold)
}

.leaders__clients {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px
}

.leaders__client {
    width: 72px;
    height: 38px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (min-width: 760px) {
    .leaders__client {
        width: 78px;
        height: 41px
    }
}

@media (min-width: 1200px) {
    .leaders__clients {
        gap: 24px
    }

    .leaders__client {
        width: 135px;
        height: 72px
    }
}
