/* liste med testemonials, efter header på forside */

.quotes {
    padding: 2em 0;
    list-style: none;
    list-style-position: inside;
}

.quotes__item {
    margin-bottom: 2em;
    text-align: center;
}

.quotes__author {
    display: block;
    font-weight: 700;
    color: #fff;
}

.container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5em;
    gap: 2em;
}

.container__left,
.container__right {
    flex: 1;
}

.container__text {
    margin-bottom: 1em;
}

/* indsat video fra youtube */
.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
    margin-bottom: 5em;
}

.video__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media only screen and (max-width: 820px) {

    .container {
        flex-direction: column;
    }

    .container__left,
    .container__right {
        padding: 0;
        flex: 1;
    }
    .main .video {
        order: 1;
    }
    .main .quotes {
        order: 2;
    }
    .main .content {
        order: 3;
    }
}