

.userArea{
    top:0;
}

.topnav{
    top: 50px;
}


header{
    position: relative;
    background-image: linear-gradient(to right, white, #adc9d4 40%);
}



h1{
    position: absolute;
    top: 45%;
    left: 25%;
    right: 25%;
    font-size: clamp(1rem, 4vw, 4.5rem);
    letter-spacing: .17rem;
    background-color: #a94803;
    color: white;
    padding: .9rem 3rem;
    text-align: center;
    margin: 0 auto;
}

.gallery_hero::before{
    display: block;
    content: "";
    height: 75px;
    margin-top: 0!important;
}


.gallery_hero{
    min-height: 850px;
    display: flex;
    justify-content: center;
    align-items:flex-end;
    padding-bottom: 5rem;
}


.brandContent{
    max-width: 200px;
    position: absolute;
    top: 40%;
    left: 5%;
}

.brandContent img{
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 800px) {
    .brandContent{
        margin: 0;
        position: absolute;
        left: 50%;
        bottom: 5%;
        transform:translateX(-50%);
    }
}

@media only screen and (max-width: 600px) {
    header{
        height: 600px;
        width: auto;
    }
    .brandContent{
        bottom: 0;
        padding-top: 5rem;
    }
}


/*
Cookie area
*/

.cookieSection{
    display: block;
    height: 150px;
    min-width: 50%;
    position:fixed;
    top: -150px;
    left: 46%;
    transform: translateX(-46%);
    margin: 0 auto;
    background-color: #ff8a37;
    padding: 2rem 0;
    border-radius: 5rem 5rem;
    opacity: 0;
    z-index: 2;
}

.cookieSection p {
    width: 100%;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem); 
    word-wrap: break-word;
}

.accept{
    font-size: 1.1rem;
    border: none;
    min-width: 25%;
    text-decoration: none;
    padding: .5rem 1.5rem;
    background-color: #6700c7;
    color: white;
    letter-spacing: .1rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}



.accept:hover{
    background-color: #888888;
    cursor: pointer;
}

.cookieClose{
    font-size: 2rem;
    border: 0;
    min-height: 50px;
    min-width: 50px;
    background-color: #dfdfdf;
    color:#cb7335;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-weight: bold;
    border-radius: 50% 50%;
    transform: translate(-20px, -40px);
    outline: 1px solid black;
}

.cookieClose:hover{
    color: #dfdfdf;
    background-color: #cb7335;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .cookieSection p {
        width: 70%;
        margin: 0 auto;
    }
    .cookieSection{
        height: 200px;
    }
}




.gallerySection{
    background-image: linear-gradient(to bottom, white 1%, #adc9d4 15%);
    padding-bottom: 7rem;
}

.galleryGrid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.galleryGrid figure{
    font-size: 0;
}

.galleryGrid img{
    width: 100%;
    height: auto;
}

button[data-panzoom-action],
button[data-fancybox-toggle-slideshow],
button[data-fancybox-toggle-fullscreen],
button[data-fancybox-toggle-thumbs]{
    display: none;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar{
    padding: 2rem;
}

button[data-fancybox-close].f-button svg{
    color: #a94803;
}

.f-button svg{
    width: 75px!important;
    height: 75px!important;
}

.fancybox__infobar{
    font-size: 1.5rem!important;
}

.galleryImg:hover{
    transform: scale(105%, 105%);
    transition: 300ms ease;
}


@media only screen and (max-width: 1000px) {
    .galleryGrid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media only screen and (max-width: 650px) {
    .galleryGrid{
        grid-template-columns: 1fr;
    }
}

