.container {
    width: 1200px;
    margin: 0 auto;
}

.noscroll {
    overflow: hidden;
}

.hideme {
    display: none;
}

.bgimage {
    background-position: center center;
    background-repeat: no-repeat no-repeat;
    background-size: cover;
}

.grey {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: -webkit-filter 1s;
    transition: -webkit-filter 1s;
    -o-transition: filter 1s;
    transition: filter 1s;
    transition: filter 1s, -webkit-filter 1s;
}

.grey:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transition: -webkit-filter 1s;
    transition: -webkit-filter 1s;
    -o-transition: filter 1s;
    transition: filter 1s;
    transition: filter 1s, -webkit-filter 1s;
}

.preloader-container {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 999;
    overflow: hidden;
}

.preloader-dec {
    width: 33.33vw;
    height: 100vh;
    background-color: #fff;
    float: left;
}

.preloader-dec:nth-last-of-type(1) {
    -webkit-animation: preloadershift 1s 1.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation: preloadershift 1s 1.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.preloader-dec:nth-last-of-type(2) {
    -webkit-animation: preloadershift 1s 1.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation: preloadershift 1s 1.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
}

.preloader-logo {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 300px;
}

.preloader-dec:nth-last-of-type(3) {
    -webkit-animation: preloadershift 1s 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation: preloadershift 1s 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@-webkit-keyframes preloadershift {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes preloadershift {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

nav {
    height: 115px;
    width: 100%;
    position: relative;
}

.logo-nav {
    float: left;
    width: 200px;
    margin-top: 15px;
}

.mobile-nav {
    display: none;
}

.nav-menu {
    float: right;
}

nav ul {
    list-style: none;
    padding: 0;
}

.nav-menu ul li {
    margin-left: 35px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 115px;
    float: left;
    position: relative;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.nav-menu ul li:hover > ul {
    display: block;
    padding: 20px;
}

.nav-menu ul li ul {
    display: none;
    position: absolute;
    top: 70%;
    left: -20px;
    background: #fff;
    padding: 0;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.dropdown ul li {
    float: none;
    line-height: 1.8;
    margin-left: 0;
}

.dropdown ul li a {
    text-transform: initial;
}

.dropdown ul li a::after {
    display: none;
}

.nav-menu a {
    text-transform: lowercase;
    color: #5D5D59;
}

.nav-menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #5D5D59;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    margin-top: -40px;
}

.nav-menu a:hover::after {
    width: 100%;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
}

.mobile-nav-container .language-selector {
    margin-top: 20px;
}

.mobile-nav-container .language-selector a {
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
}

.nav-menu ul li.language-selector {
    left: initial;
}

.nav-menu ul li.language-selector a {
   margin-left: 5px;
   margin-right: 5px;
   text-transform: uppercase;
   float: right;
}

.dropdown {
    text-transform: lowercase;
}

.dropdown::after {
    display: none;
}

.dropdown-icon {
    height: 10px;
    width: 15px;
    padding-left: 12px;
    background: url(../images/dropdown.svg) no-repeat right;
}

.mobile-nav-container {
    height: 100vh;
    width: 100vw;
    position: absolute;
    background-color: #5D5D59;
    display: none;
    color: #fff;
    text-align: center;
    padding-top: 110px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 999;
}

.mobile-nav-open {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.mobile-nav-container a, .mobile-nav-container a * {
    color: #fff;
}

.mobile-nav-container h4 {
    color: #fff;
    line-height: 2.5;
    text-transform: lowercase;
}

.mobile-nav-container h5 {
    font-weight: 400;
}

.mobile-nav-container .mobile-nav {
    top: 35px;
    margin: 0;
    right: 25px;
    position: absolute;
}

.mobile-nav-container .logo-nav {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 150px;
}

.omom {
    margin-top: -60px;
    clear: both;
}

.omom-child {
    padding: 30px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    position: relative;
    flex-direction: row;
}

.omom-child:nth-child(even) {
    background-color: #dfd9cd;
}

.omom-child:nth-child(even) img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.omom-child:nth-child(even) .omom-text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.omom-child img {
    width: 50%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    float: left;
}

.omom-text {
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 110px;
    float: right;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: left;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    -ms-flex-item-align: center;
    align-self: center;
}

header {
    background-color: #5D5D59;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0 100px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
}

.slider {
    display: block;
    width: 75vw;
    height: 56.25vw;
    margin-left: -10px;
    float: left;
    overflow: hidden;
}

.slider-nav {
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 35px;
    color: #fff;
    -ms-flex-item-align: center;
    align-self: center;
    width: 245px;
}

.slider-nav h3 {
    line-height: 1.7;
    cursor: pointer;
}

.slider-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slider img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bttn-prev {
    width: 42px;
    height: 42px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/images/arrow.svg);
    cursor: pointer;
    margin-right: 10px;
}

.bttn-next {
    width: 42px;
    height: 42px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background-image: url(/images/arrow.svg);
    cursor: pointer;
}

.slider-bttns {
    margin-top: 15px;
}

.slider-nav h3 {
    opacity: 0.2;
}

.slick-current h3 {
    opacity: 1;
}

.quote {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    position: relative;
    padding-top: 120px;
}

.quote::before {
    content: '“';
    display: inline-block;
    vertical-align: bottom;
    font-size: 200px;
    line-height: 50px;
    opacity: 0.25;
    left: 0;
    position: absolute;
    font-family: 'Work Sans', sans-serif;
}

.quote::after {
    content: '”';
    display: inline-block;
    vertical-align: bottom;
    font-size: 200px;
    line-height: 50px;
    opacity: 0.25;
    right: 0;
    margin-top: 70px;
    position: absolute;
    font-family: 'Work Sans', sans-serif;
}

.footerquote {
    width: 100%;
    background-color: #a38755;
    padding: 75px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

.footerquote * {
    color: #dfd9cd;
}

.footerquote .quote {
    padding-top: 0;
}

.footerquote .quote::before {
    left: -50px;
    top: 10px
}

.footerquote .quote::after {
    margin-top: 20px;
}

.main-footer {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 35px 0;
    background-color: #5D5D59;
    overflow: auto;
}

.main-footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.footerlogo {
    width: 180px;
    display: block;
    float: left;
}

small,
small a {
    color: #fff;
}

.sitemap {
    width: 200px;
    float: left;
}

.sitemap-links {
    -webkit-column-count: 2;
    column-count: 2;
}

.sitemap-links a {
    clear: both;
    display: block;
}

.footer-social a img {
    width: 24px;
    margin-right: 20px !important;
    display: block;
    float: left;
    margin-top: 10px;
}

.footer-contact small {
    display: block;
}

.container.voeter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 0;
}

.voeter small,
.voeter small a {
    color: #5D5D59;
}

.slider-sub {
    width: 90vw;
    margin-left: -10px;
    height: 67.5vw;
    overflow: hidden;
}

.slider-sub img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%
}


.slider-album {
    height: 39vw;
}


.slider-album img {
    -o-object-fit: contain;
    object-fit: contain;
}

.slider-bttns.sub {
    width: 100%;
    position: relative;
    top: -20px;
    margin-top: 0;
    text-align: right;
}

.centered-text {
    padding: 100px 0;
    text-align: center;
    width: 90vw;
    max-width: 600px;
    margin: 0 auto;
}

.centered-header {
    padding: 100px 0;
    width: 90vw;
    max-width: 750px;
    margin: 0 auto;
}

.container.over {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 100px;
    text-align: center;
}

.over-block:nth-child(even) {
    margin-top: 40px;
}

.over-block:nth-child(odd) {
    margin-top: -40px;
}

.over-block {
    width: 225px;
}

.over-block h5 {
    font-size: 1.1em;
    margin-top: 5px;

}

.over-block img {
    width: 100%;
}
.news *{
    color: #3A3937
}
header.news {
    background-color: #dfd9cd;
    color: #5D5D59;
    margin-bottom: 50px;
}

.news-articles {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 1em;
}

article {
    background-color: #fff;
}

article h4 {
    font-size: 1.2em;
    line-height: 1.4;
}

.news-info {
    width: 100%;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.news-info .bttn {
    float: right;
}

.news-thumb {
    width: 100%;
    padding-top: 100%;
}

.news-hero {
    width: 90vw;
    height: 40vw;
    margin-left: -10px;
}

header.news-detail {
    background-color: #dfd9cd;
    color: #5D5D59;
    padding-bottom: 0;
}

main {
    width: 90%;
    max-width: 620px;
    margin: 0 auto;
    padding: 35px 0;
}

main h3 {
    margin-bottom: 10px;
}

main figure img {
    width: 100%;
}

.weddingweb {
    background-color: #5D5D59;
    display: inline-block;
    width: 100%;
    padding-bottom: 40px;
    margin-top: 50px;

}

.weddingweb img {
    width: 45%;
    position: relative;
    display: block;
    margin-top: -40px;
    float: left;
}

.weddingweb .omom-text {
    padding: 0;
    padding-top: 40px;
    color: #fff;
}

section {
    width: 100%;
    padding: 60px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: auto;
    text-align: center;
}

section h2 {
    text-align: center;
}

.album {
    background-color: #5D5D59;
}

.album * {
    color: #fff;
}

.recensie-slider {
    width: 100vw;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.recensie-slide {
    padding: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;

}

.recensie-slider .slick-slide {
    margin: 0 10px;
    width: 50vw;
    opacity: 0.5;
}

.slick-current {
    opacity: 1 !important;
}

.hidebrand {
    width: 100%;
    height: 31px;
    background-color: #dfd9cd;
    position: absolute;
    bottom: 0;
}

.videoalbum {
    margin: 0 auto;
    width: 90vw;
    max-width: 550px;
    display: block;
    margin: 10px;
    display: inline-block;
}

section.lb-albums .container {}

.album-thumb {
    width: 400px;
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    float: left;
    border: 5px solid #dfd9cd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.album-thumb h5 {
    -ms-flex-item-align: center;
    align-self: center;
    text-align: center;
    color: #fff;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hover-thumb {
    background-color: #5D5D59;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 90%;
    width: 90%;
    z-index: 1;
    opacity: 0.2;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.hover-thumb:hover {
    opacity: 1;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.portaal-intro {
    width: 90vw;
    max-width: 620px;
}

header.portaal {
    padding: 60px 0 80px 0;
}

.imgrid {
    margin-top: -20px;
    margin-bottom: 10vw;
}

.justified-gallery > a > .caption, .justified-gallery > div > .caption, .justified-gallery > figure > .caption {
    padding: 15px;
    display: block;
}

.imgrid-label {
    margin: 0;
    font-size: 11px;
}

.imgrid-input-hidden {
    display: none;
}

.imgrid-label-text {
    padding-top: 4px;
    display: inline-block;
    color: #fff;
    letter-spacing: 1px;
}

.imgrid-input-checkbox {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    float: left;
    border-radius: 4px;
    background-color: #dfd9cd;
}

.imgrid-input-checkbox.active:before {
    content: '';
    width: 80%;
    height: 80%;
    position: absolute;
    top: 10%;
    left: 10%;
    background-image: url(/images/check-solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.download-bttn {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1em;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: absolute;
    margin: 10px 20px;
    cursor: pointer;
    z-index: 1000;
    display: none;
}

.login-bg {
    width: 100%;
    height: 100%;
/*
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.2;
*/
}

.login-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-form {
    -ms-flex-item-align: center;
    align-self: center;

}

.login-wrapper h4 {
    font-weight: 400;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.login-wrapper h1 {
    margin-bottom: 10px;
}

.login-container {
    width: 100vw;
    height: 80vh;
    position: relative;
}

.login-wrapper #password {
    width: 75%;
    max-width: 450px;
    float: left;
    min-width: 300px;
}  

.login-wrapper input[type=submit] {
    float: left;
    margin: 0;
    padding: 18px 30px;
    text-transform: lowercase;
}

.tarieven-detail {
    padding: 40px 0;
    margin-bottom: 5vw;
}

.tarieven-detail h1 {
    margin-bottom: 0;
    width: 90vw;
    max-width: 550px;
}

.pakketprijzen {
    width: 55%;
    float: left;
    margin-bottom: 5vw;
}

.pakketbeschrijving {
    width: 45%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 70px;
    float: left;
    margin-bottom: 5vw;
}

.pakket-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 40px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.full-table {
    width: 100%;
}
.full-table tr:nth-child(even){
    background-color: #fff;
}
table{    min-width: 800px;}

.full-table .pakket-titel {
    width: 100%;
    margin-bottom: 20px;
}

.full-table .pakket-specs {
    width: 100%;
}

.full-table .pakketprijzen {
    width: 100%;
}

.full-table.pakketbeschrijving {
    width: 100%;
    padding: 0;

    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
}

table {
    width: 100%;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.55;
    margin-bottom: 10px;
}

tr td {
    width: 25%;
    padding: 20PX 10px;
}

table tr:nth-child(1) {
    font-weight: 700;
}

.pakket-wrapper h3 {
    font-size: 1.3em;
}

.pakket-wrapper h4 {
    font-weight: 400;
    font-size: 1.2em;
}

.pakketbeschrijving h4 {
    margin-bottom: 10px;
}

.meestgekozen {
    position: absolute;
    padding: 5px 10px;
    border-radius: 100px;
    background-color: #a38755;
    text-transform: uppercase;
    letter-spacing: 0;
    left: -10px;
    top: -10px;
}

.news-detail *{
    color: #5D5D59;
}

.meestgekozen p {
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    color: #dfd9cd;

}
.centered-header *{
    color:#F6F5F3;
}
header *{
        color:#F6F5F3;
}
.main-footer strong{
    color: #fff;
}
.weddingweb .omom-text *{
    color: #F4F3F1
}

.pakket-wrapper:nth-of-type(odd) {
    background-color: #dfd9cd;
}
.omom-child:nth-child(odd) {
    background-color: #a38755;
}
.omom-child:nth-child(odd) * {
    color: #dfd9cd;
}
 
.pakket-titel {
    float: left;
    width: 35%;
}

.pakket-specs {
    float: right;
    width: 65%;
}

.contact {
    padding-bottom: 0;
    height: 550px;
    margin-bottom: 140px;
}

.contact h3 {
    margin-bottom: 15px;
}

.contact-header-text {
    width: 35%;
    float: left;
    padding: 110px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.contact-map {
    width: 55%;
    position: relative;
    height: 500px;
    float: right;
    bottom: 0px;
}

.contact-info {
    width: 45%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 70px;
    float: left;
}

.contact-form {
    width: 55%;
    float: left;
    margin-bottom: 70px;
}

.contact-page h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
}

.contact-form input:not([checkbox]),
.contact-form textarea {
    width: 100%;
}

.contact-form input[type=submit] {
    display: block;
    width: auto;
    float: right;
}

.avg {
    float: left;
    width: 65%;
}

.avg small {
    color: #5D5D59;
}

.contact-info a {
    color: #5D5D59;
}

.socialmedia-kop {
    margin-top: 50px;
}

.contact-info img {
    float: left;
    margin-right: 10px;
    margin-top: -5px;
    width: 30px;
}

.contact-social {
    margin-bottom: 25px;
    display: block;
}
.usp-bol{
    height: 245px;
    width: 245px;
    border-radius: 1000px;
    position: absolute;
    top:0;
    left: 0;
    display: block;
    z-index: 999;

    top: 50px;
    left: -10px;
}
.ophouden{
    opacity: 0.5;
    text-align: center;
    width: 90vw;
    max-width: 700px;
    margin: 30px auto 0 auto;
}
body{
    overflow-x: hidden;
    background-color: #dfd9cd;
}
#submitBtn:disabled{
    cursor: not-allowed;
}