#video {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#video #video-video {
    border-radius: 10px;
    width: 40%;
    height: 100%;
}

#video #video-photo {
    width: 40%;
    height: 100%;
    border-radius: 10px;
}

#video #video-photo img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

#video #video-text {
    padding: 40px;
    font-size: 1.2em;
    color: #333;
    width: 60%;
}

#video h2 {
    color: var(--tertiary-color);
    font-size: 2.5em;
    margin-left: 20px;
}

#video a {
    font-weight: bold;
    color: var(--tertiary-color)!important;
    text-decoration: none!important;
}

@media (max-width: 1200px) {
    #video {
        flex-direction: column;
        align-items: center;
    }

    #video #video-video {
        width: 80%;
        height: auto;
    }

    #video #video-photo {
        width: 80%;
        height: auto;
        margin-bottom: 20px;
    }

    #video #video-text {
        width: 80%;
        padding: 20px;
    }

    #video h2 {
        font-size: 3em;
        margin-left: 0;
    }

    #video #video-text {
        font-size: 1.5em;
    }

    #video #video-video {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    #video {
        flex-direction: column;
        align-items: center;
    }

    #video #video-video {
        width: 100%;
        height: auto;
    }

    #video #video-text {
        width: 100%;
        padding: 20px;
    }

    #video h2 {
        font-size: 2em;
        margin-left: 0;
    }
}