.full-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
}

.hoverZoom>* {
    transition: var(--quick);
}

.hoverZoom:hover>* {
    transform: scale(1.05);
}

#hero {
    min-height: calc(100vh - var(--navheight)) !important;
    max-height: calc(1080px - var(--navheight)) !important;
    margin-top: 0;
}

#hero::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #000000cc, #00000000);
    background: var(--color_2);
    opacity: .75;
    z-index: -1;
}

#heroX::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 145rem;
    max-width: 100vw;
    height: 100%;
    background: url(../media/logo/bannerlogo.svg);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hint-down {
    animation-name: up-down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    position: absolute !important;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 7rem;
    z-index: 1;
}

.hint-down>i {
    color: var(--lightcolor);
}

@keyframes up-down {
    0% {
        bottom: 0;
    }

    50% {
        bottom: 10px;
    }

    100% {
        bottom: 0;
    }
}

svg#logo path {
    transition: 250ms;
}



/* nav.show>div.logo>a>svg#logo path {
    fill: var(--lightcolor) !important;
}

nav.show>div.logo>a>svg#logo{
    background: transparent;
} */

nav.show>div.logo {
    background: transparent !important;
}

svg#logo:hover path {
    fill: var(--color_2) !important;
}

#book-now,
#open-hours {
    cursor: pointer;
    font-size: 1.8rem;
    z-index: 1;
    font-weight: 300;
    border-radius: 3rem;
    padding: .5rem 2rem;
    margin: 0 20px;
    color: var(--darkcolor);
    background: 0 0;
    border: solid 4px var(--darkcolor);
}

nav.show #book-now,
nav.show #open-hours {
    color: var(--lightcolor);
    border: solid 4px var(--lightcolor);
}

nav.show #book-now {
    border-left: solid .1rem var(--lightcolor);
}

nav.show #open-hours {
    border-right: none;
}

#book-now {
    border-radius: 0 3rem 3rem 0;
    margin: 0;
    padding-left: 1.5rem;
    border-left: solid .1rem var(--darkcolor);
}

#open-hours {
    border-radius: 3rem 0 0 3rem;
    margin: 0;
    padding-right: 1.5rem;
    border-right: none;
}

#book-now:hover,
#open-hours:hover {
    background: var(--darkcolor);
    color: var(--lightcolor);
}

nav.show #book-now:hover,
nav.show #open-hours:hover {
    background: var(--lightcolor);
    color: var(--darkcolor);
}

section.row.dark {
    background: #111;
}

section.row.dark * {
    color: var(--lightcolor);
}

.fullscreen {
    position: absolute;
    left: 0;
    padding: 0 !important;
    margin: 0;
}

.fullscreen::after {
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(60deg, #000000cc, transparent 95%);
}

/* POSITION */
.position {
    position: relative;
    text-align: center;
    /* box-shadow: 0 0 2rem #0001; */
    /* margin-bottom: calc(var(--space)/2); */
    border: solid 4px var(--translucent);
    border-style: solid none;
    border-radius: 0;
    padding: 2rem;
    margin-bottom: calc(var(--space)/2);
}

.position *:last-child {
    margin-bottom: 0;
}

.position>h6,
.position>p {
    margin-bottom: 1rem;
    text-align: center;
}

.slide.fadeout {
    mask-image: linear-gradient(black, transparent);
}


.logoText {
    font-size: 3rem;
    margin: 0;
    text-decoration: underline;
    text-decoration-thickness: .7rem;
    text-decoration-color: var(--color_1);
    text-underline-offset: 0.5rem;
    color: var(--darkcolor);
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: var(--color_2);
}

.white {
    color: var(--lightcolor);
}

.hero-img {
    height: 80%;
    z-index: 1;
}

.button.dark {
    background: var(--darkcolor);
    color: var(--lightcolor);
}

.button.dark:hover {
    background: var(--color_2);
    color: var(--lightcolor);
}

.greenGradientBox {
    background: linear-gradient(315deg, var(--color_2), var(--color_1));
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.greenGradientBox.v1 {
    left: 7rem;
    top: 15rem;
    height: 70rem;
}

.imageSectionA {
    position: relative;
    left: 10rem;
    height: 45rem;
    width: calc(100% + 10rem);
}

.underlining {
    display: inline-block;
    background: var(--color_1);
    padding: 15px 30px 10px 30px;
    color: white;
}

.underlining.white {
    display: inline-block;
    color: var(--color_1);
    padding: 15px 30px 10px 30px;
    background: white;
}

img.dark {
    filter: brightness(.5) grayscale(1);
}

.logo {
    position: relative;
    top: 0;
    height: 100%;
    background: var(--lightcolor);
    border-radius: 0 0 40rem 40rem;
    /* transition: var(--normal); */
}


/* nav.shadow #logo{
    height: 8rem;
}

nav.shadow .logo{
    top: 1rem;
    padding: 0;
} */

p.highlight {
    color: var(--color_1);
    font-weight: 600;
}

.gap {
    gap: calc(var(--space) / 2);
}

.history-grid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 650px;
    background: var(--color_1);
    padding: var(--space);
    margin-bottom: var(--space);
}

.history-grid>a {
    width: calc(100% / 3);
    margin: 0;
    padding: 0.25rem 0;
    text-align: center;
    color: var(--lightcolor);
}

.history-grid>a:hover {
    color: var(--color_2);
}

/* body::after {
    content: url(../media/logo/logo.svg);
    width: 50vw;
    position: fixed;
    z-index: 0;
    left: 95%;
    top: 80%;
    transform: translate(-50%,-50%);
    opacity: .1;
    color: var(
    --color_2);
} */

#logo {
    height: calc((var(--scroll) * -40rem) + 15rem);
    min-height: 8rem;
    transition: none;
    /* transform: translateY(50%); */
    /* transform-origin: top; */
    padding: 15%;
    /* padding-top: 1.5rem; */
    background: var(--lightcolor);
    border-radius: 0 0 50% 50%;
}

ul>li {
    list-style: url(../media/misc/list-icon.svg);
    list-style-position: outside;
}

ul>li::marker {
    font-size: 200%;
}

ul.simple {

    padding: 0;
}

ul.simple>li {
    list-style: none;
}

div.card {
    border-radius: 0;
    border-left: var(--color_1) 5px solid;
}

div.card>.underlining {
    margin-left: calc(var(--space) * -0.5);
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: calc(var(--space) / 3);
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: var(--radius);
    background: var(--bodycolor);
}

.preview.gallery {
    opacity: 1;
    overflow: hidden;
    transition: var(--quick);
    height: 250px;
    /* padding-bottom: var(--space); */
}

.preview.gallery img {
    object-fit: cover;
    height: calc(250px - var(--space));
}

.space {
    height: var(--space);
}

.collapse{
    scroll-padding-top: 100px;
}

.collapse > .content.dark{
    background: #000;
    padding: 0;
    max-height: 650px;
    overflow-y: scroll;
    transition: 600ms;
    /* mask-image: linear-gradient(#000 90%, #0000); */
}

.collapse > .content.dark > .gallery{
    padding: 1rem;
}

h3 > span.small{
    font-size: 2rem;
    font-weight: 300;
    padding-left: 10px;
    padding-bottom: 5px;
}

.collapse.top{
    margin-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: none;
}
.collapse.middle{
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: none;
}
.collapse.bottom{
    margin-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
}

.columns_2{
    columns: 2;
}

@media(max-width: 1199px){
    #hero{
        height: auto;
        max-height: none!important;
    }

    #hero [f][h='100x']{
        height: auto!important;
    }

    .hero-img{
        height: 600px;
    }

    #logo{
        height: 8rem;
    }
}

.heroheading{
    display: flex;
    flex-flow: column;
    align-items: baseline;
}

.gallery > img{
    position: relative;
    z-index: 1;
    pointer-events: all;
    cursor: zoom-in;
}

.imageShowcase{
    position: fixed;
    z-index: 999;
    width: 1000px;
    width: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    background: #000;
    display: flex;
    transition: var(--quick);
    opacity: 0;
}

.imageShowcase.show{
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;
}

.imageShowcase > i.close{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    font-size: 5rem;
    /* padding: 0; */
    /* width: 50px; */
    /* height: 50px; */
    color: white;
    background: var(--extracolor);
    transition: var(--quick);
}

.imageShowcase > i.close:hover{
    color: var(--color_1);
}

#backdrop{
    transition: var(--quick);
}

.hero-wrapper{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: none!important;
    z-index: -1;
    margin: 0!important;
    padding: 0!important;
}

.slider.hero-img{
    height: 70vh;
}

#hero{
    padding-top: 6rem;
    padding-bottom: 6rem;
}

#logo-footer{
    max-width: 15rem;
}

@media(max-width: 1199px){
    .slider.hero-img{
        height: 50vh;
    }

    .heroheading > h1,
    .heroheading > h2,
    .heroheading > h3,
    .heroheading > h4,
    .heroheading > h5{
        word-break: break-all;
    }
}