html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #f5f5f5;
    left: 0;
    text-align: center;
    line-height: 60px;
    margin: 0;
}

.footer p {
    margin: 0;
    color: #777;
}

.site-brand {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.site-tagline,
.site-nav-extra {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

#sliderContainer {
    position: relative;
    cursor: default;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.gallery-slideshow__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-slideshow__layer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    opacity: 0;
    transition: opacity var(--gallery-fade-ms, 700ms) ease;
    pointer-events: none;
}

.gallery-slideshow__layer--active {
    opacity: 1;
}
