.pres-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem;
    margin-top: 5rem;
}

.pres-section>div {
    flex: 1;
    position: relative;
}

.pres-section .presentation {
    margin-left: 1rem
}

.pres-section .presentation h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.pres-section .presentation .description {
    text-align: justify;
}

.pres-section .image_pres {
    margin-right: 1rem;
}

.pres-section .image_pres path {
    fill: var(--primary-very-light);
}

.pres-section .pres_img {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: auto;
}

.section-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 4rem;
    background-color: var(--primary);
    border-radius: 2rem;
    position: relative;
}

.section-box:after {
    position: absolute;
    content: '';
    width: 55%;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 70rem 2rem 2rem 0;
    right: 0;
    top: 0;
    z-index: 0;
}

.section-box>div:first-child {
    flex: 2;
    margin-right: 1rem;
    z-index: 1;
}

.section-box>div:last-child {
    flex: 1;
    margin-left: 1rem;
    z-index: 1;
}

.section-box h2,
.section-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.section-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 1rem;
}

@media screen and (max-width: 800px) {
    .pres-section {
        flex-direction: column;
        min-height: auto;
    }

    .pres-section .presentation {
        width: 100%;
        margin: auto;
        padding: 2rem 0rem;
    }

    .pres-section .image_pres {
        width: 100%;
        margin: auto;
        padding-top: 2rem;
    }

    .section-box {
        flex-direction: column;
        padding: 2rem;
    }

    .section-box>div:first-child {
        order: 2;
        margin-right: 0;
    }

    .section-box>div:last-child {
        order: 1;
        margin-bottom: 2rem;
        margin-left: 0rem;
    }

    .section-box:after {
        display: none;
    }
}