/* The Background Image*/
#theBackground {
    z-index: -1;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100vw;
    height: 100vh;
}
#theBackgoundIMG {
    z-index: -1;
    width: 100%;
    position: fixed;
}
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    /* background-image: url("/Images/Backgrounds/Gradient-Blue_1920.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
}

.webTitle {
    text-align: center;
    padding: 20px;
    background-color: #4e4e4e;
    color: #fff;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--Brand-Color-001);
}

h2 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
}

.VideoDesign_Con {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.VideoDesign_Title {
    text-align: center;
    margin-bottom: 20px;
}

.VideoDesign_Textes {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.VideoDesign_section {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.VideoDesign_ul_main {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0;
}
.VideoDesign_ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    
}

.VideoDesign_li {
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    border-radius: 15px;
    padding-bottom: 20px;
    background-color: #fff;
}

.VideoDesign_li_info {
    cursor: pointer;

    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1;
    min-width: 200px;
    margin: 10px;
    box-sizing: border-box;
}

.VideoDesign_Video {
    width: 100%;
    max-width: 1080px;
    max-height: 500px;
    height: auto;
    border-radius: 8px;
    border: solid 1px rgba(0, 0, 0, 0.20);
}
.theVideoDesign {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.VideoDesign_ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.VideoDesign_li p {
    margin: 5px 0;
}

.MoreInfo {
    opacity: 0;
    /* Start hidden */
    visibility: hidden;
    /* Prevent interaction when hidden */
    margin-top: 5px;
    transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out 0.5s;
    /* Transition for opacity and visibility */
}

.VideoDesign_li_info:hover .MoreInfo {
    opacity: 1;
    /* Fully visible */
    visibility: visible;
    /* Make it visible for interaction */
    transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out 0s;
    /* Reset transition for hover */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #4e4e4e;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .VideoDesign_Con {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .VideoDesign_Video {
        margin: 5px 0;
    }

.VideoDesign_ul {
    display: flex;
    flex-wrap: wrap;
    /* Allow items to wrap onto the next line */
    justify-content: space-between;
    /* Optional: space between items */
    padding: 0;
    /* Remove default padding */
    margin: 0;
    /* Remove default margin */
}

.VideoDesign_li_info {
    flex: 1;
    /* Make all items take equal space */
    min-width: 200px;
    /* Set a minimum width to prevent them from getting too small */
    margin: 10px;
    /* Optional: add some margin between items */
    box-sizing: border-box;
    /* Ensure padding and border are included in the total width */
}
}