.essai {
    display: grid;
    margin-top:64px;
    margin-bottom:64px;
}

.essai_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position:relative;

    width:calc(100% - 64px);
    gap:32px;
    padding:32px;

    grid-column: 1;
    grid-row: 1;
    z-index:3;

    border-radius:10px;

    background-color:var(--brand-primary);
    background-repeat:no-repeat;
    background-image: url('../../svg/essai-bg.svg');
}

.essai_content p {
    color: var(--fake-white);
    font-weight: 600;
    text-align: center;
}

.big-btn-container {
    display:flex;
    align-items: center;
    justify-content: center;
    width:100%;
}

.big-btn_essai {
    background-color: var(--brand-secondary);
    font-weight: 600;
    border-radius: 5px;
    color: var(--fake-white);
    padding: 10px 20px;
    text-align:center;
}

@media only screen and (max-width: 1100px) {
    .essai {
        display: grid;
        margin-top: 48px;
        margin-bottom: 32px;
    }
}