.hero-banner{
    background: url(../images/home-banner.png) no-repeat var(--form-background-color);
    background-position: right center;
    background-size: cover;
    /* min-height: 500px; */
    position: relative;
}
.hero-banner .banner-container{
    display: none;
}
.hero-video {
    position: relative;
    width: 100%;
    /* height: 100vh;  */
    overflow: hidden;
}
.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the area */
}
@media (max-width: 991px) {
    .hero-video {
      height: 90vh; 
    }
}
.hero-banner .banner-row{
    align-items: center;
    min-height: 520px;
}
.banner-content{
    position: relative;
    z-index: 2;
}
.banner-content .banner-sub-title{
    font-size: 2.3rem;
    font-family: var(--Main-font);
    font-weight: 300;
    color: #FFFFFF;
    margin-top: 0px;
    margin-bottom: 30px;
}
.banner-content .banner-title{
    font-size: 3.5rem;
    font-family: var(--Title-font);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.banner-content .banner-title span{
    display: block;
}
.hero-banner .brand-logo{
    margin: 0 auto;
    max-width: 94%;
    position: relative;
}
.hero-banner .brand-logo a{
    padding-top: 35px;
    position: absolute;
    z-index: 2;
}
.hero-banner .brand-logo svg{
    height: 35px;
    width: 160px;
}
.banner-strip{
    display: block;
    width: 100%;
    background-color: #0072bc;
    padding: 30px 15px;
    text-align: center;
    /* display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
    flex-wrap: wrap; */
}
.banner-strip .btn-primary{
    min-width: 192px;
}
/* .banner-strip .btn-primary{
    background: rgb(7, 15, 38);
    color: #FFFFFF;
}
.banner-strip .btn-primary::after{
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23FFFFFF"><path d="M665.08-450H180v-60h485.08L437.23-737.85 480-780l300 300-300 300-42.77-42.15L665.08-450Z"/></svg>');
}
.banner-strip .btn-primary:hover:after{
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23070f26"><path d="M665.08-450H180v-60h485.08L437.23-737.85 480-780l300 300-300 300-42.77-42.15L665.08-450Z"/></svg>');
} */

@media (min-width: 0px) and (max-width: 767px) {
    .banner-content .banner-title{
        font-size: 2.3rem;
    }
    .banner-content .banner-sub-title{
        font-size: 1.5rem;
    }
    .hero-banner{
        background: url(../images/home-banner-mobile.png) no-repeat var(--form-background-color);
        background-position: right center;
        background-size: cover;
    }
    .banner-content {
        padding-top: 110px;
    }
    .hero-banner .banner-row {
        align-items: flex-start;
    }
    .hero-banner .banner-container{
        display: block;
    }
    .hero-video {
       display: none;
    }
    
}
@media (min-width: 768px) and (max-width: 991px) {
    .hero-banner{
        background: url(../images/home-banner-mobile.png) no-repeat var(--form-background-color);
        background-position: right center;
        background-size: cover;
    }
    .hero-banner .banner-row {
        min-height: 700px;
    }
    .banner-content {
        padding-top: 180px;
    }
    .hero-banner .banner-row {
        align-items: flex-start;
    }
    .hero-banner .banner-container{
        display: block;
    }
    .hero-video {
       display: none;
    }
}
@media (min-width: 992px) and (max-width: 1024px) {
    .hero-banner .banner-row {
        min-height: 430px;
    }
}
@media (min-width: 768px) and (max-width: 1440px) {
    .banner-content .banner-sub-title{
        font-size: 2rem;
    }
    .banner-content .banner-title{
        font-size: 3rem;
    }
}
/* stle for form start */
.form-required {
    color: #e42600;
    margin-left: .25em;
}
.error{
    color: #e42600; 
}
.registration-form .form-label{
    color: var(--SmartNavy);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #FFFFFF;
}
.registration-form .form-control, .registration-form .form-select {
    background: var(--form-background-color);
    border: none;
    border-bottom: 1px solid var(--form-border-color);
    color: var(--form-color);
    font-family: var(--Main-font);
    font-size: 1rem;
    border-radius: 0px;
    color: #FFFFFF;
}
.registration-form .form-control.error, .registration-form .form-select.error{
    border-color: #e42600;
}
.registration-form .form-select{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}
.registration-form .form-control:focus, .registration-form .form-select:focus{
    border-color: var(--form-hover-border-color);
    outline: none;
    box-shadow:none;
}
.registration-section{
    background-color: var( --background-color);
}
.field-space{
    margin-bottom: 30px;
}
.registration-content .title{
    text-align: center;
    margin-bottom: 30px;
}
.registration-form ::placeholder {
    color: #FFFFFF;
    font-size: 0.8rem;
}
.option-field{
    max-width: 100%;
    margin-top: 5px;
}
.registration-form .iti{
    display: block!important;
}
.registration-form  .iti__country-list{
    background-color: var(--form-background-color);
}
.registration-form .iti__arrow{
    border-top: 4px solid #ffffff;
}
.registration-form .iti--allow-dropdown .iti__flag-container, .registration-form .iti--separate-dial-code .iti__flag-container{
    max-height: 35px;
}
@media (min-width: 0px) and (max-width: 767px) {
    .iti-mobile .iti__country-list{
        background-color: var(--form-background-color);
    }
    .registration-form  .iti__country-list{
        min-width: 350px;
    }
}
/* @media (min-width: 768px) and (max-width: 991px) {
    .registration-form .iti__country-list {
        max-width: 339px;
    }
} */
/* stle for form end */
/* style for home page start */
.event-details{
    margin-bottom: 30px;
}
.event-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
    align-items: center;
    flex: 0 0 auto;
    width: 45%;
}
.event-item.event-venue{
    width: 100%;
}
.event-item p{
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.5;
}
.event-item svg{
    min-height: 50px;
}
/* .event-item.event-date svg{
    min-width: 60px;
}
.event-item.event-time svg{
    min-width: 60px;
}
.event-item.event-venue svg{
    min-width: 60px;
} */
/* .event-item svg path{
    fill: #0072BC;
} */
.overview-section .button-group{
    margin-top: 30px;
}
.slider-card{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px;
    /* background-color: var(--form-hover-border-color); */
    background-color: var(--entry-background-color);
    border-radius: 0px;
}
.slider-card .slider-card-item{
    flex: 0 0 auto;
}
.slider-card .slider-card-item.slider-image{
    width: 40%;
}
.slider-card .slider-card-item.slider-text{
    width: 60%;
}
.slider-card .slide-progress-wrapper{
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}
.slider-card .slide-progress {
    width: 0;
    max-width: 100% ;
    height: 4px;
    background: #FFFFFF;
}
.venue-carousel.owl-theme .owl-dots{
    position: absolute;
    right: -30px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
}
.event-details-wrapper{
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.venue-carousel.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: #FFFFFF;
}
.venue-carousel.owl-theme .owl-dots .owl-dot span{
    background: #869791;
}
/* .slider-card .slider-card-item.slider-image .venue-image{
    max-height: 320px;
}
.slider-card .slider-card-item.slider-image .venue-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* .overview-section{
    background-color: #FFFFFF;
}
.overview-section p, .overview-section ul, .overview-section ol, .overview-section .title, .overview-section .sub-title, .overview-section .btn-secondary{
    color: var(--SmartNavy);
}
.overview-section .btn-secondary::after{
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23070f26"><path d="M665.08-450H180v-60h485.08L437.23-737.85 480-780l300 300-300 300-42.77-42.15L665.08-450Z"/></svg>');
} */
.parallax-banner{
    align-items: center;
    background-attachment: fixed;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    min-height: 500px;
    position: relative;
}
/* Mobile Fix: Disable Fixed Background */
@media (max-width: 767px) {
    .parallax-banner {
        background-attachment: scroll !important; /* Prevents iOS issues */
        background-size: cover;
        background-position: center;
    }
}
.why-attend-section {
    background-image: url(../images/Transformation-2023-50.jpg);
    background-repeat: no-repeat;
    background-color: var(--Blue);
    background-size: cover; 
    position: relative;
    background-position: center;
    min-height: 500px;
}

.banner-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.icon-cards-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}
.icon-cards-wrapper .icon-card{
    flex: 1 0 0%;
    background-color: #070f26;
    border: 2px solid #00dfed;
    padding: 30px 10px 20px;
    max-width: 384px;
}
.icon-cards-wrapper .icon-card .icon{
    height: 70px;
    width: 70px;
    margin: 0px auto 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.icon-cards-wrapper .icon-card:nth-child(3) .icon, .icon-cards-wrapper .icon-card:nth-child(4) .icon{
    height: 70px;
    width: 60px;
}
.icon-cards-wrapper .icon-card .icon svg{
    max-width: 100%;
    height: 100%;
}
.icon-cards-wrapper .icon-card .icon-card-title{
    font-family: var(--Main-font);
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0px;
    color: #00dfed;
    text-align: center;
    letter-spacing: 1px;
}
.icon-cards-wrapper .icon-card .card-info{
    color: #fff;
    font-family: var(--Main-font);
    font-size: 0.8rem;
    margin-bottom: 0px;
    text-align: center;
}
/* .icon-cards-wrapper .icon-card svg{
    width: 100%;
}
.icon-cards-wrapper .icon-card .cls-1, .cls-2 {
    fill: #00dfed;
}

.icon-cards-wrapper .icon-card .cls-3 {
    
    stroke: #00dfed;
    stroke-miterlimit: 10;
    stroke-width: 5px;
    fill: #070f26;
}

.icon-cards-wrapper .icon-card .cls-2 {
    font-family: var(--Main-font);
    font-size: 25px;
    font-weight: 700;
}

.icon-cards-wrapper .icon-card .cls-4 {
    fill: #fff;
    font-family: var(--Main-font);
    font-size: 22px;
} */
.icon-cards-wrapper .icon-card  .cls-1 {
    fill: #00dfed;
    fill-rule: evenodd;
}

.icon-cards-wrapper .icon-card  .cls-2 {
    fill: #070f26;
    stroke: #00dfed;
    stroke-miterlimit: 10;
    stroke-width: 5px;
}
.why-attend-content, .agenda-content {
    position: relative;
    z-index: 2;
}
.agenda-section{
    background-image: url(../images/agenda-banner.jpg);
    background-repeat: no-repeat;
    background-color: var(--Blue);
    background-size: cover; 
    position: relative;
}
.agenda-content .table{
    background-color: var(--entry-background-color);
    color: #FFFFFF;
}
.agenda-content .table>:not(caption)>*>* {
    color: #FFFFFF;
    background-color: var(--entry-background-color);
}
/* .copyright-section{
    background-image: url(../images/copyright-background.png);
    background-repeat: no-repeat;
    background-color: var(--Blue);
    background-size: cover; 
    position: relative;
}
.copyright-content{
    position: relative;
    z-index: 2;
} */
/* style for footer start */
.upper-footer{
    margin-bottom: 2.7vw;
    display: flex;
    margin-right: 0;
    width: 100%;
}
.upper-footer .company {
    padding: 0.6rem 4%;
    background: #0072bc;
    color: #fff;
    font-size: 19px;
    font-family: Noto Sans, Tahoma, sans-serif;
}
footer{
    border-top: 1px solid hsla(0, 0%, 100%, .6);
    padding: 1.5rem 0;
}
footer .container-fluid{
    padding: 0px 4%;
}
.footer-content-wrapper{
    margin-right: 2.2rem;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-content .footer-text{
    color: #FFFFFF;
    margin-bottom: 0px;
}
.footer-content .footer-link{
    color: hsla(0, 0%, 100%, .6);
    text-decoration: none;
    padding-left: 15px;
    font-size: 14px;
}
.footer-content .footer-link:hover{
    text-decoration: underline;
}
.social-media{
    display: flex;
    align-items: center;
}
.social-media span{
    color: hsla(0, 0%, 100%, .6);
    font-size: 14px;
    display: inline-block;
        margin: 0 1rem 0 0;
}
.social-media-list{
    display: flex;
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0px;
}
.footer-nav{
    display: flex;
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0px;
}
.social-media-list .social-media-item{
    margin-right: 2.2rem;
}
.social-media-list .social-media-item svg{
    width: 30px;
    height: 30px;
}
.social-media-list .social-media-item svg path{
    fill: hsla(0, 0%, 100%, .6);;
}
.social-media-list .social-media-item .social-media-link:hover svg path{
    fill: #FFFFFF;
}
.copyright-modal .copyright-content p, .copyright-modal .copyright-content .sub-title{
    color: var(--SmartNavy);
}
.copyright-modal .copyright-content .sub-title{
    font-size: 1rem;
}
.copyright-modal .copyright-content p{
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.5;
}
.copyright-modal .modal-header{
    border: none;
    padding: 15px 15px;
}
.copyright-modal .modal-dialog-scrollable .modal-body{
    padding-top: 0px;
}
@media (min-width: 576px) {
    .copyright-modal .modal-dialog {
        max-width: 600px;
        margin-right: auto;
        margin-left: auto
    }
}
@media (min-width: 0px) and (max-width: 375px) {
    .upper-footer .company {
        width: 95%;
    }
}
@media (min-width: 0px) and (max-width: 767px) {
    .footer-content{
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .footer-content .footer-link{
        padding-left: 0px;
    }
    .social-media{
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .slider-card .slider-card-item.slider-image{
        width: 100%;
    }
    .slider-card .slider-card-item.slider-text{
        margin-bottom: 20px;
        width: 100%;
    }
    .event-item{
        flex-direction: row;
        gap: 15px;
        margin-bottom: 0px;
        width: 100%;
    }
    .event-item svg {
        min-height: 40px;
    }
    .event-details-wrapper{
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    .icon-cards-wrapper .icon-card{
        flex: 0 0 auto;
        width: 45%;
    }
    .icon-cards-wrapper{
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }
    .upper-footer{
        margin-bottom: 40px;
    }
    .upper-footer .company {
        background: #0072bc;
        color: #fff;
        font-size: 14px;
        font-size: calc(12.67769px + .41322vw);
        font-weight: 400;
        padding: .6em 4%;
    }
}
/* style for footer end */
@media (min-width: 768px) and (max-width: 992px) {
    .event-item{
        flex-direction: row;
        gap: 15px;
        margin-bottom: 0px;
        width: 100%;
    }
    .event-details-wrapper{
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .event-item svg {
        min-height: 45px;
    }
}
/* style for home page end */

.form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
    background-color:#0d6efd;
}
.form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label {
    color: #FFFFFF;
}
.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label {
    color:  #FFFFFF;
}
.image-card-wrapper{
    margin-top: 20px;
}
.image-card{
    background-color: var(--entry-background-color);
    border-radius: 0px;
    padding: 0px;
    margin-right: 15px;
    height: 100%;
    padding-bottom: 30px;
}
.image-card .image-card-title{
    font-size: 1.29rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: var(--Title-font);
}
.image-card .image-card-content{
    padding: 20px 20px 0px;
}
.image-card .image-card-content p{
    margin-bottom: 0px;
}
.image-card  .image{
    width: 100%;
}
.image-card  .image img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.agenda-content .table th:first-child, .agenda-content .table td:first-child{
    min-width: 100px;
    position: sticky !important;
    position: -webkit-sticky !important;
    top: auto;
    left: 0;
    word-break: break-word;
    z-index: 10;
    white-space: unset;
}
/* .video-section{
    background-color: var(--form-hover-border-color);
} */
.video-thumbnail-wrapper{
    margin-top: 30px;
}
.video-thumbnail-wrapper .video-thumbnail{
    position: relative;
    width: 100%;
    cursor: pointer;
}
.video-thumbnail-wrapper .play-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.video-thumbnail-wrapper .play-icon{
    background: rgba(115, 133, 159, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-thumbnail-wrapper .video-thumbnail:hover .play-icon{
    background: rgba(115, 133, 159);
}
.video-thumbnail-wrapper .play-icon svg{
    width: 40px;
    height: 40px;
}
.video-thumbnail-wrapper .video-iframe{
    display: none;
    background-color: var(--entry-background-color);
}
.video-item .video-title{
    margin-top: 10px;
    font-size: 1.15rem;
    font-family: var(--Main-font);
    font-weight: 400;
}
.video-carousel.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: #FFFFFF;
}
.video-carousel.owl-theme .owl-dots .owl-dot span{
    background: #869791;
    /* width: 30px; */
}
/* desing for agenda start */
.agenda-time-line{
    float: left;
    width: 100%;
}
.agenda-time-line .agenda-item{
    width: 100%;
    float: left;
}
.agenda-time-line .agenda-item{
    width: 100%;
    margin-bottom: 0rem;
    position: relative;
    display: flex;
    padding-bottom: 60px;
}
.agenda-time-line .agenda-item .time{
    /* text-align: center; */
    /* text-align: left; */
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 5px solid #00dfed;
    position: relative;
    z-index: 2;
}
.agenda-time-line .agenda-item .time::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    z-index: 1;
    display: inline-block;
    background-color: #00dfed;
    height: 20px;
    width: 15px;
    clip-path: polygon(0% 2%, 100% 50%, 0% 100%);
    transform: translateY(-50%);
}
.agenda-time-line .agenda-item .time h3{
    font-size: 1rem;
    font-family: var(--Main-font);
    line-height: 1;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
}
.agenda-time-line .agenda-item .time h3 span{
    display: block;
}
.agenda-time-line .agenda-item .content {
    position: relative;
    /* padding-bottom: 4rem; */
    width: calc(100% - 140px);
    margin-left: auto;
    padding-top: 15px;
}
.agenda-time-line .agenda-item .content .text{
    word-wrap: break-word;
    padding: 30px 15px;
    position: relative;
    background-color: #1a2337;
    font-size: 18px;
}
/* .agenda-time-line .agenda-item .content .text:before {
    border-right-width: 1.6rem;
    border-right-style: solid;
    border-left-width: 0;
    left: 0;
    right: auto;
    transform: translate(-70%, -45%);
    position: absolute;
    content: "";
    border-top: 1.6rem solid rgba(0, 0, 0, 0);
    border-bottom: 1.6rem solid rgba(0, 0, 0, 0);
    top: 1.1em;
    border-left-color: #1a2337;
    border-right-color: #1a2337;
} */
.agenda-time-line .agenda-item .content-line {
    /* width: 3%; */
    width: 120px;
    height: calc(100% - 120px);
    text-align: center;
    position: absolute;
    left: 0px;
    bottom: 0px;
    /* left: 50%;
    transform: translateX(-50%); */
}
.agenda-time-line .agenda-item .content-line .marker {
    position: relative;
    top: 40px;
    left: 0;
    z-index: 1;
    display: inline-block;
    /* background-color: #19a3fc; */
    background-color: #00dfed;
    height: 20px;
    width: 20px;
}
.agenda-time-line .agenda-item  .content-line:after {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    top: 0px;
    bottom: 0px;
    left: 50%;
    /* background-color: #fff; */
    border-right: 1px dashed #ffffff;
    height: 100%;
}
/* .agenda-time-line .agenda-item .content.left {
    float: left;
    width: 46%;
} */
/* .agenda-time-line .agenda-item .content.right {
    float: right;
} */
/* .agenda-time-line .agenda-item .content.left .text:before {
    border-left-width: 1.6rem;
    border-left-style: solid;
    border-right-width: 0;
    left: auto;
    right: 0;
    transform: translate(70%, -45%);
} */
.agenda-time-line .agenda-item .content .topic{
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #00dfed;
}
.agenda-time-line .agenda-item .content .topic a{
    color: #00dfed;
}
.agenda-time-line .agenda-item .content .speaker{
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.agenda-time-line .agenda-item .content .speaker .name{
    font-weight: 600;
}
.agenda-time-line .agenda-item .content .designation{
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: 0px;
}
.agenda-content .title{
    text-align: center;
    margin-bottom: 30px;
}
.agenda-content .button-group{
    margin-top: 40px;
    float: left;
    width: 100%;
}
.speaker-list{
    display: flex;
    padding-left: 0px;
    margin-bottom: 15px;
    list-style: none;
    flex-wrap: wrap;
}
.speaker-list .speaker-list-item{
    position: relative;
    /* flex: 0 0 auto;
    width: 33.3333%; */
    /* flex: 1 0 0%; */
    padding: 0px 15px;
    margin-bottom: 20px;
}
.speaker-list .speaker-list-item.full-width{
    width: 100%;
}
.speaker-list .speaker-list-item:first-child{
    padding-left: 0px;
}

.speaker-list .speaker-list-item::after{
    content: "";
    position: absolute;
    border-right: 2px solid #00dfed;
    right: 0px;
    top: 0px;
    bottom: 0px;
}
.speaker-list .speaker-list-item.no-line::after{
    display: none;
}
/* .speaker-list .speaker-list-item:last-child, .speaker-list .speaker-list-item:nth-child(2n){
    padding-right: 0px;
} */
.speaker-list .speaker-list-item:last-child:after{
    display: none;
}
/* .speaker-list .speaker-list-item:nth-child(2n-1){
    padding-left: 0px;
} */
.teal-green-text{
    color: #00dfed;
}
.agenda-accordion.accordion{
    background-color: #1a2337;
    border-radius: 0px;
    border: 0px;
}
.agenda-accordion.accordion .accordion-header, .agenda-accordion .accordion-header .accordion-button{
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #00dfed;
    font-family: var(--Main-font);
    font-weight: 600;
    border: 0px;
    border-radius: 0px;
    margin-bottom: 0px;
    line-height: 1.5;
}
.agenda-accordion.accordion .accordion-button{
    background-color: #1a2337;
    border: 0px;
    border-radius: 0px;
    margin-bottom: 0px;
    border-bottom: 0px;
    padding: 20px 0px;
}
.agenda-accordion.accordion .accordion-button:not(.collapsed){
    box-shadow: none;
}
.agenda-accordion.accordion .accordion-button::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
}
.agenda-accordion.accordion .accordion-button.collapsed{
    border-bottom: 0px;
}
.agenda-accordion.accordion  .accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}
.agenda-accordion.accordion .accordion-item{
    background-color: #1a2337;
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #fff;
}
.agenda-accordion.accordion  .accordion-body{
    padding: 20px 0px;
}
@media (min-width: 0px) and (max-width: 767px) {
    /* .agenda-time-line .agenda-item .content {
        width: 100%;
        padding-left: 60px;
    }
    .agenda-time-line .agenda-item .content.left, .agenda-time-line .agenda-item .content.right {
        float: left;
        width: 100%;
    }
    .agenda-time-line .agenda-item .content.left .text:before{
        left: 0;
        right: auto;
        transform: translate(-70%, -45%);
        border-right-width: 1.6rem;
        border-right-style: solid;
        border-left-width: 0;
    }
    .agenda-time-line .agenda-item .content-line{
        text-align: center;
        left: 15px;
        transform: unset;
    }
    .agenda-time-line .agenda-item .content-line {
        width: 6%;
    }
    .agenda-time-line .agenda-item .time{
        text-align: left;
    }
    .agenda-content .title{
        text-align: left;
        margin-bottom: 30px;
    } */
    .speaker-list .speaker-list-item::after{
        display: none;
    }
    .speaker-list .speaker-list-item{
        padding: 0px;
        padding-bottom: 15px;
        margin-bottom: 0px;
        width: 100%;
    }
    .agenda-time-line .agenda-item .time{
        width: 100px;
        height: 100px;
    }
    .agenda-time-line .agenda-item .content-line{
        height: calc(100% - 100px);
        width: 100%;
        /* display: none; */
        z-index: -1;
        bottom: 0px;
        left: -1px;
    }
    .agenda-time-line .agenda-item .content{
        width: 100%;
    }
    .agenda-time-line .agenda-item{
        padding-bottom: 30px;
        flex-direction: column;
        align-items: center;
    }
    .agenda-time-line .agenda-item .content .topic {
        font-size: 1.3rem;
    }
    .agenda-accordion.accordion .accordion-header, .agenda-accordion .accordion-header .accordion-button {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .agenda-accordion.accordion .accordion-header, .agenda-accordion .accordion-header .accordion-button span{
        display: block;
    }
    .agenda-time-line .agenda-item .time::after{
       
        height: 15px;
        width: 20px;
        transform: translateX(-50%);
        top: unset;
        bottom: -18px;
        right: unset;
        left: 50%;
        clip-path: polygon(0% 2%, 100% 0%, 50% 100%);
    }
}
/* desing for agenda end */
/* style for speakes start */
.speaker-card .speaker-image{
    width: 200px;
    height: 200px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 15px;
}
.speaker-card .speaker-card-content{
    text-align: center;
}
.speaker-card .speaker-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.speaker-card .speaker-title{
    font-size: 1.3rem;
    font-family: var(--Main-font);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.speaker-card .speaker-name{
    font-size: 1.1rem;
    font-family: var(--Main-font);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0px;
}
.speaker-card .speaker-designation{
    font-size: 0.8rem;
    font-family: var(--Main-font);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0px;
}
.speaker-card-wrapper{
    margin-top: 30px;
}
.speaker-content .row{
    justify-content: center;
}
@media (min-width: 0px) and (max-width: 767px) {
    .speaker-card-wrapper{
        width: 50%;
    }
    .speaker-card .speaker-image{
        width: 150px;
        height: 150px;
    }
    .speaker-content .title{
        text-align: center;
    }
    .speaker-content .row{
        justify-content: center;
    }
}
/* style for speakes end */
.blue-band-bg{
    background-color: #0072bc;
}
.sec-space-inside.blue-band-bg{
    padding: 50px 0px;
}
.header-timer-content{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
    margin-bottom: 20px;
}
.header-timer-content .time-unit {
	width: 65px;
    height: 60px;
    display: flex;           
    flex-direction: column;  
    justify-content: center;  
    align-items: center; 
    background: #070f26;
    opacity: 1;
    text-align: center;
    border: 1px solid #00dfed;
}
.header-timer-content .time-unit .number {
	color: #FFFFFF;
    font-size: 1.3rem;
    font-family: var(--Main-font);
    font-weight: 700;
    margin: 0; 
    line-height: 1.2; 
}
.header-timer-content .time-unit .text {
	color: #FFFFFF;
    font-family: var(--Main-font);
    font-size: 0.8rem;
    margin: 0;  
    line-height: 1.2;
}
.header-timer-content .colon {
    font-size: 1.5rem;
    color: #ffffff;
}
@media (min-width: 0px) and (max-width: 767px) {
    .header-timer-content .time-unit {
        width: 65px;
        height: 60px;
    }
    .header-timer-content{
        gap: 10px
    }
}
.white-strip{
    background-color: #ffffff;
    padding: 8px 15px;
}
.marquee {
    width: 100%; /* Adjust as needed */
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    font-family: var(--Main-font);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .marquee span {
    display: inline-block;
    padding-left: 100%; /* Start off-screen */
    animation: marquee 20s linear infinite;
  }
  .marquee:hover span {
    animation-play-state: paused;
  }
  @keyframes marquee {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .white-strip .marquee{
    color: #0072bc;
    margin-bottom: 0px;
  }