/*==================================
Google Font
==================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}

body{

    background:#07111f;
    color:#fff;
    overflow-x:hidden;

}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{

    background:#081321;

}

::-webkit-scrollbar-thumb{

    background:#00d9ff;
    border-radius:20px;

}

/*==================================
Navbar
==================================*/

.navbar{

    padding:18px 0;
    transition:.4s;
    background:rgba(0,0,0,.20);
    backdrop-filter:blur(12px);

}

.navbar-brand{

    color:#fff !important;
    font-size:34px;
    font-weight:700;

}

.navbar-brand span{

    color:#00d9ff;

}

.nav-link{

    color:#fff !important;
    margin-left:18px;
    font-weight:500;
    transition:.4s;

}

.nav-link:hover{

    color:#00d9ff !important;

}

.btn-primary{

    background:linear-gradient(45deg,#00d9ff,#7b2ff7);
    border:none;
    border-radius:40px;
    padding:12px 28px;
    transition:.4s;

}

.btn-primary:hover{

    transform:translateY(-4px);
    box-shadow:0 0 25px #00d9ff;

}

.btn-outline-light{

    border-radius:40px;
    padding:12px 28px;

}

/*==================================
Hero Slider
==================================*/

/*=====================================
HERO SLIDER
======================================*/

#heroSlider{

margin:30px auto;

max-width:1350px;

border-radius:30px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.35);

}


.hero-img{

height:550px;

object-fit:cover;

}

/* Dark Overlay */

.carousel-item{

position:relative;

}

.carousel-item::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.35);

z-index:1;

}

/* Caption */

.carousel-caption{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

z-index:2;

width:100%;

max-width:900px;

padding:0 20px;

text-align:center;

}

.carousel-caption h5{

font-size:18px;

letter-spacing:3px;

color:#00d9ff;

margin-bottom:15px;

text-transform:uppercase;

}

.carousel-caption h1{

font-size:58px;

font-weight:700;

line-height:70px;

margin-bottom:20px;

color:#fff;

}

.carousel-caption p{

font-size:19px;

line-height:32px;

color:#f1f1f1;

max-width:700px;

margin:auto;

margin-bottom:35px;

}

/* Buttons */

.carousel-caption .btn{

padding:14px 32px;

border-radius:40px;

font-size:17px;

}

/* Controls */

.carousel-control-prev,
.carousel-control-next{

width:60px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

background-size:70%;

}

/* Tablet */

@media(max-width:991px){

.hero-img{

height:500px;

}

.carousel-caption h1{

font-size:42px;

line-height:52px;

}

.carousel-caption p{

font-size:16px;

line-height:28px;

}

}

/* Mobile */

@media(max-width:576px){

.hero-img{

height:380px;

}

.carousel-caption{

padding:0 15px;

}

.carousel-caption h5{

font-size:13px;

letter-spacing:2px;

margin-bottom:10px;

}

.carousel-caption h1{

font-size:28px;

line-height:36px;

margin-bottom:15px;

}

.carousel-caption p{

font-size:14px;

line-height:22px;

margin-bottom:20px;

}

.carousel-caption .btn{

padding:10px 22px;

font-size:14px;

}

.carousel-control-prev,
.carousel-control-next{

display:none;

}

}

/*==================================
Animation
==================================*/

@keyframes fadeDown{

from{

opacity:0;
transform:translateY(-50px);

}

to{

opacity:1;
transform:translateY(0);

}

}

@keyframes fadeLeft{

from{

opacity:0;
transform:translateX(-80px);

}

to{

opacity:1;
transform:translateX(0);

}

}

@keyframes fadeRight{

from{

opacity:0;
transform:translateX(80px);

}

to{

opacity:1;
transform:translateX(0);

}

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(80px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

.navbar{

background:#081321;

}

.carousel-caption{

bottom:18%;

}

.carousel-caption h1{

font-size:45px;
line-height:55px;

}

.carousel-caption p{

width:100%;
font-size:16px;

}

}

@media(max-width:768px){

#heroSlider{

margin:15px;

border-radius:20px;

}

.hero-img{

height:260px;

}

.carousel-caption{

padding:0 15px;

}

.carousel-caption h5{

font-size:11px;

margin-bottom:5px;

}

.carousel-caption h1{

font-size:22px;

line-height:28px;

margin-bottom:10px;

}

.carousel-caption p{

display:none;

}

.carousel-caption .btn{

padding:8px 18px;

font-size:13px;

}

.carousel-control-prev,
.carousel-control-next{

display:none;

}

}


/*==========================================
SECTION COMMON
==========================================*/

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#fff;
}

.section-title span{
    color:#00d9ff;
}

.section-title p{
    color:#bcbcbc;
    max-width:700px;
    margin:15px auto 0;
    line-height:30px;
}

/*==========================================
POPULAR GAMES
==========================================*/

#games{
    background:#091321;
}

.game-card{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    transition:.4s;
    margin-bottom:30px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);

}

.game-card img{

    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;

}

.game-content{

    padding:25px;

}

.game-content h4{

    color:#fff;
    font-weight:600;

}

.game-content p{

    color:#bfbfbf;
    font-size:15px;
    margin-top:10px;

}

.game-content .btn{

    margin-top:15px;
    border-radius:30px;

}

.game-card:hover{

    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(0,229,255,.25);

}

.game-card:hover img{

    transform:scale(1.1);

}

/*==========================================
GAME OVERLAY
==========================================*/

.game-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.10)
    );

}

/*==========================================
CATEGORY BADGE
==========================================*/

.game-badge{

    position:absolute;
    top:15px;
    left:15px;
    background:#00d9ff;
    color:#000;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

/*==========================================
PLAY BUTTON
==========================================*/

.play-btn{

    display:inline-block;
    padding:12px 25px;
    border-radius:30px;
    background:linear-gradient(45deg,#00d9ff,#7b2ff7);
    color:#fff;
    text-decoration:none;
    transition:.4s;

}

.play-btn:hover{

    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 0 20px #00d9ff;

}

/*==========================================
HOVER BORDER EFFECT
==========================================*/

.game-card::before{

    content:"";
    position:absolute;
    width:0;
    height:4px;
    left:0;
    bottom:0;
    background:#00d9ff;
    transition:.4s;

}

.game-card:hover::before{

    width:100%;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:768px){

.section-title h2{

    font-size:34px;

}

.game-card img{

    height:220px;

}

}

/*==========================================
WHY CHOOSE US
==========================================*/

#features{
    background:#07111f;
}

.feature-card{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,229,255,.18);

}

.feature-card i{

    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:linear-gradient(45deg,#00d9ff,#7b2ff7);
    color:#fff;
    font-size:38px;
    margin-bottom:25px;

}

.feature-card h4{

    color:#fff;
    font-weight:600;
    margin-bottom:15px;

}

.feature-card p{

    color:#cfcfcf;
    line-height:28px;

}

/*==========================================
ABOUT
==========================================*/

#about{

    background:#091321;

}

.about-img{

    overflow:hidden;
    border-radius:20px;

}

.about-img img{

    width:100%;
    border-radius:20px;
    transition:.5s;

}

.about-img:hover img{

    transform:scale(1.08);

}

.about-content h5{

    color:#00d9ff;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;

}

.about-content h2{

    font-size:48px;
    color:#fff;
    font-weight:700;
    margin-bottom:20px;

}

.about-content p{

    color:#c8c8c8;
    line-height:30px;
    margin-bottom:20px;

}

.about-list{

    list-style:none;
    padding:0;
    margin:30px 0;

}

.about-list li{

    color:#fff;
    margin-bottom:15px;

}

.about-list i{

    color:#00d9ff;
    margin-right:10px;

}

/*==========================================
COUNTER
==========================================*/

.counter-area{

    margin-top:70px;

}

.counter-box{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;

}

.counter-box:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,229,255,.18);

}

.counter-box h2{

    color:#00d9ff;
    font-size:42px;
    font-weight:700;

}

.counter-box p{

    color:#d8d8d8;
    margin-top:10px;

}

/*==========================================
MISSION
==========================================*/

.mission-box{

    margin-top:50px;
    background:rgba(255,255,255,.05);
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(255,255,255,.08);

}

.mission-box h3{

    color:#fff;
    margin-bottom:20px;

}

.mission-box p{

    color:#cfcfcf;
    line-height:30px;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.about-content{

    margin-top:40px;

}

.about-content h2{

    font-size:38px;

}

}

@media(max-width:768px){

.feature-card{

    margin-bottom:25px;

}

.counter-box{

    margin-bottom:25px;

}

.about-content h2{

    font-size:30px;

}

}

/*==========================================
CONTACT
==========================================*/

#contact{
    background:#07111f;
}

.contact-info{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:40px;
    height:100%;

}

.contact-info h3{

    color:#fff;
    margin-bottom:25px;

}

.contact-item{

    display:flex;
    align-items:center;
    margin-bottom:25px;

}

.contact-item i{

    width:55px;
    height:55px;
    background:linear-gradient(45deg,#00d9ff,#7b2ff7);
    border-radius:50%;
    text-align:center;
    line-height:55px;
    color:#fff;
    margin-right:18px;
    font-size:20px;

}

.contact-item h5{

    color:#fff;
    margin-bottom:5px;

}

.contact-item p{

    color:#cfcfcf;
    margin:0;

}

/* Contact Form */

.contact-form{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:40px;

}

.contact-form .form-control{

    background:rgba(255,255,255,.08);
    border:none;
    color:#fff;
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;

}

.contact-form .form-control::placeholder{

    color:#bdbdbd;

}

.contact-form .form-control:focus{

    background:rgba(255,255,255,.12);
    color:#fff;
    box-shadow:0 0 15px rgba(0,229,255,.3);

}

/*==========================================
MAP
==========================================*/

.map{

    margin-top:70px;
    border-radius:20px;
    overflow:hidden;

}

.map iframe{

    width:100%;
    height:450px;
    border:0;

}

/*==========================================
WHATSAPP
==========================================*/

.whatsapp{

    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    text-align:center;
    line-height:65px;
    font-size:30px;
    z-index:9999;
    transition:.4s;
    animation:pulse 2s infinite;

}

.whatsapp:hover{

    color:#fff;
    transform:scale(1.12);

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.7);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

/*==========================================
SCROLL TOP
==========================================*/

.scrollTop{

    position:fixed;
    bottom:105px;
    right:25px;
    width:55px;
    height:55px;
    background:#00d9ff;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:55px;
    font-size:20px;
    cursor:pointer;
    transition:.4s;
    display:none;
    z-index:999;

}

.scrollTop:hover{

    transform:translateY(-5px);

}

/*==========================================
FOOTER
==========================================*/

footer{

    background:#050c16;
    padding:70px 0 20px;

}

.footer-logo{

    font-size:34px;
    color:#fff;
    font-weight:700;

}

.footer-logo span{

    color:#00d9ff;

}

.footer-about{

    color:#bfbfbf;
    margin-top:20px;
    line-height:30px;

}

.footer-title{

    color:#fff;
    margin-bottom:25px;
    font-size:22px;

}

.footer-links{

    list-style:none;
    padding:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:#bfbfbf;
    text-decoration:none;
    transition:.3s;

}

.footer-links a:hover{

    color:#00d9ff;
    padding-left:8px;

}

/* Social */

.social{

    margin-top:25px;

}

.social a{

    width:45px;
    height:45px;
    display:inline-block;
    text-align:center;
    line-height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    margin-right:10px;
    transition:.4s;

}

.social a:hover{

    background:#00d9ff;
    transform:translateY(-5px);

}

/* Copyright */

.copyright{

    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#bdbdbd;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.contact-info{

margin-bottom:30px;

}

footer{

text-align:center;

}

.social{

margin-bottom:30px;

}

}

@media(max-width:768px){

.contact-info,
.contact-form{

padding:25px;

}

.whatsapp{

width:55px;
height:55px;
line-height:55px;
font-size:25px;

}

.scrollTop{

width:50px;
height:50px;
line-height:50px;

}

.footer-title{

margin-top:30px;

}

}

/*=====================================
FEATURED GAMES
======================================*/

#featured-games{

padding:100px 0;
background:#081321;

}

.featured-card{

background:#111c2d;
border-radius:20px;
overflow:hidden;
transition:.4s;
border:1px solid rgba(255,255,255,.08);

}

.featured-card:hover{

transform:translateY(-12px);
box-shadow:0 15px 35px rgba(0,229,255,.25);

}

.featured-img{

position:relative;
overflow:hidden;

}

.featured-img img{

width:100%;
height:250px;
object-fit:cover;
transition:.5s;

}

.featured-card:hover img{

transform:scale(1.08);

}

.game-tag{

position:absolute;
top:15px;
left:15px;
background:#00d9ff;
color:#000;
padding:6px 18px;
font-size:13px;
font-weight:600;
border-radius:30px;

}

.featured-content{

padding:25px;

}

.featured-content h4{

color:#fff;

}

.featured-content p{

color:#c8c8c8;
margin:15px 0;

}

.game-info{

display:flex;
justify-content:space-between;
color:#00d9ff;
font-weight:600;

}

/*=====================================
TESTIMONIALS
======================================*/

#testimonials{

padding:100px 0;
background:#07111f;

}

.testimonial-box{

max-width:750px;
margin:auto;
text-align:center;
background:rgba(255,255,255,.05);
padding:50px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px);

}

.testimonial-box img{

width:100px;
height:100px;
border-radius:50%;
object-fit:cover;
margin-bottom:20px;
border:4px solid #00d9ff;

}

.testimonial-box h4{

color:#fff;

}

.testimonial-box h6{

color:#00d9ff;
margin-bottom:15px;

}

.rating{

color:#ffc107;
font-size:22px;
margin-bottom:20px;

}

.testimonial-box p{

color:#d5d5d5;
font-size:18px;
line-height:32px;

}

/*====================================
DOWNLOAD APP
====================================*/

#download-app{

padding:100px 0;

background:linear-gradient(135deg,#091321,#121f35);

}

.download-content h5{

color:#00d9ff;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:20px;

}

.download-content h2{

font-size:55px;

font-weight:700;

color:#fff;

margin-bottom:20px;

}

.download-content p{

color:#d8d8d8;

line-height:32px;

font-size:18px;

}

.download-btn .btn{

padding:15px 30px;

border-radius:50px;

}

.mobile-box{

position:relative;

animation:float 3s ease-in-out infinite;

}

.mobile-img{

max-width:420px;

filter:drop-shadow(0 0 35px rgba(0,229,255,.35));

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

@media(max-width:991px){

.download-content{

text-align:center;

margin-bottom:40px;

}

.download-content h2{

font-size:40px;

}

.mobile-img{

max-width:300px;

}

}

/*=========================================
FAQ
=========================================*/

#faq{

padding:100px 0;

background:#081321;

}

.accordion-item{

background:rgba(255,255,255,.05);

border:none;

margin-bottom:20px;

border-radius:15px;

overflow:hidden;

}

.accordion-button{

background:transparent;

color:#fff;

font-weight:600;

padding:22px;

box-shadow:none;

}

.accordion-button:not(.collapsed){

background:#00d9ff;

color:#000;

}

.accordion-button:focus{

box-shadow:none;

}

.accordion-body{

background:#111d2d;

color:#d8d8d8;

line-height:30px;

}

.support-box{

background:linear-gradient(135deg,#00d9ff,#7b2ff7);

padding:50px;

border-radius:25px;

text-align:center;

height:100%;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

}

.support-box i{

font-size:65px;

color:#fff;

margin-bottom:20px;

}

.support-box h3{

color:#fff;

font-size:34px;

margin-bottom:20px;

}

.support-box p{

color:#fff;

margin-bottom:30px;

line-height:30px;

}

.support-box .btn{

background:#fff;

color:#000;

border:none;

}


/*=====================================
LIVE STATS
======================================*/

#live-stats{

padding:90px 0;

background:#07111f;

}

.stats-card{

padding:35px;

background:rgba(255,255,255,.05);

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.stats-card:hover{

transform:translateY(-10px);

box-shadow:0 15px 35px rgba(0,229,255,.25);

}

.stats-card i{

font-size:45px;

color:#00d9ff;

margin-bottom:15px;

}

.stats-card h2{

color:#fff;

font-size:42px;

}

.stats-card p{

color:#d7d7d7;

}

/*=====================================
PARTNERS
======================================*/

#partners{

padding:100px 0;

background:#081321;

overflow:hidden;

}

.partner-slider{

overflow:hidden;

position:relative;

}

.partner-track{

display:flex;

width:max-content;

animation:partnerScroll 25s linear infinite;

}

.partner-track img{

width:170px;

margin:20px 40px;

filter:grayscale(100%);

opacity:.6;

transition:.4s;

}

.partner-track img:hover{

filter:none;

opacity:1;

}

@keyframes partnerScroll{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

/*=====================================
CTA
======================================*/

#cta{

padding:90px 0;

background:#07111f;

}

.cta-box{

background:linear-gradient(135deg,#00d9ff,#7b2ff7);

padding:70px;

text-align:center;

border-radius:30px;

}

.cta-box h2{

color:#fff;

font-size:48px;

margin-bottom:20px;

}

.cta-box p{

color:#fff;

font-size:20px;

margin-bottom:30px;

}

/*=====================================
LIVE STREAMING
======================================*/

#live-streaming{

padding:100px 0;

background:#091321;

}

.sub-title{

display:inline-block;

background:#00d9ff;

color:#000;

padding:8px 20px;

border-radius:30px;

font-weight:700;

margin-bottom:20px;

}

.stream-content h2{

font-size:52px;

font-weight:700;

color:#fff;

margin-bottom:25px;

line-height:65px;

}

.stream-content p{

color:#d9d9d9;

font-size:18px;

line-height:32px;

margin-bottom:20px;

}

.stream-feature{

background:rgba(255,255,255,.06);

padding:18px;

border-radius:15px;

margin-bottom:20px;

display:flex;

align-items:center;

gap:15px;

transition:.4s;

}

.stream-feature:hover{

transform:translateY(-8px);

background:#00d9ff;

color:#000;

}

.stream-feature i{

font-size:28px;

color:#00d9ff;

}

.stream-feature:hover i{

color:#000;

}

.stream-image{

display:flex;
justify-content:center;
align-items:center;

background:rgba(255,255,255,.05);

padding:30px;

border-radius:25px;

border:1px solid rgba(255,255,255,.08);

max-width:500px;
margin:auto;

}

.stream-image img{

width:100%;
max-width:420px;
height:auto;
object-fit:contain;

animation:float 4s ease-in-out infinite;

filter:drop-shadow(0 0 25px rgba(0,217,255,.30));

}

@media(max-width:991px){

.stream-content{

text-align:center;

margin-bottom:50px;

}

.stream-content h2{

font-size:38px;

line-height:50px;

}

}

/*=====================================
LIVE STREAM SHOWCASE
======================================*/

#stream-showcase{

padding:100px 0;

background:#081321;

overflow:hidden;

}

.streamSwiper{

padding:40px 0 70px;

overflow:hidden;

}

.streamSwiper .swiper-slide{

display:flex;

justify-content:center;

align-items:center;

transform:scale(.82);

opacity:.45;

transition:.5s;

}

.streamSwiper .swiper-slide-active{

transform:scale(1);

opacity:1;

}

.streamSwiper img{

width:100%;

max-width:320px;

height:620px;

object-fit:contain;

background:#111c2d;

border-radius:25px;

padding:12px;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 20px 40px rgba(0,0,0,.45);

transition:.4s;

}

.streamSwiper img:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,217,255,.30);

}

/* Navigation */

.swiper-button-next,
.swiper-button-prev{

color:#00d9ff;

width:50px;

height:50px;

background:rgba(255,255,255,.08);

border-radius:50%;

backdrop-filter:blur(10px);

}

.swiper-button-next::after,
.swiper-button-prev::after{

font-size:20px;

font-weight:bold;

}

/* Pagination */

.swiper-pagination{

bottom:0 !important;

}

.swiper-pagination-bullet{

width:12px;

height:12px;

background:#00d9ff;

opacity:.4;

transition:.3s;

}

.swiper-pagination-bullet-active{

opacity:1;

width:30px;

border-radius:30px;

}

/* Tablet */

@media(max-width:991px){

.streamSwiper img{

max-width:260px;

height:500px;

}

}

/* Mobile */

@media(max-width:576px){

#stream-showcase{

padding:70px 0;

}

.streamSwiper{

padding-bottom:60px;

}

.streamSwiper img{

max-width:220px;

height:420px;

}

.swiper-button-next,
.swiper-button-prev{

display:none;

}

}

.card video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}