/* -- Flex utilities -- */
.flex_row {
    display: flex;
    flex-direction: row;
}
/* -- */
.flex_col {
    display: flex;
    flex-direction: column;
}
/* -- Background -- */
.section_blue {
    color: var(--gray);
    background: var(--blue);
    box-shadow: inset var(--shadow-d);
}
/* -- Description -- */
.description {
    gap: 1rem;
    z-index: 50;
}
/* -- Link -- */
.big_link {
    width: 15rem;
    height: 3rem;
    /* -- */
    font-weight: 500;
    color: var(--black);
    background: var(--green);
    box-shadow: var(--shadow-d);
    /* -- */
    display: flex;
    align-items: center;
    justify-content: center;
    /* -- */
    border-radius: var(--radius-m);
    transition: var(--fast);
}
    .big_link:hover {
        transition: var(--fast);
        background: var(--orange-e);
    }