:root {
    --black: #000000;
    --white: #ffffff;
    --blue: #609ad9;
    --gray: #888580;
    --orange: #ffbc6f;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

body {
    font-family: "neue-haas-grotesk-text", sans-serif;
    background: var(--black);
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

p {
    font-size: 16px;
}

.container {
    width: 1440px;
    max-width: 100%;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.row {
    display: flex;
}

.row > div {
    flex: 1;
}

img {
    max-width: 100%;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.g-50 {
    gap: 50px;
}

.top-nav {
    padding: 15px 0px;
}

.top-nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.top-nav ul a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

nav {
    position: fixed;
    z-index: 5;
    margin: auto;
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0)
    );
}

nav .row {
    align-items: center;
    gap: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
    gap: 50px;
    padding: 0 15px 0;
    margin: 0;
}

nav ul a {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
}

nav .nav-logo {
    flex: 0.5;
}

nav .main-nav-list {
    flex: 1.5;
}

nav .nav-logo img {
    height: 75px;
    width: auto;
}

nav .nav-social ul {
    gap: 0px;
    padding: 0;
    align-items: center;
}

nav .nav-social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

nav .divider {
    border-bottom: 0.25px solid var(--white);
    margin-bottom: 15px;
}

.mobile-nav {
    display: none;
    text-align: right;
    font-size: 36px;
}

.btn {
    background: var(--white);
    color: var(--blue);
    border: 1px solid var(--white);
    border-radius: 10px;
    padding: 10px 35px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn:hover {
    background: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}

.br-30 {
    border-radius: 30px;
    padding-left: 45px;
    padding-right: 45px;
}

.btn-wide {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.mt-50 {
    margin-top: 50px !important;
}

header {
    position: relative;
}

header h2 {
    font-size: 76px;
    line-height: 1;
    width: 600px;
    max-width: 100%;
    margin-bottom: 50px;
    font-weight: 400;
}

header.page-header .container {
    position: relative;
    height: 75vh;
}

header .page-header-content {
    position: absolute;
    bottom: 100px;
}

header .page-header-content h1 {
    font-size: 96px;
    line-height: 96px;
    font-weight: 400;
}

header .page-header-content p {
    padding-top: 25px;
    font-size: 24px;
}

.carousel .carousel-slide {
    background-image: url("../assets/images/bg-01.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide {
    height: 100vh;
}

.carousel-description {
    position: absolute;
    bottom: 100px;
    width: 100%;
    max-width: 90%;
}

.carousel-description p {
    margin-top: -25px;
    margin-bottom: 25px;
    line-height: 1.5;
    width: 500px;
    max-width: 100%;
}

.carousel-indicators {
    display: inline-flex;
    position: absolute;
    bottom: 25px;
    justify-content: center;
    width: 100%;
    gap: 5px;
}

.carousel-indicators span {
    height: 5px;
    width: 5px;
    border: 1px solid var(--white);
    border-radius: 100px;
    background: transparent;
}

.carousel-indicators span:hover {
    cursor: pointer;
}

.carousel-indicators span.carousel-current {
    background: var(--white);
}

section.s-01 {
    background-image: url("../assets/images/bg-02.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

section h2 {
    font-size: 90px;
    font-weight: 400;
    padding-bottom: 100px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown p {
    position: absolute;
    top: -25px;
    font-size: 16px;
    line-height: 21px;
    color: var(--black);
}

.dropdown i {
    margin-left: 45px;
}

.dropdown-btn {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    padding: 15px;
    cursor: pointer;
    border-radius: 0;
    font-size: 16px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 150px;
    z-index: 1;
    width: 100%;
    border: 1px solid black;
    border-top: 0;
    left: 0;
    top: 50px;
}

.dropdown-content a {
    color: var(--black);
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.dropdown:hover .dropdown-content {
    display: inline-block;
}

.search-container {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    overflow: hidden;
    width: 250px;
    border: 1px solid var(--black);
}

.search-input {
    flex: 1;
    border: none;
    padding: 8px;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.search-button {
    background: transparent;
    color: var(--black);
    padding: 8px 12px;
    border-right: 1px solid;
    border-bottom: 0;
    cursor: pointer;
    height: 100%;
    border-left: 0;
    border-top: 0;
}

.search-button:hover {
    background: var(--black);
    color: var(--white);
}

.filter {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.events-cards {
    display: flex;
    gap: 25px;
}

.event-card {
    background: rgba(255, 255, 255, 0.25);
    padding: 15px;
    border: 1px solid;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    justify-content: space-between;
}

.event-card-info h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.event-card-info p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.event-card-location h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
}

.event-card-buttons {
    padding: 0;
}

.event-card-buttons .btn {
    margin-bottom: 10px;
}

.event-card-buttons .btn-img {
    display: flex;
    justify-content: center;
}

.event-card-buttons .btn-img img {
    height: 22px;
    width: auto;
}

.event-card-buttons-row {
    display: flex;
    gap: 10px;
}

.event-card-buttons-row > a {
    flex: 1;
}

.events-cards-arrows {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.events-cards-arrows i:hover {
    cursor: pointer;
}

.event-card-image img {
    min-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 25px;
    object-fit: cover;
}

.event-card-02 {
    min-width: 375px;
    height: 419px;
    position: relative;
    border-radius: 25px !important;
}

.event-card-02:hover {
    cursor: pointer;
}

.event-card-02 .event-card-content {
    width: 75%;
    position: absolute;
    bottom: 25px;
    left: 25px;
}

.event-card-02 h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.current-events .events-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.current-events .events-cards img {
    min-width: 100%;
}

.uppercase-text {
    text-transform: uppercase;
}

.btn-container {
    text-align: center;
    margin-top: 30px;
}

.s-02 {
    padding: 100px 0;
    background-image: url("../assets/images/bg-03.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid var(--white);
}

.s-02 .container {
    position: relative;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.s-02 .sun {
    position: absolute;
    top: -160px;
    right: 150px;
    animation: rotate 10s linear infinite;
}

.s-02 .row {
    gap: 300px;
}

.s-02 .content p {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    padding-bottom: 50px;
}

.s-03 {
    padding: 100px 0;
}

.s-03 h2 {
    padding-bottom: 75px;
}

.input-container {
    display: flex;
    align-items: center;
    border: 1px solid var(--blue);
    overflow: hidden;
    width: 100%;
    margin-top: 25px;
}

.input-container input {
    background: var(--black);
    color: var(--white);
    flex: 1;
    border: none;
    padding: 8px;
    outline: none;
    height: 100%;
    font-size: 16px;
}

.input-container button {
    border: none;
    background: var(--blue);
    color: var(--white);
    padding: 8px 12px;
    cursor: pointer;
    padding-left: 45px;
    padding-right: 45px;
    font-size: 16px;
}

.input-container button:hover {
    background: var(--white);
    color: var(--blue);
}

.b-0 {
    border: none;
}

.mt-0 {
    margin-top: 0;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-50 {
    margin-bottom: 50px;
}

.s-05 {
    padding: 50px 0;
    background-color: var(--orange);
}

.s-06 {
    padding: 0 0 50px 0;
    background-color: var(--orange);
    color: var(--black);
}

.s-06 h2 {
    padding-bottom: 40px;
}

.s-06 p {
    width: 850px;
    max-width: 100%;
    font-size: 20px;
    line-height: 30px;
}

.form {
    width: 800px;
    max-width: 100%;
    margin: 0px auto;
}

.s-07 {
    padding: 100px 0 50px 0;
    background-color: var(--black);
    color: var(--white);
}

.s-07 .filter .dropdown-btn,
.s-07 .search-container {
    color: var(--white);
    border-color: var(--white);
}

.s-07 .search-button {
    color: var(--white);
}

.s-07 .dropdown p {
    color: var(--white);
}

.s-07 .search-input {
    color: var(--white);
}

.s-07 .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--black);
    min-width: 100%;
    z-index: 1;
    width: 100%;
    border: 1px solid var(--white);
    border-top: 0;
    left: 0;
    top: 50px;
}

.s-07 .dropdown-content a {
    color: var(--white);
}

.s-07 .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-content-header {
    width: 600px;
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.s-08 .page-content-header div {
    flex: 1;
}

.s-08 .page-content-header div:last-child {
    text-align: right;
}

.page-content-header a {
    color: var(--white);
    text-decoration: none;
    font-size: 32px;
}

.page-content-header h2 {
    font-size: 48px;
    padding-bottom: 10px;
}

.event-gallery {
    padding-bottom: 125px;
}

.event-gallery-items {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.event-gallery-items .item {
    flex: 1;
}

.event-gallery-items .item:nth-child(2) {
    flex: 1.5;
}

.event-gallery-items .item img {
    width: 100vw;
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}

.event-gallery-items .item img:hover {
    cursor: pointer;
}

.event-gallery-items-container {
    text-align: center;
}

.s-09 {
    padding: 100px 0;
}

.s-09 .gallery-row {
    gap: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 110%;
    left: -5%;
    position: relative;
    right: -5%;
}

.s-09 .gallery-row img {
    border-radius: 25px;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.gallery-pagination {
    text-align: center;
    padding-top: 75px;
}

.gallery-pagination a {
    color: var(--white);
    text-decoration: none;
    font-size: 32px;
    transition: all 0.2s;
}

.gallery-pagination a:hover {
    color: var(--blue);
}

.gallery-pagination a span {
    font-size: 16px;
}

.gallery-pagination a.btn {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
}

.gallery-pagination .row {
    justify-content: center;
}

.gallery-full-view {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 25px;
}

.gallery-close {
    text-align: right;
}

.gallery-links {
    position: absolute;
    bottom: 25px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.gallery-links a {
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
}

.gallery-number {
    position: absolute;
    right: 25px;
    padding: 0 100px;
    bottom: 25px;
}

.gallery-number p {
    font-size: 32px;
}

.s-20 {
    background-image: url("../assets/images/bg-02.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.s-20 h2 {
    color: var(--black);
    padding-bottom: 50px;
}

.s-20-1 {
    position: relative;
}

.s-20-1 .map {
    position: absolute;
    height: 450px;
    width: auto;
    object-fit: contain;
    object-position: left;
    right: 0;
}

.s-20-1 h2.bigger-text {
    font-size: 52px;
    padding-bottom: 100px;
}

.s-20-1 p {
    color: var(--black);
    padding-bottom: 50px;
    line-height: 1.5;
}

.s-20-2 {
    padding: 100px 0 0;
}

.accordion {
    margin-bottom: 50px;
    color: var(--black);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid;
    padding: 5px;
    align-items: center;
}

.accordion-header:hover {
    cursor: pointer;
}

.accordion-header span {
    font-size: 26px;
}

.accordion h3 {
    font-weight: 400;
    font-size: 20px;
}

.accordion-content {
    padding: 25px 5px;
    display: none;
}

.accordion-content p {
    line-height: 22px;
}

.section-header-bg {
    background-image: url("../assets/images/bg-08.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    width: 1500px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 100px;
    height: 600px;
    position: relative;
    margin-top: 100px;
}

.section-header-bg h2 {
    color: var(--white);
    padding: 45px;
    position: absolute;
    bottom: 50px;
}

.s-20 .section-content {
    padding: 75px 0 0;
}

.s-20 .section-content p {
    font-size: 15px;
    line-height: 24px;
    color: var(--black);
    padding-bottom: 20px;
}

.tree-divider {
    border-bottom: 1px solid var(--black);
    text-align: center;
    margin-top: 100px;
}

.tree-divider img {
    margin-bottom: -5px;
}

.widget {
    list-style: none !important;
}

footer {
    border-top: 2px solid var(--blue);
    padding: 100px 0;
    color: var(--blue);
}

footer .row {
    flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

footer .blocks-row {
    display: flex;
    justify-content: space-between;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-left img {
    margin-bottom: 125px;
}

.footer-right {
    text-align: center;
}

.footer-right ul {
    width: 175px;
    max-width: 100%;
    text-align: left;
    margin: auto;
}

footer a {
    color: var(--blue);
    text-decoration: none;
}

footer a:hover {
    color: var(--white) !important;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-indicator.active {
    background-color: var(--white);
}

.slick-track {
    display: flex;
}

.slick-arrow {
    z-index: 1;
}

.slick-next {
    right: 0;
}

.slick-prev {
    left: 0;
}

.slick-slide {
    /*   width: unset !important; */
    margin-right: 25px;
}

.btn-wrap {
    text-align: center;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    margin-top: 35px;
    gap: 15px;
}

.slick-list button {
    display: none !important;
}

.btn-wrap button {
    background: transparent !important;
    border: 0 !important;
    color: var(--white) !important;
    font-size: 18px;
    display: inline-flex !important;
}

.btn-wrap button:hover {
    cursor: pointer;
}

.slick-list button.slick-disabled {
    opacity: 0.6;
}

footer .social a {
    color: var(--blue);
    text-decoration: none;
    display: flex;
    gap: 15px;
    justify-content: end;
}

footer .social ul {
    gap: 25px;
}

.video_contain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.75;
}

video {
    display: block;
    height: auto;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.event-gallery-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.event-gallery-carousel .item {
    flex: 0 0 33.33%; /* Display 3 items at a time */
    padding: 10px;
    box-sizing: border-box;
}

.event-gallery-carousel .item img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-nav {
    text-align: center;
    margin-top: 20px;
}

.nav-btn {
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border: none;
    cursor: pointer;
}

.nav-btn:hover {
    background-color: #333;
}

.mobile-nav-menu {
    position: absolute;
}

.mobile-nav-menu {
    display: none;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    height: 100%;
    z-index: 4;
    padding-top: 200px;
    position: fixed;
}

.mobile-nav-menu ul#menu-header-nav-1 {
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    list-style: none;
}

.mobile-nav-menu ul#menu-header-nav-1 a {
    color: white;
    text-decoration: none;
    font-size: 21px;
}

.mobile-nav-menu .nav-social ul {
    list-style: none;
    text-align: center;
    padding: 0;
    width: 200px;
    margin: 35px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 30px;
}

.mobile-nav-menu .nav-social ul li:first-child {
    grid-column: span 3;
}

.mobile-nav-menu .btn {
    width: 100%;
}

.mobile-nav-menu .nav-buttons {
    display: block !important;
}

.d-block {
    display: block !important;
}

.menu-open {
    overflow: hidden;
    height: 100vh;
}

.s-06.wp-pg h2 {
    padding-bottom: 40px;
    padding-top: 40px;
    font-size: 36px;
}

.s-06.wp-pg p {
    margin-bottom: 25px;
    width: unset;
}

.gallery-pagination .row div {
    flex: 1;
}

.policies-style h3 {
    font-weight: 400;
    font-size: 20px;
    color: black;
    margin-bottom: 15px;
}

.policies-style ul {
    margin: 0;
    margin-bottom: 25px;
    color: black;
    display: inline-grid;
    gap: 15px;
}

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

.event-card-buttons .btn {
    margin-bottom: 0px;
}

.map-container iframe {
    border: 0;
    border-radius: 50px;
    position: absolute;
    right: -50px;
}

footer .block-01 p {
    width: 175px;
    max-width: 100%;
    text-align: left;
    margin: auto;
    margin-bottom: 10px;
    font-weight: 600;
}

.c-slide-card-container h3 span {
    font-size: 28px;
    line-height: 1.1;
}

.c-slide-card-container {
    min-height: 780px;
}

.pb-10 {
    padding-bottom: 10px;
}

.block-02 img {
    max-width: 175px;
}

.tag-filter {
    padding-bottom: 75px;
    text-align: center;
}

.mobile-tag-filter {
    display: none !important;
}

.desktop-tag-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    width: 1000px;
    max-width: 100%;
    margin: auto;
}

.desktop-tag-filter a {
    flex: 0 1 calc((100% - 75px) / 4);
    border-radius: 25px;
    background: var(--white);
    color: var(--blue);
    border: 1px solid var(--white);
    padding: 10px 35px;
    text-decoration: none;
    display: inline-block;
    align-content: center;
    transition: all 0.2s;
}

.desktop-tag-filter a.active {
    border-color: var(--blue);
}

.desktop-tag-filter a:hover {
    background: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}

#tag-dropdown {
    padding: 10px 25px 10px 15px;
    border-radius: 25px;
    font-size: 21px;
    border-color: black;
    color: black;
    background: white;
}

.category-events section.s-01,
.archive.tag section.s-01 {
    background-size: 100% 135%;
    background-position: bottom;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sticky-ad {
    text-align: center;
    position: fixed;
    bottom: 25px;
    width: 100%;
    z-index: 10;
}

.sticky-ad img {
    height: auto;
    width: 50%;
}
nav.is-scrolled {
    background-color: #000;
}
.single-gallery {
    margin-top: 300px;
}
.event-card-single {
    width: 40%;
    margin: auto;
}
.event-card-single .event-card-buttons .musiconly {
    width: 50%;
}
