html, body {
    height: 100%;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

.section {
    display: flex;
    flex-direction: row;
    height: 50vh;
}

.bloc {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bloc.texte {
    justify-content: center;
    padding: 65px;
    text-align: left;
    min-height: 100%;
    overflow: hidden;
    flex-grow: 1;
}

.bloc.texte p {
    text-align: left;
}

.bloc h2 {
    margin-bottom: 25px;
}

.bloc.slider {
    justify-content: center;
    align-items: center;
    max-height: 100%;
}

.slider img,
.slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

h2.section-heading.section-heading-dark span::before {
    top: -5px;
}

.section.inverse {
    flex-direction: row-reverse;
}

.swiper-pagination-bullet-active {
    background-color: white;
}

.swiper-button {
    color: white;
    background-color: #3a3a3a44;
    background-size: 10px;
    padding: 20px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        height: auto;
    }

    .bloc {
        width: 100%;
        height: auto;
    }

    .bloc.texte {
        min-height: auto;
        overflow-y: auto;
        padding: 40px;
    }

    .bloc.slider {
        max-height: 100vh;
    }

    .section.inverse {
        flex-direction: column;
    }
}
