:root {
--shadow:0 0 #0000,0 0 #0000,0px 1px 6px 0px rgba(15, 35, 104, .2);
}
/* =========================
    HERO SECTION
========================= */
.webinar-wrapper {
    position: relative;
    padding: 10px 32px;
}

.hero-section{
    position: relative;
    padding: 0px 0 40px;
    overflow: hidden;
}

.hero-heading{
    max-width: 665px;
    margin: auto;
    text-align: center;
       
}

.hero-heading h1{
    font-size: 34px;
    line-height: 1.2;
    color:#101c63 !important;
    font-weight:300;
    margin-top: 0px;
}

.hero-heading h1 span{
    font-weight:700;
    color:#101c63 !important;
}

/* =========================
    FLOATING ICONS
========================= */

.tech-icon{
    position:absolute;
    width:90px;
    height:90px;
    background:#fff;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.tech-icon img{
    width:42px;
}

.icon1{ top:0; left:18%; }
.icon2{ top:78px; left:8%; }
.icon3{ top:173px; left:18%; }

.icon4{ top:0; right:18%; }
.icon5{ top:78px; right:8%; }
.icon6{ top:173px; right:18%; }

/* =========================
    SECTION TITLE
========================= */

.section-title{
    margin-top:0px;
    margin-bottom:35px;
}

.section-title h3{
    font-size:22px;
    font-weight:500;
    color:#111;
}

.section-title .line{
    width:140px;
    height:4px;
    background:#2f80ed;
    margin-top:12px;
}

/* =========================
    EVENT CARD
========================= */

.event-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(1,1,1,0.09);
    height:auto;
}

.event-img img{
    width:100%;
    height:100%;
    min-height:auto;
}

.event-content{
/*    padding:35px;*/
padding:0 35px;
}

.live-text{
    color:#0ea43c;
    font-size:15px;
    margin-bottom:4px;
    font-weight:500;
}

.event-title{
    font-size:16px;
    font-weight:700;
    color:#111;
    margin-bottom:9px;
}

.event-info{
    font-size:14px;
    color:#222;
    margin-bottom:10px;
}

.event-info i{
    margin-right:10px;
}

.right-side{
    text-align:right;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-end;
    padding-right:20px;
}

.seats{
    color:#8f8f8f;
    font-size:13px;
    margin-bottom:40px;
}

.register-btn{
    background:#2383ff;
    color:#fff;
    border:none;
    padding:7px 28px;
    font-size:15px;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
}

.register-btn:hover{
    background:#0b6ce8;
}


/* =================================
    TABS SECTION
================================= */

.events-wrapper{
    padding:10px 0;
}

.live-toggle{
    width:390px;
    margin:auto;
    background:#fff;
    border-radius:50px;
    padding:6px;
    display:flex;
    overflow:hidden;
    background: #ddd;
}

.live-toggle button{
    flex:1;
    border:none;
    background:transparent;
    padding:14px;
    font-size:18px;
    border-radius:50px;
    transition:0.3s;
}

.live-toggle .active{
    background:#e9f3ff;
    color:#0d6efd;
    font-weight:600;
}

.category-tabs{
    display:flex;
    gap:40px;
    margin-top:70px;
/*    border-bottom:1px solid #d8d8d8;*/
    padding-bottom:15px;
    flex-wrap:wrap;
}
.event-flex{display:flex; gap: 34px;}
.category-tabs a{
    text-decoration:none;
    color:#666;
    font-size:17px;
    position:relative;
    padding-bottom:12px;
}

.category-tabs a.active{
    color:#000;
    font-weight:600;
}

.category-tabs a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-16px;
    width:100%;
    height:3px;
    background:#111;
}

/* =================================
    SMALL EVENT CARD
================================= */

.small-event-card{
    margin-top:45px;
    max-width:650px;
    box-shadow: var(--shadow);
}

.small-event-img{
    border-radius:14px;
    overflow:hidden;
}

.small-event-img img{
    width:100%;
}

.registration-text{
    margin-top:20px;
    color:#555;
    font-size:15px;
}

.small-event-title{
    font-size:16px;
    font-weight:700;
    margin:25px 0;
}

.small-event-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.event-date{
    font-size:15px;
}
.small-event-card-content {
    padding: 19px 19px;
}

#live_section,#recorded_section{
    display:none;
}
#live_section.active,#recorded_section.active{
    display:block;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-heading h1{
        font-size:42px;
    }

    .tech-icon{
        display:none;
    }

    .event-content{
        padding:25px;
    }

    .event-title{
        font-size:28px;
    }

    .right-side{
        align-items:flex-start;
        text-align:left;
        padding:25px;
    }
      .small-event-title{
        font-size:32px;
    }

}

@media(max-width:767px){

    .hero-section{
        padding-top:40px;
    }

    .hero-heading h1{
        font-size:32px;
    }

    .section-title h3{
        font-size:20px;
    }

    .event-title{
        font-size:24px;
    }

    .event-info{
        font-size:18px;
    }

    .register-btn{
        width:100%;
        font-size:20px;
        padding:14px;
    }

    .seats{
        margin-bottom:16px;
    }
    
     .live-toggle{
        width:100%;
    }

    .live-toggle button{
        font-size:18px;
    }
    
     .category-tabs{
        gap:20px;
    }

    .category-tabs a{
        font-size:18px;
    }

    .small-event-title{
        font-size:26px;
    }

    .event-date{
        font-size:18px;
    }
.webinar-wrapper{padding: 10px 0px;}
.webinar_banner_img{width:100%;}
}