/* Fonts */
:root {
    --default-font: "Roboto", serif;
    --heading-font: "Roboto", serif;
    --nav-font: "Roboto", serif;
}
:root {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #111111;
    --accent-color: #f1592a;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}
:root {
    --nav-color: #f1592a;
    --nav-hover-color: #f1592a;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #444444;
    --nav-dropdown-hover-color: #1bbd36;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #eee;
}
::-webkit-scrollbar {
    width: 5px;
    background-color: #c1c1c1;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #f1592a;
}
.light-background {
    --background-color: #f7f7f7;
    --surface-color: #ffffff;
}
.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}
.accent-background {
    --background-color: #1bbd36;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #2ae149;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}
.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: 100px;
    margin-right: 8px;
    transition: all 0.5s cubic-bezier(0, 0, 0.58, 1);
}
.header .logo h1 {
    font-size: 26px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heading-color);
}
.header .logo span {
    color: var(--accent-color);
    font-size: 26px;
    font-weight: 700;
}
.header .header-social-links {
    padding: 0 0 0 15px;
}
.header .header-social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding-left: 10px;
    display: inline-block;
    transition: 0.3s;
    font-size: 16px;
}
.header .header-social-links a:hover {
    color: var(--accent-color);
}
.header .header-social-links a i {
    line-height: 0px;
}
.scrolled .header .logo img {
    max-height: 70px;
}

.events-list {
    list-style-type: none;
    padding-left: 0;
}
.events-list li {
    border-bottom: 1px solid #44444440;
    padding: 15px 0px;
}

.events-list li:hover{
    background-color: #FFFFFF;
}

/* .events-list li:first-child:hover {
  background-color: transparent; 
} */

.events-list li h4 {
    font-size: 32px;
    margin: 0;
    text-align: center;
}
.events-list li span {
    font-size: 16px;
    letter-spacing: 1px;
    display: block;
    font-weight: 400;
    margin-top: -7px; /*line-height:26px;*/
}
.events-list li h5 {
    font-size: 15px;
    color: #000;
    margin: 5px 0 0 0;
    line-height: 25px;
}
.events-list li h5 a {
    text-decoration: none;
}
.events-list li h5 span.break {
    color: #000;
    background-color: #fff;
    text-align: center;
}
.events-list li h6 {
    margin: 5px 0 0 0;
    font-size: 13px;
    font-style: italic;
}
.events-list .btn {
    margin-top: 10px;
}
.events-list .timedate {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.events-list .timedate a {
    color: #616161;
    text-decoration: none;
}
.events-list .timedate a span {
    color: #fff;
    position: relative;
    top: 3px; /*background: #f1592a;*/
    border-radius: 12px;
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }
    .header .logo h1 {
        font-size: 24px;
    }
    .header .header-social-links {
        order: 2;
        padding: 0 15px 0 0;
    }
    .header .navmenu {
        order: 3;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 13px;
        font-family: var(--nav-font);
        text-transform: uppercase;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu li:last-child a {
        padding-right: 0;
    }
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative;
}
.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}
.hero .carousel {
    width: 100%;
    min-height: calc(100vh - 120px);
    padding: 0;
    margin: 0;
    position: relative;
}

@media (max-height: 500px),
(max-width: 1200px) {
    .hero .carousel {
        min-height: calc(100vh - 550px);
    }
}

.hero .carousel-item > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .container {
    position: relative;
    z-index: 3;
}
.hero .banner-content {
    width: 500px;
}
.conference-img img {
    width: 100%;
}

@media (max-width: 1200px) {
    .hero .container {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.hero h2 {
    margin-bottom: 20px;
    font-size: 46px;
    font-weight: 700;
}
.hero h3 {
    font-weight: 700;
}
.hero h3 span {
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero .btn-get-started {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 13px 50px;
    transition: 0.5s;
    border-radius: 0;
    color: #fff;
    background-color: #f1592a;
    border: 2px solid #f1592a;
}
.hero .btn-get-started:hover {
    background: #c34721;
    color: var(--contrast-color);
    border-color: #c34721;
}

.btn-flyer{
    border: 1px solid #F1592A !important;
    background: #fff !important;
    color: #F1592A !important;
    min-width: 270px
}
.btn-youth-flyer{
    border: 1px solid #F1592A !important;
    background: #fff !important;
    color: #F1592A !important;
    font-size: 16px;
    padding: 13px 50px !important;
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}
.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .carousel-control-prev,
.hero .carousel-control-next {
    transition: 0.3s;
    opacity: 0.5;
}
.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}
.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}
.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
    background: var(--accent-color);
    color: var(--default-color);
}
.hero .carousel-indicators li {
    cursor: pointer;
    background: var(--default-color);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}
.hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--accent-color);
}
.info {
    background-color: #f7f7f7;
    padding: 40px;
    overflow: hidden;
}
.school-count h3 {
    font-weight: 700;
}
.php-email-form {
    width: 100%;
}
.php-email-form .form-group {
    padding-bottom: 8px;
}
.php-email-form input[type=text], .php-email-form input[type=email] {
    height: 48px;
    padding: 10px 15px;
}
.php-email-form .form-select {
    height: 48px;
    padding: 10px 15px;
}
.php-email-form input[type=text], .php-email-form input[type=email], .php-email-form textarea {
    color: var(--default-color);
    background-color: transparent;
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    border-color: #444444;
}
.php-email-form .form-select {
    color: var(--default-color);
    background-color: transparent;
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    border-color: #444444;
}
.light-background {
    --background-color: #f7f7f7;
    --surface-color: #ffffff;
}
.service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
}
button[type=submit] {
    background: #f1592a;
    color: var(--contrast-color);
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 0px;
}
button[type=submit]:hover {
    background: #c34721;
    color: var(--contrast-color);
    border-color: #c34721;
}
.info-item i {
    font-size: 24px;
    color: var(--accent-color);
    transition: all 0.3sease-in-out;
    margin-right: 15px;
}
.info h3, .register-title {
    font-weight: 600;
    font-size: 24px;
}
.info-item h4 {
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}
.info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
}
.info-item+.info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #44444440;
}
footer {
    background-color: #283b8f;
}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
    vertical-align: unset;
}
.error {
    color: red;
    font-size: 12px;
}
.hotel-registration-main ul {
    padding-left: 18px;
}
.hotel-registration-main .btn-get-started {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 13px 50px;
    transition: 0.5s;
    border-radius: 0;
    color: #fff;
    background-color: #f1592a;
    border: 2px solid #f1592a;
}
.hotel-registration-main .btn-get-started:hover {
    background: #c34721;
    color: var(--contrast-color);
    border-color: #c34721;
}
#registrationTabs.nav-tabs .nav-link.active {
  background-color: #283891;
  color: #fff;
  border-color: #283891;
  border-radius: 0px;
}
#registrationTabs.nav-tabs .nav-link {
    color: #000;
    font-size: 18px;
}
#registrationTabs.nav-tabs {
    border-bottom: 1px solid #44444440;

}
#registrationTabs.nav-tabs .nav-link:focus, #registrationTabs.nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color:#283891;
  border-radius: 0px;
}

#agendaTabs.nav-tabs .nav-link.active {
  background-color: #283891;
  color: #fff;
  border-color: #283891;
  border-radius: 0px;
padding: 15px 20px
}
#agendaTabs.nav-tabs .nav-link.active h5{
   color: #fff;
}
#agendaTabs.nav-tabs .nav-link {
    color: #111111;
    padding: 15px 20px
}
#agendaTabs.nav-tabs {
    border-bottom: 1px solid #44444440;

}
#agendaTabs.nav-tabs .nav-link:focus, #agendaTabs.nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color:#283891;
  border-radius: 0px;
}
@keyframes btRotate {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}
.button.is-loading {
  cursor: no-drop;
}
.button__content {
  transition: opacity 0.2s ease-in-out;
}
.is-loading .button__content {
  opacity: 0;
}
.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff80;
  border-left-color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
  animation: btRotate 0.6s infinite linear;
}
.btn.js-submit-form.disabled, .btn.js-submit-form:disabled, fieldset:disabled .btn.js-submit-form {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: #c34721;
  border-color: #c34721;
  opacity: var(--bs-btn-disabled-opacity);
}


@media (max-width: 1199px) {
    .hero .carousel {
        min-height: calc(100vh - 120px);
    }
    .hero .banner-content {
        width: 100%;
    }
    .info {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .hero .banner-content {
        width: 100%;
    }
    .info {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .header .logo img {
        max-height: 70px;
    }
    .info {
        margin-bottom: 15px;
    }
    .hero .banner-content {
        margin-bottom: 50px;
        width: 100%;
        text-align: center;
    }
    .hero .carousel {
        min-height: calc(100vh - 0px);
    }
}