.glightbox_video {
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(17%, -15%);*/
}
.svg-logo-helper{
    margin-left: -7%;
    margin-bottom: 7%;
}
.showreel-helper {
    font-size: 2em !important;
    /*color: white;*/
    /*font-weight: bold;*/
    /*margin-top: 12%;*/
    /*margin-left: 50%;*/
}
.outer_circle {
    stroke-width: 3;
    stroke-dasharray: 410;
    stroke-dashoffset: 0;
    stroke-linecap: square;
    transition: all .4s ease-out;
}

.glightbox_video:hover .outer_circle {
    stroke-dashoffset:410;
    transition: stroke .7s .4s ease-out, stroke-dashoffset .4s ease-out
}

.glightbox_video:hover
.inner-circle {
    fill: #000000;
    transition:fill .4s .3s ease-out;

}

.glightbox_video:hover
.play{
    fill: white;
    transition:fill .4s .3s ease-out;
}

.glightbox_video:hover span{
    color: black !important;
}

/*@media only screen and (min-width: 300px) and (max-width: 1200px){*/
/*    .glightbox_video{*/
/*        padding-top: 20px;*/
/*        display: contents;*/
/*    }*/
/*    .glightbox_video a span{*/
/*        display: none;*/
/*    }*/
/*}*/

/* Individual Slides */
.slider {
    display: flex;
    transition: transform 2.5s ease-in-out;
}

.slide {
    flex: 0 0 100%; /* Each slide takes up 100% width */
    min-height: 800px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Text Overlay */
.text-overlay {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 20px;
    text-align: center;
}

.text-overlay h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.text-overlay p {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide {
        min-height: 300px; /* Reduce height for smaller screens */
    }

    .text-overlay h2 {
        font-size: 1.5rem;
    }

    .text-overlay p {
        font-size: 0.9rem;
    }
}

/* Keyframes for Sliding */
@keyframes slide {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-200%);
    }
    75% {
        transform: translateX(-100%);
    }
}

/* Apply Animation to Slider */
.slider {
    animation: slide 20s infinite;
}

.navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.navigation button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 5px;
}

.navigation button:hover {
    background: #333;
}