@import 'assets/css/bootstrap-4.5.3.min.css?v=4352dfb';
@import 'assets/css/fontawesome-6.4.2.min.css?v=4352dfb';
@import 'assets/css/helper-4.0.0.min.css?v=4352dfb';

:root {
	color-scheme: light only;
    --primary: #0a6ab1;
    --primary-dark: #034f85;
    --secondary: #16a1ad;
    --secondary-dark: #148692;
    --white: #FFFFFF;
    --dark: #0e3456;
    --darkgray: #0b152b;
    --height-header: 130px;
}

/* =====================
   HEADER
   ===================== */
header {
    min-height: var(--height-header);
}
.headerbg {
	z-index: 1000;
	position: relative;
    transition: .8s;
	padding: 25px 0;
}
.headerbg.fixed-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
	background-color: color-mix(in srgb, var(--dark) 80%, transparent);
    animation: slideDownHeader 0.4s ease-out forwards;
}
.headerbg.fixed-header .wow {
	opacity: 1 !important;
	visibility: visible !important;
}
@keyframes slideDownHeader {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}
.headerbg .navbar-brand img {
	height: 80px;
	transition: .6s;
}
.headerbg.fixed-header .navbar-brand img {
    height: 35px;
}
.headerbg .navbar-nav > .nav-item + .nav-item {
	margin-left: 30px;
}
.headerbg .navbar .navbar-nav .nav-item .nav-link {
	font-size: 18px;
    font-weight: 500;
	padding: 0;
	position: relative;
	transition: all .3s ease-in;
	color: var(--darkgray);
}
.headerbg.fixed-header .navbar .navbar-nav .nav-item .nav-link {
	font-size: 17px;
}
.headerbg .navbar .navbar-nav .nav-item .nav-link:hover,
.headerbg .navbar .navbar-nav .nav-item.active .nav-link,
.headerbg .navbar .navbar-nav .nav-item .nav-link.active {
	color: var(--primary);
}
.headerbg .navbar .navbar-nav .nav-item .nav-link::before {
	position: absolute;
	content: '';
	width: 0;
	height: 2px;
	background: var(--primary);
	bottom: 0px;
	left: 50%;
	border-radius: 50px;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
.headerbg .navbar .navbar-nav .nav-item.active .nav-link::before,
.headerbg .navbar .navbar-nav .nav-item .nav-link:hover::before {
	left: 0;
	width: 100%;
	opacity: 1;
	visibility: visible;
}

/* Link hover effect (roll text) */
.link-effect {
    height: 40px;
    line-height: 40px;
}
.link-effect span {
    transition: transform .4s cubic-bezier(.76,0,.24,1);
}
a:hover .link-effect span {
    transform: translateY(-100%);
}

/* =====================
   MOBILE SIDENAV
   ===================== */
.iconbars {
    position: relative;
    padding-top: 11px;
    border-radius: 0 50px 50px 0;
    width: 45px;
    height: 40px;
}
.iconbars span {
	display: block;
	height: 3px;
	border-radius: 50px;
	background-color: #fff;
	transition: .4s;
    margin-bottom: 4px;
}
.iconbars span:nth-child(1) { width: 12px; }
.iconbars span:nth-child(2) { width: 22px; }
.iconbars span:nth-child(3) { width: 18px; }

.sidenav {
	z-index: 1001;
	transition: 0.3s;
	top: 0;
	left: -350px;
	width: 350px;
	overflow-y: scroll;
	overflow-x: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.sidenav::-webkit-scrollbar { display: none; }
.sidenav.active { left: 0; }

.sidenav .navbar-nav > .nav-item .nav-link,
.sidenav a {
	color: #fff;
	font-weight: 500;
}
.sidenav .navbar-nav > .nav-item .nav-link:hover,
.sidenav a:hover:not(.btn) {
	color: var(--primary);
}
.sidenav .navbar-nav .nav-item .nav-link {
	font-size: 18px;
	padding: 15px 30px;
	display: block;
}
.sidenav .navbar-nav .nav-item.active .nav-link {
	background-color: var(--primary);
    color: #fff;
}
.sidenav .navbar-nav .nav-item.active .nav-link:hover {
    color: #fff;
}
.sidenav .navbar-nav .nav-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sidenav .border-bottom {
	border-color: #ffffff20 !important;
}
.sidenav .navbar-nav .nav-item .nav-link.dropdown-toggle {
    padding-right: 60px;
}
.sidenav .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    border: 0;
    position: absolute;
    right: 20px;
    top: auto;
}
.sidenav .navbar-nav .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: .1s;
    transform: translateY(-10px) !important;
    position: relative !important;
    background-color: var(--primary);
    margin: 0;
    padding: 0;
    border-radius: 0;
    width: 100%;
}
.sidenav .navbar-nav .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    height: 100%;
    transform: translateY(0) !important;
}
.sidenav .navbar-nav .dropdown-menu .dropdown-item {
    padding: 10px 30px;
}
.sidenav .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #2b91cd;
    color: #fff;
}
#sidebody {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
    backdrop-filter: blur(5px);
	transition: .45s;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
    background-color: #000000b0;
}
#sidebody.active {
	z-index: 1000;
	opacity: 1;
	visibility: visible;
}
body.stop {
	overflow: hidden !important;
}

/* =====================
   PAGE LOADER
   ===================== */
.loaderlodging {
	height: 100vh;
	z-index: 10000;
	transition: .8s;
}
.loaderlodging__body {
	overflow: hidden;
}
.loaderlodging__body.afterloading {
	overflow: inherit;
}
.loaderlodging.remove {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #cecece;
    border-bottom-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =====================
   HERO / SLIDER
   ===================== */
.slidertopheader {
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.slidertopheader::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 40%, #ffffff 100%);
}
.slidertopheader::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(to left, transparent 40%, #ffffff 100%);
}
.slidertopheader > * { z-index: 3; }

.slidertopheader__text {
    bottom: 10px;
    right: 5%;
    text-shadow: 1px 1px 0px var(--white);
    letter-spacing: 3px;
}
.slidertopheader__text2 {
    top: 80px;
    left: 55%;
    text-shadow: 1px 1px 0px var(--white);
    letter-spacing: 3px;
}

/* =====================
   COUNTDOWN CLOCK
   ===================== */
.boxnew,
.timeclock__custom_col div {
    width: 100%;
    border-radius: 14px;
    padding: 15px 15px 15px 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(5px);
    border: 1px solid color-mix(in srgb, var(--secondary) 5%, transparent);
    box-shadow: 0 0 30px color-mix(in srgb, var(--secondary) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.boxnew::before,
.timeclock__custom_col div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(220deg, color-mix(in srgb, var(--secondary) 25%, transparent), transparent 40%);
}
.timeclock__custom #clock {
    margin-right: -6px;
    margin-left: -6px;
}
.timeclock__custom_col {
    padding-right: 6px;
    padding-left: 6px;
    margin-bottom: 8px;
    max-width: 100%;
    position: relative;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.timeclock__custom #clock p {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
    color: var(--dark);
}
.timeclock__custom #clock span {
    left: 10px;
    top: auto;
    position: absolute;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: #3c3c3c33;
    writing-mode: sideways-lr;
    text-transform: uppercase;
}

/* =====================
   ABOUT SECTION
   ===================== */
.singlecontentbg h1,
.singlecontentbg h2,
.singlecontentbg h3,
.singlecontentbg h4,
.singlecontentbg h5,
.singlecontentbg h6 {
	color: var(--secondary);
	margin-bottom: 15px;
}
.singlecontentbg p {
    line-height: 1.5;
}
.singlecontentbg p,
.singlecontentbg ul,
.singlecontentbg ol {
	font-size: 20px;
    line-height: 1.5;
}
.singlecontentbg strong {
    font-weight: 700;
}
.singlecontentbg.text-light2 strong {
    color: #20252a;
}
.singlecontentbg *:last-child {
    margin-bottom: 0;
}

.boxabout,
.boxabout img {
    border-radius: 40px 0 0 40px;
}
.boxabout p {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    letter-spacing: 3px;
    background: linear-gradient(40deg, var(--white) 30%, transparent 100%);
    border-radius: 40px 0 0 40px;
}
.bg-gra-top-2 {
    background: linear-gradient(150deg, color-mix(in srgb, var(--secondary) 15%, transparent) 0%, transparent 30%);
}

/* =====================
   TOPICS / WHY CARDS
   ===================== */
.boxtopics svg {
    flex: 0 0 70px;
}
.boxtopics p {
    flex: 0 0 calc(100% - 70px);
}
.boxtopics:hover,
.boxhover:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px color-mix(in srgb, var(--secondary) 25%, transparent);
}

/* =====================
   BUTTONS & BADGES
   ===================== */
.btn {
    font-weight: 600;
}
.btn:not(.iconbars) {
    border-radius: 13px;
}
.btn-primary {
    background: linear-gradient(130deg, var(--primary) 30%, var(--secondary) 90%);
    box-shadow: 0 0 30px 0 color-mix(in srgb, var(--secondary) 30%, transparent);
    border: 0;
    transition: .3s ease;
}
.btn-primary:hover,
.btn-primary:active {
    filter: brightness(0.9);
    box-shadow: 0 0 40px 0 color-mix(in srgb, var(--secondary) 50%, transparent);
}
.btn-outline-secondary:hover {
    box-shadow: 0 0 40px 0 color-mix(in srgb, var(--secondary) 50%, transparent);
}

/* =====================
   UTILITIES
   ===================== */
.text-gra {
    background: linear-gradient(280deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-white-70  { color: #ffffffb1; }
.text-white-20  { color: rgba(255, 255, 255, 0.2); }
.text-light-2   { color: #a3cfeb; }
.text-primary-2 { color: #219be2; }

.bg-gra {
    background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
}
.bg-white-10  { background-color: rgba(255, 255, 255, 0.1) !important; }
.bg-white-15  { background-color: rgba(255, 255, 255, 0.15) !important; }

.border-white-10  { border-color: rgba(255,255,255,0.1) !important; }
.border-light-25  { border-color: rgba(0, 0, 0, 0.2) !important; }
.border-bottom:not(.border-primary),
.border-top:not(.border-primary) { border-color: rgba(0, 0, 0, 0.1) !important; }

.boxshadow      { box-shadow: 0 0 30px color-mix(in srgb, var(--secondary) 15%, transparent); }
.boxshadow-dark { box-shadow: 0 0 30px 2px color-mix(in srgb, var(--dark) 5%, transparent); }
.shadow-sm      { box-shadow: 0 0 25px 0 rgba(0,0,0,.05) !important; }

.textline        { width: 60px; height: 5px; }
.textline__small { width: 35px; }

.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }
.letter-spacing-3 { letter-spacing: 3px; }
.maxw-800         { max-width: 800px; }
.line-9           { line-height: 18px; }

.footerbottom .text-white-70:hover { color: #fff; }

/* =====================
   FOOTER
   ===================== */
.footerbottom {
    z-index: 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1199px) {
    .slidertopheader__text2 { display: none; }
    .slidertopheader__text  { display: none; }
}

@media (max-width: 992px) {
    header { min-height: 80px; }
    .headerbg { padding: 12px 0; }
    .headerbg .navbar-brand img { height: 55px; }
    .headerbg .navbar .navbar-nav .nav-item .nav-link { font-size: 16px; }

    /* Hero: hide bg image on mobile, keep content readable */
    .slidertopheader {
        background-image: none !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .slidertopheader::before,
    .slidertopheader::after { display: none; }

    /* About image — remove big border-radius on small screens */
    .boxabout,
    .boxabout img { border-radius: 16px; }
    .boxabout p   { border-radius: 16px; }

    /* Sidenav bar colour on white bg */
    .iconbars span { background-color: var(--primary); }

    /* Sponsors + Program dark card: stack content */
    .bg-dark.d-flex { flex-direction: column; align-items: flex-start !important; gap: 16px; }
    .bg-dark.d-flex h2 { margin-right: 0 !important; font-size: 20px; }
}

@media (max-width: 768px) {
    .timeclock__custom_col { padding-right: 3px; padding-left: 3px; }
    .timeclock__custom_col div { padding: 15px; }
    .timeclock__custom #clock p { font-size: 26px; }
    .timeclock__custom #clock span { font-size: 11px; }

    /* Hero row: stack properly */
    .slidertopheader .row { flex-direction: column; }
    .slidertopheader .col-lg-7 { max-width: 100%; flex: 0 0 100%; }

    /* Footer stacking */
    .footerbottom .border-right-lg,
    .footerbottom .border-left-lg { border: 0 !important; }
}

@media (max-width: 576px) {
    .slidertopheader { padding-right: 15px; padding-left: 15px; }
    h1.font-26 { font-size: 24px; }

    /* Topics grid: 1 col */
    .boxtopics { flex-direction: column; text-align: center; }
    .boxtopics svg { flex: none; margin-bottom: 12px; }
    .boxtopics p { flex: none; margin-left: 0 !important; }
}

@media (max-width: 390px) {
    header { min-height: 70px; }
    .headerbg { padding: 8px 0; }
    .headerbg .navbar-brand img { height: 45px; }
}

/* =====================
   BREAKPOINT UTILITIES
   ===================== */
@media (min-width: 992px) {
    .border-right-lg { border-right: 1px solid rgba(255,255,255,0.1) !important; }
    .border-left-lg  { border-left:  1px solid rgba(255,255,255,0.1) !important; }
}
@media (min-width: 1190px) {
    .container { max-width: 1130px; }
}
@media (min-width: 1340px) {
    .container { max-width: 1280px; }
}
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
}
/* =====================================================================
   INNER PAGES  (added on top of the designer's delivery — Eventat)
   The zip shipped index.html only; these rules style the shared page
   banner, the agenda tables and the notice box used by the sub-pages.
   ===================================================================== */

/* --- Inner-page banner: the home hero, without the countdown --------- */
.slidertopheader.pagehead {
	min-height: 320px;
}
.slidertopheader.pagehead h1 {
	max-width: 100%;
}

/* --- Program agenda tables ------------------------------------------ */
.agenda {
	width: 100%;
	margin-bottom: 0;
}
.agenda td {
	padding: 14px 16px;
	font-size: 16px;
	line-height: 1.4;
	vertical-align: top;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.agenda tr:first-child td {
	border-top: 0;
}
.agenda tr:hover td {
	background-color: color-mix(in srgb, var(--secondary) 6%, transparent);
}
.agenda__time {
	white-space: nowrap;
	width: 1%;
	letter-spacing: .3px;
}

/* --- Notice / disclaimer box ---------------------------------------- */
.alert-note {
	border-left: 5px solid var(--secondary);
}

/* --- The designer's 6 nav labels became 8 real pages ------------------
   The navbar only collapses to the hamburger below 1200px, so between
   1200px and 1439px the extra items have to be made to fit: the base
   30px gap leaves exactly 0px of slack at 1440px and overflows below it. */
@media (min-width: 1440px) {
	.headerbg .navbar-nav > .nav-item + .nav-item { margin-left: 26px; }
}
@media (min-width: 1340px) and (max-width: 1439px) {
	.headerbg .navbar-nav > .nav-item + .nav-item { margin-left: 20px; }
}
@media (min-width: 1200px) and (max-width: 1339px) {
	.headerbg .navbar-brand { margin-right: 20px !important; }
	.headerbg .navbar-brand img { height: 68px; }
	.headerbg .navbar-nav > .nav-item + .nav-item { margin-left: 20px; }
	.headerbg .navbar .navbar-nav .nav-item .nav-link { font-size: 16px; }
}
/* guaranteed breathing room between the last link and the CTA */
@media (min-width: 1200px) {
	.headerbg .navbar .btn-primary { margin-left: 16px; }
}

@media (max-width: 768px) {
	.slidertopheader.pagehead { min-height: 0; }
	.agenda td { padding: 12px 10px; font-size: 15px; }
}
