.tourvideo-section {
    display: flex;
    margin: 20px;
}

.tourvideo-info,
.tourvideo-player {
    flex: 1;
    padding: 20px;
}

.tourvideo-info h2 {
    color: #333;
}

.tourvideo-info p {
    color: #777;
}

.tourvideo-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Default styling for larger screens */
.tourvideo-section {
    display: flex;
    flex-direction: row;
}

.tourvideo-player,
.tourvideo-info {
    flex: 1;
}

/* Media query for screens with a maximum width of 720 pixels */
@media (max-width: 720px) {
    .tourvideo-section {
        flex-direction: column;
    }

    .tourvideo-player,
    .tourvideo-info {
        width: 100%;
    }
}
