
/*=======================================================================
Youtube videos 
=========================================================================*/
 @keyframes slide-to-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide-to-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.gallery-sliding-section{
    width: 100%;
    height: fit-content;
    margin-bottom: 30px;
}
.slider-image-container {
    overflow: hidden;
    padding: 2px 0;
    margin: 2px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

.slider-image-container:before,
.slider-image-container:after {
    position: absolute;
    top: 0;
     width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.slider-image-container:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.slider-image-container:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.scrolling-container {
    margin: 0;
    height: 200px;
    display: inline-block;
}

.to-left{
    animation: 120s slide-to-left infinite linear;
}

.to-right{
    animation: 120s slide-to-right infinite linear;
}

.slider-image-container .scrolling-container .scrolling-img{
    display: inline-block;
    height: 100%;
    width: 300px;
}


.scrolling-container img {
    height: 100%;
    width: 100%;
    margin: 0;
}





.video-section{
    width: 100%;
    height: fit-content;
    margin-top: 25px;
}

.video-container{
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(59, 59, 59, 0.6);
    overflow: hidden;
}
.video-container .my-video{
    width: 100%;
}

@media (max-width: 767px) {
    .slider-image-container:before,
    .slider-image-container:after{
        width: 30px;
    }
    .video-container {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .video-container {
        margin-bottom: 20px;
    }
    .slider-image-container:before,
    .slider-image-container:after{
        width: 50px;
    }
    .sport-section .left-section{
        display: none;
    }
}

/* Sports section start Left Section */
.sport-section{
    width: 100%;
    height: fit-content;
    margin-top: 45px;
}
.sport-section .container{
    position: relative;
}
.swiper-button-next:after,
.swiper-button-prev:after{

    font-size: 2.5rem !important;
    font-weight: 700;
    position: relative !important;
    z-index: 2 !important;
}
.swiper-button-next:after{
    margin-left: 25px;
}
.swiper-button-prev:after{
    margin-right: 25px;
}
.left-section {
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sport-box {
    border: 1px solid #002147b9;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0px 10px #00214783;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
    transform: translateX(-40px);
    transition: all 0.3s ease-in-out;
    color: #002147;
    letter-spacing: 0.05rem;
    width: 80%;
}

.sport-box.active {

    box-shadow: 8px 8px 8px #002147;
    transform: translateX(-20px);
    font-size: 18px;
    font-weight: bold;
}

/* Right Section */
.right-section {
    padding: 10px;
}

.right-section .inner-swiper{
    padding: 0 20px;
}

.sport-button {
    margin: 10px;
    background: #002147;
    color: white;
    outline: none;
    transition: all 0.5s ease-in-out;
    outline-offset: none;
}
.sport-button:hover{
    color: white;
    transform: scale(1.2);
}

/* Sports Description */
.sport-description {
    margin-top: 20px;
    font-size: 16px;
}

/* Outer Swiper Slider */
.sport-section .container{
    overflow: hidden;
}
.parentSwiper .parent-swiper-wrapper .parent-swiper-slide{
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
}


/* Inner Swiper Slider */
.inner-swiper-container {
    margin: 10px auto;
    width: 100%;
    height: 250px;
    box-shadow: 0 0 20px rgba(0, 2, 40, 0.252);
    border-radius: 4px;
    overflow: hidden;
}

.inner-swiper-container .swiper-slide img {
    border-radius: 3px;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

/* Responsive Style */ 
@media (max-width: 768px){
    .sport-section .left-section{
        display: none;
    }
}
