/* Header */
header {
    background-color: rgba(244, 244, 244, 0.6);
}

header.sticky-active {
    background-color: white;
}

main.active, footer.active {
    position: relative;
}

main.active::before,
footer.active::before {
    content: "";
    background: rgba(50, 50, 147, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
}

footer.active::before {
    top: 0;
}


/* Home - General */
.home h2 {
    color: #4F2E5F;
    line-height: 1.2;
}

main {
    margin-bottom: 0;
}

@media (min-width: 75em) {
    .home h2 {
        font-size: 2.5rem;
    }
}

/* Footer */ 
.footer-v2 {
    padding-top: 2rem;
} 

.footer-v2.utility {
    background: var(--light-grey);
}

.footer-v2 h2,
.footer-v2 h3 {
    color: #4F2E5F;
}
 
.footer-logo img {
    max-width: unset;
    width: 80px;
    display: block;
    margin-top: .5rem;
}

.footer-logo-row {
    align-items: flex-start;
    gap: 1rem;
}

footer a {
    color: var(--dark-font-color);
}

footer .contact-row {
    margin-bottom: .5rem;
}

footer .contact-row a {
    color: var(--pink);
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links:last-of-type {
    margin-bottom: 0;
}

.footer-links ul {
    margin-bottom: 0;
}

.footer-links li {
    padding: .5rem 0;
}

.footer-credit {
    margin-bottom: 1rem;
}

address {
    font-style: normal;
}

.policy {
    margin-bottom: 2rem;
}

.social-wrapper {
    display: flex;
    gap: 1rem;
}

.social-wrapper a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--navy);
    color: var(--navy);
    border-radius: 50%;
    padding: .5rem;
    width: 40px;
}

@media (min-width: 62em) {
    .policy {
        text-align: right;
    }

    .policy a:first-of-type {
        margin-right: 1rem;
    }

    .footer-logo-row {
        gap: 2rem;
    }
}

@media (min-width: 99em) {
    footer .row {
        flex-wrap: nowrap;
    }
}

/* Home - Banner */
.banner {
    /* padding: 2rem 0 0; */
    padding: 0;
    background-color: rgba(244, 244, 244, 0.6);
    border-radius: 0 0 0 200px;
    margin-bottom: 0!important;
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner .btn {
    margin-bottom: 0;
}

.banner-title {
    color: #4F2E5F;
    line-height: 1.1;
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

.banner-img img {
    display: block;
    width: 100%;
    border-radius: 250px 0 0 0;
}

.utility .banner-img img {
    border-radius: 0;
}

.banner-content p {
    font-weight: var(--font-medium);
    font-size: 1.1rem;
}

/* Home - Quicklinks */
.quicklink-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quicklinks {
    background-color: var(--blurple);
    width: fit-content;
    border-radius: 100px 0 0 100px;
    padding: 2rem 1rem 1.75rem;
    margin-left: auto;
}

.quicklinks a {
    color: var(--light-font-color);
}

.quicklink-item {
    gap: 1rem;
}

.quicklink-item i {
    color: var(--blue);
}

.quicklink-item > div {
    margin-bottom: -5px;
}

@media all and (min-width: 62rem) {
    .banner {
        /* padding: 3rem 0 0; */
        position: relative;
    }

    .banner-title {
        max-width: 780px;
        font-size: 4rem;
    }

    .banner-img {
        margin-right: calc(-5vw - 1.9rem);
    }

    .banner-content {
        margin-top: 6%;
    }

    .banner-lines {
        position: absolute;
        top: 12%;
        left: -2rem;
        width: 40%;
        height: auto;
        opacity: 0.8;
    }

    .quicklinks {
        margin-top: -3.25rem;
        z-index: 3;
        position: relative;
        width: 65vw;
        padding: 2.5rem 1rem;
    }

    .quicklink-list {
        flex-direction: row;
        gap: 3rem;
        justify-content: center;
    }

    .quicklink-item > div {
        padding-right: 1.5rem;
    }

    .quicklink-item::after {
        content: "";
        width: 2px;
        height: 90%;
        background-color: rgba(244, 244, 244, 0.6);
    }

    .quicklink-item:last-of-type::after {
        content: none;
    }
}

/* Home Events */
.title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.home-events {
    position: relative;
    background-color: var(--blurple);
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--light-font-color);
}

.home-events::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/b5004991-4118-4043-900e-a59918bbb43d?fingerprint=ppb20251217012837');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.1; 
}

.home-events .content-container {
    position: relative;
}

.home-events .title-wrapper * {
    color: var(--light-font-color);
}

.event-item {
    display: flex;
    align-items: center;
    color: var(--dark-font-color);
    font-weight: var(--font-bold);
    background-color: var(--light-grey);
    border-radius: 10px;
}

.event-date-wrapper {
    background: var(--navy);
    color: var(--light-font-color);
    text-align: center;
    font-size: 1.2rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
}

.format-date-box {
    line-height: 1.2;
}

.event-date-wrapper .event-month {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: var(--font-semibold);
}

.event-date-wrapper .event-day {
    font-size: 2rem;
    margin: 0;
    line-height: 1;
    font-weight: var(--font-semibold);
    background: transparent;
}

.event-name {
    padding: 0 1.5rem;
    font-size: 1.2rem;
    width: calc(100% - 6rem);
    color: var(--black);
}

.event-name h3 {
    margin-top: 0;
    margin-bottom: .25rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: var(--font-bold);
}
.events-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-all-day {
    font-weight: var(--font-regular);
    color: var(--medium-grey);
    font-size: 1rem;
}

/* Home Highlights */
.swiper-wrapper, .highlight-slide {
    height: auto;
}
.highlight-slide {
    display: block;
}
.highlight-item {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    height: 100%;
}

.highlight-content {
    background-color: #F2E9FC;
    border-radius: 0 20px 20px 0;
    padding: 2rem;
    color: #555;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.highlight-content h3 {
    color: #4F2E5F;
    margin-top: 0;
    font-weight: var(--font-bold);
    font-size: 1.5rem;
    line-height: 1.5;
}

.highlight-content .format-card-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.highlight-img {
    border-radius: 20px;
    width: 100%;
}

.highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.placehoder-img {
    background-color: var(--light-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placehoder-img img {
    width: 30%;
    object-fit: contain;
}


/* Home CTA */
.cta {
    padding-right: 5vw;
    position: relative;
}

.cta::before {
    content: "";
    background-color: var(--light-grey);
    border-radius: 250px 0 0 250px;
    width: 80%;
    height: 250px;
    position: absolute;
    bottom: 30%;
    right: 0;
}
.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--blurple);
    color: var(--light-font-color);
    border-radius: 0 200px 200px 0;
}

.cta h2 {
    color: var(--light-font-color);
}

.cta .btn {
    margin-bottom: 0;
}

.cta-img img {
    width: 100%;
    height: 100%;
}

.footer-pattern {
    position: absolute;
    width: 300px;
    left: 0;
    bottom: 0;
}


.links-button-next,
.links-button-prev {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: static;
	color: var(--purple);
	margin-top: 0;
	cursor: pointer;
    width: fit-content;
}

/* Mobile */
@media (max-width: 991px) {
    section {
        margin: 0 0 1.5rem;
    }
    .banner-lines {
        display: none;
    }

    .banner-content {
        text-align: center;
    }

    .banner-content .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-img {
        margin: 2rem -2rem 0;
    }

    .quicklinks {
        width: 100%;
        border-radius: 0;
        margin-bottom: 2rem;
    }

    .quicklink-list {
        justify-content: center;
        align-items: center;
    }

    .home-events {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .home-events .btn-link.mobile-only {
        color: white;
        margin: 1rem 0 0 auto;
        width: fit-content;
    }

    .home-highlight {
        padding: 0 1rem;
    }

    .highlight-content {
        border-radius: 10px;
        padding: 4rem 1rem 6rem;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal.highlight-pagination {
        top: 1rem;
        left: .75rem;
    }

    .swiper-button-next.highlight-button-next, .swiper-button-prev.highlight-button-prev {
        bottom: .5rem;
        width: 30px;
        height: 30px;
        font-size: .85rem;
    }

    .swiper-button-next.highlight-button-next {
        right: .75rem;
    }

    .swiper-button-prev.highlight-button-prev {
        right: calc(.75rem + 40px);
    }

    .footer-pattern {
        width: 50vw;
    }

    .cta::before {
        border-radius: 125px 0 0 125px;
        height: 180px;
        z-index: -1;
    }

    .cta {
        padding-right: 0;
    }

    .cta-wrapper {
        border-radius: 0;
        flex-wrap: wrap;
    }

    .cta-content {
        order: -1;
        padding: 2rem 1rem 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .cta-img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .footer-logo-row {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-links {
        margin-bottom: 0;
    }

    .footer-credit-wrapper {
        font-size: .9rem;
        padding-bottom: 1rem;
    }

    .footer-credit {
        margin-bottom: 0;
    }

    .footer-bottom-line {
        margin-bottom: 1rem;
    }

    footer hr {
        margin: 1.5rem 0;
    }

    .social-wrapper {
        justify-content: center;
    }
}

@media (min-width: 48em) {
    .quicklink-list {
        flex-direction: row;
    }

    .highlight-content {
        padding-left: 5vw;
    }

}

@media only screen and (min-width: 62em) {

    .events-wrapper {
        flex-direction: row;
    }

    .event-item {
        width: calc((100% - 2rem) / 3);
    }

    .highlight-item {
        flex-wrap: nowrap;
    }

    .highlight-content {
        width: calc(35% - 1rem );
    }

    .highlight-content h3 {
        font-size: 1.75rem;
    }

    .highlight-img {
        width: 66%;
        aspect-ratio: 1175/642;
    }

    .highlight-img img {
        height: 100%;
    }

    .home-highlight {
        padding-right: 5vw;
    }

    .placehoder-img img {
        width: 30%;
    }

    .cta {
        margin-top: 6rem;
    }

    .cta-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border-radius: 0 1000px 1000px 0;
        /* min-height: 200px; */
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
        padding-right: 5vw;
        gap: 2rem;
    }

    .cta-img {
        position: absolute;
        bottom: 0;
        left: 5vw;
        width: 500px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .cta-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 500px - 5vw - 3rem);
    }
    
}

/* Home - Video Banner */
.banner.video,
.banner.utility {
    padding-top: 0;
    background: none;
    border-radius: 0;
}
.banner_video {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-top: 37.5%;
}

.banner_video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.banner-dots {
    position: absolute;
    width: 15%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    display: none;
}

.banner.video .banner-content {
    margin: 2rem 1rem;
}

/* Home - Carousel */
.banner.carousel {
    padding-top: 0;
}
.banner-buttons {
    margin-left: auto;
    width: fit-content;
}

.banner.carousel .banner-content {
    padding: 5rem 1.5rem 0;
    height: 100%;
    margin: 0;
}

/* Home - Utility */
.utility .swiper-wrapper {
    height: 100%;
}
.utility .banner-slide .row {
    background-color: #3232931A;
    height: 100%;
}

.banner.utility {
    display: flex;
    flex-direction: column;
}


.utility .banner-swiper {
    width: 100%;
}

.utility .banner-img,
.utility .banner-img img {
    height: 100%;
    aspect-ratio: 640 / 540;
}
.banner-list-wrapper {
    background: #323293;
    height: 100%;
    padding: 2rem;
    position: relative;
}

.banner-list-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/images/b5004991-4118-4043-900e-a59918bbb43d?fingerprint=ppb20251217012837);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.banner-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.banner-list-item {
    border-radius: 5px;
    background: rgba(252, 252, 252, 0.1);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    color: white;
    font-weight: var(--font-medium);
    font-size: 1.2rem;
}

.quicklinks.utility {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
}

.home-news-events {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 0;
}

.home-news-events .home-news-item {
    aspect-ratio: 590/305;
    border-radius: 5px;
}

.home-news-events .events-wrapper {
    flex-direction: column;
}

.home-news-events .event-item {
    width: 100%;
}

.home-news-events .home-events {
    background-color: #323293;
    padding: 2rem;
}

.home-events-content {
    position: relative;
    z-index: 2;
}

.home-news-events .event-date-wrapper {
    background-color: #4B4BA0;
}

.utility .highlight-content,
.utility .highlight-img img {
    border-radius: 0;
}

.utility .highlight-item {
    gap: 0;
}

.home-highlight.utility {
    margin-bottom: 0;
}


@media (max-width: 991px) {
    .banner.carousel .banner-img {
        margin: 2rem 0 0;
        height: 100%;
    }

    .banner-swiper .swiper-wrapper {
        align-items: stretch !important;
    }

    .banner-swiper .swiper-slide {
        height: auto !important;
        display: flex !important;
    }

    .banner-slide .row {
        height: 100%;
        display: flex;
    }

    .banner-slide img {
        height: 100%;
    }

    .banner.utility .banner-img {
        margin: 0;
    }

    .utility .banner-content {
        padding: 2rem 1.5rem;
    }

    .utility.home-highlight {
        padding: 0;
    }
}

@media (min-width: 48em) {
    .home-news-events .home-news-item {
        width: calc((100% - 1rem) / 2);
    }

    .home-news-events .home-news {
        padding-right: 5vw;
    }
}

@media (min-width: 62em) {
    .banner_video iframe {
        width: 120%;
        height: 166.667%;
    }

    .banner_video {
        border-radius: 0 250px 0 0;
        width: 95%;
    }

    .banner_video::after {
        content: '';
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .banner.video .banner-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 8vw;
        margin-top: 0;
        z-index: 3;
        margin: 0;
    }

    .banner.video .banner-title {
        color: white;
    }

    .banner.video .banner-lines {
        top: 26%;
        width: 35%;
    }

    .banner-dots {
        display: block;
    }

    .banner.carousel .banner-img {
        margin-right: 0;
    }

    .banner.carousel .banner-img img {
        border-radius: 250px 0 0 0;
    }

    .banner-content-col {
        padding-left: calc(5vw + 2rem);
        position: relative;
    }

    .banner.carousel .banner-content {
        padding: 6rem 0 5rem;
    }

    .utility .banner-img  {
        margin: 0;
    }

    .utility .banner-content-col {
        padding-left: 1rem;
    }

    .utility .banner-content {
        margin: 12% 2rem 0 0;
    }

    .banner.utility {
        flex-direction: row;
    }

    .banner-right {
        flex: 0 0 30%;
    }

    .utility .banner-swiper {
        flex: 1;
    }

    .utility .banner-title {
        font-size: 3rem;
    }

    .home-news-events {
        flex-direction: row;
    }

    .home-news-events .home-news {
        flex: 0 0 calc(70% - 2rem);
        padding-right: 0;
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .home-news-events .home-events {
        flex: 0 0 30%;
    }

    .home-highlight.utility {
        padding-right: 0;
    }

    .utility .highlight-content {
        width: calc((70vw - 2rem) / 2 + 5vw);
    }
}



/* Swiper */
.swiper-navigation-icon {
    display: none;
}

.swiper-button-next.highlight-button-next, 
.swiper-button-prev.highlight-button-prev,
.swiper-button-next.banner-button-next, 
.swiper-button-prev.banner-button-prev {
    border-radius: 50%;
    background: var(--purple);
    width: 50px;
    height: 50px;
    color: var(--light-font-color);
    top: unset;
    transform: unset;
    bottom: 2rem;
}


.swiper-button-next.banner-button-next, 
.swiper-button-prev.banner-button-prev {
    background: var(--navy);
    top: 2.5rem;
}

.utility .swiper-button-next.banner-button-next, 
.utility .swiper-button-prev.banner-button-prev {
    border-radius: 5px;
    bottom: 2rem;
}

.swiper-button-next.highlight-button-next {
    left: unset;
    right: 2rem;
}

.swiper-button-prev.highlight-button-prev {
    left: unset;
    right: calc(2rem + 60px);
}

/* Pagination */
.swiper-pagination-bullets.swiper-pagination-horizontal.banner-pagination,
.swiper-pagination-bullets.swiper-pagination-horizontal.highlight-pagination {
    top: 2rem;
    left: 5vw;
    right: unset;
    width: fit-content;
}

.swiper-pagination-bullets.swiper-pagination-horizontal.banner-pagination {
    left: 1.5rem;
}

.banner-pagination .swiper-pagination-bullet,
.highlight-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--purple);
    opacity: 0.6;
}


.banner-pagination .swiper-pagination-bullet-active,
.highlight-pagination .swiper-pagination-bullet-active {
    background: var(--purple);
    width: 40px;
    border-radius: 100px;
    opacity: 1;
}

.banner-pagination .swiper-pagination-bullet-active,
.banner-pagination .swiper-pagination-bullet {
    background: var(--navy);
}

.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.6;
}

.swiper-button-next.banner-button-next {
    left: unset;
    right: 2rem;
    bottom: 5rem
}

.swiper-button-prev.banner-button-prev {
    left: unset;
    right: calc(2rem + 60px);
    bottom: 5rem
}

@media (min-width: 62em) {
    .swiper-button-next.banner-button-next {
        right: calc(50vw + 2rem);
    }

    .swiper-button-prev.banner-button-prev {
        right: calc(50vw + 2rem + 60px);
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal.banner-pagination {
        left: calc(5vw + 1rem);
    }

    .swiper-button-next.banner-button-next, 
    .swiper-button-prev.banner-button-prev {
        top: unset;
    }

    .utility .swiper-button-next.banner-button-next {
        right: 2rem
    }

    .utility .swiper-button-prev.banner-button-prev {
        right: calc(2rem + 60px);
    }

    .utility .swiper-pagination-bullets.swiper-pagination-horizontal.banner-pagination {
        left: calc(50% + 1rem);
    }
}