html, body {
	scroll-behavior: smooth;
}

.sub-header {
    display: none;
}

.site-inner>.wrap {
    max-width: 100%;
}

.gala-header {
    width: 100%;
    padding: 20px;
}

.gala-header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-logo {
    max-width: 230px;
    width: 100%;
}

.gala-nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 50px;
}

.header-line {
    margin-block: 10px;
    display: inline-block;
    border-top: 1px solid var(--style-main);
    width: 100%;
}

.gala-header .menu-item a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 20px;
}

/* mobile */

.nav-container {
    width: 100%;
}

.responsive-menu-icon {
    text-align: center;
}

@media(max-width: 1350px) {
    .gala-nav-menu {
        gap: 30px;
    }
    
    .menu-item a {
        font-size: 16px;
    }
}

@media(max-width: 1024px) {
    .gala-nav-menu {
        display: none;
    }

    .menu-item {
        text-align: center;
    }
}



/* hero ============ */

.relative {
    position: relative;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero {
    position: relative;
}

.hero-bg {
    /* opacity: .25; */
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    padding-block: 50px;
}

.hero-flex {
    display: flex;
    gap: 100px;
}

.hero-flex::before, .hero-flex::after {
    content:none;
}

.gala-text {
    max-width: 540px;
    margin-block: auto;
}

.gala-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-line {
    height: 450px;
    width: 5px;
    margin-block: auto;
}

.half-height .hero-line {
    height: 225px;
}

.no-hero-line {
    display: none;
}

.hero-titles {
    padding-block: 200px;
}

.half-height .hero-titles {
    padding-block: 100px;
}

.hero-title {
    color: inherit;
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-wrap: balance;
}

.hero-subtitle {
    color: inherit;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-wrap: balance;
}

@media(max-width: 1450px) {
    .hero-flex {
        gap: 50px;
    }
    
    .gala-text {
        max-width: 350px;
    }

    .hero-line {
        width: 3px;
    }

    .hero-titles {
        padding-block: 100px;
    }

    .hero-title, .hero-subtitle {
        font-size: 30px;
    }
}

@media(max-width: 1024px) {
    .hero-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .gala-text {
        aspect-ratio: 1 / 1;
        
    }

    .hero-line {
        width: 80%;
        height: 3px!important;
    }

    .hero-titles {
        padding-block: 0px!important;
        text-align: center;
    }
    
}

@media(max-width: 768px) {
    .gala-text {
        max-height: 250px;
    }

    .hero-title, .hero-subtitle {
        font-size: 23px;
    }
    
}



/* sponsors */

.sm-pad {
    padding-block: 50px;
}

.sponsors-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    color: #000;
    font-weight: 500;
}

.sponsor-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sponsor-logos::before, .sponsor-logos::after {
    content: none;
}

.sponsor-logos img {
    width: calc(16.666%);
    aspect-ratio: 6 / 3;
    object-fit:contain;
}

@media(max-width: 768px) {
    
    .sponsor-logos img {
        width: 30%;
    }
}




/* 2 columns */

.pad {
    padding-block: 120px;
}

.two-col-flex {
    display: flex;
    gap: 50px;
}

.two-col-flex::before, .two-col-flex::after {
    content: none;
}

.column {
    width: 50%;
}

.column p, .column li, .text-area p {
    color: #000;
    font-size: 24px;
}

.column li::before {
    content: "\f005";
    margin-right: 10px;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    color: #f7d37b;
}

.column ul {
    margin-bottom: 20px;
}

.gala-link {
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    background: var(--style-main);
    padding: 10px 20px;
    transition: .3s;
}

.gala-link:hover {
    background: var(--style-quad);
    color: #fff;
}

.column p a {
    text-decoration: underline;
    color: var(--style-main);
}

.column p a:hover {
    color: var(--style-quad);
}


@media(max-width: 1920px) {
    .pad {
        padding-block: 100px;
    }

    .column p, .column li, .gala-link, .text-area p {
        font-size: 22px;
    }
}

@media(max-width: 1024px) {
    .pad {
        padding-block: 70px;
    }

    .column p, .column li, .gala-link, .text-area p {
        font-size: 20px;
    }

    .two-col-flex {
        flex-direction: column;
    }

    .column {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .pad {
        padding-block: 40px;
    }

    .column li {
        text-align: left;
    }

    .column p, .column li, .gala-link, .text-area p {
        font-size: 16px;
    }
}







/* info + boxes */

.links-boxes:has(+ .links-boxes) {
    padding-bottom: 0px;
}

.links-list {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.links-link {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
    color: var(--style-main);
}

.links-link::before {
    content: "";
    height: 50%;
    width: 3px;
    background: var(--style-main);
    display: inline-block;
    margin-inline: 20px;
}

.links-link:first-of-type::before {
    content: none;
}

.info-box-section {
    margin-block: 60px;
}

.gala-title {
    text-align: center;
    color: var(--style-main);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 36px;
    font-weight: 600;
    text-wrap: balance;
}

.gala-title::after {
    content: "";
    display: block;
    background: var(--accent-color);
    height: 3px;
    max-width: 340px;
    display: block;
    margin-inline: auto;
    margin-block: 20px;
}

.info-text {
    max-width: 680px;
    margin-inline: auto;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.info-media {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.info-media.image-first {
    flex-direction: column;
}

.info-media.video-first {
    flex-direction: column-reverse;
}

.info-media img {
    width: 100%;
    object-fit: cover;
    height: auto;
}

.info-media iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0px;
}

/* boxes */

.text-area:has(+ .links-boxes) {
    padding-bottom: 0px;
}

.boxes {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-inline: auto;
}

.box {
    position: relative;
    width: 33%;
    overflow: hidden;
    border: 1.5px solid var(--style-main);
    border-radius: 10px;
    max-width: 330px;
}

.box.expired {
    filter: saturate(0) brightness(70%);
    position: relative;
}

.box-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    transition: .6s;
}

.square-boxes .box-image {
    aspect-ratio: 4 / 3;
}

.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-align-image .box-image img {
    object-position: top;
}

.center-align-image .box-image img {
    object-position: center;
}

.bottom-align-image .box-image img {
    object-position: center;
}

.image-cover img {
    object-fit: cover;
}

.image-contain img {
    object-fit: contain;
}

.box-title {
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    display: block;
    color: #000;
    text-wrap: balance;
    line-height: 1;
    /* margin-bottom: 10px; */
}

.box-name {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-wrap: balance;
    line-height: 1;
}

.box-titles {
    padding: 20px;
    position: relative;
    transition: .6s;
}

.box:hover:has(p) .box-titles, .box:hover:has(p) .box-image {
    /* filter: brightness(30%); */
}

.box-content {
    position: absolute;
    padding: 20px;
    left: 0;
    top: 0;
    background: #fff;
    height: 100%;
    width: 100%;
    transform: translatey(100%);
    transition: .8s;
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */

    display: flex;
    flex-direction: column;
}

.box:hover .box-content:has(p) {
    transition: transform .8s, box-shadow 0s;
    transform: translatey(0%);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.box-bio {
    height: 200px;
    flex-grow: 1;
    overflow-y: auto;
    mask-image: linear-gradient(180deg, #000 60%, transparent);
    -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
    padding-bottom: 100px;
    margin-top: 20px;
}

.box-content p, .box-content li {
    font-size: 14px;
}

.box-content li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.box-content ul {
    padding-left: 30px;
}


@media(max-width: 1024px) {
    .boxes {
        flex-wrap: wrap;
        gap: 20px
    }

    .box {
        width: 300px;
        display: block;
        flex-shrink: 0;
    }
}

@media(max-width: 768px) {
    .gala-title {
        font-size: 25px;
    }
    
    .links-link {
        font-size: 16px;
    }
    
    .box {
        width: 250px;
    }

    .box-name {
        font-size: 16px;
    }
    
}


/* awards */

.awards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.awards-title {
    width: fit-content;
    margin: 0;
    font-weight: 600;
    color: var(--style-main);
}

.awards-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.award {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    background: white;
}

.award-title {
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    display: block;
    color: #000;
    text-wrap: balance;
    line-height: 1;
    margin-block: 10px;
}

.awards-flex img {
    aspect-ratio: 4 / 3;
    object-fit: contain;
    max-width: 200px;
    margin-inline: auto;
}


/* text area */

.text-area p {
    text-align: center;
    max-width: 1200px;
    margin-inline: auto;
}

.box-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.box-list-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.box-list-box {
    max-width: 322px;
    border: 4px solid var(--style-main);
    overflow: hidden;
    border-radius: 10px;
}

.box-list-box img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.box-list-titles {
    padding: 20px;
}

.box-list-info {
    max-width: 740px;
}

.box-list-info p {
    color: #000;
    font-size: 16px;
}

@media(max-width: 1024px) {
    .box-list-flex {
        flex-direction: column;
    }
}



/* events */
.events:has(+ .events) {
    padding-bottom: 0;
}

.events-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 100px;
}

.event img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    border-radius: var(--radius);
}

.yes-square-boxes .event img {
    aspect-ratio: 1 / 1;
}

.event {
    display: flex;
    flex-direction: column;
}

.event-text {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 1; 
    margin-bottom: 10px;
    text-align: center;
}

.event-freq {
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    display: block;
    color: #000;
    text-wrap: balance;
    line-height: 1;
    margin-bottom: 10px;
    text-align: center;
}

.event-freq::after {
    content: "";
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background: var(--style-main);
    display:block;
    margin-block: 10px;
}

.event-desc {
    font-size: 16px;
    color: black;
    flex-grow: 1;
}

.event-desc p {
    margin-bottom: 10px;
}

.event .cham-link {
    margin-inline: auto;
    width: fit-content;
}

@media(max-width: 1024px) {
    .events-flex {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .events-flex {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* video */

.video-section iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 /9;
    border: 0;
    border-radius: var(--radius);
}


/* buttons */

.buttons-flex {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.buttons-flex .cham-link {
    flex-grow: 1;
    text-align: center;
    max-width: 300px;
}

.add-links {
    margin-bottom: 30px;
}



/* hero slider */

.hero-slider {
    overflow: hidden!important;
	cursor: grab;
}


/* other styles */

.slick-list, .hero-slider .slick-slider, .slick-track {
    height: 100%!important;
}

.slide {
  height: 100%!important;
  position:relative; 
}

.hero-slide-content {
    height: 100%;
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0,0,0,.4)
}

.full-height .hero-slide-content {
    padding: 250px 20px;
}

.half-height .hero-slide-content {
    padding: 100px 20px;
}

.hero-slide-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 0px;
    line-height: 1.1;
}

.hero-slide-subtitle {
    font-size: 32px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.1;
}

.hero-slide-link {
    background: var(--style-main);
    color: #fff;
    font-weight: 500;
    padding: 5px 15px;
    border: 1.5px solid var(--style-main);
    border-radius: 5px;
    transition: .4s;
}

.hero-slide-link:hover {
    background: #fff;
    color: var(--style-main);
}

@media(max-width: 1024px) {
    .full-height .hero-slide-content {
        padding-block: 170px;
    }

    .half-height .hero-slide-content {
        padding-block: 50px;
    }

    .hero-slide-title {
        font-size: 40px;
    }

    .hero-slide-subtitle {
        font-size: 25px;
    }
}

@media(max-width: 768px) {
    .full-height .hero-slide-content {
        padding-block: 100px;
    }

    .hero-slide-title {
        font-size: 30px;
    }

    .hero-slide-subtitle {
        font-size: 20px;
    }
}


/* icon links */

.links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
}

.links img {
    width: 85px;
    height: 85px;
    transition: .3s;
    object-fit: contain;
}

.link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--style-main);
    font-weight: 600;
    text-align: center;
    font-size: 20px;
    line-height: 1;
}

.link:hover {
    color: var(--style-main);
}

.link:hover img {
    transform: scale(1.1)
}

@media(max-width: 1250px) {
    .links {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

@media(max-width: 768px) {
    
    .links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .links img {
        height: 60px;
        width: 60px;
    }

    .link {
        font-size: 16px;
    }

    .pad {
        padding: 40px 0px;
    }
}



/* commmittee */

.cham-subtitle {
    font-size: 24px;
    color: var(--style-main);
    font-weight: 500;
    margin-bottom: 10px;
    text-wrap: balance;
    text-align: center;
}

.cham-title {
    font-weight: 600;
    color: var(--style-main);
    font-size: 40px;
    text-align: center;
    text-wrap: balance;
}

#com .cham-subtitle {
    text-align: center;
}

.com-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.com-card-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--style-main);
}

.com-card-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.com-card img {
    margin-inline: auto;
    display: block;
    height: 150px;
    width: 150px;
    object-fit: contain;
}

.com-card {
    border-radius: 5px;
    padding: 10px;
    border: 1.5px solid #fff;
}

.com-card:hover {
    color: var(--style-main);
    border: 1.5px solid var(--style-main);
}

@media(max-width: 1550px) {
    .com-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 40px;
    }
}

@media(max-width: 1024px) {
    .cham-title {
        font-size: 35px;
    }

    .com-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .com-card img {
        height: 100px;
        width: 100px;
    }
    
}

@media(max-width: 768px) {
     .cham-title {
        font-size: 30px;
    }

    .com-cards {
        gap: 10px;
    }

    .com-card-text {
        font-size: 14px;
        margin: 0px;
        display: none;
    }

    .com-card-title {
        font-size: 16px;
    }
}

@media(max-width: 550px) { 
    .com-cards {
        gap: 0px;
    }

}