*, *:before, *:after {
    box-sizing: border-box; 
    position: relative; 
}

:root {
    --header-height: 65px;

    --light-gray: #e1e1e1;
    --blackish: #343434;
    --beige: rgb(215,210,182);


    --curve-height: calc(75px + 2.5vw);
    --curve-radius: calc( var( --curve-height) / 2);
    --curve-offset: calc( var( --curve-height) / 8);
    --curve-width: 60%;
    --curve-color: white;

}


.preload, .preload * {
    transition: 0s !important;
}

textarea {
    font-family: inherit;
}

a {
    color: #b5d2f2;
}


html, body {
    padding:0px;
    margin: 0px;
    width: 100%;
    xxbackground: black;
    font-family: "new-hero",sans-serif;;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: var(--blackish);
    line-height: 1.3;
}

header .container {
    padding: 0px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header .header-top {
    width: 60%;
    transition: width .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--header-height);
}

header .header-top:before {
    content: '';
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 200%;
    background: #6f6f6f;
    border-radius: 0 0 var(--curve-radius) var(--curve-radius);
    transition: .5s;
    left: 0;
}


header .header-bottom {
    transition: .5s;
    transform: translateY(0px);
    height: var(--header-height);
    display: grid;
    align-items: center;
    grid-template-columns: 1fr max-content 1fr;
}


p {
    line-height: 1.5;
}

header .header-top img {
    width: 40px;
}

input[type="text"], input[type="number"], input[type="password"], select, textarea {
    border: 1px solid #ccc;
    padding: 8px 12px;
    color: #000;
    border-radius: 3px;
    margin: 2.5px 0px;
}

h3 {
    line-height: 1.5;
}

pre {
    text-transform: initial;
    text-align: left;
}

.align-left { text-align: left;}
.max400 { width: 100%; max-width: 400px; }
.center { text-align: center; }
.left { text-align: left !important; }
.white { color: white; }
.full {
    width: 100%;
}

hr {
    border: none;
    height: 1px;
    background: white;
    outline: none;
}

.margin-v {
    margin: 20px 0;
}
.margin-v-l {
    margin: 5vh 0;
}
.margin-v-xl {
    margin: 125px 0;
}
.margin-v-s {
    margin: 2.5px 0px;
}
.margin-h {
    margin-left: 10px !important;.
    margin-right: 10px !important;
}

.margin-auto {
    margin-left: auto;
    margin-right: auto;
}
.margin-top{
    margin-top: 20px;
}
.padding {
    padding: 20px 10px !important;
}
.padding-l {
    padding: 30px;
}
.padding-m {
    padding: 20px 20px;
}
.padding-s {
    padding: 5px;
}

.padding-h {
    padding: 0px 10px;
}

.cntr {
    text-align: center;
}


.fancy-input input, .fancy-input textarea {
    background: transparent;
    border: 0px;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    outline: none;
    transition: border .5s;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
}

.fancy-input input:hover, .fancy-input textarea:hover {
    border-bottom: 1px solid #333;
    transition: border .5s;
}

.content form {
    width: 100%;
    max-width: 550px;
    margin: 0px auto;
    padding: 0px 25px;
}

.content form label {
    margin: 11px 0px 2px 0px;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.btn-simple {
    color: #006ca6;
    font-size: 18px;
    display: block;
    text-decoration: none;
}

.breadcrumbs {
    text-align: left;
    color: grey;
}

    .breadcrumbs a {
        text-decoration: none;
        color: inherit;
        display: inline-block;
        vertical-align: middle;
    }

    .breadcrumbs span {
        display: inline-block;
        vertical-align: middle;
        margin: 0px 7.5px;
    }

.streamer p {
    max-width: 650px;
    margin: 25px auto;
    width: 100%;
    line-height: 27px;
}

.container {
    margin: 0px auto;
    width: 100%;
    max-width: 2560px;
    min-height: 100%;
}

.split {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.split>div {
    max-width: calc(650px + 10vw);
    width: 50%;
    padding: 5vw;
}

.split>.img-shadow-hor {
    padding: 0px;
}

.split.reverse {
    flex-direction: row-reverse;
}

.split>div>img, .split>div>.img-shadow-hor>img {
    object-fit: cover;header .logo
    width: 100%;
    height: 100%;
}

.container-smaller {
    margin: 0px auto;
    width: 100%;
    max-width: 1920px;
}

.container-smallest {
    padding: 0px 2.5vw;
    margin: 10vw auto;
    width: 100%;
    max-width: 1200px;
}

main {
    padding-top: var(--header-height);
}

.column {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header {
    transition: .5s;
    color: white;
    position: fixed;
    top: 0px;
    left:0px;
    width: 100%;
    z-index: 1500;
    height: calc( var(--header-height) * 2);
}

    .header-top, .header-main {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

header a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    font-size: 16px;
}

nav a, .dropdown>span {
    padding: 6px 12px;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    margin: 0px 5px;
    cursor: pointer;
    font-family: "myriad-pro",sans-serif;
    text-transform: lowercase;
}


a.logo {
    font-family: "eurostile-extended",sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    margin-left: 15px;
    margin-right: 15px;
}

.header-top a.logo {

    display: flex;
    align-items: center;
    column-gap: 10px;
}

.hero {
    width: 100%;
    height: calc(100vh - 75px);
    margin: 0;
    xxoverflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    xxoverflow: hidden;
    margin-top: calc( var(--header-height) * -1 );
    color: white;
}

.hero>.container {
    display: flex;
    justify-content: center;
    align-items: center;
}


.preload .hero img {
    opacity: 0.5;
    transition: 1.5s;
    filter:blur(20px);
}

.hero img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: blur(0px);
    transition: 1s;
}

.hero h2 {
    opacity: 0;
    transition: 1s;
    transform: translateY(calc(25px + 5vh));
    text-shadow: 1px 1px 1px rgb(255 255 255 / 80%);
    font-family: din-2014-narrow, sans-serif;
    font-size: 84px;
    text-transform: uppercase;
    font-weight: 100;
    margin: 10px 0px;
}

.headline.large {
    font-family: din-2014-narrow, sans-serif;
    font-size: 84px;
    text-transform: uppercase;
    font-weight: 100;
}

.hero p {
    opacity: 0;
    transition: 1s;
    transform: translateY(calc(50px + 5vh));
    font-family: din-2014-narrow, sans-serif;
    font-weight: 100;
    font-size: 32px;
    margin-top: 0px;
}

.end-plate:not(.end-plate-top) {
    padding-bottom: 200px;
}

.cmscnts .pic-parallex {
    height: 700px;
}

.cmscnts .hero-lower {
    width: max-content;
    position: absolute;
    z-index: 1200;
    left: 50%;
    background: none;
}

.curve:before, .curve:after {  
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: width .5s;
    z-index: 1000;
    background-color: var(--curve-color);
    height: var(--curve-height);
    border-radius: var(--curve-radius);
    width: var(--curve-width);
    xxbackground: red !important;
}

.curve.curve-inner-down:after {
    content: '';
    bottom: calc( -1 * var(--curve-height) + var(--curve-radius)  - var(--curve-offset) );
    clip-path: polygon(0 0, 100% 0, 100% calc( var(--curve-offset) * 3 + 1px ), 0% calc( var(--curve-offset) * 3 + 1px ));
}

.curve.curve-outer-up:before {
    content: '';
    top: calc( -1 * var(--curve-height) + var(--curve-radius)  + var(--curve-offset) );
    clip-path: polygon(0 0, 100% 0, 100% calc( var(--curve-offset) * 3 + 1px ), 0% calc( var(--curve-offset) * 3 + 1px ));
}

.curve.curve-outer-down:after {
    content: '';
    bottom: calc( -1 * var(--curve-height) + var(--curve-radius)  + var(--curve-offset) );
    clip-path: polygon(0 calc( var(--curve-radius) + var(--curve-offset) - 1px ), 100% calc( var(--curve-radius) + var(--curve-offset) - 1px), 100% 100%, 0% 100%);
}

.back-light-gray {
    --curve-color: var(--light-gray);
    background: var(--light-gray);
}

.back-light-gray:is(.curve-inner-up, .curve-inner-down){
    --curve-color: white;
}

.back-beige {
    --curve-color: var(--beige);
    background: var(--beige);
}

.back-beige:is(.curve-inner-up, .curve-inner-down){
    --curve-color: white;
}

.hero h2.in-view, .hero p.in-view {
    opacity: 1;
    transition: 1s;
    transform: translateY(0px);
}

.hero .single-middle>div:before {
    content: '';
    top: 50%;
    left: 50%;
    position: absolute;
    box-shadow: 0 0 25vw 15vw rgb(0 0 0 / 50%);
}

.hero-lower {
    height: 75px;
    background: white;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: white;
}

.slick-dots {
    display: block;
    width: 100%;
    padding: 0;
    margin: 25px auto;
    list-style: none;
    text-align: center;
}
    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

    .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 8px;
        height: 8px;
        cursor: pointer;
        color: transparent;
        border: 0;
        outline: none;
        background: transparent;
        border-radius: 50%;
        opacity: .25;
        padding: 0px;
        border: 1px solid black;
    }

    .slick-dots li.slick-active button {
        opacity: 1;
    }

.hero-lower .icon {
    cursor: pointer;
}


.icon {
    background: var(--blackish);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1px;
}

.icon i {
    border:2px solid white;
    background: var(--blackish);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.single-right, .single-left, .single-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.single-right>div:first-child, .single-left>div:first-child, .single-middle>div {
    padding: 5vw;
    max-width: calc(650px + 10vw);
}

.single-right>div {
    transform: translateX( calc(15vw - 30px) );
}

.single-left>div {
    transform: translateX( calc((15vw - 30px)*-1) );
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 5vw;
    margin: 10vw;
}

.gallery-double {
    grid-template-columns: 1fr 2fr;
}

.gallery-triple {
    grid-template-columns: 1fr 1fr 1fr;
}

.gallery-single {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0;
    transition-delay: calc(var(--id) * 0.25s + 0.25s);
    transition: 1s;
}

.animate.in-view.gallery img {
    transition: 1s;
    transition-delay: calc(var(--id) * 0.25s + 0.25s);
    opacity: 1;
}

.animate-up {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s;
}

.animate-up.in-view {
    transform: translateY(0px);
    opacity: 1;
    transition: transform 1s;
}



















.header-info {
    position: absolute;
    right: 0px;
}

    .header-info a {
        letter-spacing: 0px;
        margin-left:15px;
        margin-right: 15px;
    }

#slick-menu-cntr:after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 0px;
    box-shadow: 0px 0px 60px 60px rgb(0 0 0 / 85%), 0px 0px 10px 10px rgb(0 0 0 / 45%);
    content: '';
}

.padding-top {
    margin-top: 115px;
}

#slick-menu .slick-slide {
    height: 65vh;
    max-height: 1000px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    color: white;
    border: 1px solid white;
    padding: 12px 25px;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    cursor: pointer;
    text-align: center;
    background: var(--blackish);
}

.btn-icon {
    text-decoration: none;
    text-align: center;
    background: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    font-size: 12px;
    color: var(--blackish);
    width: max-content;
    padding-right: 15px;
    cursor: pointer;
    border: none;
    outline: none;
} 

.btn-icon:before {
    content: '';
    background: var(--blackish);
    border-radius: 25px;
    transition: .3s;
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
}

.btn-icon em {
    font-style: normal;
    color: gray;
    font-size: 80%;
}

/*.btn-icon:hover:before {
    width: 100%;
    transition: .3s;
}*/

.btn-icon:hover {
    color: white;
}

.btn-icon:after {
    content: '';
    position: absolute;
    inset: 2px;
    border: 2px solid white;
    border-radius: 25px;
    opacity: 0;
    transition: .3s;
}

.btn-icon:hover:after, .btn-icon:hover:before {
    opacity: 1;
    transition: .3s;
}

.btn-icon:hover .icon i {
    border: 2px solid transparent;
}


.grid-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5vw;
}

.grid-equal.negative>div:first-child {
    margin-right: -5vw;
}
.grid-equal.negative>div:last-child {
    margin-left: -5vw;
    padding-right: 5vw;
    padding-top: 5vw;
}

.grid-equal.negative-0>div:first-child {
    padding: 0vw 5vw;
}

.grid-equal img {
    width: 100%;
    height: auto;
}

.cms_pic {
    xxmax-height: 650px;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}

.socials img {
    margin: 0px 2.5px;
    padding: 5px;
    width: 35px;
}

.pic_cl {
    display: grid;
    width: 100%;
    justify-content: space-between;
    grid-gap: 10px;
    margin-bottom: 10px;

    grid-template-columns: 1fr 1fr 1fr;

}

.options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    column-gap: 75px;
    text-align: left;
    line-height: 1.5;
    color: #585858;
    font-size: 14px;
    margin-bottom: 50px;
    padding: 0px 25px;
}

.price {
    font-size: 28px;
    color: #c1c1c1;
    margin: 15px 0px;
}

.specs {
    margin-top: 25px;
    line-height: 1.5;
    color: #585858;
    font-size: 14px;
}

.back-light-gray .container {
    overflow: auto;
    overflow-y: hidden;
}

.pic_cl.single {
    grid-template-columns: 1fr;
}

.pic_cl a {
    height: auto;
    margin-top: 10px;
    align-self: center;
}

.pic_cl a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    object-fit: cover;
}

.img-full {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin: 5vw 0px;
}

    .img-full img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

.img-full.no-shadow {
    margin: 0px;
}

.img-full.no-shadow:before, .img-full.no-shadow:after {
    box-shadow: 0px 0px 60px 60px rgb(0 23 55 / 85%), 0px 0px 10px 10px rgb(0 23 55 / 45%);
}

.img.load {
    opacity: 0;
    transition-duration: 1.5s;
}

.img.load.loaded {
    opacity: 1;
    transition:opacity 1.5s;
}

.slick-slide .topline.small {
    height: 75px;
}

.center-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(50px + 5vw);
}

.center-center.vert {
    flex-direction: column;
}

.center-center.less {
    padding: calc(25px + 2.5vw);
}

.topline, .cmscnts h3 {
    font-family: ingra-wide, sans-serif;
    font-size: 24px;
    text-decoration: none;
}

.headline, .cmscnts h2 {
    
    font-size: 32px;
}

.headline.small {
    font-size: 22px;
}

/*.cmscnts .center:first-child .cms_pic:after {
    content:  '';
    position: absolute;
    top:  -10px;
    width: 60%;
    left: 20%;
    height:  1px;
    background: rgba(255,255,255,0.7);
}
*/
/*.cmscnts {
    xxtransform: scale(0.85);
}

.cmscnts .center:first-child {
    transform-origin: 0% 0%;
    transform: scale(1.15);
}

.cmscnts .center:last-child {
    transform-origin: 100% 0%;
    transform: scale(1.25);
}

.cmscnts .center>* {
    transform: scale(0.85);
}
*/
a.headline {
    text-decoration: none;
    color: inherit;
}

.headline.mega {
    font-size: 44px;
}

.headline.small {
    font-size: 22px;
}


    .headline.extra-small, .topline.small {
        font-size: 19px;
    }

    .topline.small {
        letter-spacing: 4px;
    }


#slick-menu .slick-slide>.img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.img .label {
    position: absolute;
    top: 0px;
    left: 0px;
}

.label {
    display: inline-block;
    vertical-align: middle;
    background: #9f3b26;
    margin-right: 10px;
    font-size: 14px;
    padding: 15px;
    font-family: 'myriad-pro';
    text-transform: capitalize;
    color: white;
    font-weight: normal;
    border-radius: 0px 0px 25px 0px;
}

.label  + span{
    display: inline-block;
    vertical-align: middle;
    }

    #slick-menu .slick-slide>.img:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: '';
        background: rgba(0,0,0,0.5);
    }
    #slick-menu .slick-slide>.img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5;
}

    footer>div {
        padding: 125px 50px;
    }

/*    footer .first {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }*/

footer a.logo {
    color: var(--blackish);
    text-decoration: none;
    margin: 0px;
}

/*main {
    padding-top: 125px;
}
*/
.slick-slide {
    outline: none
}

.grid-pattern {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;

}

.grid-pattern>div {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: calc(100vh / 3);
    flex-direction: column;
}

.grid-pattern>div .content {
    padding: 7.5vw 5vw;
}

.grid-pattern>div .img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

.grid-pattern>div .img>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.grid-pattern .img:before, .grid-pattern .img:after, .img-full:before, .img-full:after, .img-shadow:before, .img-shadow:after {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0px;
    content: '';
    box-shadow: 0px 0px 60px 60px rgb(0 0 0 / 85%), 0px 0px 10px 10px rgb(0 0 0 / 45%);
    z-index: 1;
}

.cms_pic>img {
    width: 100%;
    height: auto;
}

.grid-equal table {
    margin: 10px auto;
}

/*.cms_pic {
    margin: 5vw 0px;
}*/

.img-shadow-hor {
    overflow: hidden;
}


.setLang {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.active #lang-options {
    display: block;
}

#lang-options {
    position: absolute;
    display: none;
    background: white;
    z-index: 200;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

#lang-options img {
    display: block;
    margin: 2.5px;
}

#lang-chosen {
    padding-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lang-chosen:after {
    position: absolute;
    content: "";
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: white transparent transparent transparent;
}

#gmap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    margin: 0px auto;
}
/*
.img-shadow-hor:before, .img-shadow-hor:after {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    content: '';
    box-shadow:  0px 0px 5vw 5vw rgb(0 0 0 / 85%);
}

.img-shadow-hor:before {
    left: 0px;
    right: auto;
    z-index: 1;
}
*/
.colorbox{
    display: block;
}

.grid-pattern .img:after, .img-full:after, .img-shadow:after {
    top: auto;
    bottom: 0px;
}


.line:after {
    position: absolute;
    content:'';
    left: 0;
    top:0;
    width: 75%;
    height: 1px;
    background: #ffffff96;
    z-index: 300;
}

.line-bottom:after {
    top: auto;
    bottom: 0;
}

.line-left:after {
    left: auto;
    right: 0px;
    width: 150%;
}

.grid-pattern>div:nth-child(1){  grid-column: 1; grid-row: auto / span 2; }
.grid-pattern>div:nth-child(2){  grid-column:  auto / span 2; }
.grid-pattern>div:nth-child(3){  grid-row:  3; }
.grid-pattern>div:nth-child(4){  grid-row:  auto / span 2; }
.grid-pattern>div:nth-child(6){  grid-row:  auto / span 2;  }
.grid-pattern>div:nth-child(7){  grid-column:  auto / span 2;  }

.simple-slider .slick-slide {
    text-decoration: none;
    color: black;
}


.simple-slider .img img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}


#hamburger {
    display: none;
}


#fancybox-left-ico, #fancybox-right-ico {
    position: fixed;
    top: 50%;
    left: 20px;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    cursor: pointer;
    z-index: 1102;
    display: block;
    background-image: url(/images/arrow.png);
    transform:rotate(180deg);
}

#fancybox-close {
    position: fixed;
    cursor: pointer;
    z-index: 1102;
    display: block;
    background-image: url(/images/close.png);
    right: 20px;
    top: 20px;
}

#fancybox-right-ico {
    left: auto;
    right: 20px;
    transform:rotate(0deg);
}

#fancybox-wrap, #fancybox-wrap * {
    box-sizing: initial;
}


#overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 500px;
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 3px 0 rgb(60 64 67 / 30%), 0 6px 10px 4px rgb(60 64 67 / 15%);
    box-shadow: 0 2px 3px 0 rgb(60 64 67 / 30%), 0 6px 10px 4px rgb(60 64 67 / 15%);
    border-color: #0003;
    z-index: 9000;
}

    #overlay .dismiss {
        position: absolute;
        right: 0px;
        padding: 10px;
        cursor: pointer;
        font-size: 24px;
        top: 0px;
        z-index: 9500;
        line-height: 24px;
    }

img.hero-pic {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.pic-parallex {
    height: 500px;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pic-parallex:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 100%);
}

.slick-slider {
    margin: 25px;
}

.slick-slide {
    opacity: 0.4;
    transition: .5s;
}

.slick-slide.slick-active {
    opacity: 1;
    transition: .5s;
}

.occs {
    padding: 100px 0px;
    margin-top: 100px;
}
.occs .headline.large {
    text-align: center;
    font-weight: bold;
    font-size: 73px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.occ {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-right: 50px;
}

.occ .img {
    width: 50vw;
    aspect-ratio: 1.5;
    max-width: 700px;
}

.occ .content {
    padding: 25px;
    line-height: 1.5;
}

.products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

    .products.beige {
        background: var(--beige);
    }

.products img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    object-fit: cover;
}

.products.ohd img {
    aspect-ratio: initial;
}

.product {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products .product:nth-child(6n+4), .products .product:nth-child(6n+5), .products .product:nth-child(6n+6)    {
    background: white;
}

.product .label {
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 0px 0px 0px 25px;
}

.products.ohd  {
    grid-gap: 25px;
}

.products.ohd img {
    width: 90%;
    margin: 0px auto;
    display: block;
}

.products.ohd>div {
    text-align: left;
    font-size: 85%;
}

.ohd .name {
    font-weight: bold;
}


.fancybox__backdrop {
    background-color: rgb(0 0 0 / 75%) !important;
    opacity: 0.85 !important;
}

.with-fancybox {
    overflow: hidden;
}

.with-fancybox :is(main, header, footer){
    filter:blur(10px);
}

.fancybox__nav {
        position: initial;

}


.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: var(--beige);
}

.socials img {
    filter: invert(100%);
}
