/* ===========================================
   Responsive CSS - Main Website
   Breakpoint Structure:
   - Mobile: max-width: 576px
   - Large Mobile: min-width: 577px and max-width: 767px
   - Tablet: min-width: 768px and max-width: 991px
   - Desktop: min-width: 992px and max-width: 1199px
   - Large Desktop: min-width: 1200px and max-width: 1439px
   - Extra Large: min-width: 1440px
=========================================== */

/* ================================================================================================
   Navigation and Hero Section
=================================================================================================== */

@media (max-width: 576.5px) {

    .main-header {
        position: fixed;
        z-index: 999;
        width: 100%;
        background: #fff;
        top: 0;
        left: 0;
    }

    .main-header .header-upper {
        padding: 10px 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-header .header-upper .outer-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .main-header .header-upper .outer-container .clearfix {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .main-header .header-upper .logo-box {
        position: relative;
        left: -45px;
        top: 0;
        padding: 5px 0;
        text-align: left;
        float: none;
        width: auto;
        order: 0;
    }

    .main-header .header-upper .logo-box .logo img {
        max-width: 150px;
        height: auto;
    }

    .nav-outer .mobile-nav-toggler {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        display: block !important;
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 0;
        text-align: center;
        line-height: 40px;
        color: #333;
        cursor: pointer;
        z-index: 1000;
        margin: 0;
        order: 2;
        float: none;
    }

    .nav-outer .mobile-nav-toggler span {
        font-size: 24px;
        color: #333;
    }

    .main-header .header-upper .nav-outer .main-menu {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        transition: all 0.3s ease;
    }

    .mobile-menu-visible .mobile-menu {
        right: 0;
    }

    .mobile-menu .menu-box {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: #fff;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }

    .mobile-menu .nav-logo {
        position: absolute;
        top: 0px;
        left: 0px;
    }

    .mobile-menu .nav-logo img {
        max-width: 150px;
    }

    .mobile-menu .close-btn .icon {
        position: absolute;
        top: 12px;
        right: 9px;
        font-size: 25px;
        background: transparent;
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        color: black;
        cursor: pointer;
    }

    .mobile-menu .navigation li {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu .navigation li a {
        display: block;
        padding: 15px 0;
        color: #333;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
    }

    #hero-section {
        top: 70px;
        margin: 0;
        border-radius: 0;
    }

    .hero-1 {
        margin: 0;
        padding: 40px 20px 120px;
        border-radius: 0;
        background-position: center;
    }

    .img-sponsers {
        padding: 15px 10px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sponsers-logo {
        max-width: 100px;
        max-height: 60px;
    }

    .hero-section-details {
        top: -20px;
        padding: 0 15px;
    }

    .hero-1 .hero-content {
        top: 110px;
        margin-top: 50px;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-1 .hero-content h2 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 10px;
        color: white;
    }

    .hero-1 .hero-content h3 {
        font-size: 14px;
        line-height: 1.4;
        color: white;
        margin-bottom: 15px;
    }

    .hero-1 .hero-content .center-element {
        gap: 8px;
        align-items: center;
    }

    .cal11,
    .earth11,
    .loc11 {
        font-size: 16px;
        margin: 0 3px;
    }

    .dates11 {
        margin: 0 8px;
        font-size: 14px;
    }

    .hero-content .intro-wrapper {
        margin-top: 25px;
    }

    .hero-content .intro-wrapper .row {
        margin: 0;
    }

    .hero-content .intro-wrapper .col-lg-4,
    .hero-content .intro-wrapper .col-md-6,
    .hero-content .intro-wrapper .col-xs-12 {
        margin-bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-content .intro-wrapper p {
        font-size: 14px;
        line-height: 1.4;
        color: white;
        margin-bottom: 5px;
    }

    .hero-content .intro-wrapper .bold-text {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .countdown {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 280px;
        margin: 25px auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 12px;
        padding: 15px;
    }

    .countdown-item {
        margin: 0;
        text-align: center;
        padding: 8px;
    }

    .countdown-value {
        font-size: 24px;
        margin-bottom: 3px;
        font-weight: bold;
    }

    .countdown-label {
        font-size: 12px;
        color: #666;
        font-weight: 500;
    }

    .mobile-menu {
        right: -100%;
        left: auto;
    }

    .mobile-menu-visible .mobile-menu {
        right: 0;
        left: auto;
    }

    .mobile-menu .menu-box {
        right: 0;
        left: auto;
        transform: translateX(0);
    }

    .mobile-menu-visible .mobile-menu .menu-box {
        transform: translateX(0);
    }

    .nav-outer .mobile-nav-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (min-width: 577px) and (max-width: 767.5px) {

    .main-header {
        position: fixed;
        z-index: 999;
        width: 100%;
        background: #fff;
        top: 0;
        left: 0;
    }

    .main-header .header-upper {
        padding: 10px 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-header .header-upper .outer-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .main-header .header-upper .outer-container .clearfix {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .main-header .header-upper .logo-box {
        position: relative;
        left: -45px;
        top: 0;
        padding: 5px 0;
        text-align: left;
        float: none;
        width: auto;
        order: 0;
    }

    .main-header .header-upper .logo-box .logo img {
        max-width: 150px;
        height: auto;
    }

    .nav-outer .mobile-nav-toggler {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        display: block !important;
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 0;
        text-align: center;
        line-height: 40px;
        color: #333;
        cursor: pointer;
        z-index: 1000;
        margin: 0;
        order: 2;
        float: none;
    }

    .nav-outer .mobile-nav-toggler span {
        font-size: 24px;
        color: #333;
    }

    .main-header .header-upper .nav-outer .main-menu {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        transition: all 0.3s ease;
    }

    .mobile-menu-visible .mobile-menu {
        right: 0;
    }

    .mobile-menu .menu-box {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: #fff;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }

    .mobile-menu .nav-logo {
        position: absolute;
        top: 0px;
        left: 0px;
    }

    .mobile-menu .nav-logo img {
        max-width: 150px;
    }

    .mobile-menu .close-btn .icon {
        position: absolute;
        top: 12px;
        right: 9px;
        font-size: 25px;
        background: transparent;
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        color: black;
        cursor: pointer;
    }

    .mobile-menu .navigation li {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu .navigation li a {
        display: block;
        padding: 15px 0;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
    }

    #hero-section {
        top: 70px;
        margin: 0;
        border-radius: 0;
    }

    .hero-1 {
        margin: 0;
        padding: 40px 20px 120px;
        border-radius: 0;
        background-position: center;
    }

    .img-sponsers {
        padding: 15px 10px;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sponsers-logo {
        max-width: 125px;
        max-height: 70px;
    }

    .hero-section-details {
        top: -20px;
        padding: 0 15px;
    }

    .hero-1 .hero-content {
        top: 70px;
        margin-top: 50px;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-1 .hero-content h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 10px;
        color: white;
    }

    .hero-1 .hero-content h3 {
        font-size: 15px !important;
        line-height: 1.4;
        color: white;
        margin-bottom: 15px;
    }

    .hero-1 .hero-content .center-element {
        gap: 8px;
        align-items: center;
    }

    .cal11,
    .earth11,
    .loc11 {
        font-size: 16px !important;
        margin: 0 3px;
    }

    .dates11 {
        margin: 0 8px;
        font-size: 14px;
    }

    .hero-content .intro-wrapper {
        margin-top: 25px;
    }

    .hero-content .intro-wrapper .row {
        margin: 0;
    }

    .hero-content .intro-wrapper .col-lg-4,
    .hero-content .intro-wrapper .col-md-6,
    .hero-content .intro-wrapper .col-xs-12 {
        margin-bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-content .intro-wrapper p {
        font-size: 13px !important;
        line-height: 1.4;
        color: white;
        margin-bottom: 5px;
    }

    .hero-content .intro-wrapper .bold-text {
        font-weight: bold;
        font-size: 14px !important;
        margin-bottom: 8px;
    }

    .countdown {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 280px;
        margin: 25px auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 12px;
        padding: 15px;
    }

    .countdown-item {
        margin: 0;
        text-align: center;
        padding: 8px;
    }

    .countdown-value {
        font-size: 24px !important;
        margin-bottom: 3px;
        font-weight: bold;
    }

    .countdown-label {
        font-size: 16px !important;
        color: #666;
        font-weight: 500;
    }

    .mobile-menu {
        right: -100%;
        left: auto;
    }

    .mobile-menu-visible .mobile-menu {
        right: 0;
        left: auto;
    }

    .mobile-menu .menu-box {
        right: 0;
        left: auto;
        transform: translateX(0);
    }

    .mobile-menu-visible .mobile-menu .menu-box {
        transform: translateX(0);
    }

    .nav-outer .mobile-nav-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {

    .main-header {
        position: fixed;
        z-index: 999;
        width: 100%;
        background: #fff;
        top: 0;
        left: 0;
    }

    .main-header .header-upper {
        padding: 10px 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-header .header-upper .outer-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .main-header .header-upper .outer-container .clearfix {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .main-header .header-upper .logo-box {
        position: relative;
        left: -45px;
        top: 0;
        padding: 5px 0;
        text-align: left;
        float: none;
        width: auto;
        order: 0;
    }

    .main-header .header-upper .logo-box .logo img {
        max-width: 150px;
        height: auto;
    }

    .nav-outer .mobile-nav-toggler {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        display: block !important;
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 0;
        text-align: center;
        line-height: 40px;
        color: #333;
        cursor: pointer;
        z-index: 1000;
        margin: 0;
        order: 2;
        float: none;
    }

    .nav-outer .mobile-nav-toggler span {
        font-size: 24px;
        color: #333;
    }

    .main-header .header-upper .nav-outer .main-menu {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        transition: all 0.3s ease;
    }

    .mobile-menu-visible .mobile-menu {
        right: 0;
    }

    .mobile-menu .menu-box {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: #fff;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }

    .mobile-menu .nav-logo {
        position: absolute;
        top: 0px;
        left: 0px;
    }

    .mobile-menu .nav-logo img {
        max-width: 150px;
    }

    .mobile-menu .close-btn .icon {
        position: absolute;
        top: 12px;
        right: 9px;
        font-size: 25px;
        background: transparent;
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        color: black;
        cursor: pointer;
    }

    .mobile-menu .navigation li {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu .navigation li a {
        display: block;
        padding: 15px 0;
        color: #333;
        font-size: 16px !important;
        font-weight: 500;
        text-transform: uppercase;
    }

    #hero-section {
        top: 70px;
        margin: 0;
        border-radius: 0;
    }

    .hero-1 {
        margin: 0;
        padding: 40px 20px 120px;
        border-radius: 0;
        background-position: center;
    }

    .img-sponsers {
        padding: 15px 10px;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sponsers-logo {
        max-width: 125px;
        max-height: 70px;
    }

    .hero-section-details {
        top: -20px;
        padding: 0 15px;
    }

    .hero-1 .hero-content {
        top: 70px;
        margin-top: 50px;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-1 .hero-content h2 {
        font-size: 25px !important;
        line-height: 1.3;
        margin-bottom: 10px;
        color: white;
    }

    .hero-1 .hero-content h3 {
        font-size: 20px !important;
        line-height: 1.4;
        color: white;
        margin-bottom: 15px;
    }

    .hero-1 .hero-content .center-element {
        gap: 8px;
        align-items: center;
    }

    .below-detail {
        width: 100% !important;
    }

    .cal11,
    .earth11,
    .loc11 {
        font-size: 16px !important;
        margin: 0 3px;
    }

    .dates11 {
        margin: 0 8px;
        font-size: 14px !important;
    }

    .hero-content .intro-wrapper {
        margin-top: 25px;
    }

    .hero-content .intro-wrapper .row {
        margin: 0;
    }

    .hero-content .intro-wrapper .col-lg-4,
    .hero-content .intro-wrapper .col-md-6,
    .hero-content .intro-wrapper .col-xs-12 {
        margin-bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-content .intro-wrapper p {
        font-size: 13px !important;
        line-height: 1.4;
        color: white;
        margin-bottom: 5px;
    }

    .hero-content .intro-wrapper .bold-text {
        font-weight: bold;
        font-size: 14px !important;
        margin-bottom: 8px;
    }

    .countdown {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 350px;
        margin: 25px auto 0;
        gap: 15px;
        padding: 25px;
    }

    .countdown-item {
        margin: 0;
        text-align: center;
        padding: 8px;
    }

    .countdown-value {
        font-size: 24px !important;
        margin-bottom: 3px;
        font-weight: bold;
    }

    .countdown-label {
        font-size: 16px !important;
        color: #666;
        font-weight: 500;
    }

    .mobile-menu {
        right: -100%;
        left: auto;
    }

    .mobile-menu-visible .mobile-menu {
        right: 0;
        left: auto;
    }

    .mobile-menu .menu-box {
        right: 0;
        left: auto;
        transform: translateX(0);
    }

    .mobile-menu-visible .mobile-menu .menu-box {
        transform: translateX(0);
    }

    .nav-outer .mobile-nav-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {

    .auto-container {
        position: static;
        max-width: 850px;
        padding: 0px 15px;
        margin: 0 auto;
    }

    .main-header {
        position: fixed;
        z-index: 999;
        width: 100%;
        background: #fff;
        top: 0;
        left: 0;
    }

    .main-header .header-upper {
        padding: 10px 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-header .header-upper .outer-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .main-header .header-upper .outer-container .clearfix {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .main-header .header-upper .logo-box {
        position: relative;
        left: -45px;
        top: 0;
        padding: 5px 0;
        text-align: left;
        float: none;
        width: auto;
        order: 0;
    }

    .main-header .header-upper .logo-box .logo img {
        max-width: 150px;
        height: auto;
    }

    .nav-outer .mobile-nav-toggler {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        display: block !important;
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 0;
        text-align: center;
        line-height: 40px;
        color: #333;
        cursor: pointer;
        z-index: 1000;
        margin: 0;
        order: 2;
        float: none;
    }

    .nav-outer .mobile-nav-toggler span {
        font-size: 24px !important;
        color: #333;
    }

    .main-header .header-upper .nav-outer .main-menu {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        transition: all 0.3s ease;
    }

    .mobile-menu-visible .mobile-menu {
        right: 0;
    }

    .mobile-menu .menu-box {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: #fff;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }

    .mobile-menu .nav-logo {
        position: absolute;
        top: 0px;
        left: 0px;
    }

    .mobile-menu .nav-logo img {
        max-width: 150px;
    }

    .mobile-menu .close-btn .icon {
        position: absolute;
        top: 12px;
        right: 9px;
        font-size: 25px !important;
        background: transparent;
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        color: black;
        cursor: pointer;
    }

    .mobile-menu .navigation li {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu .navigation li a {
        display: block;
        padding: 15px 0;
        color: #333;
        font-size: 16px !important;
        font-weight: 500;
        text-transform: uppercase;
    }

    #hero-section {
        top: 70px;
        margin: 0 65px;
        border-radius: 20px;
    }

    .hero-1 {
        margin: 0;
        padding: 40px 20px 120px;
        border-radius: 0;
        background-position: center;
    }

    .img-sponsers {
        padding: 15px 10px;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sponsers-logo {
        max-width: 125px;
        max-height: 70px;
    }

    .hero-section-details {
        top: -20px;
        padding: 0 15px;
    }

    .hero-1 .hero-content {
        top: 70px;
        margin-top: 50px;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-1 .hero-content h2 {
        font-size: 30px !important;
        line-height: 1.3;
        margin-bottom: 10px;
        color: white;
    }

    .hero-1 .hero-content h3 {
        font-size: 25px !important;
        line-height: 1.4;
        color: white;
        margin-bottom: 15px;
    }

    .hero-1 .hero-content .center-element {
        gap: 8px;
        align-items: center;
    }

    .cal11,
    .earth11,
    .loc11 {
        font-size: 16px !important;
        margin: 0 3px;
    }

    .dates11 {
        margin: 0 8px;
        font-size: 14px !important;
    }

    .hero-content .intro-wrapper {
        margin-top: 25px;
    }

    .hero-content .intro-wrapper .row {
        margin: 0;
    }

    .hero-content .intro-wrapper .col-lg-4,
    .hero-content .intro-wrapper .col-md-6,
    .hero-content .intro-wrapper .col-xs-12 {
        margin-bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-content .intro-wrapper p {
        font-size: 13px !important;
        line-height: 1.4;
        color: white;
        margin-bottom: 5px;
    }

    .hero-content .intro-wrapper .bold-text {
        font-weight: bold;
        font-size: 14px !important;
        margin-bottom: 8px;
    }

    .countdown {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 350px;
        margin: 25px auto 0;
        gap: 15px;
        padding: 25px;
    }

    .countdown-item {
        margin: 0;
        text-align: center;
        padding: 8px;
    }

    .countdown-value {
        font-size: 24px !important;
        margin-bottom: 3px;
        font-weight: bold;
    }

    .countdown-label {
        font-size: 14px !important;
        color: #666;
        font-weight: 500;
    }

    .mobile-menu {
        right: -100%;
        left: auto;
    }

    .mobile-menu-visible .mobile-menu {
        right: 0;
        left: auto;
    }

    .mobile-menu .menu-box {
        right: 0;
        left: auto;
        transform: translateX(0);
    }

    .mobile-menu-visible .mobile-menu .menu-box {
        transform: translateX(0);
    }

    .nav-outer .mobile-nav-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (min-width: 1200px) and (max-width: 1439.5px) {

    .auto-container {
        position: static;
        max-width: 1050px;
        padding: 0px 15px;
        margin: 0 auto;
    }

    .main-header {
        position: fixed;
        z-index: 999;
        width: 100%;
        background: #fff;
        top: 0;
        left: 0;
    }

    .main-header .header-upper {
        padding: 0px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-header .header-upper .outer-container {
        max-width: 100%;
        width: 100%;
        position: relative;
        left: 0;
    }

    .main-header .header-upper .outer-container .clearfix {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-left: 15px;
    }

    .main-menu .navigation>li {
        padding: 15px 0;
    }

    .main-menu .navigation>li>a {
        font-size: 14px;
        padding: 10px 0;
        white-space: nowrap;
    }

    .main-header .header-upper .logo-box {
        position: static;
        padding: 0;
        text-align: left;
        float: none;
        width: auto;
        order: 0;
        display: flex;
        align-items: center;
    }

    .main-header .header-upper .logo-box .logo img {
        max-width: 210px;
        height: auto;
        position: absolute;
        top: 25px;
    }

    .main-header .header-upper .nav-outer {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
    }

    .main-header .header-upper .nav-outer .main-menu {
        display: flex;
        float: right;
        gap: 32px;
    }

    .main-header .header-upper .nav-outer .main-menu .navigation {
        display: flex;
        align-items: center;
    }

    .nav-outer .mobile-nav-toggler {
        display: none !important;
    }

    .img-sponsers {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
        gap: 45px;
        padding: 24px 0 24px 0;
        overflow-x: auto;
    }

    .sponsers-logo {
        max-width: 225px;
        max-height: 135px;
        flex: 0 0 auto;
    }

    .hero-section-details {
        top: -20px;
        padding: 0 15px;
    }

    .hero-1 .hero-content {
        top: 75px;
        margin-top: 70px;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-1 .hero-content h2 {
        font-size: 30px !important;
        line-height: 1.3;
        margin-bottom: 10px;
        color: white;
    }

    .hero-1 .hero-content .superscript-nd {
        font-size: 30px !important;
    }

    .hero-1 .hero-content h3 {
        font-size: 25px !important;
        line-height: 1.4;
        color: white;
        margin-bottom: 15px;
    }

    .hero-1 .hero-content .center-element {
        gap: 8px;
        align-items: center;
    }

    .cal11,
    .earth11,
    .loc11 {
        font-size: 16px !important;
        margin: 0 3px;
    }

    .dates11 {
        margin: 0 8px;
        font-size: 14px;
    }

    .hero-content .intro-wrapper {
        margin-top: 25px;
    }

    .hero-content .intro-wrapper .row {
        margin: 0;
    }

    .hero-content .intro-wrapper .col-lg-4,
    .hero-content .intro-wrapper .col-md-6,
    .hero-content .intro-wrapper .col-xs-12 {
        margin-bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-content .intro-wrapper p {
        font-size: 13px !important;
        line-height: 1.4;
        color: white;
        margin-bottom: 5px;
    }

    .hero-content .intro-wrapper .bold-text {
        font-weight: bold;
        font-size: 14px !important;
        margin-bottom: 8px;
    }

    .countdown {
        gap: 16px !important;
        padding: 18px;
        max-width: 700px;
    }

    .countdown-item {
        margin: 0;
        text-align: center;
    }

    .countdown-value {
        font-size: 32px !important;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .countdown-label {
        font-size: 16px !important;
        color: #666;
        font-weight: 500;
    }
}

@media (min-width: 1321.5px) and (max-width: 1370.5px) {

    .main-header .header-upper {
        padding: 0 0 0 25px !important;
    }

    .main-header .header-upper .outer-container .clearfix {
        margin-left: 23px;
    }
}

@media (min-width: 1371px) and (max-width: 1400.5px) {

    .main-header .header-upper {
        padding: 0 0 0 35px !important;
    }

    .main-header .header-upper .outer-container .clearfix {
        margin-left: 29px;
    }
}

@media (min-width: 1401px) and (max-width: 1439.5px) {

    .main-header .header-upper {
        padding: 0 0 0 25px !important;
    }

    .main-header .header-upper .outer-container .clearfix {
        margin-left: 35px;
    }
}

@media (min-width: 1440px) and (max-width: 1919.5px) {

    .main-header {
        position: fixed;
        z-index: 999;
        width: 100%;
        background: #fff;
        top: 0;
        left: 0;
    }

    .main-header .header-upper {
        padding: 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-header .header-upper .outer-container {
        max-width: 100%;
        width: 100%;
        position: relative;
        left: 0;
    }

    .main-header .header-upper .outer-container .clearfix {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-left: 30px;
        gap: 20px;
    }

    .main-menu .navigation>li {
        padding: 15px 0;
    }

    .main-menu .navigation>li>a {
        padding: 10px 0;
        white-space: nowrap;
    }

    .main-header .header-upper .logo-box {
        position: static;
        padding: 0;
        text-align: left;
        float: none;
        width: auto;
        order: 0;
        display: flex;
        align-items: center;
    }

    .main-header .header-upper .logo-box .logo img {
        max-width: 290px;
        height: auto;
        position: absolute;
        top: 25px;
    }

    .main-header .header-upper .nav-outer {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
    }

    .main-header .header-upper .nav-outer .main-menu {
        display: flex;
        float: right;
    }

    .main-header .header-upper .nav-outer .main-menu .navigation {
        display: flex;
        align-items: center;
    }

    .nav-outer .mobile-nav-toggler {
        display: none !important;
    }

    .hero-section .img-sponsers {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
        gap: 60px;
        padding: 24px 0 24px 0;
        overflow-x: auto;
    }

    .sponsers-logo {
        max-width: 250px;
        max-height: 125px;
        flex: 0 0 auto;
    }

    .hero-1 .hero-col-full-width {
        margin: 0 0 100px 0;
    }

    .hero-section-details {
        top: -20px;
        padding: 0 15px;
    }

    .mar {
        margin: 20px 0 5px 0 !important;
    }

    .hero-1 .hero-content {
        top: 125px;
        margin-top: 60px;
        margin-bottom: 00px;
        text-align: center;
    }

    .hero-1 .hero-content .superscript-nd {
        font-size: 42px !important;
    }

    .hero-1 .hero-content .center-element {
        font-size: 45px;
        gap: 8px;
        align-items: center;
    }

    .cal11,
    .earth11,
    .loc11,
    .dates_d {
        font-size: 25px !important;
        margin: 0 3px;
    }

    .hero-1 .hero-content .below-detail .center-element1,
    .center-element1 {
        font-size: 20px;
    }

    .hero-1 .hero-content .below-detail .center-element2 {
        font-size: 17px;
    }

    .dates11 {
        margin: 0 8px;
        font-size: 25px;
    }

    .hero-content .intro-wrapper {
        margin-top: 25px;
    }

    .hero-content .intro-wrapper .row {
        margin: 0;
    }

    .hero-content .intro-wrapper .col-lg-4,
    .hero-content .intro-wrapper .col-md-6,
    .hero-content .intro-wrapper .col-xs-12 {
        margin-bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-content .intro-wrapper p {
        font-size: 13px;
        line-height: 1.4;
        color: white;
        margin-bottom: 5px;
    }

    .hero-content .intro-wrapper .bold-text {
        font-weight: bold;
        font-size: 14px !important;
        margin-bottom: 8px;
    }

    .countdown {
        gap: 15px;
        padding: 35px;
        max-width: 700px;
    }

    .countdown-item {
        margin: 0;
        text-align: center;
    }

    .countdown-value {
        font-size: 35px !important;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .countdown-label {
        font-size: 20px !important;
        color: #666;
        font-weight: 500;
    }
}

@media (min-width: 1500px) and (max-width: 1600px) {

    .main-header .header-upper {
        padding: 0 0 0 0px !important;
    }

    .main-header .header-upper .outer-container .clearfix {
        margin-left: 30px;
        gap: 25px;
    }
}

@media (min-width: 1601px) and (max-width: 1700px) {

    .main-header .header-upper {
        padding: 0 0 0 0px !important;
    }

    .main-header .header-upper .outer-container .clearfix {
        margin-left: 45px;
        gap: 29px;
    }
}

@media (min-width: 1699.5px) and (max-width: 1800px) {

    .auto-container {
        position: static;
        max-width: 1350px;
        padding: 0px 15px;
        margin: 0 auto;
    }

    .main-menu .navigation>li>a {
        font-size: 20.5px !important;
    }

    .main-header .header-upper {
        padding: 0 0 0 0px !important;
    }

    .main-header .header-upper .outer-container .clearfix {
        margin-left: 19px;
        gap: 30px;
    }
}

@media (min-width: 1801px) and (max-width: 1919.5px) {

    .auto-container {
        position: static;
        max-width: 1400px;
        padding: 0px 15px;
        margin: 0 auto;
    }

    .main-menu .navigation>li>a {
        font-size: 21px !important;
    }

    .main-header .header-upper {
        padding: 0 0 0 0px !important;
    }

    .main-header .header-upper .outer-container .clearfix {
        margin-left: 18px;
        gap: 35px;
    }
}

@media (min-width: 1920px) {

    .auto-container {
        position: static;
        max-width: 1400px;
        padding: 0px 15px;
        margin: 0 auto;
    }

    .main-header {
        position: fixed;
        z-index: 999;
        width: 100%;
        background: #fff;
        top: 0;
        left: 0;
    }

    .main-header .header-upper {
        padding: 0 0 0 45px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-header .header-upper .outer-container {
        max-width: 100%;
        width: 100%;
        position: relative;
        left: 0;
    }

    .main-header .header-upper .outer-container .clearfix {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-left: 0px;
        gap: 40px;
    }

    .main-menu .navigation>li {
        padding: 15px 0;
    }

    .main-menu .navigation>li>a {
        font-size: 22px;
        padding: 10px 0;
        white-space: nowrap;
    }

    .main-header .header-upper .logo-box {
        position: static;
        padding: 0;
        text-align: left;
        float: none;
        width: auto;
        order: 0;
        display: flex;
        align-items: center;
    }

    .main-header .header-upper .logo-box .logo img {
        max-width: 290px;
        height: auto;
        position: absolute;
        top: 25px;
    }

    .main-header .header-upper .nav-outer {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
    }

    .main-header .header-upper .nav-outer .main-menu {
        display: flex;
        float: right;
    }

    .main-header .header-upper .nav-outer .main-menu .navigation {
        display: flex;
        align-items: center;
    }

    .nav-outer .mobile-nav-toggler {
        display: none !important;
    }

    .img-sponsers {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
        gap: 110px;
        padding: 24px 0 24px 0;
        overflow-x: auto;
    }

    .sponsers-logo {
        max-width: 275px;
        max-height: 135px;
        flex: 0 0 auto;
    }

    .hero-1 .hero-col-full-width {
        margin: 0 0 100px 0;
    }

    .hero-section-details {
        top: -20px;
        padding: 0 15px;
    }

    .mar {
        margin: 20px 0 5px 0 !important;
    }

    .hero-1 .hero-content {
        top: 125px;
        margin-top: 60px;
        margin-bottom: 00px;
        text-align: center;
    }

    .hero-1 .hero-content .superscript-nd {
        font-size: 45px !important;
    }

    .hero-1 .hero-content .center-element {
        font-size: 45px;
        gap: 8px;
        align-items: center;
    }

    .cal11,
    .earth11,
    .loc11,
    .dates_d {
        font-size: 25px !important;
        margin: 0 3px;
    }

    .hero-1 .hero-content .below-detail .center-element1,
    .center-element1 {
        font-size: 20px;
    }

    .hero-1 .hero-content .below-detail .center-element2 {
        font-size: 18px;
    }

    .dates11 {
        margin: 0 8px;
        font-size: 25px;
    }

    .hero-content .intro-wrapper {
        margin-top: 25px;
    }

    .hero-content .intro-wrapper .row {
        margin: 0;
    }

    .hero-content .intro-wrapper .col-lg-4,
    .hero-content .intro-wrapper .col-md-6,
    .hero-content .intro-wrapper .col-xs-12 {
        margin-bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-content .intro-wrapper p {
        font-size: 13px;
        line-height: 1.4;
        color: white;
        margin-bottom: 5px;
    }

    .hero-content .intro-wrapper .bold-text {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .countdown {
        gap: 15px;
        padding: 35px;
        max-width: 700px;
    }

    .countdown-item {
        margin: 0;
        text-align: center;
    }

    .countdown-value {
        font-size: 35px !important;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .countdown-label {
        font-size: 24px !important;
        color: #666;
        font-weight: 500;
    }
}

/* ================================================================================================
   About Us Section
=================================================================================================== */

@media (max-width: 576.5px) {
    .about-section {
        padding: 30px 8px;
    }

    .about-section .content-column {
        margin-bottom: 30px;
    }

    .about-section .content-column .inner-column {
        padding-right: 0;
    }

    .about-section .image-column {
        margin-bottom: 25px;
    }

    .about-section .text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
        width: 100%;
    }

    .about-section .sec-title .about-heading,
    .about-section .sec-title .about-subheading {
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    .slider_container {
        height: 15rem;
        margin-bottom: 30px;
    }

    .about-section .parallax-scene {
        display: none;
    }
}

@media (min-width: 577px) and (max-width: 767.5px) {

    .about-section {
        padding: 30px 16px;
    }

    .about-section .content-column {
        margin-bottom: 0;
    }

    .about-section .content-column .inner-column {
        padding-right: 0;
    }

    .about-section .image-column {
        width: 75%;
        left: 13%;
        margin-bottom: 25px;
    }

    .about-section .text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        width: 100%;
    }

    .about-section .sec-title .about-heading,
    .about-section .sec-title .about-subheading {
        font-size: 24px !important;
        margin-bottom: 15px;
    }

    .slider_container {
        height: 18rem;
        margin-bottom: 35px;
    }

    .about-section .parallax-scene {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {

    .about-section {
        padding: 50px 16px 0;
    }

    .about-section .content-column {
        margin-bottom: 10px;
    }

    .about-section .image-column {
        width: 75%;
        left: 13%;
        margin-bottom: 70px;
    }

    .about-section .text {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 30px;
        width: 100%;
    }

    .about-section .sec-title .about-heading,
    .about-section .sec-title .about-subheading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .slider_container {
        height: 20rem;
    }

    .about-section .parallax-scene {
        opacity: 0.5;
    }

    .icon-circle-3,
    .icon-circle-3-1 {
        height: 700px !important;
        width: 700px !important;
        background-image: url(../images/icons/icon-circle-3.png);
    }

    .icon-circle-4,
    .icon-circle-4-1 {
        height: 850px !important;
        width: 850px !important;
        background-image: url(../images/icons/icon-circle-4.png);
    }

    .about-section .icon-circle-3 {
        top: -20px !important;
        left: -385px !important;
        opacity: .10;
    }

    .about-section .icon-circle-4 {
        top: 200px !important;
        left: -570px !important;
        opacity: .50;
    }


    .about-section .icon-circle-3-1 {
        top: 1100px !important;
        left: 400px !important;
        opacity: .10;
    }

    .about-section .icon-circle-4-1 {
        top: 700px !important;
        left: 1000px !important;
        opacity: .50;
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {

    .about-section {
        padding: 50px 0 150px 0;
    }

    .about-section .content-column {
        margin-bottom: 0px;
    }

    .about-subheading1 {
        margin-top: 40px !important;
    }

    .about-section .text {
        font-size: 18px !important;
        line-height: 1.6;
        width: 100%;
    }

    .about-section .sec-title .about-heading,
    .about-section .sec-title .about-subheading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .slider_container {
        height: 22rem;
    }

    .icon-circle-3,
    .icon-circle-3-1 {
        height: 700px !important;
        width: 700px !important;
        background-image: url(../images/icons/icon-circle-3.png);
    }

    .icon-circle-4,
    .icon-circle-4-1 {
        height: 250px !important;
        width: 250px !important;
        background-image: url(../images/icons/icon-circle-4.png);
    }

    .about-section .icon-circle-3 {
        top: 0px !important;
        left: -385px !important;
        opacity: .10;
    }

    .about-section .icon-circle-4 {
        top: 550px !important;
        left: 55px !important;
        opacity: .50;
    }


    .about-section .icon-circle-3-1 {
        top: 645px !important;
        left: 600px !important;
        opacity: .10;
    }

    .about-section .icon-circle-4-1 {
        top: 450px !important;
        left: 1000px !important;
        opacity: .50;
    }
}

@media (min-width: 1200px) and (max-width: 1439.5px) {

    .about-section {
        padding: 170px 60px 0;
    }

    .about-section .content-column {
        margin-bottom: 0px;
    }

    .about-subheading1 {
        margin-top: 50px !important;
    }

    .about-section .text {
        font-size: 18px;
        line-height: 1.8;
        width: 100%;
    }

    .about-section .sec-title .about-heading {
        font-size: 30px !important;
        margin-bottom: 15px;
    }

    .about-section .sec-title .about-subheading {
        font-size: 26px !important;
    }

    .slider_container {
        height: 25rem;
    }
}

@media (min-width: 1440px) and (max-width: 1919.5px) {

    .about-section {
        padding: 200px 25px 0;
    }

    .about-section .content-column {
        margin-bottom: 10px;
    }

    .about-subheading1 {
        margin-top: 70px;
    }

    .about-section .text {
        font-size: 18px;
        line-height: 1.8;
        width: 100%;
    }

    .about-section .sec-title .about-heading {
        font-size: 26px !important;
        margin-bottom: 15px;
    }

    .about-section .sec-title .about-subheading {
        font-size: 26px !important;
    }

    .slider_container {
        height: 28rem;
    }

    .about-section .content-column .inner-column {
        padding-right: 30px;
    }
}

@media (min-width: 1920px) {

    .about-section {
        padding: 200px 0 0 0;
    }

    .about-section .content-column {
        margin-bottom: 30px;
    }

    .about-subheading1 {
        margin-top: 70px;
    }

    .about-section .text {
        font-size: 18px;
        line-height: 1.8;
        width: 100%;
    }

    .about-section .sec-title .about-heading {
        font-size: 40px !important;
        margin-bottom: 15px;
    }

    .about-section .sec-title .about-subheading {
        font-size: 26px !important;
        margin-bottom: 15px;
    }

    .slider_container {
        height: 32rem;
    }

    .about-section .content-column .inner-column {
        padding-right: 40px;
    }

    .icon-circle-3,
    .icon-circle-3-1 {
        height: 730px !important;
        width: 730px !important;
        background-image: url(../images/icons/icon-circle-3.png);
    }

    .icon-circle-4,
    .icon-circle-4-1 {
        height: 850px !important;
        width: 850px !important;
        background-image: url(../images/icons/icon-circle-4.png);
    }

    .about-section .icon-circle-3 {
        top: 195px !important;
        left: -585px !important;
        opacity: .10;
    }

    .about-section .icon-circle-4 {
        top: 720px !important;
        left: -215px !important;
        opacity: .50;
    }


    .about-section .icon-circle-3-1 {
        top: 850px !important;
        left: 1050px !important;
        opacity: .10;
    }

    .about-section .icon-circle-4-1 {
        top: 700px !important;
        left: 1000px !important;
        opacity: .50;
    }
}

/* ================================================================================================
    CFP Section
=================================================================================================== */

@media (max-width: 576.5px) {

    .cfp-section {
        padding: 20px 0 80px;
    }

    .cfp-section .cfp-heading {
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    .cfp-section .text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .timeline {
        margin-top: 20px;
    }

    .timeline .section {
        padding: 0 15px;
        margin: 30px 0;
    }

    .timeline .line {
        position: absolute;
        left: 8px;
        top: -50px;
        bottom: -15px !important;
    }

    .timeline .section .bead {
        width: 8px;
        height: 8px;
        top: 3px;
        left: 9px;
    }

    .timeline .section .section-date {
        font-size: 18px;
        width: 100%;
        margin-left: 15px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .section .content {
        padding: 20px 15px 20px 15px;
        margin-left: 10px;
        border-radius: 12px;
    }

    .timeline .section .content ul li {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .cfp-image-container {
        text-align: center;
    }

    .cfp-book-image {
        height: 120px;
        margin: 0 auto;
    }
}

@media (min-width: 577px) and (max-width: 767.5px) {

    .cfp-section {
        padding: 30px 16px;
    }

    .cfp-section .cfp-heading {
        font-size: 24px !important;
        margin-bottom: 15px;
    }

    .cfp-section .text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .timeline {
        margin-top: 20px;
    }

    .timeline .section {
        padding: 0 15px;
        margin: 30px 0;
    }

    .timeline .line {
        position: absolute;
        left: 8px;
        top: -50px;
        bottom: 40px !important;
    }

    .timeline .section .bead {
        width: 10px;
        height: 10px;
        top: 7px;
        left: 9px;
    }

    .timeline .section .section-date {
        font-size: 19px;
        width: 100%;
        margin-left: 15px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .section .content {
        padding: 20px 15px 20px 15px;
        margin-left: 10px;
        border-radius: 12px;
    }

    .timeline .section .content ul li {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .cfp-image-container {
        text-align: center;
    }

    .cfp-book-image {
        height: 120px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {

    .cfp-section {
        padding: 50px 16px;
    }

    .cfp-section .cfp-heading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .cfp-section .text {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .timeline {
        margin-top: 20px;
    }

    .timeline .line {
        bottom: -10px !important;
    }

    .timeline .section .bead {
        width: 13px;
        height: 13px;
        top: 7px;
        left: 49.9999985%;;
    }

    .timeline .section .section-date {
        font-size: 22px;
        width: 100%;
        margin-left: 15px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .section .content {
        padding: 20px 15px 20px 5px;
        margin-left: 10px;
        border-radius: 12px;
    }

    .timeline .section .content ul li {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .cfp-image-container {
        text-align: center;
    }

    .cfp-book-image {
        height: 120px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {

    .cfp-section {
        padding: 50px 0 150px 0;
    }

    .cfp-section .cfp-heading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .cfp-section .text {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 5px;
        padding: 0 10px;
    }

    .timeline {
        max-width: 1300px !important;
    }

    .timeline .line {
        bottom: -10px !important;
    }

    .timeline .section .section-date {
        font-size: 20px !important;
        width: 100%;
        margin-left: 15px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .section .content {
        padding: 20px 15px 20px 5px;
        margin-left: 10px;
        border-radius: 12px;
    }


    .timeline .section .content ul li {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 8px;
    }
}

@media (min-width: 1200px) and (max-width: 1439.5px) {

    .cfp-section {
        padding: 50px 0 150px 0;
    }

    .cfp-section .cfp-heading {
        font-size: 30px !important;
        margin-bottom: 15px;
    }

    .cfp-section .text {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .timeline {
        max-width: 1300px !important;
    }

    .timeline .section .section-date {
        font-size: 26px !important;
        width: 100%;
        margin-left: 15px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .timeline .section .content ul li {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 8px;
    }
}

@media (min-width: 1440px) and (max-width: 1919.5px) {

    .cfp-section {
        padding: 50px 0 150px 0;
    }

    .cfp-section .cfp-heading {
        font-size: 35px !important;
        margin-bottom: 15px;
    }

    .cfp-section .text {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .timeline {
        max-width: 1300px !important;
    }

    .timeline .section .section-date {
        font-size: 26px !important;
        width: 100%;
        margin-left: 15px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .timeline .section .content ul li {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 8px;
    }
}

@media (min-width: 1920px) {

    .cfp-section {
        padding: 50px 0 150px 0;
    }

    .cfp-section .cfp-heading {
        font-size: 40px !important;
        margin-bottom: 15px;
    }

    .cfp-section .text {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .timeline {
        max-width: 1300px !important;
    }

    .timeline .section .section-date {
        font-size: 26px;
        width: 100%;
        margin-left: 15px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .timeline .section .content ul li {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
}

/* ================================================================================================
    Paper Section
=================================================================================================== */

@media (max-width: 576.5px) {

    .paper-section {
        padding: 30px 8px 60px;
    }

    .paper-section .paper-heading {
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    .paper-section .text,
    .paper-section p {
        font-size: 14px;
        line-height: 1.6;
        width: 100%;
    }

    .paper-section .list-group-item {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .paper-section ol {
        padding: 0;
    }

    .paper-section .sub-title {
        font-size: 18px !important;
        margin-top: 15px;
    }

    .paper-section .package-title {
        display: block;
        margin-bottom: 5px;
    }

    .paper-section a {
        font-size: 14px;
        word-break: break-all;
    }

    .paper-section .table {
        font-size: 14px;
    }

    .paper-section .table th,
    .paper-section .table td {
        padding: 8px;
    }
}

@media (min-width: 577px) and (max-width: 767.5px) {
    
    .paper-section {
        padding: 30px 16px;
    }

    .paper-section .paper-heading {
        font-size: 24px !important;
        margin-bottom: 15px;
    }

    .paper-section .text,
    .paper-section p {
        font-size: 16px;
        line-height: 1.6;
        width: 100%;
    }

    .paper-section ol {
        padding-left: 0px;
    }

    .paper-section .list-group-item {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .paper-section .sub-title {
        font-size: 20px !important;
    }

    .paper-section a {
        font-size: 16px;
        word-break: break-all;
    }

    .paper-section .table {
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {

    .paper-section {
        padding: 50px 16px;
    }

    .paper-section .paper-heading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .paper-section .text,
    .paper-section p {
        font-size: 18px !important;
        line-height: 1.6;
        width: 100%;
    }

    .paper-section ol {
        padding-left: 0px;
    }

    .paper-section .list-group-item {
        font-size: 18px !important;
        line-height: 1.6;
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {
    
    .paper-section {
        padding: 50px 0 50px 0;
    }

    .paper-section .paper-heading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .paper-section .sub-title {
        font-size: 22px !important;
        margin-top: 15px;
    }

    .paper-section .text,
    .paper-section p {
        font-size: 18px !important;
        line-height: 1.6;
        width: 100%;
    }

    .paper-section .list-group-item {
        font-size: 18px !important;
        line-height: 1.6;
    }
}

@media (min-width: 1200px) and (max-width: 1439.5px) {

    .paper-section {
        padding: 50px 0px 50px 0;
    }

    .paper-section .paper-heading {
        font-size: 30px !important;
        margin-bottom: 15px;
    }

    .paper-section .sub-title {
        font-size: 26px !important;
        margin-top: 15px;
    }

    .paper-section .text,
    .paper-section p {
        font-size: 18px !important;
        line-height: 1.6;
        width: 100%;
    }

    .paper-section .list-group-item {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .paper-section a {
        font-size: 18px !important;
        word-break: break-all;
    }

    .paper-section .table {
        font-size: 18px !important;
    }

    .paper-section .table th,
    .paper-section .table td {
        padding: 10px;
    }
}

@media (min-width: 1440px) and (max-width: 1919.5px) {

    .paper-section {
        padding: 50px 0px 50px 0;
    }

    .paper-section .paper-heading {
        font-size: 35px !important;
        margin-bottom: 15px;
    }

    .paper-section .sub-title {
        font-size: 26px !important;
        margin-top: 15px;
    }

    .paper-section .text,
    .paper-section p {
        font-size: 18px !important;
        line-height: 1.6;
        width: 100%;
    }

    .paper-section .list-group-item {
        font-size: 18px !important;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .paper-section a {
        font-size: 18px !important;
        word-break: break-all;
    }

    .paper-section .table {
        font-size: 18px !important;
    }

    .paper-section .table th,
    .paper-section .table td {
        padding: 10px;
    }
}

@media (min-width: 1920px) {

    .paper-section {
        padding: 50px 0px 50px 0;
    }

    .paper-section .paper-heading {
        font-size: 40px !important;
        margin-bottom: 15px;
    }

    .paper-section .sub-title {
        font-size: 26px !important;
        margin-top: 15px;
    }

    .paper-section .text,
    .paper-section p {
        font-size: 18px !important;
        line-height: 1.6;
        width: 100%;
    }

    .paper-section .list-group-item {
        font-size: 18px !important;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .paper-section a {
        font-size: 18px !important;
        word-break: break-all;
    }

    .paper-section .table {
        font-size: 18px !important;
    }

    .paper-section .table th,
    .paper-section .table td {
        padding: 10px;
    }
}

/* ================================================================================================
    Keynote Speakers Section
=================================================================================================== */

@media (max-width: 576.5px) {

    .speakers-section {
        padding: 40px 0 50px;
    }

    .speakers-section .speakers-heading {
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    .speaker-block {
        margin-bottom: 25px;
    }

    .speaker-block .inner-box {
        max-width: 280px;
        margin: 0 auto;
    }

    .speaker-block .image-box .image img {
        height: 300px !important;
    }

    .speaker-block .image-box figure img {
        height: auto;
        max-width: 100%;
    }

    .card__data {
        width: 240px !important;
        padding: 15px 10px;
    }

    .card__title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .card__button {
        font-size: 14px;
        line-height: 1.4;
    }

    .speakers-section .parallax-scene {
        display: none;
    }
}

@media (min-width: 577px) and (max-width: 767.5px) {

    .speakers-section {
        padding: 30px 0px;
    }

    .speakers-section .speakers-heading {
        font-size: 24px !important;
        margin-bottom: 15px;
    }

    .speaker-block {
        margin-bottom: 30px;
        width: 50% !important;
        float: left !important;
    }

    .speaker-block .inner-box {
        max-width: 300px;
        margin: 0 auto;
    }

    .speaker-block .image-box .image img {
        width: 225px !important;
        height: 265px !important;
    }

    .speaker-block .image-box figure img {
        height: auto;
        max-width: 100%;
    }

    .card__data {
        width: 220px !important;
    }

    .card__title {
        font-size: 19px !important;
    }

    .card__button {
        font-size: 16px !important;
    }

    .speakers-section .parallax-scene {
        opacity: 0.5;
    }

    .speakers-section .row::after {
        content: "";
        display: table;
        clear: both;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {

    .speakers-section {
        padding: 50px 16px 0;
    }

    .speakers-section .speakers-heading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .speaker-block {
        margin-bottom: 35px;
    }

    .card__title {
        font-size: 20px !important;
    }

    .card__button {
        font-size: 18px !important;
    }

    .speakers-section .parallax-scene {
        opacity: 0.5;
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {
    
    .b-container {
        max-width: 990px !important;
    }
    .speakers-section {
        padding: 50px 0 150px 0;
    }

    .speakers-section .speakers-heading {
        font-size: 26px !important;
        margin-bottom: 25px;
    }

    .speaker-block {
        margin-bottom: 25px;
    }

    .speaker-block .inner-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .speaker-block .image-box .image img {
        max-width: 100% !important;
        height: 300px !important;
    }

    .card__data {
        width: 240px !important;
        padding: 15px 10px;
    }

    .card__title {
        font-size: 20px !important;
        margin-bottom: 5px;
    }

    .card__button {
        font-size: 18px !important;
        line-height: 1.4;
    }

    .icon-circle-3,
    .icon-circle-3-1 {
        height: 730px !important;
        width: 730px !important;
        background-image: url(../images/icons/icon-circle-3.png);
    }

    .icon-circle-4,
    .icon-circle-4-1 {
        height: 252px !important;
        width: 252px !important;
        background-image: url(../images/icons/icon-circle-4.png);
    }

    .speakers-section .icon-circle-3 {
        top: 200px !important;
        left: -935px !important;
        opacity: .10;
    }

    .speakers-section .icon-circle-4 {
        top: 800px !important;
        left: -900px !important;
        opacity: .3;
    }

    .speakers-section .icon-circle-3-1 {
        top: 750px !important;
        left: 1000px !important;
        opacity: .10;
    }

    .speakers-section .icon-circle-4-1 {
        top: 570px !important;
        left: 1200px !important;
        opacity: .3;
    }
}

@media (min-width: 1200px) and (max-width: 1439.5px) {

    .speakers-section {
        padding: 50px 0 150px 0;
    }

    .speakers-section .speakers-heading {
        font-size: 30px !important;
        margin-bottom: 25px;
    }

    .speaker-block {
        margin-bottom: 25px;
    }

    .speaker-block .inner-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .speaker-block .image-box .image img {
        max-width: 100% !important;
        height: 370px !important;
    }

    .card__data {
        padding: 15px 10px;
    }

    .card__title {
        font-size: 20px !important;
        margin-bottom: 5px;
    }

    .card__button {
        font-size: 18px !important;
        line-height: 1.4;
    }

    .icon-circle-3,
    .icon-circle-3-1 {
        height: 730px !important;
        width: 730px !important;
        background-image: url(../images/icons/icon-circle-3.png);
    }

    .icon-circle-4,
    .icon-circle-4-1 {
        height: 252px !important;
        width: 252px !important;
        background-image: url(../images/icons/icon-circle-4.png);
    }

    .speakers-section .icon-circle-3 {
        top: 200px !important;
        left: -535px !important;
        opacity: .10;
    }

    .speakers-section .icon-circle-4 {
        top: 800px !important;
        left: -300px !important;
        opacity: .3;
    }

    .speakers-section .icon-circle-3-1 {
        top: 750px !important;
        left: 1000px !important;
        opacity: .10;
    }

    .speakers-section .icon-circle-4-1 {
        top: 570px !important;
        left: 1200px !important;
        opacity: .3;
    }
}

@media (min-width: 1440px) and (max-width: 1919.5px) {

    .speakers-section {
        padding: 50px 0 150px 0;
    }

    .speakers-section .speakers-heading {
        font-size: 35px !important;
        margin-bottom: 25px;
    }

    .speaker-block {
        margin-bottom: 25px;
    }

    .speaker-block .inner-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .speaker-block .image-box .image img {
        max-width: 100% !important;
        height: 370px !important;
    }

    .card__data {
        padding: 15px 10px;
    }

    .card__title {
        font-size: 20px !important;
        margin-bottom: 5px;
    }

    .card__button {
        font-size: 18px !important;
        line-height: 1.4;
    }

    .icon-circle-3,
    .icon-circle-3-1 {
        height: 730px !important;
        width: 730px !important;
        background-image: url(../images/icons/icon-circle-3.png);
    }

    .icon-circle-4,
    .icon-circle-4-1 {
        height: 252px !important;
        width: 252px !important;
        background-image: url(../images/icons/icon-circle-4.png);
    }

    .speakers-section .icon-circle-3 {
        top: 200px !important;
        left: -535px !important;
        opacity: .10;
    }

    .speakers-section .icon-circle-4 {
        top: 800px !important;
        left: -300px !important;
        opacity: .3;
    }

    .speakers-section .icon-circle-3-1 {
        top: 750px !important;
        left: 1000px !important;
        opacity: .10;
    }

    .speakers-section .icon-circle-4-1 {
        top: 570px !important;
        left: 1200px !important;
        opacity: .3;
    }
}

@media (min-width: 1920px) {

    .speakers-section {
        padding: 50px 0 150px 0;
    }

    .speakers-section .speakers-heading {
        font-size: 40px !important;
        margin-bottom: 25px;
    }

    .speaker-block {
        margin-bottom: 25px;
    }

    .speaker-block .inner-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .speaker-block .image-box .image img {
        max-width: 100% !important;
        height: 400px !important;
    }

    .card__data {
        padding: 15px 10px;
    }

    .card__title {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .card__button {
        font-size: 18px;
        line-height: 1.4;
    }

    .icon-circle-3,
    .icon-circle-3-1 {
        height: 730px !important;
        width: 730px !important;
        background-image: url(../images/icons/icon-circle-3.png);
    }

    .icon-circle-4,
    .icon-circle-4-1 {
        height: 252px !important;
        width: 252px !important;
        background-image: url(../images/icons/icon-circle-4.png);
    }

    .speakers-section .icon-circle-3 {
        top: 200px !important;
        left: -535px !important;
        opacity: .10;
    }

    .speakers-section .icon-circle-4 {
        top: 800px !important;
        left: -300px !important;
        opacity: .3;
    }

    .speakers-section .icon-circle-3-1 {
        top: 750px !important;
        left: 1000px !important;
        opacity: .10;
    }

    .speakers-section .icon-circle-4-1 {
        top: 570px !important;
        left: 1200px !important;
        opacity: .3;
    }
}

/* ================================================================================================
    Committee Section
=================================================================================================== */

@media (max-width: 576.5px) {

    .committees-section {
        padding: 20px 0 50px;
    }

    .committees-section .committee-heading {
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    .committees-section .content-center {
        text-align: center;
    }

    .committees-section .changed {
        text-align: center !important;
    }

    .committees-section .changed {
        font-size: 17px !important;
        margin-bottom: 15px;
    }

    .committees-section p {
        font-size: 14px;
        line-height: 1.6;
    }

    .committees-section .committees p span {
        display: block;
    }

    .committees-section .position-absolute {
        position: relative !important;
    }

    .committees-section .col-lg-4 {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

@media (min-width: 577px) and (max-width: 767.5px) {

    .committees-section {
        padding: 30px 16px 0;
    }

    .committees-section .committee-heading {
        font-size: 24px !important;
        margin-bottom: 15px;
    }

    .committees-section .changed {
        font-size: 20px !important;
        margin-bottom: 10px;
        font-weight: 600 !important;
    }

    .committees {
        font-size: 16px !important;
    }

    .committees .row>div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .committees .pair {
        flex: 0 0 50%;
        max-width: 50% !important;
    }

    .committees-section p {
        font-size: 16px;
        line-height: 1.6;
    }

    .committees-section .committees p span {
        display: block;
        width: 100%;
    }

    .committees .position-absolute,
    .committees span[style*="position: absolute;"] {
        position: static !important;
    }

    .committees .international-committee,
    .committees .technical-committee,
    .committees .organising-secretaries,
    .committees .organising-committee {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0px;
        text-align: left !important;
    }

    .committees .international-committee>span,
    .committees .technical-committee>span,
    .committees .organising-secretaries>span,
    .committees .organising-committee>span {
        display: block;
        margin: 0;
        width: auto !important;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {

    .committees-section {
        padding: 50px 0 0;
    }

    .committees-section .committee-heading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .committees-section .changed {
        font-size: 22px !important;
        margin-bottom: 10px;
        font-weight: 600 !important;
    }

    .committees .row>div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .committees .pair {
        flex: 0 0 45% !important;
        max-width: 44% !important;
        margin: 0 0 0 40px !important;
    }

    .committees-section p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .committees-section .committees p span {
        display: block;
        width: 100%;
        margin-right: 10px !important;
    }

    .committees .position-absolute,
    .committees span[style*="position: absolute;"] {
        position: static !important;
    }

    .committees .international-committee,
    .committees .technical-committee,
    .committees .organising-secretaries,
    .committees .organising-committee {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: left;
    }

    .committees .international-committee span,
    .committees .technical-committee span,
    .committees .organising-secretaries span,
    .committees .organising-committee span {
        flex: 0 0 30%;
        max-width: 30%;
        display: inline-block;
        position: static !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {

    .committees-section {
        padding: 50px 0 50px 0;
    }

    .committees-section .committees .committee-heading {
        font-size: 26px !important;
        margin-bottom: 25px;
    }

    .committees-section .changed {
        font-size: 22px !important;
        margin-bottom: 15px;
        font-weight: 600 !important;
    }

    .committees-section p {
        font-size: 16px !important;
        line-height: 1.6;
    }

    .committees .row>div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .committees .pair {
        flex: 0 0 33% !important;
        max-width: 33% !important;
    }

    .committees-section .committees p span {
        display: block;
        width: 100%;/*
        margin-right: 10px !important;*/
    }

    .committees .position-absolute,
    .committees span[style*="position: absolute;"] {
        position: static !important;
    }

    .committees .international-committee,
    .committees .technical-committee,
    .committees .organising-secretaries,
    .committees .organising-committee {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        text-align: left;
        width: 107% !important;
    }

    .committees .international-committee span,
    .committees .technical-committee span,
    .committees .organising-secretaries span,
    .committees .organising-committee span {
        flex: 0 0 30%;
        max-width: 30%;
        display: inline-block;
        position: static !important;
        margin-bottom: 15px;
    }
}

@media (min-width: 1200px) and (max-width: 1439.5px) {

    .committees-section {
        padding: 50px 0 50px 0;
    }

    .committees-section .committees .committee-heading {
        font-size: 30px !important;
        margin-bottom: 15px;
    }

    .committees-section .changed {
        font-size: 22px !important;
        margin-bottom: 15px;
    }

    .committees-section p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .committees .row>div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .committees .pair {
        flex: 0 0 30% !important;
        max-width: 30% !important;
        margin: 0 0 0 30px !important;
    }

    .committees-section .committees p span {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .committees .position-absolute,
    .committees span[style*="position: absolute;"] {
        position: static !important;
    }

    .committees .international-committee,
    .committees .technical-committee,
    .committees .organising-secretaries,
    .committees .organising-committee {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        text-align: left;
        width: 107% !important;
    }

    .committees .international-committee span,
    .committees .technical-committee span,
    .committees .organising-secretaries span,
    .committees .organising-committee span {
        flex: 0 0 30%;
        max-width: 30%;
        display: inline-block;
        position: static !important;
        margin-bottom: 15px;
    }
}

@media (min-width: 1440px) and (max-width: 1919.5px) {

    .committees-section {
        padding: 50px 0 50px 0;
    }

    .committees-section .committees .committee-heading {
        font-size: 35px !important;
        margin-bottom: 15px;
    }

    .committees-section .changed {
        font-size: 22px !important;
        margin-bottom: 15px;
    }

    .committees-section p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .committees .row>div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .committees .pair {
        flex: 0 0 30% !important;
        max-width: 30% !important;
        margin: 0 0 0 30px !important;
    }

    .committees-section .committees p span {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .committees .position-absolute,
    .committees span[style*="position: absolute;"] {
        position: static !important;
    }

    .committees .international-committee,
    .committees .technical-committee,
    .committees .organising-secretaries,
    .committees .organising-committee {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        text-align: left;
        width: 106% !important;
    }

    .committees .international-committee span,
    .committees .technical-committee span,
    .committees .organising-secretaries span,
    .committees .organising-committee span {
        flex: 0 0 30.3333% !important;
        max-width: 30.3333% !important;
        display: inline-block;
        position: static !important;
        margin-bottom: 15px;
    }
}

@media (min-width: 1920px) {

    .committees-section {
        padding: 50px 0 50px 0;
    }

    .committees-section .committee-heading {
        font-size: 40px !important;
        margin-bottom: 20px;
    }

    .committees-section .changed {
        font-size: 22px !important;
        margin-bottom: 15px;
    }

    .committees-section p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .committees .row>div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px !important;
    }

    .committees .pair {
        flex: 0 0 30% !important;
        max-width: 30% !important;
        margin: 0 0 0 30px !important;
    }

    .committees-section .committees p span {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .committees .position-absolute,
    .committees span[style*="position: absolute;"] {
        position: static !important;
    }

    .committees .international-committee,
    .committees .technical-committee,
    .committees .organising-secretaries,
    .committees .organising-committee {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        text-align: left;
        width: 106% !important;
    }

    .committees .international-committee span,
    .committees .technical-committee span,
    .committees .organising-secretaries span,
    .committees .organising-committee span {
        flex: 0 0 30.3333% !important;
        max-width: 30.3333% !important;
        display: inline-block;
        position: static !important;
        margin-bottom: 15px;
    }
}

/* ================================================================================================
    Schedule Section
=================================================================================================== */

@media (max-width: 576.5px) {

    .events-section {
        padding: 20px 0 60px;
    }

    .events-section .schedule-heading {
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    .events-section .schedule-heading1 {
        font-size: 30px !important;
        text-align: center;
        color: red;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns {
        padding: 0;
        margin-top: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn {
        font-size: 18px;
        padding: 15px;
        margin: 0 0 15px;
        width: 100%;
        max-width: 280px;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn span {
        font-size: 14px;
        margin-top: 8px;
    }

}

@media (min-width: 394px) and (max-width: 576.5px) {

    .event-block {
        padding: 10px;
        margin-bottom: 15px;
    }

    .event-block .inner-box {
        padding: 15px;
    }

    .event-block .inner-box .row {
        display: flex;
        flex-direction: column;
    }

    .event-block .inner-box .image-column,
    .event-block .inner-box .info-column {
        width: 100%;
    }

    .event-block .inner-box .image-column .inner-column {
        margin-bottom: 15px;
        position: relative;
    }

    .event-block .inner-box .image-column .image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .event-block .inner-box .image-column .event-time {
        font-size: 16px !important;
    }

    .event-block .inner-box .image-column .event-time-mobile {
        display: none;
    }

    .event-block .inner-box .info-column .inner-column {
        margin-left: 0;
        padding-top: 0;
    }

    .event-block .inner-box .info-column .name {
        font-size: 14px;
    }

    .event-block .inner-box .info-column h2 {
        font-size: 18px;
        margin-top: 5px;
    }

    .event-block .inner-box .info-column .text {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 8px;
    }
}

@media (max-width: 393.5px) {

    .event-block {
        padding: 10px;
        margin-bottom: 15px;
    }

    .event-block .inner-box {
        padding: 15px;
    }

    .event-block .inner-box .row {
        display: flex;
        flex-direction: column;
    }

    .event-block .inner-box .image-column {
        width: 100%;
    }

    .event-block .inner-box .info-column {
        width: 100%;
        margin-top: 20px;
    }

    .event-block .inner-box .image-column .inner-column {
        margin-bottom: 15px;
        position: relative;
    }

    .event-block .inner-box .image-column .image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .event-block .inner-box .image-column .event-time {
        display: none;
    }

    .event-block .inner-box .image-column .event-time-mobile {
        font-size: 16px !important;
        position: relative;
        white-space: nowrap;
        top: 106.5px;
        left: -245px;
        text-align: center;
        display: block;
        width: 100%;
        margin: 20px 0 0 0;
    }

    .event-block .inner-box .info-column .inner-column {
        margin-left: 0;
        padding-top: 0;
    }

    .event-block .inner-box .info-column .name {
        font-size: 14px;
    }

    .event-block .inner-box .info-column h2 {
        font-size: 18px;
        margin-top: 5px;
    }

    .event-block .inner-box .info-column .text {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 8px;
    }
}

@media (min-width: 577px) and (max-width: 767.5px) {
    
    .events-section {
        padding: 30px 16px;
    }

    .events-section .schedule-heading {
        font-size: 24px !important;
        margin-bottom: 15px;
    }

    .events-section .schedule-heading1 {
        font-size: 30px !important;
        text-align: center;
        color: red;
        margin: 40px 0 0 0;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns {
        margin-top: 0;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0;
        padding-left: 0;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn {
        font-size: 22px;
        padding: 10px;
        margin: 0 10px 15px;
        width: 46%;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn span {
        font-size: 16px;
        margin-top: 10px;
    }

    .event-block {
        padding: 10px;
        margin-bottom: 20px;
    }

    .event-block .inner-box {
        padding: 20px;
    }

    .event-block .inner-box .row {
        display: flex;
        flex-direction: column;
    }

    .event-block .inner-box .image-column,
    .event-block .inner-box .info-column {
        width: 100%;
    }

    .event-block .inner-box .image-column .inner-column {
        margin-bottom: 20px;
    }

    .event-block .inner-box .image-column .event-time {
        font-size: 19px !important;
    }

    .event-block .inner-box .image-column .event-time-mobile {
        display: none;
    }

    .event-block .inner-box .info-column .inner-column {
        margin-left: 0;
        padding-top: 0;
    }

    .event-block .inner-box .info-column .name {
        font-size: 16px !important;
    }

    .event-block .inner-box .info-column h2 {
        font-size: 22px !important;
        margin-top: 8px;
    }

    .event-block .inner-box .info-column .text {
        font-size: 16px !important;
        line-height: 1.6;
        margin-top: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    
    .events-section {
        padding: 50px 16px 0;
    }

    .events-section .schedule-heading {
        font-size: 28px !important;
        margin-bottom: 20px;
    }

    .events-section .schedule-heading1 {
        font-size: 35px !important;
        text-align: center;
        color: red;
        margin: 40px 0 30px;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns {
        margin-top: 0;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0;
        padding-left: 0;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn {
        font-size: 24px !important;
        padding: 25px;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn span {
        font-size: 18px !important;
    }

    .event-block .inner-box {
        padding: 30px;
    }

    .event-block .inner-box .image-column .event-time {
        font-size: 20px !important;
    }

    .event-block .inner-box .image-column .event-time-mobile {
        display: none;
    }

    .event-block .inner-box .info-column .inner-column {
        margin-left: -15px;
    }

    .event-block .inner-box .info-column .name {
        font-size: 18px !important;
    }

    .event-block .inner-box .info-column h2 {
        font-size: 24px !important;
    }

    .event-block .inner-box .info-column .text {
        font-size: 18px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {
    
    .events-section {
        padding: 50px 0 150px 0;
    }

    .events-section .schedule-heading {
        font-size: 26px !important;
        margin-bottom: 25px;
    }

    .events-section .schedule-heading1 {
        font-size: 35px !important;
        text-align: center;
        color: red;
        margin: 70px 0 0 0;
    }
    
    .events-section .events-info-tabs .events-tabs .tab-btns {
        margin: 0px 90px 0 0 !important;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn {
        font-size: 22px !important;
        padding: 25px;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn span {
        font-size: 18px !important;
    }

    .event-block .inner-box {
        padding: 30px;
    }

    .event-block .inner-box .image-column .event-time {
        display: none;
    }

    .event-block .inner-box .image-column .event-time-mobile {
        font-size: 20px !important;
        position: relative;
        white-space: nowrap;
        top: 125px;
        left: -243px;
        text-align: center;
        display: block;
        width: 100%;
        margin: 20px 0 0 0;
    }

    .event-block .inner-box .info-column .inner-column {
        margin-left: -15px;
    }

    .event-block .inner-box .info-column .name {
        font-size: 18px !important;
    }

    .event-block .inner-box .info-column h2 {
        font-size: 24px !important;
    }

    .event-block .inner-box .info-column .text {
        font-size: 18px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1439.5px) {

    .events-section {
        padding: 50px 0 150px 0;
    }

    .events-section .schedule-heading {
        font-size: 30px !important;
        top: 95px;
        left: -36%;
    }

    .events-section .schedule-heading1 {
        font-size: 35px !important;
        text-align: center;
        color: red;
        margin: 100px 0 0 0;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns {
        margin: 0 !important;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn {
        font-size: 22px !important;
        padding: 25px;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn span {
        font-size: 18px !important;
    }

    .event-block .inner-box {
        padding: 30px;
    }

    .event-block .inner-box .image-column .event-time {
        font-size: 20px !important;
    }

    .event-block .inner-box .image-column .event-time-mobile {
        display: none;
    }

    .event-block .inner-box .info-column .inner-column {
        margin-left: -15px;
    }

    .event-block .inner-box .info-column .name {
        font-size: 18px !important;
    }

    .event-block .inner-box .info-column h2 {
        font-size: 24px !important;
    }

    .event-block .inner-box .info-column .text {
        font-size: 18px !important;
    }
}

@media (min-width: 1440px) and (max-width: 1919.5px) {

    .events-section {
        padding: 50px 0 150px 0;
    }

    .events-section .schedule-heading {
        font-size: 35px !important;
        top: 95px;
        left: -35%;
    }

    .events-section .schedule-heading1 {
        font-size: 40px !important;
        text-align: center;
        color: red;
        margin: 100px 0 0 0;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns {
        margin: 0 !important;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn {
        font-size: 22px !important;
        padding: 25px;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn span {
        font-size: 18px !important;
    }

    .event-block .inner-box {
        padding: 30px;
    }

    .event-block .inner-box .image-column .event-time {
        font-size: 20px !important;
    }

    .event-block .inner-box .image-column .event-time-mobile {
        display: none;
    }

    .event-block .inner-box .info-column .inner-column {
        margin-left: -15px;
    }

    .event-block .inner-box .info-column .name {
        font-size: 18px !important;
    }

    .event-block .inner-box .info-column h2 {
        font-size: 24px !important;
    }

    .event-block .inner-box .info-column .text {
        font-size: 18px !important;
    }
}

@media (min-width: 1920px) {

    .events-section {
        padding: 50px 0 150px 0;
    }

    .events-section .schedule-heading {
        font-size: 40px !important;
        top: 95px;
        left: -36%;
    }

    .events-section .schedule-heading1 {
        font-size: 45px !important;
        text-align: center;
        color: red;
        margin: 100px 0 0 0;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns {
        margin: 0 !important;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn {
        font-size: 22px !important;
        padding: 25px;
    }

    .events-section .events-info-tabs .events-tabs .tab-btns .tab-btn span {
        font-size: 18px !important;
    }

    .event-block .inner-box {
        padding: 30px;
    }

    .event-block .inner-box .image-column .event-time {
        font-size: 20px !important;
    }

    .event-block .inner-box .image-column .event-time-mobile {
        display: none;
    }

    .event-block .inner-box .info-column .inner-column {
        margin-left: -15px;
    }

    .event-block .inner-box .info-column .name {
        font-size: 18px !important;
    }

    .event-block .inner-box .info-column h2 {
        font-size: 24px !important;
    }

    .event-block .inner-box .info-column .text {
        font-size: 18px !important;
    }
}

/* ================================================================================================
    Registration Section
=================================================================================================== */

@media (max-width: 576.5px) {
    
    .registration-section {
        padding: 20px 0 50px;
    }

    .registration-section .registration-heading {
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    .registration-section .title {
        font-size: 18px !important;
        margin-bottom: 10px;
    }

    .registration-section a {
        font-size: 14px;
        word-break: break-all;
    }

    .registration-section p {
        font-size: 14px;
        line-height: 1.4;
    }

    .registration-section .table {
        font-size: 13.5px;
    }

    .registration-section .table th,
    .registration-section .table td {
        padding: 6px;
    }

    .registration-section .fw-bold {
        font-size: 16px !important;
        margin-bottom: 5px;
    }
}

@media (min-width: 577px) and (max-width: 767.5px) {

    .registration-section {
        padding: 30px 0;
    }

    .registration-section .registration-heading {
        font-size: 24px !important;
        margin-bottom: 15px;
    }

    .registration-section .title {
        font-size: 20px !important;
        margin-bottom: 10px;
    }

    .registration-section a {
        font-size: 16px;
        word-break: break-all;
    }

    .registration-section p {
        font-size: 16px;
        line-height: 1.5;
    }

    .registration-section .table {
        font-size: 14px;
    }

    .registration-section .table th,
    .registration-section .table td {
        padding: 8px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    
    .registration-section {
        padding: 50px 16px 0;
    }

    .registration-section .registration-heading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .registration-section .title {
        font-size: 22px !important;
        margin-bottom: 15px;
    }

    .registration-section a {
        font-size: 18px;
    }

    .registration-section p {
        font-size: 18px;
        line-height: 1.6;
    }

    .registration-section .table {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {

    .registration-section {
        padding: 50px 0 50px 0;
    }

    .registration-section .registration-heading {
        font-size: 26px !important;
        margin-bottom: 20px;
    }

    .registration-section .title {
        font-size: 22px !important;
        margin-bottom: 11px;
    }

    .registration-section a {
        font-size: 18px !important;
        word-break: break-all;
    }

    .registration-section p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .registration-section .table {
        font-size: 18px !important;
    }

    .registration-section .table th,
    .registration-section .table td {
        padding: 6px;
    }

    .registration-section .fw-bold {
        font-size: 18px !important;
        margin-bottom: 5px;
    }
}

@media (min-width: 1200px) and (max-width: 1439.5px) {

    .registration-section {
        padding: 50px 0 50px 0;
    }

    .registration-section .registration-heading {
        font-size: 30px !important;
        margin-bottom: 20px;
    }

    .registration-section .title {
        font-size: 26px !important;
        margin-bottom: 13px;
    }

    .registration-section a {
        font-size: 18px !important;
        word-break: break-all;
    }

    .registration-section p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .registration-section .table {
        font-size: 18px !important;
    }

    .registration-section .table th,
    .registration-section .table td {
        padding: 6px;
    }

    .registration-section .fw-bold {
        font-size: 18px !important;
        margin-bottom: 5px;
    }
}

@media (min-width: 1440px) and (max-width: 1919.5px) {

    .registration-section {
        padding: 50px 0 50px 0;
    }

    .registration-section .registration-heading {
        font-size: 35px !important;
        margin-bottom: 15px;
    }

    .registration-section .title {
        font-size: 26px !important;
        margin-bottom: 13px;
    }

    .registration-section a {
        font-size: 18px !important;
        word-break: break-all;
    }

    .registration-section p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .registration-section .table {
        font-size: 18px !important;
    }

    .registration-section .table th,
    .registration-section .table td {
        padding: 6px;
    }

    .registration-section .fw-bold {
        font-size: 18px !important;
        margin-bottom: 5px;
    }
}

@media (min-width: 1920px) {

    .registration-section {
        padding: 50px 0 50px 0;
    }

    .registration-section .registration-heading {
        font-size: 40px !important;
        margin-bottom: 15px;
    }

    .registration-section .title {
        font-size: 26px !important;
        margin-bottom: 13px;
    }

    .registration-section a {
        font-size: 18px !important;
        word-break: break-all;
    }

    .registration-section p {
        font-size: 18px;
        line-height: 1.4;
    }

    .registration-section .table {
        font-size: 18px;
    }

    .registration-section .table th,
    .registration-section .table td {
        padding: 6px;
    }

    .registration-section .fw-bold {
        font-size: 18px !important;
        margin-bottom: 5px;
    }
}

/* ================================================================================================
    Contact Section
=================================================================================================== */

@media (max-width: 576.5px) {

    .contact-section {
        padding: 20px 0 0px;
    }

    .contact-section .contact-heading {
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    .contact-section .contact-map {
        padding-top: 30px !important;
    }

    .contact-section .gmap_canvas {
        margin-bottom: 20px !important;
    }

    .contact-section .contact-iframe {
        width: 100% !important;
        height: 300px !important;
    }

    .contact-section .contact-info111 {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .contact-section .venu-details {
        width: 100%;
    }

    .contact-section .venu-details h3 {
        font-size: 18px;
    }

    .contact-section .venu-details p {
        font-size: 14px;
        line-height: 1.4;
    }

    .contact-section .venu-details .icon {
        font-size: 24px;
    }
}

@media (min-width: 577px) and (max-width: 767.5px) {

    .contact-section {
        padding: 30px 16px 0;
    }

    .contact-section .contact-heading {
        font-size: 24px !important;
        margin-bottom: 15px;
    }

    .contact-section .contact-map {
        padding-top: 35px !important;
    }

    .contact-section .gmap_canvas {
        margin-bottom: 25px !important;
    }

    .contact-section .contact-iframe {
        width: 100% !important;
        height: 350px !important;
    }

    .contact-section .contact-info111 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contact-section .venu-details {
        margin-bottom: 30px;
        width: 100%;
    }

    .contact-section .venu-details h3 {
        font-size: 22px !important;
        margin-bottom: 10px;
    }

    .contact-section .venu-details p {
        font-size: 16px !important;
        line-height: 1.5;
    }

    .contact-section .venu-details .icon {
        font-size: 30px !important;
        margin-bottom: 12px;
    }

    .contact-section .contact-margin {
        margin-bottom: 8px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    .contact-section {
        padding: 50px 24px 0;
    }

    .contact-section .contact-heading {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .contact-section .contact-map {
        padding-top: 40px !important;
    }

    .contact-section .gmap_canvas {
        margin-bottom: 30px !important;
    }

    .contact-section .contact-iframe {
        width: 100% !important;
        height: 400px !important;
    }

    .contact-section .contact-info111 {
        row-gap: 15px;
    }

    .contact-section .venu-details h3 {
        font-size: 24px !important;
        margin-bottom: 12px;
    }

    .contact-section .venu-details p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .contact-section .venu-details .icon {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .contact-section .contact-margin {
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {
    
    .contact-section {
        padding: 50px 0 0 0;
    }

    .contact-section .contact-heading {
        font-size: 26px !important;
        margin-bottom: 15px;
    }

    .contact-section .contact-map {
        padding-top: 35px !important;
    }

    .contact-section .contact-iframe {
        width: 100% !important;
        height: 400px !important;
    }

    .contact-section .contact-info111 {
        row-gap: 15px;
    }

    .contact-section .venu-details h3 {
        font-size: 24px !important;
    }

    .contact-section .venu-details p {
        font-size: 18px !important;
    }

    .contact-section .venu-details .icon {
        font-size: 35px !important;
        margin-bottom: 15px;
    }
}

@media (min-width: 1200px) and (max-width: 1439.5px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-section .contact-heading {
        font-size: 30px !important;
        margin-bottom: 15px;
    }

    .contact-section .contact-map {
        padding-top: 35px !important;
    }

    .contact-section .contact-info111 {
        gap: 70px;
    }

    .contact-section .venu-details h3 {
        font-size: 24px !important;
    }

    .contact-section .venu-details p {
        font-size: 18px !important;
    }

    .contact-section .venu-details .icon {
        font-size: 35px !important;
        margin-bottom: 15px !important;
    }
}

@media (min-width: 1440px) and (max-width: 1919.5px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-section .contact-heading {
        font-size: 35px !important;
        margin-bottom: 15px;
    }

    .contact-section .contact-map {
        padding-top: 35px !important;
    }

    .contact-section .contact-info111 {
        gap: 120px;
    }

    .contact-section .venu-details h3 {
        font-size: 24px !important;
    }

    .contact-section .venu-details p {
        font-size: 18px !important;
    }

    .contact-section .venu-details .icon {
        font-size: 35px !important;
        margin-bottom: 15px !important;
    }
}

@media (min-width: 1920px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-section .contact-heading {
        font-size: 40px !important;
        margin-bottom: 15px;
    }

    .contact-section .contact-map {
        padding-top: 35px !important;
    }

    .contact-section .contact-info111 {
        gap: 170px;
    }

    .contact-section .venu-details h3 {
        font-size: 24px !important;
        margin-bottom: 12px;
    }

    .contact-section .venu-details p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .contact-section .venu-details .icon {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .contact-section .contact-margin {
        margin-bottom: 10px;
    }
}

/* ================================================================================================
    Footer Section
=================================================================================================== */

@media (max-width: 576.5px) {

    .main-footer .container {
        margin: 0 0 0 8px;
    }

    .main-footer .footer-content {
        margin-bottom: 20px;
    }

    .main-footer .footer-content .footer-section {
        margin-bottom: 15px;
    }

    .main-footer .footer-content .footer-section .footer-title {
        font-size: 20px !important;
    }

    .main-footer .footer-content .footer-section .social-links h5 {
        font-size: 18px !important;
    }

    .main-footer .footer-bottom {
        margin-top: 0;
    }
}

@media (min-width: 577px) and (max-width: 1919.5px) {

    .footer-description,
    span,
    .footer-links li a,
    .organizer-info p,
    .copyright-text,
    .developer-text {
        font-size: 18px !important;
    }

    .main-footer .footer-content .footer-section .footer-title,
    .main-footer .footer-content .footer-section .social-links h5  {
        font-size: 24px !important;
    }
}

@media (min-width: 1920px) {

    .footer-description,
    span,
    .footer-links li a,
    .organizer-info p,
    .copyright-text,
    .developer-text {
        font-size: 18px !important;
    }

    .main-footer .footer-content .footer-section .footer-title,
    .main-footer .footer-content .footer-section .social-links h5  {
        font-size: 24px !important;
    }
}
