/**
 * Fichier  : /pages/homepage/section-5/assets/css/expertise.css
 * Fonction : style de la transition vers les expertises
 */


/* ==================================================
   EXPERTISE
================================================== */

.business .expertise {
    padding-top: clamp(3em, 5vw, 5em);
    padding-bottom: clamp(3em, 5vw, 5em);
}


/* ==================================================
   SERVICES
================================================== */

.business .expertise > .services {
    padding-bottom: clamp(2.5em, 4vw, 4em);
}

.business .expertise > .services {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .9em 1.4em;
}

.business .expertise > .services span {
    font-family: 'bold-font';
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(255, 255, 255, .38);
}

.business .expertise > .services i {
    width: 18px;
    height: 1px;
}

.business .expertise > .services i {
    background: var(--color-primary);
}


/* ==================================================
   BOTTOM
================================================== */

.business .expertise > .bottom {
    margin-bottom: 3.5em;
    padding-top: clamp(2.5em, 4vw, 4em);
}

.business .expertise > .bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3em;
}

.business .expertise > .bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
}


/* ==================================================
   STATEMENT
================================================== */

.business .expertise > .bottom p {
    max-width: 720px;
}

.business .expertise > .bottom p {
    font-family: 'bold-font';
    font-size: clamp(26px, 3.4vw, 48px);
    font-weight: 400;
    line-height: 1.08em;
    letter-spacing: -.025em;
    color: var(--color-white);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media screen and (max-width: 700px) {

    .business .expertise > .services {
        gap: .8em 1em;
    }

    .business .expertise > .services i {
        width: 10px;
    }

    .business .expertise > .bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 2.2em;
    }

}