

/* Cover  page */

.cover-page {
    background-image: linear-gradient(to right bottom, rgba(0,0,0,0.9),grey), url(../images/team.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-blend-mode: multiply;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-page > .container-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .cover-page h1 {
        display: inline-block;
        color: #eee;
        font-family: var(--primary-font);
        font-size: var(--size-bigger);
        padding: 0 2.5rem;
        margin-top: 8rem;
        text-align: center;
        text-transform: uppercase;
    }

    .cover-page h2 {
        margin-top: 2rem;
        color: #eee;
        font-family: var(--secondary-font);
        font-size: 1.9rem;
        font-weight: 400;
        text-align: center;
    }

    .buttons {
        padding: 3rem 0 0 0;
    }

/* Main */

.mission h2 {
    margin-top: 4rem;
    margin-bottom: 4rem;
    margin-left: 2rem;
    text-align: center;
    font-family: var(--primary-font);
    font-size: var(--size-bigger);
    color: var(--primary);
}

.mission ul{
    display: flex;
    justify-content: space-between;
    margin-left: 2rem;
    line-height: var(--size-larger);
    font-family: var(--secondary-font);
    font-size: var(--size-default); 
}

@media only screen and (max-width: 900px) {
    .mission ul{
        flex-direction: column;
        height: 36rem;
        padding: 0 5%;
    }
}

.mission li {
    flex-basis: 30%;
    color: var(--primary);
    position: relative;
}

.mission li:nth-child(1)::before {
    content: "1";
    position: absolute;
    top: 4rem;
    left: 50%;
    /* transform: translateY(-50%); */
    transform: translateX(-50%);
    font-size: 16rem;
    font-weight: 700;
    font-family: var(--primary-font);
    color: rgba(104,119,162, 0.1);
    z-index: -1;
}

.mission li:nth-child(2)::before {
    content: "2";
    position: absolute;
    top: 4rem;
    left: 50%;
    /* transform: translateY(-50%); */
    transform: translateX(-50%);
    font-size: 16rem;
    font-weight: 700;
    font-family: var(--primary-font);
    color: rgba(104,119,162, 0.1);
    z-index: -1;
}

.mission li:nth-child(3)::before {
    content: "3";
    position: absolute;
    top: 4rem;
    left: 50%;
    /* transform: translateY(-50%); */
    transform: translateX(-50%);
    font-size: 16rem;
    font-weight: 700;
    font-family: var(--primary-font);
    color: rgba(104,119,162, 0.1);
    z-index: -1;
}




/* Strategy */

.strategy h2 {
    margin-top: 5rem;
    margin-bottom: 4rem;
    margin-left: 2rem;
    text-align: center;
    font-family: var(--primary-font);
    font-size: var(--size-bigger);
    color: var(--primary);
}

.strategy ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: var(--size-larger);
    font-family: var(--secondary-font);
    font-size: var(--size-default); 
    margin-bottom: 4rem;
}

.strategy li {
    max-width: 50%;
    flex-basis: 8rem;
    color: var(--primary);
}

@media only screen and (max-width: 900px) {
    .strategy ul{
        flex-direction: column;
        justify-content: space-between;
        height: 42rem;
        padding: 0 5%;
    }
    .strategy li {
        max-width: 79%;
        flex-basis: 8rem;
        color: var(--primary);
    }
}
