.navbar .public-logo {
    display: flex;
    align-items: center;
    height: 100px;
    line-height: 0;
    width: clamp(52px, 6vw, 72px);
    max-width: 28vw;
    padding: 0 !important;
}

.public-logo:hover {
    color: #fff;
}

.public-logo-mark {
    display: block;
    width: 100%;
}

.navbar .public-logo-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
}

.nav-scroll .public-logo-img {
    max-height: 40px;
}

.public-page-heading {
    padding-top: 160px;
}

.home-hero-responsive {
    position: relative;
    overflow: hidden;
    background: #111;
}

.home-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero-slider-portrait {
    display: none;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    background-position: 50% 0;
    background-size: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1400ms ease;
    will-change: opacity, transform;
}

.home-hero-slide.is-active {
    opacity: 1;
}

.home-hero-slide.is-kenburns {
    animation: homeHeroKenBurns 5200ms ease-out both;
}

.home-hero-responsive[data-overlay-dark]:before {
    z-index: 1;
}

.home-hero-responsive > .container {
    position: relative;
    z-index: 2;
}

.gallery-detail p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.footer a {
    color: inherit;
}

.footer-logo {
    display: block;
    width: clamp(64px, 8vw, 84px);
    height: auto;
    max-width: 35vw;
    max-height: 64px;
    margin-bottom: 16px;
    object-fit: contain;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-meta p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .navbar .public-logo {
        height: 100px;
        width: clamp(48px, 16vw, 64px);
        max-width: 34vw;
    }

    .navbar .public-logo-img {
        max-height: 44px;
    }

    .footer-logo {
        width: clamp(56px, 18vw, 72px);
        max-width: 34vw;
        max-height: 56px;
    }
}

@media (orientation: portrait) {
    .home-hero-slider-landscape {
        display: none;
    }

    .home-hero-slider-portrait {
        display: block;
    }
}

@keyframes homeHeroKenBurns {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.1) translate3d(-1.5%, -1%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-slide {
        transition: none;
    }

    .home-hero-slide.is-kenburns {
        animation: none;
    }
}
