@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');


body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none;
}

.render_logo {
    /* background-color: #fff;
    padding: 8px 10px;
    border-radius: 5px; */
}

.render_logo img {
    height: 55px;
}

.premium-header {
    background: #020303;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* position: sticky; */
    /* top: 0; */
    z-index: 1000;
}

.premium-header .navbar {
    padding: 0px 0px;
}



.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.nav-links li a {
    text-decoration: none;
    color: #FBF0EA;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    padding: 13px 10px;
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover {
    color: #EDF548;
    border-color: #EDF548;
}

.nav-links li a.active {
    color: #EDF548;
    border-color: #EDF548;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #9d9d9d;
}

.header-actions .register {
    width: 142px;
    height: 48px;
    border: 1px solid #EDF548;
    background-color: #EDF548;
    border-radius: 8px;
    color: #0F0B0C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        background-color: #0f0b0c;
        border-top: 1px solid #dedede47;
        align-items: unset;
    }

    .navbar.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        padding: 30px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links li a {
        font-size: 20px;
    }
}


.banner_wrap {
    background-color: #0F0B0C;
    padding: 7rem 0rem 9rem;
    background-image: url(../img/all-images/thrive_banner_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.banner_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b0;
}
.render_logo_banner {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #fff;
    border-radius: 5px;
}

.banner_content {
    position: relative;
}

.bannerLeft_content {
    text-align: center;
}

.bannerLeft_content span {
    font-size: 26px;
    color: #DBDADB;
    font-weight: 700;
    line-height: 160%;
    margin: 0px 0px 0px;
}

.bannerLeft_content h2 {
    font-size: 60px;
    color: #fff;
    font-weight: 800;
    line-height: 100%;
    border: 1px solid #fff;
    display: block;
    width: fit-content;
    margin: 25px auto;
    border-radius: 12px;
    padding: 10px 45px;
}

.bannerLeft_content p {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    line-height: 160%;
    margin: 0px 0px 0px;
}


.bannerLeft_content .register {
    width: 225px;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #0F0B0C;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-top: 30px;
    padding: 0px 59px 0px 15px;
    position: relative;
}

.bannerLeft_content .register:hover img {
    right: 30px;
}

.bannerLeft_content .register img {
    height: 25px;
    position: absolute;
    right: 50px;
    transition: 0.5s;
}

.date_location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 20px 0px #0000001A;
    background-color: #ffffff;
    max-width: 36%;
    margin: -50px auto 0px;
    padding: 25px;
    position: relative;
}

.date_location p {
    font-family: Manrope;
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 0px;
}

.date_location p img {
    height: 31px;
    width: 30px;
    margin-right: 12px;
}



.main_wrap {
    margin-top: 4rem;
}

.event_content {
    display: flex;
    gap: 25px;
}

.event_content .event_left {
    width: 55%;
}

.event_content .event_left h2 {
    font-weight: 600;
    font-size: 46px;
    line-height: 110.00000000000001%;
    color: #0F0B0C;
    margin: 0px 0px 28px;
}

.event_content .event_left p {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: #0F0B0C;
}

.event_content .event_left p span {
    font-weight: 500;
    color: #C9231D;
}


.event_content .event_right {
    width: 45%;
    position: relative;
    padding-left: 50px;
}

.event_right img {
    width: 80%;
}


.event_images {
    margin-top: 3rem;
}

.event_images {
    margin-top: 3rem;
    display: flex;
    column-gap: 20px;
}

.event_leftImages {
    width: 50%;
}

.event_rightImages {
    width: 50%;
    display: flex;
    column-gap: 20px;
}

.event_images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.banner_star {
    position: absolute;
    top: -85px;
    left: 0;
    right: 0;
    text-align: center;
    padding-left: 8rem;
}

.banner_star img {
    height: 32px;
}

.titles {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.titles h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 110.00000000000001%;
    color: #0F0B0C;
    margin: 0px 0px 28px;
}

.notes_titile {
    max-width: 100%;
    text-align: center;
    margin-bottom: 0px;
}

.notes_titile .quote_icon {
    position: absolute;
    left: 25px;
    height: 20px;
}

.notes_titile h2 {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0px;
}



.titles p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 0px;
}

.atend_list ul {
    margin-bottom: 0px;
    list-style: none;
    padding-left: 0px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.atend_list ul li {
    background-color: #ffffff;
    box-shadow: 0px 4px 20px 0px #0000001A;
    border-radius: 32px;
    padding: 20px 40px;
}

.atend_list ul li p {
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.atend_list ul li p span {
    height: 45px;
    width: 45px;
    min-width: 45px;
    background-color: #0F0B0C;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.speakers_section {
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.speakers_section .container {
    max-width: 100%;
}

.expert_bg {
    position: absolute;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.expert_bg img {
    width: 42%;
}

.speakers_row {
    display: flex;
    z-index: 2;
    position: relative;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.speakers_col {
    overflow: hidden;
    text-align: center;
    height: 100%;
    width: 33.3%;
}

.speakers_col img {
    margin-bottom: 22px;
    height: 510px;
    object-fit: cover;
    width: 100%;
}

.speakers_content {
    padding: 0px 50px;
}

.speakers_col h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    text-align: center;
    background-color: #000000;
    border-radius: 12px;
    color: #fff;
    padding: 15px 0px;
    width: 250px;
    margin: -50px auto 20px;
    position: relative;
}

.speakers_col p {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 0px;
}

.different_title {
    max-width: 65%;
    margin-bottom: 4rem;
}

.different_title h2 {
    border-left: 3px solid #C9231D;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
}

.different_title p {
    font-size: 20px;
}

.different_col {
    border: 1px solid #C9231D;
    border-radius: 50px;
    position: relative;
    padding: 45px 40px 45px;
    height: 100%;
}

.different_col .frame_img {
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    text-align: center;
}

.different_col .frame_img img {
    height: 40px;
}

.different_col h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #0F0B0C;
    margin-bottom: 2rem;
}

.different_col ul {
    color: #0F0B0C;
}

.different_col ul li p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #0F0B0C;
    margin: 5px 0px;
}




.schedule_tabs {
    background-color: #0F0B0C;
    border-radius: 16px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule_tabs .nav-tabs {
    border: none;
}

.schedule_tabs .nav-tabs .nav-link {
    border: none;
    outline: none;
    box-shadow: none;
    color: #fff;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
}

.schedule_tabs .nav-tabs .nav-link i {
    margin-right: 5px;
}

.schedule_tabs .nav-tabs .nav-link.active {
    color: #1C1A1A;
}

.schedule_tabs p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
}

.scheduleTab_content {
    margin-top: 1.5rem;
}

.scheduleTab_content .tab-pane .tab-paneInner {
    background-color: #FFF5D9;
    padding: 20px;
    margin-top: 1.5rem;
    border-radius: 18px;
}

.tab_content_title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tab_content_title h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 0px;
    color: #0F0B0C;
}

.tab_content_title h3 span {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
}

.tab_content_title p {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 0px;
}

.tab_contentInner p {
    margin-bottom: 10px;
}

.tab_contentInner span {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
}

.tab_contentInner ul {
    margin-bottom: 15px;
    padding-left: 18px;
}

.tab_contentInner ul li p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    margin: 6px 0px;
}

.networking_col {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background-color: #F3F3F3;
    margin-top: 1.5rem;
}

.networking_col h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 0px;
    color: #0F0B0C;
}

.networking_col p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    margin: 10px 0px;
    color: #3F3C3D;
}

.networking_col h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 0px;
}


.colums_section {
    /* background-color: #1A1A1A; */
    position: relative;
}

.colum_circle {
    position: absolute;
    top: 0;
    right: 0;
}

.colum_circle img {
    height: 200px;
}

.colums_title {
    max-width: 100%;
}

.colums_title .pra_1 {
    font-size: 20px;
    margin-top: 25px;
}

.registeration_fee {
    margin-top: 25px;
    border: 1px solid #C9231D;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 15px 30px;
}

.registeration_fee p {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 0px;
}

.registeration_fee .register {
    width: 225px;
    height: 48px;
    border: 1px solid #C9231D;
    border-radius: 8px;
    color: #0F0B0C;
    background-color: #C9231D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-top: 0px;
    padding: 0px 59px 0px 15px;
    position: relative;
    color: #fff;
}

.registeration_fee .register img {
    height: 25px;
    position: absolute;
    right: 50px;
    transition: 0.5s;
}

.registeration_fee .register:hover img {
    right: 30px;
}

.white_col {
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 16px;
    height: 100%;
    border: 1px solid #C9231D;
}

.white_col h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
    margin-bottom: 1rem;
}

.white_col span {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
    margin-bottom: 1rem;
    display: block;
}

.white_col ul {
    color: #000000;
    margin-bottom: 0px;
    padding-left: 20px;
}

.white_col ul li p {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
    display: block;
    margin: 0px 0px;
}

.notes_section {
    margin-bottom: 0rem;
}

.notes_wrap {
    padding: 15px;
    background: #aeaeae2e;
    position: relative;
}

.note_col {
    padding: 10px 0px;
}

.note_col p {
    font-weight: 500;
    font-size: 15px;
    line-height: 200%;
    margin: 0px 0px 0px;
}

.note_col p span {
    display: inline-block;
    color: #C9231D;
    font-weight: 600;
}



.register_fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-top: 1.2px solid #fff;
    background-color: #fff;
    padding: 15px 0px;
    box-shadow: 0 0 5px #00000080;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.register_fixed.show {
    transform: translateY(0);
    /* visible on scroll */
}

.register_fixed span {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
    line-height: 160%;
    margin: 0px 0px 0px;
}

.register_fixed .register {
    width: 142px;
    height: 48px;
    border: 1px solid #C9231D;
    border-radius: 8px;
    color: #ffffff;
    background-color: #C9231D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.register_modalBody .form-control {
    font-size: 14px;
    height: 40px;
    border-radius: 8px;
    box-shadow: none;
    outline: none;
    border-color: #dedede;
    color: #000000;
    -moz-appearance: auto;
    appearance: auto;
}

.register_modalBody .form-control::placeholder {
    color: #000000;
}

.register_modalBody .btn {
    width: 142px;
    height: 40px;
    border: 1px solid #C9231D;
    border-radius: 6px;
    color: #000000;
    background-color: #C9231D;
    display: block;
    align-items: center;
    font-weight: 600;
    margin: 0px auto;
    font-size: 14px;
    color: #fff;
}


/* slider css */
.swiper-container {
    width: 100%;
    height: 100%;
}

/* .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
} */
.swiper-button-next,
.swiper-button-prev {
    background-image: unset;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    box-shadow: 0px 0px 5px #00000075;
    border-radius: 100%;
    visibility: hidden;
}

/*  */
.matter_title {
    max-width: 100%;
    background-color: #000000CC;
    padding: 35px 100px;
    margin-bottom: 0px;
    position: relative;
}

.matter_title h2 {
    text-align: left;
    color: #fff;
}

.matter_title p {
    font-size: 20px;
    text-align: left;
    color: #fff;
}

.matter_title .quote_icon {
    position: absolute;
    left: 25px;
    height: 20px;
}

/*  */
.shedule_section {
    position: relative;
}

.program_circle {
    position: absolute;
    bottom: 0;
    left: 0;
}

.program_circle img {
    height: 200px;
}

.program_title {
    background-color: #000000d9;
    border-radius: 24px;
    width: 550px;
    padding: 21px 30px;
    text-align: center;
    margin: 0px auto;
}

.program_title h2 {
    font-weight: 600;
    font-size: 25px;
    line-height: 110.00000000000001%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
}

.program_title h2 span:first-child {
    border-left: 3px solid #fff;
    padding-left: 20px;
}

.program_scheduleMain {
    margin: 50px 0px;
    padding-left: 2rem;
    border-left: 2px solid #C9231D;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.program_schedule {
    position: relative;
}

.program_schedule::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #0F0B0CCC;
    z-index: 1;
}

.program_schedule:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: -33px;
    background-color: #ffffff;
    width: 2px;
    height: 100%;
    z-index: 0;
}

.programe_time p {
    font-weight: 600;
    font-size: 22px;
    line-height: 110.00000000000001%;
    color: #000000;
}

.program_heading p {
    font-weight: 600;
    font-size: 22px;
    line-height: 110.00000000000001%;
    color: #000000;
}

.programe_timeLunch p {
    color: #C9231D;
}

.program_headingLunch p {
    color: #C9231D;
}

.program_description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    margin-bottom: 0px;
    color: #000000CC;
}

/*  */

.footer_section {
    margin-bottom: 3.4rem;
    background: #000000CC;
    padding: 1rem 0px;
}

.footer_col {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.footer_col h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
}

.footer_col p {
    margin-bottom: 0px;
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

@media screen and (max-width:1920px) and (min-width:1600px) {
    .speakers_col img {
        height: 650px;
    }
}



@media screen and (max-width: 768px) {
    .footer_col p {
        font-size: 17px;
    }
    .bannerLeft_content span {
        font-size: 16px;
    }

    .bannerLeft_content h2 {
        font-size: 35px;
    }

    .bannerLeft_content p {
        font-size: 18px;
    }

    .bannerLeft_content p span {
        font-size: 20px;
    }

    .bannerLeft_content .register {
        margin-top: 25px;
    }

    .main_wrap {
        margin-top: 2rem;
    }

    .notes_section {
        margin-bottom: 0rem;
    }

    .notes_titile .quote_icon {
        left: 15px;
        height: 12px;
    }


    .event_content {
        flex-direction: column;
        gap: 20px;
    }

    .event_content .event_left {
        width: 100%;
    }

    .event_content .event_left h2 {
        font-size: 30px;
        margin: 0px 0px 20px;
    }

    .event_content .event_left p {
        font-size: 16px;
        text-align: justify;
    }

    .event_content .event_right {
        width: 100%;
        padding-left: 0px;
    }

    .event_right img {
        height: auto;
        width: 100%;
    }

    .titles {
        margin-bottom: 2rem;
        max-width: 90%;
    }

    .titles h2 {
        font-size: 30px;
        margin: 0px 0px 20px;
    }

    .notes_titile {
        margin: 0px;
    }
    .notes_titile h2 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .note_col p {
        font-size: 16px;
    }

    .matter_title {
        max-width: 100%;
        padding: 35px 40px;
        margin-bottom: 0px;
    }

    .matter_title .quote_icon {
        position: absolute;
        left: 12px;
        height: 10px;
    }

    .atend_list ul {
        width: 100%;
    }

    .atend_list ul li p {
        font-size: 16px;
    }

    .different_title {
        flex-direction: column;
    }

    .different_title h2 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding-left: 10px;
    }

    .different_title p {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .different_col {
        border-radius: 25px;
        padding: 30px 30px 30px;
        height: auto;
    }

    .different_col h3 {
        font-size: 18px;
        margin-bottom: 1rem;
    }

    .different_col ul {
        padding-left: 20px;
    }

    .different_col ul li p {
        font-size: 16px;
    }

    .schedule_tabs .nav-tabs .nav-link {
        font-size: 16px;
        padding: 5px 8px;
        font-weight: 600;
    }

    .schedule_tabs p {
        font-size: 16px;
    }

    .scheduleTab_content {
        margin-top: 1rem;
    }

    .scheduleTab_content .tab-pane .tab-paneInner {
        padding: 15px;
        margin-top: 1rem;
        border-radius: 15px;
    }

    .tab_content_title {
        gap: 15px;
    }

    .tab_content_title h3 {
        font-size: 20px;
    }

    .tab_content_title p {
        font-weight: 500;
        font-size: 16px;
    }

    .networking_col {
        padding: 20px;
        border-radius: 15px;
    }

    .networking_col h4 {
        font-size: 20px;
    }

    .networking_col h3 {
        font-size: 20px;
    }

    .white_col {
        padding: 20px;
        border-radius: 15px;
    }

    .white_col h4 {
        font-size: 16px;
    }

    .white_col span {
        font-size: 16px;
    }

    .white_col ul li p {
        font-size: 16px;
        margin: 5px 0px;
    }

    .notes_wrap {
        padding: 20px;
    }

    .register_fixed {
        flex-direction: column;
        gap: 10px;
    }

    .register_fixed span {
        font-size: 16px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        visibility: visible;
    }

    .speakers_section {
        background-color: transparent;
    }

    .speakers_col {
        position: relative;
    }

    .speakers_col img {
        height: 325px;
        margin-bottom: 0px;
    }

    .speakers_col .speakers_content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 10px;
        background-color: #fff;
        border-radius: 10px;
        width: 90%;
        margin: 0px auto;
        padding: 10px 5px;
    }

    .speakers_col p {
        margin-bottom: 0px;
    }

    .date_location {
        max-width: 100%;
        margin: -40px auto 0px;
        padding: 20px 15px;

    }

    .date_location p {
        font-size: 16px;
    }

    .date_location p img {
        height: 26px;
        width: 25px;
        margin-right: 8px;
    }

    .program_title {
        width: 100%;
        padding: 18px 20px;
    }

    .program_title h2 {
        font-size: 20px;
    }

    .matter_title p {
        font-size: 16px;
    }

    .program_scheduleMain {
        margin: 30px 0px;
        padding-left: 2rem;
        gap: 30px;
    }

    .program_schedule:last-child::after {
        left: -35px;
        width: 4px;
    }

    .programe_time p {
        font-size: 18px;
    }

    .program_heading p {
        font-size: 18px;
    }



    .colums_title {
        max-width: 100%;
        position: relative;
    }

    .registeration_fee {
        width: 100%;
        padding: 10px 10px;
    }

    .registeration_fee .register img {
        right: 40px;
    }

    .program_circle img {
        height: 100px;
    }

    .colum_circle img {
        height: 100px;
    }

    .footer_col h3 {
        margin-bottom: 10px;
    }

   .footer_col {
        margin-bottom: 36px;
        flex-direction: column;
        gap: 5px;
    }

}

@media screen and (max-width:576px) {
    .render_logo img {
        height: 30px;
    }

    .banner_wrap {
        padding: 4rem 0rem 7rem;
    }

    /* .date_location {
        flex-direction: column;
        row-gap: 12px;
        padding: 15px 10px;
    } */

    .date_location p:first-child {
        /* border-bottom: 1px solid #dedede; */
        /* padding: 0px 50px 10px; */
    }

    .different_title h2 {
        border-left: none;
        padding-left: 0px;
    }

    .speakers_row {
        justify-content: center;
        row-gap: 10px;
        flex-direction: column;
        width: 100%;
    }

    .speakers_col {
        width: 100%;
        display: flex;
        align-items: flex-start;
    }

    .expert_bg {
        display: none;
    }

    .speakers_col:nth-child(odd) {
        flex-direction: row-reverse;
        background-image: url(../img/all-images/expert-bg-m-1.png);
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: right;
    }

    .speakers_col:nth-child(even) {
        background-image: url(../img/all-images/expert-bg-m-2.png);
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: left;
    }

    .speakers_row .col-sm-6.col-6:nth-child(odd) {
        padding-right: 5px;
    }

    .speakers_row .col-sm-6.col-6:nth-child(even) {
        padding-left: 5px;
    }

    .speakers_col img {
        height: auto;
        width: 50%;
    }

    .speakers_col h3 {
        font-size: 12px;
        margin-bottom: 10px;
        margin-top: 0;
        width: fit-content;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .speakers_col .speakers_content {
        padding: 50px 5px 5px;
        width: 50%;
        position: unset;
        background-color: transparent;
    }

    .speakers_col p {
        font-size: 12px;
    }

    .schedule_tabs {
        padding: 15px 10px;
    }

    .schedule_tabs .nav-tabs .nav-link {
        padding: 5px 8px;
    }

    .schedule_tabs .nav-tabs .nav-link {
        font-size: 14px;
    }

    .schedule_tabs p {
        font-size: 14px;
    }

    .tab_content_title {
        flex-direction: column;
        gap: 10px;
    }

    .atend_list ul {
        gap: 15px;
    }

    .atend_list ul li {
        border-radius: 22px;
        padding: 15px 10px;
    }

    .program_title h2 {
        font-size: 18px;
    }

    .colums_title .pra_1 {
        font-size: 16px;
        margin-top: 10px;
    }

    .registeration_fee {
        flex-direction: column;
        gap: 10px;
    }

    .different_col {
        padding: 30px 15px 15px;
    }

    .notes_titile .quote_icon {
        left: 10px;
    }

}

.brilliance-balance-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

/* Force two columns */
.bb-columns {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.bb-column {
    width: 50%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bb-column h3 {
    text-transform: uppercase;
    margin-bottom: 6px;
}

.bb-column h4 {
    margin-bottom: 15px;
    color: #555;
}

.bb-column ul {
    margin: 0;
    padding-left: 18px;
}

.bb-column li {
    margin-bottom: 10px;
}

/* Callout */
.bb-callout {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 25px 30px;
    background: #fff3cd;
    border-left: 6px solid #ff9800;
    border-radius: 8px;
}

.bb-callout h4 {
    margin-top: 0;
}

.bb-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #222;
}

/* Mobile stack */
@media (max-width: 768px) {
    .bb-columns {
        flex-direction: column !important;
    }

    .bb-column {
        width: 100%;
    }
}

.about_wrap {
    padding-bottom: 15px;
}

/* speakers slider css start */
.speakers_slider {
    z-index: 999;
    position: relative;
}
.carousel{
  width:90%;
  margin:0px auto;
}
.slick-slide{
  margin:10px;
}
.slick-slide img{
  width:100%;
  border: 2px solid #fff;
}
.wrapper .slick-dots li button:before {
  font-size:20px;
  color:white;
}
.slick-prev, .slick-next {
    background: #c9231d !important;
    color: #ffffff !important;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    z-index: 10;
    font-size: 18px !important;
}

.slick-prev {
    left: -8px !important;
}
.slick-next {
    right: -8px !important;
}
.slick-prev:before, .slick-next:before {
    display: none;
}

.slick-prev:hover, .slick-next:hover {
  background: #333;
}
.slider_Col {
    border-radius: 10px;
    box-shadow: 0px 0px 5px #00000036;
    overflow: hidden;
}
.slider_Col h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    padding: 10px 0px;
} 
.slider_Col p {
    text-align: center;
}

/* speakers slider css end */
