body {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--font-primary);
    background-color: var(--page-color);
}
header { 
    display: flex;
    max-height: 6rem;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 3rem;
    padding-left: 3rem;
}
h1 {
    font-size: 5rem;
    margin-top: 0;
}
h2 {
    font-size: 3rem;
}
.relative {
    position: relative;
}
.flex {
    display: flex;
}
.items-center {
    align-items: center;
}
.flex-wrap {
    flex-wrap: wrap;
}
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
@media(min-width: 900px) {
    .lg\:w-1\/2 {
        width: 50%;
    }
}
.tagline {
    display: flex;
    align-items: end;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}
figure {
    position: relative;
    overflow: hidden;
    margin: 0;
}
figure.video {
    position: relative;
}
figure > img,
figure > video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
figure figcaption {
    position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.content-left {
    position: relative;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    color: var(--secondary-color);
    z-index: 10;
}
.content-left a {
    display: block;
    color: var(--secondary-color);
    margin-top: 2rem;
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: bold;
}
.content-left a > span {
    color: #efdd02;
}
.subtitle,
.excerpt {
    font-size: 1.25rem;
}
.gallery_1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.gallery_1 figure:nth-of-type(1) { grid-area: 1 / 1 / 4 / 2; }
.gallery_1 figure:nth-of-type(2) { grid-area: 1 / 2 / 3 / 3; }
.gallery_1 figure:nth-of-type(3) { grid-area: 1 / 3 / 3 / 4; }
.gallery_1 figure:nth-of-type(4) { grid-area: 4 / 1 / 6 / 2; }
.gallery_1 figure:nth-of-type(5) { grid-area: 3 / 2 / 6 / 4; }

.gallery_2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.gallery_2 figure:nth-of-type(1) { grid-area: 1 / 1 / 2 / 6; }
.gallery_2 figure:nth-of-type(2) { grid-area: 2 / 1 / 3 / 5; }
.gallery_2 figure:nth-of-type(3) { grid-area: 1 / 6 / 2 / 7; }
.gallery_2 figure:nth-of-type(4) { grid-area: 2 / 5 / 3 / 7; }

.gallery_3 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.gallery_3 figure:nth-of-type(1) { grid-area: 1 / 1 / 2 / 4; }
.gallery_3 figure:nth-of-type(2) { grid-area: 2 / 1 / 3 / 5; }
.gallery_3 figure:nth-of-type(3) { grid-area: 2 / 5 / 3 / 8; }
.gallery_3 figure:nth-of-type(4) { grid-area: 2 / 8 / 3 / 11; }
.gallery_3 figure:nth-of-type(5) { grid-area: 1 / 4 / 2 / 11; }

.carousel-title {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}
.carousel-title h2 {
    margin: 0;
}
.swiper {
    height: 10rem;
}
.swiper-slide {
    width: unset;
    height: 100%;
    aspect-ratio: 2 / 1;
}
.swiper a {
    text-decoration: unset;
}
.page-title {
    position: relative;
    color: white;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 10;
}
.swiper-nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
.swiper-nav > div {
    position: relative;
    width: 5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    transition: .3s opacity;
}
.swiper-nav > div:before { 
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.swiper-nav svg {
    width: 2rem;
    height: 2rem;
    fill: var(--secondary-color);
    z-index: 10;
}
.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}
@media(min-width: 600px) {
    .content-left {
        padding-right: 3rem;
        padding-left: 3rem;
    }
}