/* ==================================== */
/* APPLICATION */
/* ==================================== */
/* APPLICATION */
/* DEFAULTS */
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #abacae;
}

h1, h2, h3, h4 {
    color: #585b60;
}

ul, ol {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

ul li, ol li {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

/* HELPER CLASSES */
.padding-none {
    padding: 0;
}

/* SECTION */
.section-padding {
    padding: 60px 0;
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }
}

/* NAVIGATION */
/* NAVBAR */
.navbar {
    background-color: white;
}

.navbar.compressed {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    box-shadow: 0 3px 6px 3px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    width: 200px;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 1rem;
    color: #4A2614;
}

.navbar-brand-img {
    position: fixed;
    top: 5px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    text-transform: uppercase;
    color: #585b60;
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.navbar.compressed .navbar-nav .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #61432C;
}

.navbar-expand-lg .navbar-nav .nav-item.active a {
    color: #61432C;
    text-decoration: underline;
}

/* TOGGLER */
.navbar-toggler {
    border: 1px solid #585b60;
    padding: .75rem .75rem;
    background: transparent !important;
    border-radius: 0;
}

.navbar-toggler:focus {
    outline: none;
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    background-color: #585b60;
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggler .icon-bar + .icon-bar {
    margin-top: 4px;
}

.icon-bar:nth-child(2) {
    width: 16px;
    transition: ease all .2s;
}

.navbar-toggler:hover > .icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:active > .icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    transition: ease all .2s;
}

/* HEAD */
/* HEADER */
#header {
    min-height: calc(0px + 70vh);
    background-image: url("/assets/img/site/de_koekedoos_header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

/* QUOTE */
#header-quote {
    position: relative;
    margin-bottom: 0;
    padding: 20px 10px;
    background-color: #292D2F;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

@media (min-width: 576px) {
    #header-quote {
        font-size: 20px;
    }
}

@media (min-width: 767px) {
    #header-quote {
        font-size: 26px;
    }
}

/* ANIMATION */
@keyframes koekedoos_bounce {
    from,
    4%, 11%, 16%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    8% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    14% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    18% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
    20%, 100% {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }
}

@-webkit-keyframes koekedoos_bounce {
    from,
    4%, 11%, 16%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    8% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    14% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    18% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
    20%, 100% {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }
}

.koekedoos-bounce {
    -webkit-animation-name: koekedoos_bounce;
    animation-name: koekedoos_bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

.koekedoos-bounce-animation {
    animation: koekedoos_bounce 5s infinite;
}

/* CARDS */
/* DEFAULTS */
.koekedoos-cards {
    text-align: center;
}

/* TITLE */
.koekedoos-cards .title {
    min-height: 50px;
}

.koekedoos-card .title:last-child {
    min-height: inherit;
}

.koekedoos-cards .title h3 {
    text-transform: uppercase;
    color: #585b60;
    font-size: 20px;
    margin-bottom: 0;
}

.koekedoos-cards .title h5 {
    color: #452A1D;
    font-size: 15px;
    margin-bottom: 0;
}

/* SINGLE CARD */
.koekedoos-cards .koekedoos-card {
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 18px 0 rgba(198, 198, 198, 0.4);
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(248, 249, 251, 0.8);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    border: 1px solid rgba(69, 42, 29, 0.1);
}

.koekedoos-cards .koekedoos-card:hover {
    background: rgba(223, 224, 225, 0.6);
}

.koekedoos-cards .koekedoos-card.active {
    background: #f8f9fb;
}

.koekedoos-cards .koekedoos-card ul.koekedoos-card-description li {
    padding: 15px 5px 0;
}

.koekedoos-cards .koekedoos-card .koekedoos-card-btn {
    border-radius: 30px;
}

.koekedoos-cards .koekedoos-card .koekedoos-card-btn a {
    color: inherit;
    text-decoration: none;
}

/* ADD-ONS */
/* SCROLL TO TOP */
a.back-to-top {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 15px;
    text-decoration: none;
}

a.back-to-top i {
    display: block;
    font-size: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #FFD350;
    color: #452A1D;
    border-radius: 30px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

a.back-to-top:hover, a.back-to-top:focus {
    text-decoration: none;
}

/* PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999999;
}

.loader {
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

#loader-1:before, #loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 7px solid transparent;
    border-top-color: #137ED9;
}

#loader-1:before {
    z-index: 100;
    animation: spin 1s infinite;
}

#loader-1:after {
    border: 7px solid #f2f2f2;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ==================================== */
/* CONTENT */
/* ==================================== */
/* KOEKEDOOS */
/* SECTION */
#koekedoos {
    padding-top: 0;
    background: #f8f9fb;
}

/* TITLE */
.title-hl-subtitle {
    font-size: 75%;
    font-weight: 500;
}

/* BOX */
.koekedoos-box {
    margin-top: 15px;
    margin-bottom: 15px;
}

.koekedoos-box .koekedoos-icon {
    margin-bottom: 15px;
    height: 50px;
}

.koekedoos-box .koekedoos-icon svg {
    height: 40px;
    width: auto;
    fill: #473120;
}

.koekedoos-box .koekedoos-content h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

/* MARKTDAGEN */
/* SECTION */
#marktdagen .section-title {
    color: #585b60;
    font-size: 38px;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1;
    padding: 0 10px;
    position: relative;
    margin-bottom: 10px;
}

/* TITLE */
#marktdagen .title {
    padding-bottom: 15px;
}

/* AANBOD */
/* SECTION */
.fotos-section {
    background: #34363a;
}

/* TITLE */
#aanbod .title h3 {
    color: #61432C;
}

/* SLIDER */
.slick-slider {
    padding: 60px 0;
}

@media (min-width: 992px) {
    .slick-slider {
        padding: 80px 0;
    }
}

.slider-center img {
    opacity: 0.7;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    padding: 63px 63px;
    position: relative;
    text-align: center;
}

@media (max-width: 768px) {
    .slider-center img {
        padding: 40px 40px;
    }
}

.slider-center .slick-center img {
    -moz-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -o-transform: scale(1.9);
    -webkit-transform: scale(1.9);
    opacity: 1;
    transform: scale(1.9);
}

.slick-prev {
    left: 0;
    z-index: 9999;
}

.slick-next {
    right: 0;
    z-index: 9999;
}

/* CONTACT */
/* SECTION */
#contact {
    padding: 10px 0 60px 0;
    background: #f8f9fb;
}

/* POLAROID */
.polaroid {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.2);
}

.caption {
    font-size: 1.125rem;
    text-align: center;
    line-height: 2em;
}

.polaroid-item {
    cursor: pointer;
    display: inline-block;
    margin-top: 2rem;
    filter: grayscale(100%);
}

.polaroid-item .polaroid:before {
    content: '';
    position: absolute;
    z-index: -1;
    transition: all 0.35s;
}

.polaroid-item:nth-of-type(4n+1) {
    transform: scale(0.8, 0.8) rotate(5deg);
    transition: all 0.35s;
}

.polaroid-item:nth-of-type(4n+1) .polaroid:before {
    transform: rotate(6deg);
    height: 20%;
    width: 47%;
    bottom: 30px;
    right: 12px;
    box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.4);
}

.polaroid-item:hover {
    filter: none;
    transform: scale(1, 1) rotate(0deg) !important;
    transition: all 0.35s;
}

.polaroid-item:hover .polaroid:before {
    content: '';
    position: absolute;
    z-index: -1;
    transform: rotate(0deg);
    height: 90%;
    width: 90%;
    bottom: 0;
    right: 5%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    transition: all 0.35s;
}

/* ICONS */
#contact i {
    display: inline-block;
    border-radius: 60px;
    box-shadow: 0 0 2px #8888;
    padding: 0.5em 0.6em;
    font-size: 20px;
    color: white;
    background-color: #473120;
}

/* HYPERLINKS */
#contact a {
    color: inherit;
    text-decoration: underline;
}

/* GOOGLE MAPS */
.koekedoos-googlemaps {
    height: 450px;
    margin: 0;
    padding: 0;
}

/* FOOTER */
/* SECTION */
#footer.section-padding {
    padding: 30px 0;
}

/* AREA */
.footer-area {
    background: #34363a;
}

.footer-area .footer-titel {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 10px;
}

.footer-area ul li {
    margin-bottom: 10px;
}

/* MARKTEN */
.footer-area ul li {
    margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-titel {
        margin-top: 0;
    }
}

/* SOCIALS */
.social-icon a {
    color: #666;
    background: #fff;
    width: 35px;
    height: 35px;
    line-height: 34px;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    font-size: 16px;
    margin: 15px 6px 12px 4px;
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
}

.social-icon .facebook:hover {
    background: #3b5999;
}

.social-icon .facebook:hover i {
    color: #ffffff;
}

/* COPYRIGHT */
#copyright {
    background: #34363a;
    border-top: 2px solid #3b3d42;
    padding: 10px;
}

#copyright p {
    color: #fff;
    text-align: center;
    margin: 0;
}