.header {
    background-color: var(--labodoc-beige);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header__title {
    margin: 0;
}

.header__text {
    max-width: 700px;
}

.header__image {
    display: block;
    max-height: 400px;
    max-width: 100%;
    height: auto;
}

.commitments {
    padding: 3em 0;
    text-align: center;
}

.commitments__text {
    margin: auto;
}

.commitments__items {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
}

.commitments__item-title {
    font-weight: 900;
    color: var(--labodoc-middle-blue)
}

.resources {
    background-color: var(--labodoc-light-blue);
    padding: 3em 0;
}

.resources__container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.resources__title {
    display: inline-block;
    padding-bottom: 0.5em;
    border-bottom: 4px solid var(--labodoc-yellow);
}

.resources__image {
    display: block;
    max-width: 100%;
    max-height: 400px;
    height: auto;
}

.benefits {
    text-align: center;
    padding: 3em 0;
}

.benefits__quote {
    font-style: italic;
}

.benefits__register-link {
    display: inline-block;
    margin-top: 1em;
    text-decoration: none;
    background-color: var(--labodoc-middle-blue);
    border: 2px solid var(--labodoc-middle-blue);
    color: white;
    font-weight: bold;
    padding: 0.5em 2em;
}

@media screen and (max-width: 1000px) {
    .swiper {
        touch-action: pan-y;
        overflow: hidden;
    }

    .swiper-slide {
        flex-shrink: 0;
    }

    .swiper-pagination-bullet {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 4px;
        border-radius: 50%;
        opacity: 0.2;
        background: #000;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
        background: var(--labodoc-deep-blue);
    }
}

@media screen and (max-width: 700px) {
    .header__image {
        display: none;
    }

    .resources__container {
        flex-direction: column;
    }

    .resources__container-left {
        order: 2;
    }

    .resources__container-right {
        order: 1;
    }
}

