@font-face {
    font-family: 'Nunito';
    font-display: swap;
    src: url('fonts/Nunito/Nunito-VariableFont_wght.ttf') format('truetype'), 
        url('fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Header */
#header {
    background-image: url("assets/Hero_banner.jpg");
    min-height: 240px;
    background-repeat: no-repeat;
    background-position: left bottom 44%;
    background-size: 100% auto;
    background-color: #686868 !important;
    background-blend-mode: multiply;
}

#header-menu-wrap {
    padding: 20px;
}

#mobile-burger-bar,
#mobile-menu-wrap {
    display: none;
}

#header-menu {
    width: 600px;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: auto;
}

#header-menu li {
    list-style-type: none;
    font-family: 'Lato',Helvetica,Arial,Lucida,sans-serif;
    font-size: 14px;
}

#header-menu li a {
    color: white;
    font-weight: 700;
}

#header-headline {
    font-weight: 800;
    font-size: 49px;
    font-family: 'Nunito',Helvetica,Arial,Lucida,sans-serif;
    line-height: 1.1em;
    text-align: center;
    color: white;
    margin-top: 60px;
    margin-bottom: 0;
}

#header-subheadline {
    font-family: 'Lato',Helvetica,Arial,Lucida,sans-serif;
    color: white;
    text-align: center;
    margin-top: 5px;
}

body {
    margin: 0;
}

body a {
    text-decoration: none;
}

/* Footer */
#footer {
    background-color: #1c395b;
    padding: 60px 0;
    color: white;
}
#footer a {
    color: white;
    font-weight: 700;
}
#footer-wrap {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    padding: 30px 0;
    display: flex;
    font-family: 'Lato',Helvetica,Arial,Lucida,sans-serif;
}

.footer-wrap-item {
    width: 29.6667%;
}
.footer-wrap-item:nth-child(1),
.footer-wrap-item:nth-child(2) {
    padding-right: 5.5%;
}

.footer-item-title {
    text-align: left;
    margin-bottom: 30px !important;
    max-width: 200px;
    box-shadow: 0px 5px 0px 0px rgba(0,0,0,0.3);
}
.footer-item-title h2 {
    font-weight: 800;
    font-size: 18px;
    font-family: 'Nunito',Helvetica,Arial,Lucida,sans-serif;
    padding-bottom: 10px;
}

.filter-white {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(121deg) brightness(104%) contrast(104%);
}

.footer-icon {
    margin: auto;
    vertical-align: text-bottom;
    display: inline-block;
    padding-right: 20px;
}

#footer-links-wrap {
    padding: 0;
}
#footer-links-wrap li {
    list-style-type: none;
    font-family: 'Lato',Helvetica,Arial,Lucida,sans-serif;
    font-size: 16px;
    padding: 10px 0;
}

#footer-links-wrap li a:hover {
    color: #e84933;
}

#copyright {
    background-color: black;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-family: 'Lato',Helvetica,Arial,Lucida,sans-serif;
    font-size: 12px;
}

#copyright a {
    color: white;
}



/* Mobile menu and footer */
@media only screen and (max-width: 980px) {
    body {
        position: relative;
    }

    /* Header */
    #header {
        background-size: cover;
        position: relative;
        min-height: 350px;
    }

    #header-menu-wrap {
        display: none;
    }

    #header-headline {
        width: 80%;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-size: 32px;
    }

    #header-subheadline {
        margin: 0;
        position: absolute;
        top: 80%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        font-size: unset;
    }

    #mobile-menu-container {
        position: fixed;
        width: 100%;
        top: 0;
    }

    #mobile-burger-bar {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        height: 50px;
        width: 100%;
        color: white;
        font-size: 46px;
        background: transparent;
    }

    #mobile-burger-bar #mobile-burger {
        padding-right: 32px;
    }

    #burger-icon {
        height: 32px;
        width: 32px;
        margin: auto;
        vertical-align: text-bottom;
        display: inline-block;
    }

    .mobile-burger-bar-sticky {
        background-color: rgba(28, 57, 91, 0.95) !important;
    }

    #mobile-menu-wrap {
        display: block;
        height: 0;
        width: 100%;
        position: absolute;
        top: 60px;
        overflow: hidden;
        transition: height 0.8s ease;
    }

    #mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        padding: 30px;
        width: 75%;
        height: 280px;
        background-color: rgba(28, 57, 91, 0.95) !important;
        border-top: 5px solid #e84933;
    }

    #mobile-menu li {
        list-style-type: none;
        font-family: 'Lato',Helvetica,Arial,Lucida,sans-serif;
        line-height: 26px;
    }
    
    #mobile-menu li a {
        color: white;
        font-size: 14px;
        font-weight: 700;
        padding: 10px 5%;
    }

    /* Footer */
    #footer-wrap {
        flex-direction: column;
        letter-spacing: 0.5px;
    }

    .footer-wrap-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-wrap-item a {
        font-size: 24px;
    }

    .footer-item-title {
        max-width: 300px;
        box-shadow: 0px 8px 0px 0px rgba(0,0,0,0.3);
    }

    .footer-item-title h2 {
        font-size: 28px;
    }

    .footer-contact,
    #footer-links-wrap li {
        margin-bottom: 20px;
    }

    .footer-contact span {
        padding-right: 40px;
    }

    .footer-icon {
        height: 24px;
    }

    #copyright {
        font-size: 1.1em;
    }

    #copyright-wrap {
        width: 80%;
        margin: auto;
    }
    

}
/* Calendar */
/* Calendar Filter */
#calendar-main {
    padding: 50px 0;
    margin-top: 0px;
    background-color: #f9f9f9;
}
form#calendar {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    border: 1px solid #efefef;
    padding: 30px 20px 60px 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 2px 0 rgba(0,0,0,.012);
}
#calendar-dropdown-wrap,
#calendar-address-wrap,
#calendar-date-search-wrap {
    display: table;
    width: 100%;
    margin-bottom: 15px;
}
#calendar-search-button-wrap {
    position: relative;
}
.calendar-dropdown,
.calendar-text {
    margin-bottom: 10px;
    padding: 0 10px;
    display: table-cell;
}
.calendar-date {
    margin-bottom: 10px;
    padding: 0 10px;
}
.calendar-dropdown label,
.calendar-text label,
.calendar-date label {
    display: block;
    line-height: 1.8;
    margin-bottom: 4px;
    font-size: 13px;
    color: #9a9a9a;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.inline-wrap {
    display: flex;
}
.calendar-dropdown img, 
.calendar-text img,
.calendar-date img {
    background: #fff;
    border: 1px solid #efefef;
    padding: 5px;
}
.calendar-dropdown select {
    width: 100%;
    height: 32px;
    background: #fff;
    font-size: 13px;
    color: #777;
    border: 1px solid #efefef;
    margin: 0 0 0 -1px;
    padding: 0 5px;
}
.calendar-text input,
.calendar-date input ,
.calendar-submit input,
.calendar-submit a {
    width: 100%;
    height: 30px;
    background: #fff;
    font-size: 13px;
    color: #777;
    border: 1px solid #efefef;
    margin: 0 0 0 -1px;
    padding: 0 5px;
}
#calendar-search {
    position: absolute;
    right: 150px;
    width: 100px !important;
    cursor: pointer;
}
#calendar-clear-search {
    font-family: 'Lato', Arial, Helvetica, Lucida, sans-serif !important;
    position: absolute;
    right: 11px;
    width: 100px !important;
    justify-content: center;
    display: flex;
    align-items: center;
}

/* Calendar Results */
#event-wrap {
    width: 80%;
    max-width: 1240px;
    margin: auto;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.event-item {
    height: 550px;
    overflow: auto;
    border: 2px solid #e3e3e3;
    box-shadow: 0 2px 0 0 rgba(0,0,0,.016);
}

.event-image {
    height: 250px;
    object-fit: cover;
    margin-bottom: 5px;
    width: 100%;
}

.event-content {
    padding: 0 20px 5px;
    text-align: center;
    min-height: 125px;
}

.event-datetime {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    padding: 3px 20px;
    margin: 0 -20px 20px -20px;
    background-color: #2a4463 !important;
}

.event-datetime-wrapper {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    padding: 3px 20px;
    margin: 0 -20px 20px -20px;
    gap: 17px;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-weight: 300;
    letter-spacing: normal;
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0;
    padding-bottom: 10px;
}

.event-title-link {
    color: black !important;
}
.event-title-link:hover {
    color: #2a4463 !important;
}

.event-location {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.event-footer {
    position: relative;
    border-top: 1px solid #efefef;
    padding: 20px;
    margin: 0;
}

.event-footer .event-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #fff;
    color: #767676;
    border: 1px solid #e8e8e8;
    position: absolute;
    top: 20px;
    right: 15px;
    padding: 0 16px;
    line-height: 37px;
    height: 38px;
    border-radius: 2px;
}
.event-footer .event-link:hover {
    background: black;
    color: white;
}

.event-sharing-wrap {
    padding: 0 0 23px 1em;
    line-height: 26px;
    left: 15px;
    position: absolute;
    list-style: none;
    margin: 0;
}
li.event-share {
    border: 1px solid #d9d9d9;
    height: 34px;
    text-align: center;
    overflow: hidden;
    margin: 0 auto 6px;
    width: 34px;
}
li.event-share img {
    width: 34px;
    color: #d9d9d9;
}
li.event-share-bg-blue {
    background: #2a4463;
}
ul.event-sharing {
    position: absolute;
    padding: 8px 0 2px;
    left: -6px;
    bottom: 54px;
    margin: 0;
    margin-top: 6px;
    border-radius: 5px;
    min-width: 50px;
    
    visibility: hidden;
    opacity: 0;
    border: 1px solid #e2e2e2;
    background: #fff;
    box-shadow: 0 0 9px 0 rgba(0,0,0,.06);
    z-index: 99;
}
ul.event-sharing-show {
    visibility: visible;
    opacity: 1;
}
ul.event-sharing::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
    bottom: -21px;
    border-color: #e2e2e2 transparent transparent transparent;
}

ul.event-sharing::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
    bottom: -19px;
    border-color: #fff transparent transparent transparent;
}
.filter-social-icon {
    filter: invert(48%) sepia(0%) saturate(370%) hue-rotate(159deg) brightness(91%) contrast(60%);
}
.filter-social-icon-darkblue {
    filter: invert(21%) sepia(8%) saturate(3848%) hue-rotate(173deg) brightness(98%) contrast(84%);
}
li.event-social-icon-wrap {
    width: 20px;
    height: 20px;
    text-align: center;
    overflow: hidden;
    margin: 0px auto 20px;
    line-height: 19px;
}
li.event-social-icon-wrap img {
    width: 16px;
}
/* Tablet Calendar */
@media only screen and (max-width: 780px) and (min-width: 479px) {
    #calendar-dropdown-wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .calendar-dropdown {
        width: calc(50% - 20px);
        margin-bottom: 10px;
        padding: 0 20px 0 0;
    }

    #calendar-address-wrap,
    #calendar-date-search-wrap {
        width: calc(100% - 20px);
    }

    .calendar-text {
        width: 100%;
        display: block;
        margin-bottom: 10px;
        padding: 0;
    }

    .calendar-dropdown select {
        padding: 0 10px;
    }

    .calendar-date {
        padding: 0;
    }

    #calendar-clear-search {
        right: 20px;
    }
}

/* Mobile Calendar */
@media screen and (max-width: 479px) {
    #calendar-dropdown-wrap,
    #calendar-address-wrap,
    #calendar-date-search-wrap {
        width: 100%;
        display: table;
        margin-bottom: 15px;
    }
    
    .calendar-dropdown,
    .calendar-text {
        width: 100%;
        display: block;
        margin-bottom: 10px;
        padding: 0;
    }

    #calendar-clear-search {
        right: 0;
    }

    /* Calendar Results */
    #event-wrap {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* News */
#news-main {
    padding-top: 20px;
    margin-top: 0px;
    background-color: #f9f9f9 !important;
}
form#news {
    padding: 30px 0;
    max-width: 1200px;
    margin: auto;
}
#news-text-search-wrap {
    display: inline-flex;
    border: 1px solid black;
    border-radius: 3px;
}
.news-text input {
    width: 300px;
    border: none;
    padding-top: 0.715em !important;
    padding-right: 0.715em !important;
    padding-bottom: 0.715em !important;
    padding-left: 0.715em !important;
    font-size: 14px;
    color: #666;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
}
.news-text input:focus-visible {
    outline: none;
}
#news-search {
    color: #ffffff !important;
    background-color: #a3a3a3 !important;
    border: none;
    cursor: pointer;
    padding: .715em;
    margin: 0;
    font-size: 14px;
    line-height: normal !important;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
}
#news-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding-top: 30px;
    max-width: 1200px;
    margin: auto;
}
.news-item {
    position: relative;
    border-radius: 3px 3px 3px 3px;
    overflow: hidden;
    color: black;
    margin-bottom: 30px;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.news-image-link {
    padding-top: 60%;
    margin-bottom: 15px;
    display: block;
    position: relative;
}
.news-image {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
}
.news-title {
    text-align: left !important;
    font-size: 20px !important;
    line-height: 1.3em !important;
    padding: 0px 10px;
    margin: 0;
    font-family: 'Nunito', Helvetica, Arial, Lucida, sans-serif;
    margin-top: 0 !important;
}
.news-title a,
.news-author a {
    color: #000000;
}
.news-author-datetime {
    font-size: 14px;
    padding: 0 10px;
    margin: 6px 0;
}
.news-body {
    font-size: 14px;
    line-height: 1.7em;
    padding: 10px;
    word-wrap: break-word;
}
/* Pagination */
.news-pagination {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}
.news-pagination #pagination-prev {
    padding-right: 40px;
}
.news-pagination a {
    color: #0C71C3;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
}
.news-pagination img {
    vertical-align: text-bottom;
    display: inline-block;
}
.filter-prev-next-lightblue {
    filter: invert(32%) sepia(77%) saturate(2721%) hue-rotate(190deg) brightness(85%) contrast(91%);
}

/* Mobile News */
@media screen and (max-width: 479px) {
    form#news {
        width: 80%;
        margin: auto;
    }
    #news-wrap {
        width: 80%;
        margin: auto;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    #news-text-search-wrap {
        width: 100%;
    }
    #text-wrap {
        flex-grow: 1;
    }
     #text-wrap input {
        flex-grow: 1;
        width: unset;
    }
}
/* Frontpage Events Slides */
#events-slides-filters {
    width: 60%;
    margin: auto;
}
#events-slides-culture-search-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 38px;
    border: 1px solid;
    border-radius: 3px;
    margin-top: 40px;
}
#events-slides-text-wrap {
    border-right: 2px solid #E8E8E8;
}
.events-slides-text {
    flex-grow: 2;
    height: 100%;
}
.events-slides-text .inline-wrap {
    height: 100%;
}
.events-slides-text img {
    width: 16px;
    padding-left: 10px;
}
.events-slides-text input {
    font-size: 1rem;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    padding-left: 10px;
    border: none;
}
.events-slides-text input:focus {
    outline: none;
}
input#events-slides-search {
    font-size: 1rem;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    width: 200px;
    height: 38px;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
    background-color: rgba(28,57,91,0.95);
    border: none;
}
#events-slides h2 {
    font-size: 32px;
    font-weight: 800;
    color: black !important;
    text-align: center;
    line-height: 1.2em;
    font-family: 'Nunito', Helvetica, Arial, Lucida, sans-serif;
    margin-top: 40px;
}
.events-slides-item-wrap {
    position: relative;
    flex-basis: 25%;
}
#events-slides-wrap {
    position: relative;
    width: 100%;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    transition: left 0.3s;
    /* align-items: center; */
    justify-content: center;
}
.events-slides-item {
    overflow: auto;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, .016);
    margin: 0 19px;
}
.events-slides-item img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}
.events-slides-content {
    height: 180px;
    overflow: auto;
    border: 1px solid #e8e8e8;
    border-top: none;
    padding: 37px 35px 0px 37px;
    margin-top: -5px;
}
.events-slides-title {
    margin: 0 0 20px 0;
}
.events-slides-title a {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -1px;
    color: #0a0202;
    margin-bottom: 10px;
}
.events-slides-location {
    margin: 0 0 20px 0;
    color: #616161;
    font-size: 14px;
    line-height: 0;
}
.events-slides-image-wrap {
    position: relative;
}
.events-slides-date-wrap {
    display: flex;
    align-items: center;
    width: 80px;
    position: absolute;
    top: 25px;
    left: 1px;
    color: #fff;
    background-color: #2a4463;
    line-height: 2.3;
    padding: 0 60px 0 14px;
}
.events-slides-date-wrap::after {
    content: "";
    position: absolute;
    display: inline-block;
    z-index: -1;
    bottom: -13px;
    left: 5px;
    width: 0;
    border-width: 13px;
    border-style: solid;
    border-color: #2a4463;
    transform: rotate(45deg);
}
.events-slides-date-label {
    font-size: 30px;
    font-weight: 500;
    padding-right: 20px;
}
.events-slides-date-label p {
    margin: 0;
}
.events-slides-date-info {
    font-weight: 300;
}
.events-slides-date-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1rem;
}
.events-slides-item-wrap:nth-child(n+5) {
    display: none;
}
#events-slides-dots {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
#events-slides-dots img {
    width: 45px;
}
#events-slides-dots img:hover {
    cursor: pointer;
}
.events-slides-dot-dark {
    filter: invert(63%) sepia(20%) saturate(163%) hue-rotate(107deg) brightness(89%) contrast(90%);
}
.events-slides-dot-light {
    filter: invert(79%) sepia(76%) saturate(1%) hue-rotate(314deg) brightness(95%) contrast(91%);
}
#events-slides-dots-mobile {
    display: none;
}

/* Mobile Frontpage Events Slides */
@media screen and (max-width: 479px) {
    #events-slides-filters {
        width: 80%;
    }
    #events-slides-culture-search-wrap {
        height: auto;
        flex-direction: column;
        border: none;
    }
    .events-slides-text {
        width: 100%;
        height: 35px;
        margin-bottom: 10px;
        border: 1px solid #ced4da;
        border-radius: 3px;
    }
    #events-slides-text-wrap {
        border-right: 1px solid #ced4da;
    }
    #events-slides-search {
        width: 100% !important;
        border-radius: 3px;
    }
    #events-slides h2 {
        width: 80%;
        margin: 40px auto;
    }
    .events-slides-item-wrap {
        flex-basis: unset;
        width: 100%;
        display: none;
    }
    .events-slides-item-wrap:nth-of-type(1) {
        display: block !important;
    }
    #events-slides-dots {
        display: none;
    }
    #events-slides-dots-mobile {
        display: block;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    #events-slides-dots-mobile img {
        width: 30px;
    }
}

/* Article/News css */
#article-header {
    background-repeat: no-repeat;
    background-position: left bottom 44%;
    background-size: 100% auto;
    background-color: #1c395b !important;
    background-blend-mode: multiply;
}


.article-container {
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.article-heading {
    font-family: 'Nunito', Helvetica, Arial, Lucida, sans-serif !important;
    line-height: 46px;
    max-width: 800px;
    font-size: 38px;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 15px;
}

.article-meta {
    max-width: 800px;
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    margin-bottom: 25px;
    line-height: 18px;
}

.article-date {
    margin-top: 4px;
}

.article-image-wrapper {
    max-width: 800px;
    width: 100%;
    margin-bottom: 30px;
}

.article-img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}

.article-image-caption {
    background-color: #f3f3f3;
    padding: 8px 12px;
    font-size: 12px;
    border: 1px solid #ddd;
    font-weight: 500;
    color: #666;
    line-height: 21px;
}

.article-content {
    max-width: 800px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    text-align: left;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .article-heading {
        font-size: 32px;
    }

    .article-content {
        font-size: 17px;
    }

    .article-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .article-heading {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .article-content {
        font-size: 16px;
        line-height: 1.5;
    }

    .article-container {
        padding: 25px 15px;
    }

    .article-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .article-heading {
        font-size: 24px;
    }

    .article-content {
        font-size: 15px;
        line-height: 1.4;
    }

    .article-container {
        padding: 20px 10px;
    }

    .article-img {
        height: 200px;
    }

    .article-image-caption {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* Event css */
.event-container {
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.event-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 65%;
    margin-bottom: 30px;
}

.event-image-wrapper img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}


.event-overlay {
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px 115px 40px 21px;
    border-radius: 8px;
    color: #000;
    border-left: 7px solid #e84933;
}

.event-datetime {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.event-date,
.event-time {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.event-text {
    display: flex;
    flex-direction: column;
    color: #91979f;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
}

.event-below {
    display: grid;
    grid-template-columns: 74% 25%;
    gap: 14px;
    width: 100%;
    max-width: 65%;
    margin-bottom: 20px;
    align-items: stretch;
}

.event-left {
    border: 1px solid #e5e7eb;
    padding: 50px 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 8px;
}

.event-right {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    gap: 15px;
}

.event-box {
    background: #f7f7f7;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

.cities-list,
.event-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.city-name{
    color: #626262;
    line-height: 23px;
}

.city-name,
.category-name {
    background-color: #eaeced;
    border-radius: 5px;
    color: #000;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 7px 11px;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-item .location-name {
    display: flex;
    flex-direction: column;
    color: #626262;
    font-size: 16px;
    line-height: 12px;
}

.location-item .street-name {
    color: #a9a9a9;
    font-size: 12px;
    line-height: 19px;
}

.share-icons {
    display: flex;
    gap: 15px;
}

.share-icons i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid #a9a9a9;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-icons i:hover {
    color: #fff !important;
    background-color: #00b6f1;
    border-color: #00b6f1;
}

.qr-section {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.qr-section .qr-code {
    width: 120px;
    height: 120px;
    
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.timezone-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timezone-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #b4b6b8;
    font-size: 12px;
}

.timezone-item i {
    min-width: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.share-section-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.share-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;       
    width: 100%;
    gap: 10px;
}

.share-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section-title-left {
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #898a8c;
    margin: 0;
}
.share-icons-left {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}
.share-icons-left i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid #a9a9a9;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-icons-left i:hover {
    color: #fff !important;
    background-color: #00b6f1;
    border-color: #00b6f1;
}
.share-buttons-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-left {
    display: inline-block;
    border: 1px solid #e3e4e5;
    border-radius: 3px;
    box-shadow: none;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: #00acf8;
    margin: 0;
    margin-left: 20px;
    padding: 10px 16px 9px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-left:hover {
    border: 1px solid #00acf8;
    background-color: transparent;
    color: #00acf8;
}

.event-divider {
    border: none;
    height: 1px;
    background-color: #d4d5d9;
    margin: 20px 0;
    width: 100%;
}

.event-left-boxes {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    flex-direction: column;
}

.event-box-item {
    flex: 1;
    min-width: 200px;
    background-color: #f7f7f7;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}

.event-box-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.event-box-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #626262;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;    
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    text-align: center;
    padding: 5px;
}

.count-value {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.count-label {
    font-size: 12px;
    color: #626262;
    margin-top: 2px;
}
.location-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item-left {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-icon {
    font-size: 36px;
    color: #bcc4ce;
    flex-shrink: 0;
}

.location-text {
    display: flex;
    flex-direction: column;
}

.location-name-left {
    font-weight: 400;
    font-size: 16px;
    color: #626262;
}

.street-name-left {
    font-weight: 400;
    font-size: 14px;
    color: #898a8c;
    margin-top: 2px;
}
.event-date i,
.event-time i {
    margin-top: 2px;
    line-height: 1;
}

@media (max-width: 992px) {


    .event-image-wrapper,
    .event-below {
        max-width: 100%;
    }

    .event-below {
        grid-template-columns: 1fr;
    }

    .event-image-wrapper img {
        height: 340px;
    }

    .event-overlay {
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }

    .event-left-boxes {
        flex-direction: column;
    }

    .countdown-container {
        gap: 12px;
    }
}


@media (max-width: 576px) {

    .event-image-wrapper img {
        height: 240px;
    }

    .event-overlay {
        position: static;
        width: 100%;
        margin-top: 12px;
        padding: 16px;
        border-left: 5px solid #e84933;
    }

    .event-datetime {
        width: 100%;
        gap: 10px;
    }

    .share-row {
        flex-direction: column;
        gap: 15px;
    }

    .share-buttons-left {
        width: 100%;
    }

    .btn-left {
        margin-left: 0;
        width: 100%;
    }

    .event-left {
        padding: 25px 20px;
    }

    .event-box {
        padding: 16px;
    }

    .countdown-container {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .event-image-wrapper,
    .event-below {
        max-width: 100%;
    }

    .event-image-wrapper img {
        height: 340px;
    }

    .event-overlay {
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }
}


@media (max-width: 576px) {
    .event-image-wrapper img {
        height: 240px;
    }

    .event-overlay {
        position: static;
        margin-top: 12px;
        width: 100%;
        border-left: 5px solid #e84933;
    }
}

.events-Kommende{
    background-color: #f9f9f9 !important;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.events-Kommende h2{
    padding-top: 30px;
}

.events-slides-load-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.events-slides-load-more-link{
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #767676;
    border: 1px solid #ced4da;
    border-radius: 50px;
    padding: 15px 20px;
}

.events-slides-load-more-link:hover{
    /* border: 1px solid #0a0202; */
    background-color: #000;
    color: #fff;
}

.news-main-index{
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.new-load-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.news-load-more-link {
    font-family: Lato, Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #06131e5e;
    border: 2px solid rgba(6,19,30,0.37)!important;
    border-radius: 5px;
    padding: 15px 0 15px 20px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.arrow-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, margin-left 0.25s ease;
    margin-left: 0;
}

.news-load-more-link.hovered .arrow-icon {
    opacity: 1;
    transform: translateX(0);
    margin-left: 6px;
    padding-right: 10px;
    margin-top: 4px;
}

.news-load-more-link:hover {
    background-color: #f2f2f2;
    border: 2px solid transparent !important;
}

#evet-wrap-index {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    padding-top: 30px;
    max-width: 1200px;
    margin: auto;
}
.event-item-index {
    border: 1px solid #e8e8e8;
    position: relative;
    border-radius: 3px 3px 3px 3px;
    overflow: hidden;
    color: black;
    margin-bottom: 30px;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 15px;
}
.event-image-link-index {
    padding-top: 60%;
    margin-bottom: 15px;
    display: block;
    position: relative;
}
.event-image-index {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
}

.event-datetime-index {
    font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #898a8c;
    font-size: 12px;
    font-weight: 400;
    line-height: 27px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin: 6px 0;
}

.event-date-index, .event-time-index {
    display: flex;
    align-items: center;
    gap: 4px;
}

.event-date-index i, .event-time-index i {
    font-size: 16px;
}
.event-content-index {
    text-align: left !important;
}

.event-title-index a {
    color: #171c24;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3em !important;
    font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: inline-block;
}

.events-slides-content-index {
    height: 125px;
    overflow: auto;
    /* border: 1px solid #e8e8e8; */
    /* border-top: none; */
    padding: 5px 0px 0px 12px;
    margin-top: -5px;
}

.events-slides-title-index-link {
    margin: 0 0 20px 0;
}

.events-slides-title-index a {
    font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
    margin-bottom: 10px;
}

.event-location-index span {
    font-size: 10px;
    font-weight: 400;
    line-height: 16px;
    color: #707172;
}

.event-location-index i {
    font-size: 10px;
}

.events-slides-content-index h4{
    margin-bottom: 5px !important;
}

.search-wrapper {
    position: relative;
    width: 70%;
}
#events-slides-text {
    width: 100%;
    padding-right: 32px;
}
.clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #999;
    display: none;
    user-select: none;
}

.clear-search:hover {
    color: #000;
}
.search-results {
    position: absolute;
    top: 100%;
    left: -2px;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
    z-index: 1000;
}

.search-results .item {
    padding: 10px;
    cursor: pointer;
}

.search-results .item:hover {
    background: #f5f5f5;
}
.index-city {
    width: 70% !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}
.index-city select{
    height: 38px !important;
}

.index-city label{
    display: none !important;
}