@media(min-width:1200px) {
    .hero-img {
        height: 80vh;
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .spkr-info {
        min-height: 100px;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .spkr-info {
        min-height: 127px;
    }
}

@media(max-width:991px) {
    html {
        scroll-padding-top: 60px;
    }
  
}

@media(max-width:767px) {
    nav {
        position: relative;
    }
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

     .menuToggle {
        display: flex;
    }

    .navbar .menu{
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        flex-direction: column;
        background: #951bd5;
        gap: 10px;
        height: 100vh;
        padding: 20px 30px;
        align-items: flex-start;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.4s ease;
        z-index: 1;
    }

    .navbar .menu.active {
        left: 0;
    }
  .menuToggle span {
    display: block;
    height: 2px;
    background: #000;
    border-radius: 3px;
    transition: 0.3s ease;
}

    .menuToggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menuToggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menuToggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .logo img{
        max-height: 40px;
    }
.navbar ul li a {
    color: var(--white);
}
.navbar ul li a img{
    filter: invert(1);
}
.navbar ul li a:after{
    display: none;
}

.heroSection{
    height: auto;
}

.heroVideo{
    object-fit: contain;
}
.agendaMain ul.nav-pills{
    width: 100%;
    flex-direction: column;
}
.nav-pills .nav-link{
    padding: 10px 15px;
    width: 100%;
   text-align: center;
   
}
.footerBottom .row{
    justify-content: center;
    text-align: center;
}

.footerLogo img{
    
    margin: auto;
}
.siteLink.active, .navbar ul li a.siteLink:hover i, .navbar ul li a.siteLink.active i{
    background: transparent;
    color:var(--white);
    -webkit-text-fill-color: var(--white);
}

#vosmosForms{
    margin-bottom: 30px;
}
.sponsorBox {
    flex-direction: column;
    gap: 25px;
}
.sponsorBox img{
    max-height: 60px;
}
.footerLinks.justify-content-end{
    justify-content: center!important;
    margin-top: 15px;
}
.about.sectionPadding{
    padding-top: 40px;
}
.event-info-bar{
    padding: 20px 0;
}
 .event-info-inner{
    
    gap:10px;
 }
 .event-info-item.sep{
    display: none;
  }
   .event-info-item{
    font-size: 14px;
    gap:8px;
   }
   .event-info-item img{
    width: 18px;
    height: 18px;
   }
}

