:root {
    --bs-primary: #fd0202;
    --primary: #fd0202;
    --primary-darker: #d30000;
    --secondary: #070623;
    --body-text-color: #070623;
    --body-font: "Inter", sans-serif;
    --header-font: "Inter", sans-serif;
    --body-font-weight: 400;
    --yellow: #f5ce67;
    --green: #006837;
    --light-green: #6ab12c;
    --green-text: #39b54a;
}

html,
body {
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: auto;
    height: 100%;
}

html {
    overflow: auto;
}

body {
    background-color: #FFF;
    color: var(--body-text-color);
    font-weight: var(--body-font-weight);
    font-family: var(--body-font);
    line-height: 1.8;
    /* overflow: auto;
    position: relative;
    height: 100%; */
}

body.modal-open {
    overflow: visible;
}

section {
    scroll-margin: 5rem;
}

.primary-text {
    color: var(--primary);
}

.bold-text {
    font-weight: 700;
}

.header-font {
    font-family: var(--header-font);
}

.text-link:visited,
.text-link:link {
    color: var(--primary-darker) !important;
}

.text-link:hover {
    color: var(--primary) !important;
}


.btn-rounded {
    border-radius: 2rem;
    padding: .5rem 2rem;
}

.btn-normal {
    padding: .75rem 3rem;
    border: 1px solid var(--primary-darker);
    background-color: var(--primary-darker);
    color: #FFF;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    transition: 0.3s all ease-in;
}

.btn-normal:hover {
    background-color: transparent;
    color: var(--primary-darker);
    border: 1px solid var(--primary-darker);
}

strong {
    font-weight: 700;
}

.dotted-line {
    margin: 0.5rem auto;
    border-bottom: 2px dotted var(--body-text-color);
}

.dotted-line.white {
    border-bottom: 2px dotted #FFF;
}

.dotted-line.grey {
    border-bottom: 2px dotted #8c8c8c;
}

.black-overlay {
    background-color: rgba(51, 51, 51, .6);
    content: " ";
    display: block;
    height: 100%;
    width: 100%;
}

.heading,
.heading2,
.heading3,
.heading4,
.heading5 {
    font-weight: 600;
    letter-spacing: 0.15rem;
}

.heading,
.heading2,
.heading3,
.heading4,
.heading5 {
    text-transform: uppercase;
}

.heading,
.heading2 {
    font-size: 2.5rem;
}

.heading2 {
    width: fit-content;
    color: var(--primary); /* red */
}

.heading span,
.heading2 span,
.heading3 span,
.heading4 span,
.heading5 span {
    color: var(--body-text-color); /* black */
    border-bottom: 2px solid var(--primary);
    /* width: fit-content; */
}

@media (max-width: 576px) {

    .heading,
    .heading2 {
        font-size: 2rem;
    }

    .heading2 span,
    .heading3 span,
    .heading4 span,
    .heading5 span {
        border-bottom: none;
        /* width: fit-content; */
    }
}

.heading:after,
.heading2:after,
.heading3:after,
.heading4:after,
.heading5:after {
    content: "";
    height: 1px;
    display: block;
    width: 100%;
    border-bottom: 2px solid #000;
}

.square-list {
    margin-top: .5rem;
    margin-left: 0rem;
    padding-left: 0.5rem;
}

.square-list li {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.square-list li:before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-left: 0;
    margin-right: 0.5rem;
    vertical-align: middle;
    /* margin-top: -6px; */
    background-color: var(--primary);
}
.text-center .custom-list,
.text-sm-center .custom-list,
.text-md-center .custom-list,
.text-lg-center .custom-list,
.text-xl-center .custom-list {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
}


/******** Navbar **********/

.navbar-wrap {
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}

.navbar-position {
    position: absolute;
}

.navbar {
    background-color: rgba(7, 6, 35, 0);
    transition: all .7s;
    padding-right: 1.5rem;
}

@media (max-width: 991px) {
    .navbar {
        padding-right: 0;
    }
}

.navbar.expanded,
.navbar.sticky {
    background-color: rgba(7, 6, 35, .8);
    backdrop-filter: blur(2px);
}

.navbar-brand {
    display: none;
    margin-left: 1rem;
    max-width: 148px;
}

.sticky .navbar-brand {
    display: block;
}

.nav-item {
    min-width: 7rem;
    text-align: center;
}

.nav-item .nav-link {
    color: #FFF;
}

@media (min-width: 576px) and (max-width: 1100px) {
    .nav-item {
        min-width: 5rem;
    }
}

.nav-item.has-dropdown > a {
    display: inline-block;
    padding-right: 0.5rem !important;
}

.nav-item.has-dropdown i {
    padding: 0 0.5rem;
    transform-origin: center;
    transition: all .5s;
}

.nav-item.has-dropdown:hover i {
    transform: rotate(180deg);
}

.navbar .nav-item.has-dropdown i {
    color: #FFF;
}

.navbar.sticky .nav-item.has-dropdown i {
    padding: 0rem .25rem;
}

.navbar.sticky .nav-item.has-dropdown i {
    color: #FFF;
}

.navbar .nav-item.has-dropdown:hover i,
.navbar .nav-item.has-dropdown i:hover {
    color: var(--primary);
}
.custom-navbar {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
}

.sticky .custom-navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.custom-navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.sticky .custom-navbar ul {
    justify-content: end;
}

@media (max-width: 992px) {
    .sticky .custom-navbar {
        padding-bottom: 0;
    }
}

.custom-navbar a {
    transition: all .7s;
    /* padding-left: 2rem !important;
    padding-right: 2rem !important; */
    padding: 0.5rem 2rem !important;
    font-size: 16px;
    color: var(--body-text-color);
}

.sticky .custom-navbar a {
    font-size: 14px;
    color: #FFF;
}

@media (min-width: 577px) and (max-width: 1200px) {
    .custom-navbar a {
        font-size: 14px;
        padding-left: .75rem !important;
        padding-right: .75rem !important;
    }
}

/* Dropdown menu */
.custom-dropdown {
    position: absolute;
    display: none;
    padding-top: 16px;
    margin-top: 8px;
    min-width: 180px;
}

.custom-dropdown a {
    display: block;
    text-align: start;
    padding: 1rem 2rem 1rem !important;
    text-decoration: none;
    color: #FFF;
    transition: all .3s;
}

.custom-dropdown a:hover {
    color: var(--primary);
}

.custom-dropdown li:not(:last-child) a {
    border-bottom: 1px solid #666;
}
.nav-item.has-dropdown .custom-dropdown {
    display: block;
    border: none;
    transition: all .3s;
    margin: .5rem 0 0;
    padding: 0 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    background-color: var(--secondary);
    transform: translateY(20px);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.nav-item.has-dropdown:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}
.home .nav-item.has-dropdown:hover .custom-dropdown {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .navbar-brand {
        /* margin-right:auto; */
        display: block;
        opacity: 0;
        max-width: 124px;
        transition: all .7s;
    }

    .expanded .navbar-brand,
    .sticky .navbar-brand {
        opacity: 1;
    }

    .sticky .custom-navbar a,
    .expanded .custom-navbar a {
        font-size: 16px;
        padding: 24px 0;
    }

    .navbar-collapse {
        background-color: var(--body-text-color);
    }

    .custom-navbar {
        padding-top: 1rem;
        padding-bottom: 0;
        height: 100%;
    }

    #navbar-wrap.menu-opened,
    .navbar.expanded {
        height: 100%;
        overflow-y: auto;
    }

    .navbar {
        transition: all .25s;
        justify-content: start;
        align-items: start;
        overflow-y: auto;
    }

    .nav-item.has-dropdown {
        padding-bottom: 24px;
        padding-top: 16px;
    }

    .nav-item.has-dropdown>a {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .nav-item.has-dropdown.expand>a {
        color: var(--primary);
    }

    .nav-item.has-dropdown i {
        display: none;
    }

}

.custom-navbar a:hover {
    color: var(--primary);
}

.custom-navbar a.active {
    /* border-color: var(--yellow); */
    color: var(--primary) !important;
    font-weight: 600;
    background-color: inherit;
    /* font-style: italic; */
}

@media (max-width: 576px) {
    .custom-navbar a {
        color: #FFF;
    }

    .custom-navbar a.active {
        font-weight: bold;
        color: var(--primary);
    }
}

/* Mobile Menu */
.mobile-menu-toggler {
    border: none;
    margin: 1rem;
    background-color: transparent;
}

.navbar-toggler {
    border: none;
    margin: 1rem;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-icon {
    cursor: pointer;
    fill: var(--primary-light);
}

.sticky .hamburger-icon {
    fill: #FFF;
}

.hamburger-icon rect {
    transition: all .3s ease-in-out;
    /* fill: #FFF; */
}

.hamburger-icon.active rect {
    fill: #FFF;
}

.hamburger-icon.active .top,
.hamburger-icon.active .bottom {
    transform-origin: center;
}

.hamburger-icon.active .top {
    transform: rotate(45deg) translate(0, 20px);
}

.hamburger-icon.active .bottom {
    transform: rotate(-45deg) translate(0, -20px);
}

.hamburger-icon.active .middle {
    opacity: 0;
}
.lock-scroll {
    overflow: hidden;
}
.mobile-menu {
    width: 100%;
    display: none;
    background-color: var(--body-text-color);
    height: 0;
    transition: all 0.3;
}

@media (max-width: 992px) {
    .mobile-menu.expanded {
        display: block;
        max-height: calc(100dvh - 85px);
        height: calc(100dvh - 85px);
        overflow-y: auto;
        position: absolute; 
        scrollbar-width: thin;
    }

    .mobile-menu ul {
        list-style: none;
        padding-left: 0;
    }

    .mobile-menu>ul>li {
        padding: 24px 0;
    }
    .mobile-menu>ul>li:not(:last-child) {
        border-bottom: 1px solid #666;
    }
    .mobile-menu>ul>li>.nav-link{
        color: #ccc;
        font-weight: 600;
    }

    .mobile-child-menu {
        display: block;
        font-size: 16px;
        /* border: 1px solid red; */
    }

    .mobile-child-menu li {
        display: block;
        padding: 12px 0;
        font-weight: 400;
    }

    .mobile-child-menu li:first-child {
        padding-top: 24px;
    }

    .mobile-child-menu-item {
        color: #FFF;
        text-decoration: none;
    }
}

/******** End of Navbar **********/


/******** Header **********/

.header {
    height: 100%;
    width: 100%;
    background-image: url('../images/singapore-skyline-cover.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* @media (max-width: 576px) {
    .header {
        background-image: url('../images/header-video-mobile-poster.png');
    }
} */

/******** End of Header **********/

/*********** Video Overlay *************/
.video-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    /* border: 1px solid red; */
    top: 0;
    left: 0;
    /* background-color: #FFF; */
    background-color: #000;
    /* background: url("../images/hero-video-jewel-poster.png") no-repeat;
    background-size: cover; */
}

video {
    object-fit: cover;
    /* object-position: top; */
    width: 100%;
    height: 100%;
    opacity: 0.65;
}

/* @media (max-width: 576px) {
    video {
        object-position: bottom;
    }
} */
.header-logo {
    width: 80%;
    max-width: 700px;
    padding: 20px;
    height: auto;
    position: absolute;
    top: 50%;
    z-index: 2;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: rgba(255,255,255,.4); */
    text-align: center;
}

.header-logo img {
    max-width: 600px;
}

@media (max-height: 700px) {
    .header-logo {
        max-width: 560px;
    }
}

@media (max-width: 992px) {
    .header-logo {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        max-width: 560px;
    }

    .header-logo img {
        width: 295px;
    }
}

/*********** End of Video Overlay *************/

/*********** Mobile Menu *************/
.mobile-buttons {
    background-color: #e2e2e2;
    padding: 1.5rem 0;
}

.btn-outline {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary) !important;
    background-color: transparent;
    color: var(--primary) !important;
    font-size: 15px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 52px;
    margin: 0 0 0.75rem;
    line-height: 1rem;
}

.btn-outline.white-text {
    color: #FFF !important;
}
.btn-outline.black-text {
    color: var(--body-text-color) !important;
}
.btn-outline:hover {
    color: #FFF !important;
    background-color: var(--primary) !important;
}
/*********** End of Mobile Menu ***********/

/********** COUNTER ***********/

.counter {
    text-align: center;
    padding: 12px 0 12px;
    /* color: var(--body-text-color); */
    color: #FFF;
    margin-top: 12px;
}


.counter-container {
    /* border: 1px solid #c9a5cd;
    border-radius: 1rem;
    width: 100%; */
    /* min-width: 650px; */
    max-width: 780px;
    margin: 1rem auto;
    font-size: 1.25rem;
    font-weight: 300;
    /* padding: 1.5rem 0; */
}

.counter-number {
    font-size: 4.5rem;
    font-weight: 600;
    color: #FFF;
    /* color: var(--body-text-color); */
    line-height: 1em;
    margin-bottom: 10px;
    /* text-shadow: 7px 6px 10px rgba(0, 0, 0, .5); */
}

@media screen and (max-width: 767px) {
    .counter-number {
        font-size: 2.75rem;
    }

    .counter-container {
        font-size: 1rem;
    }

}

/********** End of COUNTER ***********/

/*********** About Section *************/
#about {
    width: 100%;
    /* height: 100%; */
    display: block;
    background-color: #f2f2f2;
    background-image: url("../images/about-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: -1;
}

@media (max-width: 576px) {
    #about {
        padding-bottom: 2rem;
        padding-top: 2rem;
    }
}

/*********** End of About Section *************/

/*********** Theme Section *************/
#theme {
    width: 100%;
    /* height: 100%; */
    display: block;
    background-color: #000000;
    background-image: url("../images/theme-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: -1;
}

.white-overlay {
    background-color: rgba(255, 255, 255, 0.8);
}

#theme-text {
    font-size: 2.25rem;
    line-height: 2.875rem;
}

#theme-text span {
    font-size: 3rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    #theme {
        padding-bottom: 2rem;
        padding-top: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    #theme-text {
        font-size: 1.875rem;
        line-height: 2.5rem;
    }

    #theme-text span {
        font-size: 2.5rem;
    }
}

/*********** End of Theme Section *************/

/*********** Topics Section *************/
#topics {
    width: 100%;
    /* height: 100%; */
    display: block;
    background-color: #d5d5d5;
    background-image: url("../images/topic-bg.png");
    background-size: contain;
    background-position: left;
    background-repeat: repeat-y;
    /* background-attachment: fixed; */
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: -1;
}

#topics ul {
    margin-top: 1.5rem;
    margin-left: 0.5rem;
}

#topics li {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    font-size: 1.5rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    #topics li {
        font-size: 1.15rem;
        display: flex;
        line-height: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

#topics li:before {
    content: '';
    width: 1rem;
    height: 10px;
    display: inline-block;
    margin-left: 0;
    margin-right: 0.75rem;
    vertical-align: middle;
    margin-top: -6px;
}

@media (max-width: 576px) {
    #topics li:before {
        width: 0.5rem;
        height: 6px;
        margin-right: 0.5rem;
        margin-top: 12px;
    }
}

#topics li:nth-child(even):before {
    background: var(--primary);
}

#topics li:nth-child(odd):before {
    background: #333333;
}

@media (max-width: 576px) {
    #topics {
        padding-bottom: 2rem;
        padding-top: 2rem;
    }
}

/*********** End of Topics Section *************/

/*********** ORGANISING COMMITTEE Section *************/
#organising-committee {
    width: 100%;
    /* height: 100%; */
    display: block;
    background-color: #FFF;
    background-image: url("../images/committee-bg.png");
    background-size: 20%;
    background-position: left;
    background-repeat: repeat-y;
    background-attachment: scroll;
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: -1;
}

#organising-committee h3 {
    font-style: italic;
    color: #616161;
}

.committee {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

@media (max-width: 576px) {
    .committee {
        flex-direction: row;
    }
}

.committee-img {
    width: 156px;
    height: 156px;
    background-image: url(../images/committee-img-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 8px;
}

.committee-img img {
    width: 100%;
    height: auto;
}

.committee-info span {
    display: block;
    line-height: 1.5rem;
}

@media (max-width: 576px) {
    .committee-info {
        text-align: left;
    }
}

.committee-info .name {
    font-weight: 600;
}

@media (max-width: 576px) {
    #organising-committee {
        padding-bottom: 2rem;
        padding-top: 2rem;
    }
}

/*********** End of Topics Section *************/

/********** Important Dates Section ***********/

.important-dates {
    padding: 4rem 0;
    /* The image used */
    background-image: url("../images/important-dates-bg.jpg");

    /* Set a specific height */
    min-height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media (max-width: 576px) {
    .important-dates {
        background-attachment: scroll;
    }
}

.date-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--body-text-color);
    text-transform: capitalize;
}

.date-subtitle_black {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
}

.date-text {
    color: var(--primary);
    font-size: 1.25rem;
}

.date-text_black {
    color: #000;
}

.content.over * {
    color: #aaa;
}

/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--body-text-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    margin-top: 14px;
    margin-bottom: 14px;
}

/* Container around content */
.timeline-container {
    padding: 10px 100px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circles on the timeline */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -7px;
    background-color: white;
    border: 2px solid var(--primary);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
}

.highlight.timeline-container::after {
    border: 2px solid var(--primary-darker);
    background-color: var(--primary-darker);
}

/* Place the container to the left */
.left {
    left: 0;
}

/* Place the container to the right */
.right {
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 50%;
    width: 90px;
    z-index: 0;
    right: 10px;
    border: 1px solid var(--body-text-color);
    /* border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(255, 255, 255, .8); */
    transform: translateY(-50%);
}

/* .highlight.left::before {
    border: medium solid var(--primary);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--primary);
} */

/* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 50%;
    width: 93px;
    z-index: 0;
    left: 7px;
    border: 1px solid var(--body-text-color);
    /* border-width: 10px 10px 10px 0;
    border-color: transparent rgba(255, 255, 255, .8) transparent transparent; */
    transform: translateY(-50%);
}

/* .highlight.right::before {
    border: medium solid var(--primary-darker);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--primary-darker) transparent transparent;
} */


/* Fix the circle for containers on the right side */
.right::after {
    left: -13px;
}

/* The actual content */
.content {
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, .8);
    position: relative;
    border-radius: 0px;
}

.content .small {
    font-size: 0.75rem;
    line-height: 1rem;
    color: #666;
}

.highlight .content {
    padding: 20px 30px;
    background-color: var(--primary-darker);
    position: relative;
    border-radius: 0px;
    color: #FFF;
}

.highlight .date-text {
    color: #FFF;
}

.highlight .date-subtitle {
    color: #FFF;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {

    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .timeline-container::before {
        left: 30px;
        border: 1px solid var(--body-text-color);
        width: 40px;
        /* border: medium solid rgba(255, 255, 255, .8);
        border-width: 10px 10px 10px 0;
        border-color: transparent rgba(255, 255, 255, .8) transparent transparent; */
    }

    /* .highlight.left::before {
        border: medium solid var(--primary-darker);
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--primary-darker) transparent transparent;
    } */

    /* Make sure all circles are at the same spot */
    .left::after,
    .right::after {
        left: 18px;
    }

    /* Make all right containers behave like the left ones */
    .right {
        left: 0%;
    }
}


/********** End of Important Dates Section ***********/

/* Venue Accordion */
.custom-accordion {
    --bs-border-radius: 0;
    --bs-accordion-border-radius: 0;
}

.custom-accordion .accordion-item {
    border: none;
    /* background-color: rgba(234, 219, 206, .91); */
    color: var(--body-text-color);
}

.custom-accordion .accordion-button {
    color: var(--body-text);
    background-color: #f2f2f2;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1e1e1;
}

/* .custom-accordion .accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
} */

.custom-accordion .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--body-text);
    background-color: #e3e3e3;
    font-weight: 600;
}

/* End of Venue Accordion */

/********** Organisers Section ***********/

.organisers {
    padding: 2rem 0;
    background-color: #FFF;
    color: var(--body-text);
}

.organiser-logos {
    display: flex;
    /* justify-content: center; */
    gap: 1rem;
}

.organiser-logo {
    flex: 1;
    text-align: center;
    background-color: #FFF;
    padding: .5rem 1rem 1rem;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    color: grey;
    /* border: 1px solid red; */
}

.organiser-logos.big .organiser-logo {
    flex: 1 1 33%;
    /* max-width: 240px;
    max-height: 200px; */
}

.organiser-logos.small .organiser-logo {
    flex: 0 1 20%;
    /* max-width: 240px;
    max-height: 120px; */
}

.logo-xl {
    /* max-width: 80%; */
    max-height: 110px;
}

.logo-lg {
    /* max-width: 80%; */
    max-height: 90px;
}

.logo-md {
    /* max-width: 70%; */
    max-height: 70px;
}

.logo-sm {
    /* max-width: 60%; */
    max-height: 66px;
}

/* Sponsor Column */
.column-divider {
    border-right: 1px solid #81a39f;
}

.organisers h3 {
    font-size: 1.25rem !important;
    font-weight: 700;
}

.sponsor-label {
    padding: 0.25rem 1rem;
    font-weight: 600;
    margin: 0.75rem auto;
    width: fit-content;
}

@media screen and (max-width: 576px) {
    .organisers {
        padding: 2rem;
    }

    .organiser-logos {
        flex-wrap: wrap;
    }

    .organiser-logo {
        min-width: 140px;
        flex: 0;
        height: 120px;
    }

    .column-divider {
        border-right: none;
        margin-bottom: 1rem;
    }
}

/********** End of Organisers Section ***********/

/* Subpage banner */

.subpage .banner {
    min-height: 360px;
    background-color: var(--primary-dark);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/subpage-header.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.subpage .text-layer {
    text-align: center;
    color: #666;
    display: flex;
    padding-bottom: 4rem;
}

@media screen and (max-width: 576px) {

    .subpage .banner,
    .subpage .text-layer {
        min-height: 200px;
    }

    .subpage .banner {
        background-position: top center;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}

/** @section Breadcrumbs */
.breadcrumbs-custom {
    position: relative;
    padding: 40px 0 40px;
    text-align: center;
    background-color: #cccccc;
    background-position: center;
}

.breadcrumbs-custom-path {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 0;
}

@media (min-width: 992px) {
    .breadcrumbs-custom-path {
        margin-top: 10rem;
    }
}

@media (max-width: 576px) {
    .breadcrumbs-custom-path {
        margin-top: 8rem;
    }
}

.breadcrumbs-custom-path>* {
    padding-left: 15px;
    padding-right: 15px;
}

.breadcrumbs-custom-path a {
    display: inline;
    vertical-align: middle;
}

.breadcrumbs-custom-path a,
.breadcrumbs-custom-path a:active,
.breadcrumbs-custom-path a:focus,
.breadcrumbs-custom-path a:visited,
.breadcrumbs-custom-path a:link {
    color: #666 !important;
}

.breadcrumbs-custom-path li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
    /* letter-spacing: .2em; */
    /* text-transform: uppercase; */
}

.breadcrumbs-custom-path li::after {
    content: "-";
    position: absolute;
    top: 52%;
    right: -5px;
    display: inline-block;
    font-size: inherit;
    font-style: normal;
    color: #666;
    transform: translate3d(0, -50%, 0);
}

.breadcrumbs-custom-path li:last-child:after {
    display: none;
}

.breadcrumbs-custom-path a:hover,
.breadcrumbs-custom-path li.active {
    /* color: #ffffff; */
    color: var(--primary) !important;
}

/* .breadcrumbs-custom-path li.active {
    top: 2px;
} */

*+.breadcrumbs-custom-path {
    margin-top: 14px;
}

*+.breadcrumbs-custom-title {
    margin-top: 1.5rem;
    color: var(--body-text-color);
    text-transform: uppercase;
    letter-spacing: .1rem;
}

@media (max-width: 991.98px) {
    .breadcrumbs-custom-title {
        font-size: 26px;
    }
}

@media (min-width: 576px) {
    .breadcrumbs-custom {
        margin-left: -30px;
        margin-right: -30px;
    }

    .breadcrumbs-custom>* {
        padding-left: 30px;
        padding-right: 30px;
    }

    *+.breadcrumbs-custom-path {
        margin-top: 18px;
    }
}

@media (min-width: 768px) {
    .breadcrumbs-custom {
        padding: 70px 0 80px;
    }
}

@media (min-width: 992px) {
    .breadcrumbs-custom {
        padding: 170px 0 80px;
    }
}

@media (min-width: 1200px) {
    .breadcrumbs-custom {
        padding: 200px 0 100px;
    }

    *+.breadcrumbs-custom-title {
        margin-top: 5px;
    }
}

/********** Sticky Footer  ************/

.footer {
    background-color: var(--secondary);
    color: #FFF;
    font-size: 0.875rem;
    padding: 1rem 0;
}


/********** End of Footer  ************/


/* Submission Categories */
.stage-row {
    background-image: linear-gradient(to right, #efefef 0%, #efefef 40%, #e0e0e0 40%, #e0e0e0 100%)
}

.stage-one:after {
    content: '';
    width: 72px;
    height: 33px;
    display: block;
    background-image: url(../images/arrow.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50px;
    z-index: 2;
    left: 90%;
}

@media (max-width: 992px) {
    .stage-row {
        background-image: none;
        background-color: #e0e0e0;
    }

    .stage-one-container {
        background-color: #efefef;
    }

    .stage-one:after {
        display: none;
    }
}

.content-bg {
    background-color: #f8f9fa;
    background-image: url("../images/committee-bg.png");
    background-size: 20%;
    background-position: left;
    background-repeat: repeat-y;
}







/****** Abstract Submission ************/

.submission-form .form-group {
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .submission-form .form-group {
        margin-bottom: 12px;
    }

}

.submission-form label {
    font-weight: 500;
}

.submit-btn,
#abstract_submit {
    padding: 0.75rem 2.5rem;
    border-radius: 0.375rem;

    border: 0;
    color: #fff;
}

/****** End of Abstract Submission ************/