.textWrapper h2 {
   margin-bottom: 2rem;
}

.textWrapper h3 {
   margin-bottom: 1rem;
}

/* Basic table styling
   Left aligned
   With white background
   With #e5e7eb border
*/

table {
   border-collapse: collapse;
   width: 100%;
   max-width: calc(100% - 30px);
   margin: 6rem auto !important;
   border-radius: 20px;
   border-collapse: collapse;
   border: 1px solid rgb(16 15 15 / 0.05);
}

td {
   text-align: left;
   padding: 16px 16px 16px 16px;
   line-height: 1.4;
   border: 1px solid rgb(16 15 15 / 0.05);
}

td:first-child {
   border-left: 0;
}

tr:first-child td {
   border-top: 0;
}

b,
strong {
  font-weight: bold !important;
}

@media (min-width: 1024px) {
    .nav-item .nav-children {
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 240px;
    }
    
    .nav-item.with-children:hover > .nav-children {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 1023px) {
    .nav-item .nav-children {
        display: none;
        padding-left: 1rem;
    }

    .nav-item.is-open > .nav-children {
        display: block;
    }

    .nav-item > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
    }
    

    .nav-item.is-open .fa-angle-down {
        transform: rotate(180deg);
    }
}


.nav-item .nav-children:empty {
    display: none;
}

.nav-item.with-children {
    position: relative;
}

.textWrapper.text-center ul {
    text-align: left;
}

section.hero .jetty2jetty .image-wrapper img {
    max-height: 530px;
    width: auto;
}

.social-container a:not(:last-child) {
    margin-right: 14px;
}

.social-container a:hover {
    color: rgba(0, 0, 0, 0.8);
}

.social-container a.facebook {
    font-size: 24px;
    line-height: 24px;
}

.social-container a.tiktok {
    font-size: 23px;
    line-height: 24px;
}

.social-container a.instagram {
    font-size: 26px;
    line-height: 24px;
}

.social-container a.youtube {
    font-size: 28px;
    line-height: 24px;
}

@media (max-width: 1023px) {
    .festivalNavOpen #festivalNav {
        max-height: calc(100vh - 12rem);
        overflow-y: hidden;
    }
    .festivalNavOpen #festivalNav .menuWrapper {
        max-height: calc(100vh - 15rem);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

@media (min-width: 1024px) {
  .lg\:max-w-\[350px\] {
    max-width: 350px;
  }
}

.logo-wrapper .header-logo {
    flex: 1;
}