:root {
    --primary: #8BA624;
    --primary-dark: #294C37;
    --secondary: #1ca9e1;
    --orange: #f8971d;
}

html {
    overflow-x: clip;
}

body {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.text-primary-green, .primary-text {
    color: var(--primary);
}
.text-primary-dark-green {
    color: var(--primary-dark);
}
.text-decoration-none {
    text-decoration: none;
}

h1,
.h1 {
    font-size: 3.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
}

h2,
.h2 {
    font-size: 2.75rem;
    font-weight: 700;
}

h3,
.h3 {
    font-size: 2.25rem;
}

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

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

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.8rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }
}

a:link,
a:visited {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.bg-green {
    background-color: var(--primary);
}


.navbar {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.navbar-expand-md .navbar-nav .nav-link {
    padding-right: .75rem;
    padding-left: .75rem;
}

/* .navbar-nav {
    align-items: center;
} */

.nav-item {
    padding-top: .75rem;
    /* padding-bottom: 0.5rem; */
    font-size: 1rem;
}

.nav-item a:link,
.nav-item a:visited {
    text-decoration: none;
    text-align: center;
    color: #FFF !important;
    transition: all .3s !important;
}

.nav-item a:hover {
    text-decoration: none;
    /* color: rgba(255, 255, 255, .4) !important; */
    color: var(--primary-dark) !important;
    cursor: pointer !important;
}

.nav-item.active {
    /* background-image: url(../images/half_dot.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 52px 28px; */
    color: var(--primary-dark) !important;
}

.nav-item.active:after {
    display:block;
    content: " ";
    width: 100%;
    height: 10px;
    /* margin-top: 1rem; */
    /* border:1px solid red; */
    background-image: url(../images/half_dot.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 52px 28px;
    color: var(--primary-dark) !important;
}

.nav-item.active a {
    color: var(--primary-dark) !important;
}

.navbar-brand-container {
    width: 100%;
    max-width: 1140px;
    padding: 1rem .5rem;
}

.logo  {
    padding: 1rem .5rem;
    margin-left: .5rem;
    /* margin-right: 1.5rem; */
    width: 360px;
    /* border:1px solid red; */
}

header {
    background-color: rgba(139, 166, 36, .05);
}
@media screen and (max-width: 960px) {
    .logo  {
        width: 300px;
    }
}
@media screen and (max-width: 576px) {
    .navbar {
        padding: 0;
        flex-direction: row;
    }
    .logo  {
        width: 240px;
        /* width: 90%; */
        /* margin-left: .5rem; */
        /* margin-right: 1.5rem; */
        /* border:1px solid red; */
    }
    .navbar-brand-container { 
        padding: 0 0.5rem;
    }

    .nav-item {
        padding-top: .5rem;
        padding-bottom: 0.25rem;
        font-size: 1rem;
        width: 100%;
    }

    .nav-item.active {
        background-image: none;
    }
}
@media screen and (max-width: 430px) {
    .navbar-brand {
        margin-right:0rem;
    }

}

#carousel {
    position: relative;
}

.banner {
    background-position: center;
    background-size: cover;
    height: 420px;
    width: 100%;
    display: block;
}
#banner1 {
    background-image: url(../images/banner1.jpg);
}
#banner2 {
    background-image: url(../images/banner2.jpg);
}
#banner3 {
    background-image: url(../images/banner3.jpg);
}
#banner4 {
    background-image: url(../images/banner4.jpg);
}
#banner5 {
    background-image: url(../images/banner5.jpg);
}

.banner-overlay {
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay-container {
    margin: 0 auto;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    max-width: 1140px;
    color: #FFF;
    padding: 1.5rem;
    max-height: 360px;
    display: flex;
    align-items: stretch;
}

.banner-overlay-container img {
    /* max-width: 80%; */
    /* max-width: 800px; */
    max-width: 100%;
    max-height: 240px;
}

.banner-date {
    /* height: 100%; */
    flex:1;
    max-width: 50%;
    padding: 0 2rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
}
.banner-date .date {
    font-size: 2.45rem;
    font-weight: 600;
}
.banner-date .venue {
    font-size: 1.6rem;
}
.event-name {
    border-left: 3px solid #FFF;
    display:block;
    flex:1;
}
.countdown-container {
    border: 1px solid #FFF;
    border-radius: 15px;
    margin-top: .5rem;
    padding: 1rem .5rem;
}
.countdown-text {
    font-size: 3rem;
}
@media screen and (max-width: 960px) {
    .banner-date {
        max-width: 100%;
        padding: 0 1rem;

    } 
    .banner-date .date {
        font-size: 1.75rem;
        font-weight: 600;
    }
    .banner-date .venue {
        font-size: 1.25rem;
    }
    .event-name {
        max-width: 45%;
        padding-left: 1rem;
        display: flex;
        align-items: center;
    }

    .countdown-container {
        margin-top: .5rem;
        padding: 1rem .5rem;
    }
}
@media screen and (max-width: 576px) {
    .banner {
        height: 320px;
    }
    .banner-overlay-container {
        padding: 1rem;
        flex-direction: column;
        /* border: 1px solid red; */
        align-items: center;
        height: 100%;
    }
    /* .banner-overlay-container img {
        width: 100%;
        max-width: 400px;
        max-height: 120px;
    } */
    .banner-date {
        max-width: 400px;
        width: 100%;
    } 
    .banner-date .date {
        font-size: 1.75rem;
        font-weight: 600;
    }
    .banner-date .venue {
        font-size: 1.25rem;
    }
    .event-name {
        display:none;
    }

}

@media screen and (max-width: 420px) {
    .banner-date {
        padding:0;
    } 
    .countdown-text {
        font-size: 2rem;
    }
    
}
.who-should-attend {
    font-size: 1.2rem;
    line-height: 2.2rem;
}

.banners div {
    max-height: 400px !important;
}

.content {
    position: relative;
}

#content-home:before,
#content-subpage:before {
    background-image: url(../images/background_icon_1.png);
    background-size: 280px 295px;
    background-position: left -60px top -100px;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}

#content-subpage:before {
    background-position: left -60px top -50px;
}

#content-home:after,
#content-subpage:after {
    background-image: url(../images/background_icon_2.png);
    background-size: 280px 273px;
    background-position: right -100px bottom 20%;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

#content-subpage:after {
    background-position: right -100px top 50px;
}

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

    #content-home:before,
    #content-subpage:before {
        background-size: 150px 158px;
        background-position: left -30px top -60px;
    }

    #content-subpage:before {
        background-position: left -30px top -30px;
    }

    #content-home:after,
    #content-subpage:after {
        background-size: 150px 146px;
        background-position: right -55px bottom 22%;
    }

    #content-subpage:after {
        background-position: right -55px top 30px;
    }
}

/************* Themes Related *****************/
.themes-bg {
    background: #EDEDED;
    border-radius: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media screen and (max-width: 576px) {
    .themes-bg {
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: 2rem;
    }
}

.icon-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon-wrapper {
    border-radius: 50%;
    background-color: #FFF;
    box-shadow: 3px 5px 8px rgba(0, 0, 0, .3);
    max-width: 160px;
    /* padding: 2rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-text-container p {
    font-weight: 600;
}

.icon {
    font-size: 3rem;
    color: #EF7C00;
    margin-bottom: 1rem;
}

.content-image {
    max-width: 650px;
}

.theme-image {
    max-width: 360px;
}

.theme-title {
    padding: 0 2rem;
}

@media screen and (max-width: 576px) {
    .icon-wrapper {
        max-width: 100px;
        padding: 1px;
        min-width:120px;
    }

    .theme-title {
        padding: .5rem;
    }

    .theme-image {
        max-width: 280px;
    }

    .content-image {
        max-width: 100%;
    }
}

.hr-divider {
    margin: 1rem;
    border-bottom: 1px solid #666666;
}

.theme-speaker-wrap {
    background: #E8E8E8;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.single_speaker {
    padding: .5rem 0;
    width: 50%;
}

@media screen and (max-width:576px) {
    .single_speaker {
        width: 100%;
    }
}

.theme-speaker-image {
    border-radius: 50%;
    object-fit: cover;
    width: 120px;
    height: 120px;
    box-shadow: 3px 5px 8px rgba(0, 0, 0, .5);
}

.committee-image {
    border-radius: 50%;
    object-fit: cover;
    width: 160px;
    height: 160px;
    box-shadow: 3px 5px 8px rgba(0, 0, 0, .5);
    margin: 0 auto;
}

.theme-speaker-image img,
.committee-image img {
    border-radius: 50%;
    object-fit: cover;
    width: inherit;
    height: inherit;
}

.committee {
    margin-top: 1rem;
}

.theme-speaker-wrap span,
.committee span {
    display: block;
}

.theme-speaker-wrap .name,
.committee .name {
    font-weight: 700;
}

.theme-speaker-wrap .title,
.committee .title {
    font-weight: 600;
    font-style: italic;
}
.bio-tabs {
    margin-top: 1rem;
}
.bio-tabs .nav-link{
    background-color: var(--primary);
    color: #FFF;
    border-radius: 25px;
}
.bio-tabs .nav-link.active{
    background-color: var(--primary-dark);
    color: #FFF;
}

.speaker-position {
    font-weight: bold;
    font-style: italic;
}

.speaker-affiliation {
    font-weight: bold;
}

/* .custom-tabs.nav-pills .nav-link {
    text-decoration: none;
    color: #294C37;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: none;
    font-size: 1.75rem;
    font-weight: 700;
}

.custom-tabs.nav-pills .nav-link.active,
.custom-tabs.nav-pills .show>.nav-link {
    background-color: transparent !important;
    background-image: url(../images/programme-tab-active.svg);
    color: #FFF;
} */

.custom-tabs.nav-pills {
    /* max-width: 82%; */
    margin-top: 1.25rem;
    /* flex-direction: column; */
}

.custom-tabs.nav-pills .nav-link {
    text-decoration: none;
    /* color: #294C37; */
    padding: 1rem 4rem;
    text-align: center;
    transition: all .3s;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #c8e855;
    background-color: transparent;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.85rem;
    /* flex:1; */
    border-radius: 25px 25px 0 0;
}
.custom-tabs.nav-pills .nav-link.active,
.custom-tabs.nav-pills .show>.nav-link {
    background-color: var(--primary);
    border-color: var(--primary);
    /* background-image: url(../images/programme-tab-active.svg); */
    color: #FFF;
} 
@media screen and (max-width: 960px) {
    .custom-tabs.nav-pills {
        margin: 0 auto;
        max-width: 100%;
        flex-direction: row;
    }
    .custom-tabs.nav-pills .nav-link {
        padding: 1rem .75rem;
        font-size: 1rem;
        line-height: 1.5rem;
        border-width: 1px 1px 0 1px;
        border-style: solid;
        border-radius: 25px 25px 0 0;
    }
}


/* table styles */
.table-container {
    /* padding: .75rem .25rem; */
    padding:0;
    /* background-color: rgba(255, 255, 255, .7); */
}

.programme .custom-table th:first-of-type,
.programme .custom-table td:first-of-type {
    /* width: 70px; */
    min-width: 120px;
}
.programme .custom-table {
    border: 1px solid #ccc;
}

.custom-table th,
.custom-table td {
    /* width: 22%; */
    /* background-color: transparent; */
    border-top: none;
    border-bottom: 1px solid #ccc;
    padding: .75rem .25rem;
    text-align: center;
    vertical-align: middle;
}

.programme .custom-table th,
.programme .custom-table td {
    border-right: 1px solid #ccc;
    font-size: 1rem;
    color: #3c7b22;
    padding: .75rem .25rem;
}

.custom-table th {
    font-weight: 600;
    /* text-align: center; */
    /* color: var(--primary-dark); */
    font-size: 0.95rem;
}

.custom-table thead th {
    border-bottom: 1px solid #ccc;
}

.custom-table .custom-th {
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    font-size: 1.5rem;
    /* text-align: center; */
    padding: 1rem;
    font-weight: 600;
    
}
.custom-table .header {
    font-size: 0.95rem;
}

.custom-table .presentation-title {
    font-weight: 500;
    /* font-size: 1.1rem; */
    color: var(--primary);
}

.custom-table td.no-padding {
    padding: 0;
}

.header-highlight {
    background-color: #1ca9e1;
    color: #FFF !important;
}

.registration-table th, .registration-table td {
    padding: 1.5rem 1rem;

}

.registration-table th[scope=col] {
    background-color: var(--primary);
    color: #FFF;
}

.registration-table th[scope=col]:first-child {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    color: #FFF;
}
.registration-table.table-striped tbody tr:nth-of-type(odd) th,
.registration-table.table-striped tbody tr:nth-of-type(odd) td {
    background-color: #FFF;
}
.registration-table.table-striped tbody tr:nth-of-type(even) th,
.registration-table.table-striped tbody tr:nth-of-type(even) td {
    background-color: rgba(0,0,0,0.05);
}


.table-sponsorship th, .table-sponsorship td {
    padding: 1.5rem 0.5rem ;
}

.table-sponsorship .highlight-green,
.table-sponsorship .highlight-green td,
.table-sponsorship .highlight-green th {
    background-color: rgba(139, 166, 36, .12) !important;
}

.table-sponsorship .highlight-blue,
.table-sponsorship .highlight-blue td,
.table-sponsorship .highlight-blue th {
    
    background-color: rgba(0, 184, 222, .12) !important;
}

.table-sponsorship .highlight-pink,
.table-sponsorship .highlight-pink td,
.table-sponsorship .highlight-pink th {
    background-color: rgba(222, 104, 93, .07) !important;
}

.table-sponsorship .highlight,
.table-sponsorship .highlight td,
.table-sponsorship .highlight th {
    background-color: #E8E8E8 !important;
}

.inner-table {
    font-size: .85rem;
}
.inner-table th {
    background-color: #f8971d;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    font-size: 0.95rem;
}
.inner-table tr td:last-of-type {
    border-right: none;
}
.inner-table tr:last-of-type td {
    border-bottom: none;
}
.inner-table td {
    width: 25%;
}

.highlight-green2 {
    background-color: rgb(123,168,74);
    color: #FFF !important;
}
.highlight-purple {
    background-color: rgb(177,80,234);
    color: #FFF !important;
}
.highlight-lightblue {
    background-color: rgb(106, 168, 207);
    color: #FFF !important;
}
.highlight-green3 {
    background-color: rgb(74,186,128);
    color: #FFF !important;
}

.highlight-green2-lighter {
    background-color: rgba(123,168,74,.3);
}
.highlight-purple-lighter {
    background-color: rgba(177,80,234,.3);
}
.highlight-lightblue-lighter {
    background-color: rgba(80,205,234,.3);
}
.highlight-green3-lighter {
    background-color: rgba(131,226,142,.3);
}
.highlight-yellow-lighter {
    background-color: rgba(255, 240, 180, 0.64);
}





#utown-map {
    margin: 0 auto;
    width: 100%;
    min-height: 600px;
    background-image: url(../images/Utown-map_SRC.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s;
}

#utown-map:hover {
    background-image: url(../images/Utown-map_SRC_hover.png);
    cursor: pointer;
}

@media screen and (max-width: 576px) {
    #utown-map {
        min-height: 400px;
    }
    
}

.recommended-hotels {
    border: 1px solid #EF7C00;
    border-radius: 2rem;
    background-color: #e8e8e8;
    padding: 0 2rem 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.recommended-hotels .header {
    background-color: #EF7C00;
    border-radius: 0 0 1rem 1rem;
    color: #FFF;
    font-weight: 600;
    margin: 0 auto;
    padding: .5rem 2rem;
    max-width: 300px;
    text-align: center;
}

.hotel-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 2rem;
    /* border: 1px solid red; */
}

.hotel-info .name {
    font-weight: 600;
    font-size: 1.25rem;
}

.hotel-info .name a {
    text-decoration: none;
}

.hotel-info .icon {
    color: #EF7C00;
    font-size: 1rem;
    margin-right: .5rem;
}

.hotel-info a.download {
    border: 1px solid var(--primary-dark);
    border-radius: .5rem;
    padding: .75rem 2rem;
    margin-top: .75rem;
    display:block;
    text-decoration: none;
}

.hotel-image {
    aspect-ratio: 3/2;
    object-fit: cover;
    max-width: 300px;
    margin-bottom: 1rem;
}


.custom-pills-tabs .nav-item {
    max-width: 50%;
}

.custom-pills-tabs .nav-item img {
    max-width: 50%;
}

.custom-pills-tabs .nav-item .nav-link {
    color: #000 !important;
}

.custom-pills-tabs .nav-item .nav-link.active {
    background-color: #E8E8E8;
    color: var(--primary) !important;
}

.maps-container {
    max-width: 90%;
    /* display: flex; */
    margin: 1rem auto;
}

.maps-container div {
    flex: 1;
}

.maps-container div:first-of-type {
    border-right: 1px solid #C2C2C2;
}

.maps-container img {
    max-width: 300px;
}

.register-button:link,
.register-button:visited {
    font-size: 1.75rem;
    font-weight: 300;
    color: #FFF !important;
    text-decoration: none;
    background: rgb(248, 151, 29);
    background: linear-gradient(122deg, rgba(248, 151, 29, 1) 37%, rgba(222, 104, 93, 1) 100%);
    margin: 1rem auto;
    padding: .5rem;
    border-radius: 1.5rem;
    text-align: center;
    display: block;
    transition: all .3s;
}

.register-button:hover {
    background: linear-gradient(122deg, rgba(222, 104, 93, 1) 50%, rgba(248, 151, 29, 1) 100%);
}

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

    .register-button:link,
    .register-button:visited {
        font-size: 1.5rem;
    }
}

.orange-bullet-list li {
    list-style-image: url(../images/orange-bullet.svg);
    padding-left: .5rem;
    margin-bottom: .5rem;
}

.self-align-center {
    width: fit-content;
    margin: 0 auto;
}

/* Sponsors */
.logo-xxl {
    width: 400px;
}
.logo-xl {
    width: 180px;
}
.logo-lg {
    width: 160px;
}
.logo-md {
    width: 140px;
}
.logo-sm {
    width: 120px;
}

@media screen and (max-width: 576px) {
    .logo-xxl {
        width: 360px;
    }
    .logo-xl {
        width: 160px;
    }
    .logo-lg {
        width: 130px;
    }
    .logo-md {
        width: 110px;
    }
    .logo-sm {
        width: 90px;
    }
}


/* Form Elements */
input[type=text],
input[type=email] {
    width: 100%;
    padding: 16px 8px;
    margin: 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #666;
    border-radius: 0;
}

select {
    width: 100%;
    padding: 8px 20px 8px 0px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #666;
    background: none;
}

/* input[type="file"] {
    display: none;
} */

/*input::file-selector-button, 
*/

input::file-selector-button {
    border: 1px solid var(--primary);
    background-color: transparent;
    border-radius: .5rem;
    display: inline-block;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 300;
}

.btn_download_file,
#abstract_submit {
    display: inline-block;
    padding: .5rem 5rem;
    font-size: 1.5rem;
    color: #FFF !important;
    background: var(--primary);
    border: none;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 300;
    border-radius: 1rem;
    transition: all 0.3s;
}

.btn_download_file:hover,
.btn_download_file:active,
#abstract_submit:hover {
    background: var(--primary-dark);
}

#btn-green, .btn-green {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #FFF !important;
    padding-left: 20px;
    padding-right: 20px;
}
.btn-orange {
    background: rgb(248, 151, 29) !important;
    border-color: rgb(248, 151, 29) !important;
    color: #FFF !important;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-orange:hover {
    background: rgb(222, 104, 93) !important;
}

#home-submit-btn {
    font-size: 1.5rem;
    transition: .3s all;
    text-decoration: none;
}

#submission_guidelines button {
    display: flex;
    width: 100%;
    text-align: left;
    color: #000 !important;
    font-weight: 400;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
}

#submission_guidelines button::after {
    margin-left: auto;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    content: '\2b';
}

#submission_guidelines button:hover::after {
    text-decoration: none;
}

#submission_guidelines button:hover,
#submission_guidelines button:focus {
    text-decoration: none;
    color: var(--primary);
}

#submission_guidelines button[aria-expanded="true"]::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    content: '\f068';
}

#submission_guidelines .card {
    border: none;
}

#submission_guidelines .card-header {
    background-color: transparent;
    border: none;
}

#abstract_submission input, select {
    color: #666;
}
.footer-wrap {
    margin-top: 2rem;
}

.footer-bg {
    background: url(../images/footer_bg.svg) no-repeat center top -10px;
    background-size: cover;
    padding: 2.5rem 0 1rem;
    min-height: 400px;
    display: flex;
    align-items: center;
}


@media screen and (max-width: 576px) {
    .footer-bg {
        margin-top: 2rem;
    }
}

/*********** Mobile Menu *************/
.mobile-buttons {
    background-color: #e7e7e7;
    padding: 1.5rem 0;
}
.mobile-buttons a {
    text-decoration: none;
}
.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: 3.5rem;
    font-weight: 600;
    color: var(--orange);
    /* 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: 992px) {
     .counter {
        width: 100%;
    }
}

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

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

}

@media screen and (max-width: 576px) {
    .counter {
        width: 100%;
    }
    /* .counter-number {
        font-size: 3.25rem;
    }

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

}

/********** End of COUNTER ***********/
/* Venue Accordion */

.custom-accordion {
    --bs-border-radius: 1.5rem;
    --bs-accordion-border-radius: 1.5rem;
}

.custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #FFF;
    background-color: #FFF;
    color: var(--body-text-color);
}
.custom-accordion .accordion-item h3 {
    margin-bottom: 0;
}

.custom-accordion .accordion-button {
    background-color: #e7e7e7;
    color: var(--primary-dark);
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    position: relative;
}

.custom-accordion .accordion-body {
    padding: 1rem 0;
}
.custom-accordion .accordion-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    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,
.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #FFF;
    background-color: var(--primary-dark);
    font-weight: bold;
    text-decoration: none;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg) translateY(50%);
    
}

/* Some extra classes */
.venue-text-highlight {
    font-weight: 700;
    font-size: 1.15rem;
}

/* End of Venue Accordion */