.head {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
}

.text_exclusives {
    background-color: #7CA1A9;
    width: 50%;
    padding: 15px;
}

.text_exclusives h1 {
    text-align: center;
}

.form {
    background-color: var(--color-beige);
    width: 50%;
    z-index: 1;
}

.list_jour {
    color: white;
    line-height: 40px;
}

.text_exclusives p {
    margin-top: 30px;
    text-align: center;
}

.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    /* This will make the container take up the full height of the viewport */
}

.carousel {
    position: relative;
    display: inline-block;
}

.carousel-image {
    max-width: 800px;
    /* Increase this value to make the carousel image larger */
    max-height: 60vh;
    /* This will make the image take up to 80% of the height of the viewport */
    width: auto;
    height: auto;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 5px 10px;
    font-size: 1em;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

@media screen and (max-width: 825px) {
    .head {
        flex-direction: column;
        align-items: center;
    }

    .text_exclusives {
        width: 100%;
    }

    .form {
        padding: 15px;
        width: 100%;
    }

    .carousel-image {
        width: 100%;
    }
    
    .carousel-container {
        height: 45vh;
    }
}