@charset "utf-8";
/* CSS Document */

/*
Theme Name: Theme
Author: The Laundry
Description: Custom WP Theme
Version: 0.0.1
Text Domain: theme
Tags:
*/

:root {
    --main-color: #25303C;
    --text-color: var(--main-color);
    --tint-color: #e5f0f7;
    --sec-color: #AD8B6A;
}


body, html {
	padding:0;
	margin:0;
    font-family: "bricolage-grotesque", sans-serif; /* 300, 500, 700 */
    font-weight:300;
    background:white;
    color:var(--main-color);
    font-size:19px;
    line-height:1.5em;
}

* {
	box-sizing: border-box;
}

p {
    font-size:1rem;
    line-height:1.5em;
    font-weight:300;
}

a {
    color:var(--main-color);
}

.button {
    display: inline-block;
    padding:.4em 1.2em .6em 1.2em;
    background:var(--sec-color);
    color:white;
    font-weight:500;
    letter-spacing: 2px;
    font-size:1rem;
    line-height: 1em;
    transition: 0.3s ease;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    margin-right:15px;
    margin-top:15px;
}
.button:hover {
    background:var(--sec-color);
}
a.altbutton {
    text-decoration: none;
    letter-spacing: 1px;
    font-weight:600;
    margin-right:15px;
    color:var(--main-color);
    transition: 0.3s ease;
}
a.altbutton::before {
    content:'- ';
}
a.altbutton:hover {
    color:var(--sec-color);
}

.center {
	text-align: center;
}

.left {
	float:left!important;
}
.right {
	float:right!important;
}
.space-bottom {
	margin-bottom:120px;
}
.space-top {
	margin-top:120px;
}
.space {
	margin-top:120px;
	margin-bottom:120px;
}
.smallspace {
	margin-top:60px;
	margin-bottom:60px;
}

h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.2em;
    font-weight:600;
    margin:0 0 15px 0;
}
h2 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2em;
    font-weight:600;
    margin:0 0 15px 0;
}
h3 {
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.3em;
    font-weight:300;
    margin:8px 0;
}

.container, .midcontainer, .smallcontainer, .minicontainer, .flexrow {
    display: flex;
    flex-wrap: wrap;
	position: relative;
	max-width:100%;
	padding-left:15px;
	padding-right:15px;
	margin-left:auto;
	margin-right:auto;
	overflow:hidden;
}
.row, .flexrow {
	width:100%;
	overflow:hidden;
    padding-left:0;
    padding-right:0;
}
.container {
	width:1600px;
}
.midcontainer {
	width:1300px;
}
.smallcontainer {
	width:800px;
}
.minicontainer {
	width:450px;
}

.reverse {
    flex-direction: row-reverse;
}

.div5 {
    width:calc(5% - 12px);
}
.div10 {
    width:calc(10% - 12px);
}
.div15 {
    width:calc(15% - 12px);
}
.div20 {
    width:calc(20% - 12px);
}
.div25 {
    width:calc(25% - 12px);
}
.div30 {
    width:calc(30% - 12px);
}
.div33 {
    width:calc(33% - 12px);
}
.div40 {
    width:calc(40% - 12px);
}
.div45 {
    width:calc(45% - 12px);
}
.div50 {
    width:calc(50% - 12px);
}
.div60 {
    width:calc(60% - 12px);
}
.div70 {
    width:calc(70% - 12px);
}
.div80 {
    width:calc(80% - 12px);
}


.imgwrap-1 {
    position: relative;
    width:100%;
    height:0;
    padding-top:75%;
}
.imgwrap-1 img {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
}
.content {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding:50px 30px;
    background:white;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.16);
}

.content::before {
    content:'';
    position: absolute;
    top:50%;
    left:50%;
    transform:Translate(-50%, -50%);
    width:calc(100% - 30px);
    height:calc(100% - 40px);
    background:transparent;
    pointer-events: none;
    border:1px solid var(--sec-color);
}
.content::after {
    content:'';
    position: absolute;
    bottom:12px;
    left:50%;
    transform:translateX(-50%);
    width:45px;
    height:30px;
    background-color:white;
    background-image:url('img/borne_apotheek.svg');
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
}

.content ul {
    list-style: none;
    margin:0;
    padding:0 0 0 20px;
}
.content li {
    position: relative;
}
.content li::before {
    content:'';
    position: absolute;
    top:14px;
    left:-18px;
    width:7px;
    height:2px;
    background-color:var(--sec-color);
}
.aboveslider {
    position: relative;
    z-index: 2;
    padding-top:15px;
    padding-bottom:15px;
}


@media screen and (min-width:831px) {
    .content {
        transform:translate(-60px, 45px);
        padding:60px 85px;
    }
    .reverse .content {
        transform:translate(60px, 45px);
    }
    .content::before {
        width:calc(100% - 60px);
        height:calc(100% - 60px);
    }
    .content::after {
        bottom:15px;
        width:60px;
        height:45px;
    }
    .aboveslider {
        margin-bottom:-35px;
        padding-bottom:0;
        margin-top:-35px;
    }
}
@media screen and (max-width:768px) {
    .space-top {
        margin-top:60px;
    }
    .space-bottom {
        margin-bottom:60px;
    }
    .space {
        margin-top:60px;
        margin-bottom:60px;
    }
    .smallspace {
        margin-top:30px;
        margin-bottom:30px;
    }
    .div10, .div15, .div20, .div25 {
        width:calc(50% - 8px);
    }
    .div30, .div33, .div40, .div45, .div50, .div60, .div70, .div80 {
        width:100%;
    }
    .hidemobile {
        display: none;
    }
    .content {
        margin-bottom:12px;
    }
}

header {
    position: sticky;
    position: -webkit-sticky;
    top:0;
    left:0;
    z-index: 99;
    width:100%;
    height:60px;
    background-color: white;
    color:var(--main-color);
}
.headercontainer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width:1630px;
    max-width: 100%;
    height:100%;
    margin:auto;
    padding:15px;
}
.logo {
    height:100%;
    width:auto;
    font-size:32px;
    line-height: 32px;
    font-weight:700;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
}
.logo-anchor {
    height:34px;
    float:left;
    margin-right:8px;
}
@media screen and (max-width:430px) {
    .logo {
        font-size:32px;
        line-height: 38px;
    }
}
nav {
    margin-left:auto;
}
nav ul {
    list-style: none;
    margin:0;
    padding:0;
}
nav li {
    display: inline-block;
    margin:0 0 0 15px;
    padding:0;
}
header a {
    text-decoration: none;
    color:inherit;
    transition: 0.3s ease;
}
header nav a {
    display: block;
    position: relative;
    font-size:20px;
    line-height: 20px;
    font-weight:500;
}
header nav li:not(:last-child) a::after {
    content:'';
    position: absolute;
    width:0;
    left:-3px;
    bottom:-1px;
    height:6px;
    background:var(--sec-color);
    z-index: -1;
    transition: 0.3s ease;
}
header.scroll a {
    color:var(--main-color);
    text-shadow: none;
}
header nav li:not(:last-child) a.active::after, header nav li:not(:last-child) a:hover::after {
    width:calc(100% + 6px);
}
nav li:last-child a {
    display: block;
    padding:8px 12px;
    background:var(--sec-color);
    color:white;
    font-weight:700;
    letter-spacing: 2px;
    font-size:16px;
    line-height: 16px;
    transition: 0.3s ease;
    border-radius: 100px;
}
nav li:last-child a:hover {
    background:var(--main-color);
}

.hamburger {
	position: absolute;
	z-index:99;
	top:50%;
    transform:translateY(-50%);
	right:15px;
	width:45px;
	height:45px;
	cursor: pointer;
    display: none;
}
.hamburger span {
	display:block;
	position: absolute;
	left:6px;
	height:3px;
	width:33px;
	background:var(--main-color);
	transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
	top:12px;
}
.hamburger span:nth-child(2) {
	top:21px;
}
.hamburger span:nth-child(3) {
	top:30px;
}

.opennav .hamburger span:nth-child(1) {
	top:21px;
	transform:rotate(45deg);
}
.opennav .hamburger span:nth-child(2) {
	top:21px;
	opacity:0;
}
.opennav .hamburger span:nth-child(3) {
	top:21px;
	transform:rotate(-45deg);
}

.vimeo-wrapper {
    position: relative;
    margin:0px;
    width:100%;
    height: 100vh;
    overflow: hidden;
    transition: 0.6s ease;
}
.vimeo-wrapper a.altbutton {
    color:white;
}
.vimeo-wrapper a.altbutton:hover {
    color:var(--main-color);
}
@media screen and (max-width:480px) {
    .vimeo-wrapper .button {
        margin-right:0;
    }
    .vimeo-wrapper a.altbutton {
        display: block;
        margin-top:8px;
        width:max-content;
        margin-left:auto;
        margin-right:auto;
    }
}
.vimeo-wrapper.scroll {
    margin:60px;
    width: calc(100% - 120px);
    height: calc(100vh - 120px);
}
.video-content {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 2;
    text-align: center;
    color:white;
    padding:120px 15px;
}
.scrolldown {
    position: absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    z-index: 3;
    width:80px;
    color:white;
    text-align: center;
    font-weight:700;
    font-size:14px;
    line-height: 18px;
    text-decoration: none;
}
.scrolldown::after {
    content:'';
    position: absolute;
    z-index: -1;
    top:18px;
    left:calc(50% - 1px);
    height:calc(100% - 25px);
    border-right:2px dotted white;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.scrolldown img {
    width:30px;
    display: block;
    height:auto;
    margin:auto;
    margin-top:8px;
    -webkit-filter: drop-shadow( 0 0 6px rgba(0, 0, 0, 0.3));
    filter: drop-shadow( 0 0 6px rgba(0, 0, 0, 0.3));
    transition: 0.3s ease;
}
.scrolldown:hover img {
    transform:translateY(12px);
}

.vimeo-wrapper iframe, .vimeo-wrapper video {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1.05);
    background-color:#F1F1F1;
}



/* VIDEO POPUP */
.video_popup {
    position: fixed;
    z-index: 101;
    top:0;
    left:0;
    width:100%;
    height:100%;
    padding:80px;
    display: none;
}
.video_popup_bg {
    position: absolute;
    z-index: 1;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(21,40,75,0.80);
    cursor: pointer;
}
.video_popup_bg::after {
    content:'×';
    font-weight:600;
    font-size:60px;
    line-height: 60px;
    color:white;
    z-index: 3;
    position: absolute;
    top:10px;
    right:13px;
    width:40px;
    height:40px;
}
.video_wrap {
    z-index: 2;
    position: absolute;
    pointer-events: none;
}
.video_wrap video, .video_wrap iframe {
    position: absolute;
    top:50%;
    left:50%;
    transform:translateX(-50%) translateY(-50%);
    width:90%;
    height:90%;
    pointer-events: all;
}

@media (min-aspect-ratio: 16/9) {
	.video_wrap {
		width: 177.777vh;
		height: 100vh;
		position: absolute;
		top:0;
		left: 50%;
        transform:translateX(-50%);
	}
}

@media (max-aspect-ratio: 16/9) {
	.video_wrap {
		width: 100%;
        height:0;
		padding-top: 56.25%;
		position: absolute;
		top: 50%;
		left: 0;
		transform:translateY(-50%);
	}
}

@media (aspect-ratio: 16/9) {
	.video_wrap {
		width: 100%;
		padding-top: 56.25%;
        height:0;
		position: absolute;
		top: 50%;
		left: 50%;
        transform:translateX(-50%) translateY(-50%);
	}
}

.hero {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    height:auto;
    align-items: center;
    background-color: var(--main-color);
    color:white;
    justify-content: space-between;
}
.hero-content {
    width:840px;
    max-width: 100%;
    margin-left: auto;
    padding:45px 5%;
}
.hero-img {
    position: relative;
    align-self: stretch;
}
.hero-img img {
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    display: block;
    aspect-ratio:5/4;
}


@media screen and (max-width:1080px) {
    .hamburger {
        display: block;
    }
    header .logo {
        position: relative;
        z-index: 6;
    }
    nav {
        display: none;
        position: fixed;
        z-index: 5;
        top:0;
        left:0;
        width:100%;
        height:100vh;
        background:white;
        padding-top:80px;
    }
    header.opennav nav {
        display: block;
    }
    header.opennav a {
        color:var(--main-color);
        text-shadow: none;
    }
    header nav ul {
        padding:15px;
    }
    header nav li {
        display: inline-block;
        float:left;
        clear:left;
        margin:0 auto 25px 0;
    }
    
}
@media screen and (max-width:768px) {
    .vimeo-wrapper.scroll {
        margin-left:40px;
        margin-right:40px;
        margin-bottom:40px;
        width:calc(100% - 80px);
        height:calc(100vh - 100px);
    }
    .hero {
        min-height: 0;
    }
    .hero-img img {
        position: relative;
        top:auto;
        left:auto;
        height:auto;
        aspect-ratio:3/2;
    }

}
@media screen and (max-width:630px) {
    header .logo {
        font-size:26px;
    }
    .hamburger {
        top:55%;
    }
    .vimeo-wrapper.scroll {
        margin-left:15px;
        margin-right:15px;
        margin-bottom:15px;
        width:calc(100% - 30px);
        height:calc(100vh - 75px);
    }
}



.impression-slider .slide img {
    width:100%;
    cursor: pointer;
}
.impression-slider .img-wrap {
    position: relative;
    width:100%;
    height:0;
    padding-top:56.25%;
    cursor: pointer;
}
.impression-slider .slick-center .img-wrap {
    cursor: default;
}
.impression-slider .img-wrap img {
    position: absolute;
    top:10%;
    left:0;
    object-fit:cover;
    object-position: center;
    width:100%;
    height:80%;
    transition: 0.3s ease;
}
.impression-slider .slick-center .img-wrap img {
    top:0;
    height:100%;
}

.slick-arrow {
    position: absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    -webkit-appearance:none;
    border:none;
    background:none;
    color:transparent;
    cursor: pointer;
}
.slick-prev {
    left:0;
}
.slick-prev::before, .slick-next::before {
    color:white;
    font-size:20px;
    font-weight: 600;
}
.slick-prev::before {
    content:'◀';
}
.slick-next {
    right:0;
}
.slick-next::before {
    content:'▶';
    float:right;
}

footer {
    overflow: hidden;
    background-color:var(--main-color);
    padding:60px 0;
    color:white;
}
footer a {
    color:white;
}
footer ul {
    list-style: none;
    margin:0;
    padding:0;
}
footer ul li {
    margin:0;
}
footer .container > div {
    margin-bottom:12px;
}