
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Raleway",sans-serif;
    font-size: 18px;    
    color: #202c54;    
}

a {
    color: #f3223c;
    text-decoration: none;
}

    a:hover {
        color: #d70620;
        text-decoration: none;
        font-weight:400
    }

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Raleway",sans-serif !important;
}

.soeblue {
    color: #28ace2 !important
}

.soered {
    color: #a74c4c !important
}

.soeBGblue {
    background-color: #28ace2 !important
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #04488e;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #85b6cf;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 120px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #1e4356;
    color: #fff;
    font-size: 14px;
    background: rgba(255, 255,255, 1);
    margin-top:48px
}

    #header.header-transparent {
        background: none;
        background: rgba(255, 255,255, 1);
    }

        #header.header-transparent .navbar a {
            color: #04488e;
        }

    #header.header-scrolled {
        background: rgba(255, 255,255, 1);
        height: 105px;
        color: #000 !important;
        /*margin-top: 48px !important*/
    }

        #header.header-scrolled .navbar a {
            color: #04488e;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 95px;
    }



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-family: "Raleway",sans-serif;
        font-size: 16px;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #f3223c !important;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            color: #1c3745;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #68A4C4;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #04488e;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 1366px) {
    .mobile-nav-toggle {
        display: none;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(17, 38, 48, 0.9);
    transition: 0.3s;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #1e4356;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #68A4C4;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #68A4C4;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

.inline-checkboxlist {
    line-height: 20px
}

     .inline-checkboxlist input[type="radio"],
    .inline-checkboxlist label {
        display: inline-block;
        margin-right: 8px; /* Adjust spacing as needed */
        vertical-align: middle;
        padding-bottom: 2px !important;
        font-size:17px !important;
        padding-right:12px
    }

    .inline-checkboxlist input[type="radio"] {
        height: 25px
    }
    .inline-checkbox label {
      
        margin-left: 8px; /* Adjust spacing as needed */
        
    }
.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;color:#444; font-size:14px
}
.iti--separate-dial-code .iti__flag-container {
    color: #444;
    font-size: 14px
}
#carouselHeader {
    min-height: 40px !important;
    background: radial-gradient(circle,rgba(4, 72, 142, 1) 0%, rgba(48, 56, 94, 1) 50%);
    padding-top:9px
}

    #carouselHeader .carousel-inner .carousel-item p {
        font-size: 16px;
        text-align: center !important;

    }

.carousel-slide-up .carousel-item {
    transition: transform 0.6s ease-in-out;
    transform: translateY(100%); /* Start position below */
}

    .carousel-slide-up .carousel-item.active {
        transform: translateY(0); /* Active position */
    }

        .carousel-slide-up .carousel-item-next,
        .carousel-slide-up .carousel-item-prev,
        .carousel-slide-up .carousel-item.active.carousel-item-start,
        .carousel-slide-up .carousel-item.active.carousel-item-end {
            transform: translateY(0); /* Ensure smooth transition on next/prev click */
        }

        .carousel-slide-up .carousel-item-next,
        .carousel-slide-up .carousel-item.active.carousel-item-end {
            transform: translateY(-100%); /* Move new slide up from bottom */
        }
/*--------------------------------------------------------------
# Hero No Slider Section
--------------------------------------------------------------*/
#maincontent {
    height: 100vh;
    overflow: hidden;
    position: relative;
    text-align: left;
    background: linear-gradient(90deg,rgba(4, 72, 142, .95) 0%, rgba(4, 72, 142, .9) 40%, rgba(4, 72, 142, 0.9) 100%), url("../../images/math-ed-background.jpg");
    color: #fff;
    background-size: cover;
    background-attachment: fixed
}

    #maincontent::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

    #maincontent h1 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 80px;
        font-weight: 700;
        line-height: 80px;
        max-width: 800px
    }

    #maincontent h2 span {
        background-color: #0d2a51;
        border-radius: 8px;
        padding: 16px 18px;
        font-size: 20px !important
    }
    #maincontent h2 span i{        
        font-size: 18px !important;        
    }

    #maincontent p {
        color: #fff; font-size:20px
    }

    #maincontent .subtitle {
        font-size: 50px !important;  
        color:#fff
    }

    #maincontent .subtitle1 {
        font-weight: 700;
    }
    #maincontent .subtitle2 {
        font-size: 35px;
        color: #fff
    }

    #maincontent .card .card-body p {
        font-size: 25px;
        font-weight: bolder !important;
        margin-bottom: 0;
    }

   

    #maincontent .loc {
        font-size: 18px;
    }

    #maincontent .textdate {
        font-size: 90px !important;
        margin-top: -10px !important;
        padding: 0px;
        font-weight: 700
    }
    #maincontent .card {
        background: rgba(13,42,81,.6)
    }

    
       

.feature-area.fa-negative {
    margin-top: -160px !important;
}

.feature-area {
    position: relative;
}

#feature-logo .partners-logo {
    background: #eee;
    text-align: center;
    border-radius: 50%;
    padding: 12px;
    border: none !important;
    box-shadow: 1px 10px 20px rgba(0,0,0,.5);
}

    #feature-logo .partners-logo img {
        border-radius: 50%;
    }


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
    padding: 60px 10px;
    overflow-x: hidden
}


.section-bg {
    background-color: #eee;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
}

.section-title-header h1 {
    font-family: "Raleway", sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    padding-bottom: 14px;
    position: relative;
    text-transform: uppercase;
    color: #0d2a51
}


    .section-title-header h1::after {
        content: "";
        position: absolute;
        display: block;
        width: 70px;
        height: 5px;
        background: #04488e;
        bottom: 0;
        left: calc(50% - 35px);
    }

.section-title p {
    margin-bottom: 0;
}

.mobprofile {
    display: none
}

.speakers {
    padding-bottom: 20px;
}

    .speakers .modal-content {
        color: #444;
    }

        .speakers .modal-content h3 {
            font-weight: 600
        }

            .speakers .modal-content h3:after {
                content: '';
                display: block;
                width: 30px;
                height: 4px;
                background: #f3223c;
                margin-top: 0px;
                margin-bottom: 10px
            }

        .speakers .modal-content h3, .speakers .modal-content p {
            font-size: 16px;
            text-align: justify;
            line-height: 30px;
            padding-left: 20px;
            padding-right: 20px;
            letter-spacing: 0.5px
        }
        .speakers .modal-content li {
            font-size: 16px;
        }

        .speakers .row {
            margin-bottom: 60px
        }


/*--------------------------------------------------------------
# Schedules
--------------------------------------------------------------*/

.schedules .container {
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    background: #fff;
    color: #fff;
    font-size: 17px;
    line-height: 32px;
    font-weight: 600
}

.schedules #pills-tabContent {
    background: #a74c4c;
    border-radius: 4px
}

.schedules #pills-tab .nav-item .nav-link {
    color: #a74c4c;
    line-height: normal;
    text-align: left;
    font-size: 14px;
    box-shadow: rgba(0,0,0,0.2) 0 2px 10px 0;
    margin-right: 20px
}

    .schedules #pills-tab .nav-item .nav-link i {
        font-size: 26px
    }

    .schedules #pills-tab .nav-item .nav-link span {
        font-size: 20px;
        font-weight: 700
    }

.schedules #pills-tab .nav-item .active {
    color: #fff !important;
}

.schedules #pills-tab .nav-item .nav-link:hover {
    color: #ffffff;
    background: #a74c4c;
}

.schedules #pills-tab .nav-item .nav-link.active {
    background-color: #a74c4c !important;
}

.schedules #pills-tabContent .tab-pane h2 {
    font-size: 24px !important;
    font-weight: 700
}

.schedules #pills-tabContent .tab-pane .agendalist i {
    font-size: 14px !important
}

.schedules #pills-tabContent .tab-pane .agendalist h3 {
    font-size: 20px !important;
    font-weight: 600;
    color: #04488e
}

.schedules h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background: #ffffff;
    margin-top: 8px;
    margin-bottom: 20px
}

.schedules a {
    color: #000;
    transition: 0.3s;
    text-decoration: underline
}

    .schedules a:hover {
        color: #68A4C4;
    }

#schedule .circleborder {
    border-radius: 50%;
    border: 4px solid #ccc;
}

#schedule .borderright {
    border-right: 1px solid #b7c0c9;
}

#schedule .time {
    color: #04488e;
    font-size: 15.5px !important;
}

#schedule .agendalist {
    background-color: #fff;
    border-bottom: 1px solid #b7c0c9;
    color: #555
}

    #schedule .agendalist hr {
        border: 1px solid #555;
        padding: 0 !important
    }

    #schedule .agendalist .speakerimgpos {
        margin-top: -15px !important
    }

    #schedule .agendalist p {
        margin: unset;
        line-height: 22px !important
    }

    #schedule .agendalist .stitle {
        font-size: 14px !important;
        color: #888
    }

    #schedule .agendalist .subtcolor {
        color: #888;
        margin-top: -5px;
        margin-bottom: 15px;
        margin-top: 10px
    }

.tablepad {
    padding: 15px 0 15px 10px
}
/* Footers */
.footer-sketch {
    width: 100%
}

#footer {
    background: #1a224c;
    color: #fff;
    font-size: 14px;
    padding-top: 80px
}

    #footer .logo {
        max-width: 200px
    }

    #footer h3 {
        font-size: 25px;
        font-weight: 600;
        color: #fff;
        position: relative;
        padding: 0;
        margin: 20px 0 15px 0
    }





/* Partners */
#partners {
    background: #f3f4f3;
}

.partners-logo {
    text-align: center;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
    display: inline-block;
    border: 1px solid #ddd;
    background: #fff;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}




/* countdown */
.time-entry {
    display: inline-block;
    min-width: 100px;
    margin: 12px;
    height: 100px;
    padding: 12px;
    box-shadow: 1px 10px 20px rgba(0,0,0,.5);
    border-radius: 8px;
    background: #a74c4c;
    background:rgba(167,76,76,.9);
    text-align: center;
    font-weight: 400;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 20px
}

    .time-entry span {
        font-size: 32px;
        line-height: 30px;
        font-weight: 700;
        display: block;
        color: #fff;
        margin-bottom: 6px
    }

    .time-entry:first-child {
        border-left: none
    }

.time-countdown {
    margin: 15px 0 50px 0
}


/* About */

#about {
    background: #fff;
    /*background: linear-gradient(rgba(255,255,255,.90), rgba(255,255,255,.90)), url("../../img/shutterstock-2268858659.jpg");*/
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

    

    #about h2 {
        font-size: 20px
    }

    #about p {
        font-size: 20px;
        font-weight: 500;
        line-height: 40px 
    }

    #about .detail-box {
        background: rgba(4,72,142,.7);
        border-radius: 4px;
        padding: 25px 20px;
        border: none !important;
        box-shadow: 1px 10px 20px rgba(0,0,0,.5);
        color:#fff;
      
    }

    #about .detail-box .icon {
        padding:10px 12px;
        background:#04488e;
        border-radius:50%;
        color:#fff;
       
    }

        #about .detail-box h5 {
            line-height:30px
        }

    #about .detail-list {
        font-size: 16px !important;
        line-height: 25px !important;
        text-align: left;
        margin-bottom: -10px !important;
        color: #888 !important
    }

        #about .detail-list i {
            font-size: 14px !important;
        }

        #about .detail-list span {
            font-size: 20px !important;
        }

.about-left {
    position: relative;
    display: block;
    margin-right: 50px;
}



.about-img img {
    border-radius: 50% !important;
    border: 4px solid #f3223c !important;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 40px 5px;
}

.about-img .img3 {
    position: absolute;
    left: -5px;
    top: -30px;
    width: 200px;
    box-shadow: none;
}

.about-img .img2 {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 220px;
    box-shadow: none;
}

.about-img .img4 {
    position: absolute;
    left: -5px;
    bottom: -30px;
    width: 200px;
    box-shadow: none;
}

/* Speakers */

#speakers {
    background: #0d2a51;
    overflow: hidden;
    position: relative;
}

    #speakers .card .card-body .profile_b {
        position: absolute;
        top: 15px;
        border-radius:50%;
        background-color:#1a224c; border:none
    }
    #speakers .card .card-body .profile_b i{
        font-size:22px;
    }
    #speakers .card .card-body .card-title {
        font-weight: 600
    }
    #speakers .card .card-body .card-text {
        font-weight: 500;
        font-size:16px
    }

.speaker-item {
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}


    .speaker-item .speaker-image {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

        .speaker-item .speaker-image img {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all 300ms ease-in-out;
            -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
        }

    .speaker-item .tag {
        position: absolute;
        text-transform: uppercase;
        top: -20px;
        left: 12px;
        padding: 8px 16px;
        background-color: #ddd;
        color: #F3223C !important;
        border-radius: 4px;
        display: block;
        font-size: 12px;
        font-weight: 600;
        box-shadow: 0px 3px 16px rgba(35, 31, 32, 0.15);
        line-height: 18px
    }

        .speaker-item .tag a {
            color: #F3223C !important;
        }

            .speaker-item .tag a:hover {
                font-weight: 700 !important
            }

    .speaker-item .flag {
        position: absolute;
        top: -170px;
        left: 12px;
        display: block;
    }

        .speaker-item .flag img {
            max-width: 30px
        }

    .speaker-item .descr {
        padding: 30px 15px;
        color: #212121;
        position: relative;
    }

        .speaker-item .descr h3 {
            line-height: 26px;
            margin-bottom: 15px;
        }

        .speaker-item .descr h3 {
            font-weight: 500;
            text-align: left;
            font-size: 18px;
            color: #212121;
            -webkit-transition: all 300ms ease-in-out;
            -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
        }

            .speaker-item .descr h3 a:hover {
                color: #E91E63;
            }

        .speaker-item .descr .meta-tags {
            margin-bottom: 10px;
        }

            .speaker-item .descr .meta-tags span {
                color: #555;
                margin-right: 8px;
                font-size: 14px
            }



    .speaker-item:hover {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
       
    }

        .speaker-item:hover .speaker-image img {
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -o-transform: scale(1.1);
            transform: scale(1.1);
        }
.border-right {
    border-right: 1px solid #fff;
 
}

#submissions, #speakers {
    background: #0d2a51;
    
    overflow: hidden;
    position: relative;

}

    #submissions .card {
        padding: 10px;
        background: rgba(255,255,255,.1);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.19);
    }
        #submissions .card .card-body p {
            font-size: 17px
        }
#submissions .card .card-body .fee {
    font-size:16px
}

    #submissions ul li {
        font-size: 17px
    }

    #submissions .register-form {
        width: 100%;
        border-top: 3px solid #f3223c;
        border-bottom: 3px solid #f3223c;
        padding: 32px;
        background: #111;
        box-shadow: 0 0 24px 0 rgb(255 255 255 / .32);
        color: #fff
    }

        #submissions .register-form .form-group {
            padding-bottom: 8px
        }

        #submissions .register-form .validate {
            color: #f3223c;
            margin: 0 0 15px 0;
            font-weight: 400;
            font-size: 13px
        }

        #submissions .register-form .form-group label {
            font-size: 14px;
            padding-bottom: 10px
        }

        #submissions .register-form .error-message {
            display: none;
            color: #fff;
            background: #f3223c;
            text-align: left;
            padding: 15px;
            font-weight: 600
        }

            #submissions .register-form .error-message br + br {
                margin-top: 25px
            }

.symposium_session {
    background: #a74c4c;
    background: linear-gradient(180deg,rgba(167, 76, 76, 1) 0%, rgba(167, 76, 76, .5) 50%, rgba(167, 76, 76, 1) 100%), url("../../images/AUD-dji_0853-pano1.jpg");
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    background-attachment: fixed;
}
    .symposium_session h4 {
        font-weight: 300;
        color: #333;
        font-size:20px
    }
    .symposium_session h4:after {
        content: '';
        display: block;
  
        width: 30px;
        height: 4px;
        background: #F3223C;
        margin-top: 2px;
     
    }
    .symposium_session .card {
        background: rgba(255,255,255,.85);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .symposium_session .card-title {
        font-weight: 700;
        color:#333;
        line-height:30px
    }

    .symposium_session .card-text {
        font-size:16px;
        line-height:30px;
        color:#454545
    }


.hide {
    display: none
}


.sponsors-logo {
    text-align: center;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
    display: inline-block;
    border: 1px solid #ddd;
    background: #fff;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.organizers {
    padding-bottom: 20px;
    background:#f0f0f0;
}

    .organizers .row {
        margin-bottom: 60px
    }

    .organizers .team-img {
        width: 180px;
        border-radius: 50%;
        /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
        margin: 0 auto;
        float: left;
    }
    .organizers h2 {
        font-size: 1.7rem;
        font-weight:600
    
    }
    .organizers h3 {
        font-size: 21px;
        font-weight: 600;
        margin: 10px 0 5px 0;
        
    }

    .organizers h4 {
        font-size: 16px;
  
        margin: 0 0 15px 0;
    }

    .organizers .icon-box {
        padding: 30px;
        position: relative;
        overflow: hidden;
        margin: 0 0 40px 0;
        background: #fff;
        box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
        transition: all 0.3s ease-in-out;
        text-align: center;
        border: 1px solid #fff;
    }

    .organizers .icon {
        margin: 0 auto 20px auto;
        padding-top: 17px;
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        width: 72px;
        height: 72px;
    }

        .organizers .icon i {
            font-size: 36px;
            line-height: 1;
        }

    .organizers .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }

        .organizers .title a {
            color: #111;
        }

    .organizers .description {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 0;
    }

    .organizers .icon-box-pink .icon {
        background: #fceef3;
    }

        .organizers .icon-box-pink .icon i {
            color: #ff689b;
        }

    .organizers .icon-box-pink:hover {
        border-color: #ff689b;
    }

    .organizers .icon-box-cyan .icon {
        background: #e6fdfc;
    }

        .organizers .icon-box-cyan .icon i {
            color: #3fcdc7;
        }

    .organizers .icon-box-cyan:hover {
        border-color: #3fcdc7;
    }

    .organizers .icon-box-green .icon {
        background: #eafde7;
    }

        .organizers .icon-box-green .icon i {
            color: #41cf2e;
        }

    .organizers .icon-box-green:hover {
        border-color: #41cf2e;
    }

    .organizers .icon-box-blue .icon {
        background: #e1eeff;
    }

        .organizers .icon-box-blue .icon i {
            color: #2282ff;
        }

    .organizers .icon-box-blue:hover {
        border-color: #2282ff;
    }

@media (max-width:1440px) {
    #maincontent h1 {
        font-size: 65px;
        line-height: 65px;
        max-width: 850px;
    }
    #maincontent .subtitle {
        font-size: 43px !important;
        
    }
    #maincontent .subtitle2 {
        font-size: 28px;
    }

    #maincontent .card .card-body p {
        font-size: 22px;
        
    }
    #maincontent .card .card-body .card-title {
        font-size: 17px;
    }
   
}

@media (max-width:1367px) {
    #maincontent h1 {
        font-size: 52px;
        line-height: 47px
    }

    .time-entry {
        min-width: 80px;
        height: 70px;
        font-size: 10px;
        line-height: 16px
    }

        .time-entry span {
            font-size: 28px;
            line-height: 22px
        }

    .detail-box {
        min-height: 255px !important
    }
}

@media (max-width:1024px) {
    #header {
        box-shadow: 0px 2px 10px -10px black;
    }
    section {
        padding: 30px
    }

    #carouselHeader {
        padding: 0;
        padding-top:10px
        
    }
        #carouselHeader .carousel-inner .carousel-item p {
            font-size: 14px;
           
        }

       

    #maincontent {
        height: 75vh
    }

        #maincontent h1 {
            font-size: 75px;
            line-height: 75px
        }

        #maincontent .subtitle span {
            font-size: 18px !important
        }

        #maincontent .subtitle1 {
            font-size: 30px !important;
            font-weight:600 !important
        }
        #maincontent .subtitle2 {
            font-size: 25px !important
        }
        #maincontent .card-body p i {
            font-size: 20px !important
        }
        #maincontent .card-title {
            font-size: 18px !important
        }

    .feature-area.fa-negative {
        margin-top: -120px !important
    }

    .detail-box {
        min-height: 300px !important;
        padding: 20px 30px !important
    }

    .speaker-item .flag {
        top: -135px
    }

        .speaker-item .flag img {
            max-width: 24px
        }

    .time-entry {
        min-width: 60px;
        height: 60px;
        font-size: 8px;
        line-height: 16px
    }

        .time-entry span {
            font-size: 24px;
            line-height: 22px
        }
}

@media (max-width:834px) {
    #header {
        height: 115px
    }

    #header {
        border-bottom: 2px solid #fff;
        padding-top: 2px !important
    }

        /*#header.header-transparent {
            background: none !important
        }*/

        #header.header-scrolled {
            background: #fff !important;
            height: 90px;
            color: #000 !important;
        }

    .detail-box {
        min-height: 230px !important;
        padding: 30px 40px !important
    }

    #maincontent {
        height: 100vh;
        color: #fff
    }

        #maincontent h1 {
            font-size: 60px;
            line-height: 60px
        }

        #maincontent h2 span, #maincontent p {
            font-size: 20px !important;
            padding: 0 !important
        }

        #maincontent .subtitle {
            font-size: 20px !important
        }

        #maincontent .eventcounter .subtitle {
            color: #04488e;
            padding-top: 20px !important
        }

        #maincontent h2 span {
            background-color: #04488e;
            border-radius: 2px;
            padding: 5px 4px !important;
            font-size: 22px !important
        }

    .feature-area.fa-negative {
        margin-top: -110px !important
    }

    .speaker-item .flag {
        top: -145px
    }

        .speaker-item .flag img {
            max-width: 24px
        }

    #about .container {
        border-radius: 0
    }

        #about .container .row {
            padding: 25px 5px
        }

    #about .img-fluid {
        max-width: 300px !important
    }

    #schedule .circleborder {
        max-width: 70px
    }

    .schedules #pills-tabContent {
        padding: 25px
    }
}

@media (max-width:575px) {
    #maincontent {
        height: 100vh
    }

        #maincontent h1 {
            font-size: 35px;
            line-height: 35px
        }

        #maincontent .eventcounter {
            width: 100% !important
        }

        #maincontent .subtitle2 {
            font-size: 20px !important
        }

        #maincontent .card-body p i {
            font-size: 17px !important
        }

        #maincontent .card-title {
            font-size: 14px !important
        }

    #about, #schedule, #Register, #footer {
        padding: 25px !important
    }

    .about-left {
        margin-top: -20px;
        margin-right: 0
    }

    .about-right {
        margin-top: 30px !important
    }

        .about-right p {
            font-size: 17px !important;
            line-height: 30px;
            text-align: justify
        }

    #schedule .tab-content {
        padding: 20px
    }

    #schedule .agendalist .align-content-center {
        display: none !important
    }

    .feature-area.fa-negative {
        display: none
    }

    .speaker-item .flag {
        top: -200px
    }

    .empty {
        display: none
    }

    .speakerpad {
        padding-top: 10px;
        padding-bottom: 5px
    }
}

@media (max-width:430px) {
    #header {
        margin-top: 0px 
    }


    #carouselHeader {
top:115px; position:absolute; width:100%; z-index:999;
padding:10px 2px 0 2px;
    }

    #maincontent {
        height: 100vh
    }

        #maincontent h1 {
            font-size: 35px;
            line-height: 35px
        }

        #maincontent .eventcounter {
            width: 100% !important
        }

    #about, #schedule, #Register, #footer {
        padding: 25px !important
    }

    .about-left {
        margin-top: -20px;
        margin-right: 0
    }

    .about-right {
        margin-top: 30px !important
    }

        .about-right p {
            font-size: 17px !important;
            line-height: 30px;
            text-align: justify
        }

    #schedule .tab-content {
        padding: 20px
    }

    #schedule .agendalist .align-content-center {
        display: none !important
    }

    .feature-area.fa-negative {
        display: none
    }

    .speaker-item .flag {
        top: -200px
    }

    .empty {
        display: none
    }

    .speakerpad {
        padding-top: 10px;
        padding-bottom: 5px
    }
}

@media (max-width:414px) {
    #carouselHeader .carousel-inner .carousel-item p {
        font-size: 12px !important;
        
    }
    #maincontent {
        padding-top: 60px
    }

        #maincontent h1 {
            font-size: 33px;
            line-height: 30px
        }

    .time-entry {
        display: inline-block;
        min-width: 60px;
        margin: 5px;
        height: 50px;
        padding: 5px;
        font-size: 8px;
        letter-spacing: 1px;
        line-height: 18px
    }

        .time-entry span {
            font-size: 18px;
            line-height: 18px;
            margin-bottom: 3px
        }

        .time-entry:first-child {
            border-left: none
        }

    .time-countdown {
        margin: 5px 0 10px 0
    }
}

@media (max-width:390px) {
    section {
        padding: 20px
    }

    #maincontent h1 {
        font-size: 30px;
        line-height: 30px
    }

    #maincontent .subtitle {
        font-size: 16px !important
    }

    #maincontent .subtitle1 {
        padding-top: 70px
    }

    #about .about-right p {
        text-align: left;
        font-size: 12px;
        font-weight: 400
    }
}

@media (max-width:375px) {
    #maincontent h1 {
        font-size: 28px;
        line-height: 28px
    }

    .speaker-item .flag {
        top: -190px
    }
}
