/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Feb 22, 2016, 9:12:59 AM
    Author     : Gart
*/

.full-w {
    width: 100%;
}

.full-h {
    height: 100%;
}

.fifty {
    width: 50%
}

.fourty {
    width: 40%;
}

.one-third {
    width: 33.33%;
}

.one-fourth {
    width: 25%;
}

.twenty-three {
    width: 23%;
}

.eightteen {
    width: 18%;
}

.left {
    float: left;
}

.right {
    float: right;
}

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

.border-box {
    box-sizing: border-box;
}

.rel {
    position: relative;
}

.shadow {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.6);
}

.inner-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.clearfix {
    clear: both;
}

.clearfix:after {
    display: table;
    clear: both;
    content: " "
}

.bxvertical {
    height: 100vh;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    /*position: fixed;*/
    /*overflow-y: scroll;*/
}

body.scrolled {
    overflow: auto;
    position: relative;
}

/*header{*/
/*position:absolute;*/
/*padding-top:48px;*/
/*padding-left:48px;*/
/*z-index:2;*/
/*width:100%;*/
/*box-sizing:border-box;*/
/*}*/

/****************************************************************************************************************/
/************************************************* MENU *********************************************************/
/****************************************************************************************************************/

.menu-button {
    position: absolute;
    background-color: #413c38;
    width: 60px;
    height: 60px;
    line-height: 67px;
    text-align: center;
    right: 48px;
    top: 48px;
    cursor: pointer;
    z-index: 3;
}

.menu-button img {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.menu-button:hover img {
    transform: rotate(90deg);
}

.full-page-menu, .fixed-page-menu {
    width: 25%;
    position: absolute;
    right: -25%;
    top: 0;
    z-index: 3;
    transition: transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    background-image: url(images/logo-menu.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    background-color: #413c38;
}

.fixed-page-menu {
    position: fixed;
}

.full-page-menu.slide-in, .fixed-page-menu.slide-in {
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    z-index: 99;
}

.full-page-menu-close-button, .close-booking {
    background-color: #fff;
    position: absolute;
    padding: 20px;
    right: 48px;
    top: 48px;
    cursor: pointer;
}

.full-page-menu-close-button img, .close-booking img {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.full-page-menu-close-button:hover img, .close-booking:hover img {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.close-booking {
    top: 36px;
}

.centered-menu-content {
    top: 50vh;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    text-align: center;
    color: #fff;
    font: italic 18px Merriweather;
}

.centered-menu-content .bordered-link {
    margin: 36px 0px;
}

.centered-menu-content ul li {
    line-height: 44px;
}

.centered-menu-content a {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.centered-menu-content li a:hover {
    color: #777;
}

.bottom-container {
    position: absolute;
    bottom: 0px;
}

.full-page {
    overflow: hidden;
    /*position:absolute;*/
    z-index: 3;
    background-color: #000;
    transition: transform 1.2s;
    -webkit-transition: -webkit-transform 1.2s;
    position: relative;
}

.full-page.compressed {
    transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
}

.full-page-contents.theme.hidden-top {
    transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
}

.full-page-contents.theme.hidden-bottom {
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
}

.full-page-contents {
    overflow: hidden;
    transition: width 0.4s;
    -webkit-transition: width 0.4s;

    min-height: 100vh;
}

.full-page-contents.theme {
    /*position:absolute;*/
    transition: transform 1.2s, width 0.4s;
    -webkit-transition: -webkit-transform 1.2s, width 0.4s;
}

.full-page-contents.compressed {
    width: 75%;
}

.home-block {
    color: white;
    text-align: center;
    padding: 48px 24px;
    height: 315px;
    margin-bottom: -96px;
    transition: transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    cursor: pointer;
}

.home-block .bordered-link {
    position: absolute;
    white-space: nowrap;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.home-block:hover {
    transform: translateY(-90px);
    -webkit-transform: translateY(-90px);
}

.home-block h2 {
    font: italic 700 36px Merriweather;
    margin: 0px 0px 36px 0px;
    padding: 0px;
    display: inline-block;
    width: 100%;
}

.home-block p {
    font: italic 18px Merriweather;
    margin: 0px 0px 36px 0px;
    padding: 0px;
    display: inline-block;
    width: 100%;
}

.bordered-link {
    font: italic 18px Merriweather;
    margin-bottom: 0px;
    border: 2px solid;
    padding: 9px 18px;
    display: inline-block;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    cursor: pointer;
}

.bordered-link.white {
    color: white;
}

.bordered-link.white:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.bordered-link.black {
    color: black;
}

.bordered-link.black:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.content-block {
    text-align: center;
    padding: 120px 0;
    background-color: #ffffff;
    z-index: 2;
}

.logo {
    position: absolute;
    left: 48px;
    top: 48px
}

.text-content {
    width: 50%;
    display: inline-block;
}

.text-content h1 {
    font: italic 700 36px Merriweather;
    margin-bottom: 36px;
}

.text-content h2 {
    color: #413c38;
    font: 400 36px Merriweather;
    margin-bottom: 36px;
}

.text-content p {
    color: #000000;
    font: 300 14px / 24px Merriweather;
    margin-bottom: 24px;
}

.ass-parallax-container {
    height: 480px;
    z-index: 0;
    position: relative;
    overflow: hidden;
}

.ass-parallax {
    position: fixed;
    height: 100%;
    top: 0px;
}

.ass-parallax-text {
    z-index: 3;
    position: absolute;
    bottom: -240px;
    transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);
    color: white
}

.ass-parallax-text h3 {
    color: #ffffff;
    font: italic 700 36px Merriweather;
    margin-bottom: 36px;
}

.ass-parallax-text h4 {
    color: #ffffff;
    font: 400 36px Merriweather;
    margin-bottom: 36px;
}

.social-media {
    padding: 82px 0px;
    z-index: 1;
    background-color: #eeeeee;
    background-image: url(images/logo-background-social.png);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    text-align: center;
}

.social-media h2 {
    font: italic 700 24px Merriweather;
    margin-bottom: 82px;
}

.social-media .inner-container {
    max-width: 80%;
    display: flex;
    flex-wrap: wrap;
    flex-flow: row wrap;
    justify-content: space-between;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* 540 height, image 336 */
.social-item {
    background-color: #fff;
    padding: 12px;
    text-align: left;

    display: inline-flex;
    flex-flow: column;
    align-self: flex-start;

    width: 24%;

    box-sizing: border-box;

    margin-bottom: 16px;
}

.social-item .image {
    display: block;

    width: 100%;
    height: 336px;

    background-size: cover;
    background-position: center center;

    margin-bottom: 24px;
}

.social-item .text {
    font: 300 14px / 24px Merriweather;
}

.social-item .text span.date {
    font-weight: 200;
    color: #aaaaaa;
}

.social-item .text p {
    margin-bottom: 12px;
}

.social-item .text .button {
    display: inline-block;
    background-color: #2669ad;

    color: #f2f6fa;
    line-height: 30px;
    font-family: sans-serif;

    padding-left: 10px;
    padding-right: 10px;
}

.social-item .text .button img {
    max-height: 16px;
    vertical-align: text-top;
}

@media only screen and (max-width: 1375px) {
    .social-item {
        width: 49%;
    }
}

.social-row {
    width: calc(50% - 16px);
    margin-left: 32px;
}

.social-row:first-of-type {
    margin-left: 0;
}

.social-left {
    width: calc(50% - 16px);
}

.social-right {
    width: calc(50% - 16px);
    margin-left: 32px;
}

.social-text {
    padding: 12px 12px 12px 12px;
}

.social-text h3 {
    color: #000000;
    font: italic 700 18px / 24px Merriweather;
    float: left;
    margin-right: 3px;
}

.social-text p {
    width: 100%;
    color: #000000;
    font: 300 12px / 18px Merriweather;
}

.social-text span {
    color: #777777;
    font: 300 10px / 24px Merriweather;
}

.social-button-container {
    margin-top: 12px;
}

.facebook-stats {
    display: inline-block;
}

.twitter-but, .facebook-but {
    background-color: #1cabd4;
    color: white;
    background-image: url(images/icon-twitter.png);
    background-repeat: no-repeat;
    font: 400 12px / 24px Open Sans;
    padding: 3px 12px 3px 24px;
}

.facebook-but {
    background-color: #2669ad;
    background-image: url(images/icon-facebook.png);
    background-position: 9px center;
}

.twitter-but {
    background-color: #1cabd4;
    background-image: url(images/icon-twitter.png);
    background-position: 6px center;
}

.social-show-more-but {
    background-image: url(images/but-but-but.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #eeeeee;
    border-radius: 5px;
    padding: 15px;
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
}

.social-show-more-but:hover {
    background-color: #ccc;
}

/****************************************************************************************************************/
/*********************************************** Escortes *******************************************************/
/****************************************************************************************************************/
.escortes-container.three .escorte {
    width: 33.33%;
    height: 100%;
}

.escortes-container.four .escorte {
    width: 25%;
    height: 100%;
}

.escortes-container.five .escorte {
    width: 20%;
    height: 100%;
}

.escortes-container.six .escorte {
    width: 33.33%;
    height: 50%;
}

.escortes-container.seven .escorte {
    width: 33.33%;
    height: 50%;
}

.escortes-container.seven .escorte:nth-of-type(1n + 4) {
    width: 25%;
    height: 50%;
}

.escortes-container.eight .escorte {
    width: 25%;
    height: 50%;
}

.three .escorte-description, .four .escorte-description, .five .escorte-description {
    top: 65%;
}

.six .escorte-description, .seven .escorte-description, .eight .escorte-description {
    bottom: 10%;
    position: absolute;
}

.escorte-overlay, .thema-overlay {
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    cursor: pointer;
}

.escorte-description, .thema-description {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    padding: 48px 18px;
    color: white;
    cursor: pointer;
}

.escorte-description, .thema-description h2 {
    font: italic 700 36px Merriweather;
    margin-bottom: 36px;
}

.escorte-description p {
    font: italic 18px Merriweather;
}

.escorte-overlay:hover, .thema-overlay:hover {
    background-color: rgba(0, 0, 0, 0);
}

.escorte-overlay:hover .escorte-description, .thema-overlay:hover .thema-description {
    background-color: rgba(0, 0, 0, 0.5);
}

/****************************************************************************************************************/
/*********************************************** Themas *********************************************************/
/****************************************************************************************************************/
.thema-container {
    text-align: left;
    background-color: #222;
}

.thema-box {
    width: 25%;
    min-height: 50vh;
    margin-left: -5px;
    margin-top: -4px;
    display: inline-block;
    overflow: hidden;
}

.thema-box:nth-of-type(4n+1) {
    margin-left: 0px;
}

.thema-overlay {
    position: absolute;
    box-sizing: border-box;
}

.thema-description {
    position: absolute;
    bottom: 0px;
    padding: 18px 0px;
}

.thema-description h2 {
    margin-bottom: 0px;
}

.booking_popup_container {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.hidden-left {
    position: fixed;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 200;
}

.slide-in-booking {
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
}

/****************************************************************************************************************/
/******************************************* Escortes boeken ****************************************************/
/****************************************************************************************************************/
/*.escort-img img {*/
    /*max-height: 99%;*/
    /*max-width: 100%;*/
    /*position: absolute;*/
    /*bottom: 0px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    /*-webkit-transform: translateX(-50%);*/
/*}*/

.escort-text {
    padding-top: 90px;
    margin-right: 15%;
}

.escort-text h1 {
    font: italic 700 36px Merriweather;
    margin-bottom: 48px;
}

.escort-text h2 {
    color: #413c38;
    font: 400 36px Merriweather;
    margin-bottom: 36px;
}

.escort-text p {
    color: #000000;
    font: 300 14px / 24px Merriweather;
    margin-bottom: 18px;
    width: 100%;
    min-height: 1px;
}

.escort-text strong {
    font-weight: 600;
}

/*.escort-text p span{*/
/*font: 300 18px / 24px Merriweather;*/
/*}*/
.prev-escort:before, .next-escort:before {
    content: '';
    width: 50px;
    left: -50px;
    top: 30px;
    position: absolute;
    border-top: 2px solid #000;
}

.prev-escort, .next-escort {
    position: absolute;
    height: 60px;
    width: 60px;
    left: 10px;
    z-index: 2;
    top: calc(50% - 30px);
    box-shadow: 0px 0px 2px 2px #000;
    border-radius: 33px;
    transition: transform 0.2s ease;
    -webkit-transition: transform 0.2s ease;
}

.prev-escort:hover, .next-escort:hover {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.next-escort {
    right: 10px;
    left: auto;
}

.next-escort:before {
    right: -50px;
    left: auto;
}

.escort-pager {
    position: absolute;
    top: 50%;
    width: 12px;
    z-index: 2;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 144px
}

.page-bubble {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    border: 2px solid #000;
    margin-bottom: 30px;
    position: relative;
    background-color: initial;
    box-sizing: border-box;
    transition: background-color 0.6s;
    -webkit-transition: background-color 0.6s;
    cursor: pointer;
}

.page-bubble.active {
    background-color: #000;
}

.page-bubble:last-of-type {
    margin-bottom: 0px;
}

.escort-bubble {
    height: 60px;
    width: 60px;
}

.mobile-escort-nav {
    display: none;
    text-align: center;
    background-color: #000;
    padding: 24px;
    background-image: url(images/structure-white.png);
    background-repeat: repeat;
}

/****************************************************************************************************************/
/*********************************************** FOOOOTER *******************************************************/
/****************************************************************************************************************/

footer {
    background-color: #000;
    padding: 48px 5% 0px 5%;
    color: #fff;
}

footer .footer-container {
    max-width: 90%;
    margin: 0 auto;
}

footer a {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

footer a:hover {
    color: #777;
}

.footer-row {
    padding-right: 24px;
}

.footer-row ul li {
    font: italic 300 18px / 32px Merriweather;
}

.footer-row h5 {
    color: #777777;
    font: italic 700 18px / 24px Merriweather;
}

.footer-row h4 {
    color: #777777;
    font: italic 700 18px / 18px Merriweather;
    margin-bottom: 36px;
}

.footer-row strong {
    font: italic 700 18px / 18px Merriweather;
}

.footer-row p {
    font: 300 13px / 22px Merriweather;
    margin-bottom: 36px;
}

.footer-row span {
    color: #777777;
    font: 300 13px / 22px Merriweather;
}

.footer-social a img {
    margin-left: 18px;
}

.footer-social a:first-of-type img {
    margin-left: 0px;
}

.footer-row input[type=email] {
    padding: 12px;
    color: #fff;
    border: 1px solid #777777;
    width: calc(70% - 50px);
}

.footer-row input[type=submit] {
    padding: 6.5px;
    background-color: #777777;
    border-radius: 50%;
    background-image: url(images/icon-nieuwsbrief.png);
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: center center;
    height: 44px;
    width: 44px;
    margin-left: 6px;
    cursor: pointer;
}

.footer-row input[type=submit]:hover {
    background-color: #999;
}

*::-webkit-input-placeholder {
    color: #777777;
}

*:-moz-placeholder {
    color: #777777;
}

.footer-line {
    border-top: 2px solid #777777;
    font: 300 12px / 24px Merriweather;
    color: #777777;
    padding: 6px 0px;
}

.escort-popup {
    position: fixed;
    padding: 50px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    margin: auto;
    background-color: rgba(1, 1, 1, 0.8);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    opacity: 1;
    overflow: hidden;
    box-sizing: border-box;
}

.escort-popup-hidden {
    opacity: 0;
    pointer-events: none;

}

.escort-popup div.image-holder {
    width: 90%;
    margin: 1% 5%;
}

.escort-popup div.image-holder img {
    max-width: 20vw;
}

.escort-popup-close {
    width: 64px;
    height: 64px;
    background-color: white;
    float: right;
    margin-right: 86px;
}

.escort-popup-close img {
    margin: 35%;
    /*margin-top: 20%;*/
    display: block;
    /*height: 36px;*/
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -ms-transition: all ease .2s;
    -o-transition: all ease .2s;
    transition: all ease .2s;
    /*width: 36px;*/
}

.escort-popup-close:hover img {
    transform: rotate(90deg);
}

.escorts {
    z-index: 9;
    position: fixed;
    top: 49%;
}

.escorts-left {
    left: 10px;
}

.escorts-left:before {
    height: 1px;
    float: left;
    background: #ffffff;
    content: " ";
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.escorts-right {
    right: 10px
}

.escorts-right img, .escorts-left img {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    height: 80px;
    width: 80px;

}

.escort-tekst {
    position: relative;
    height: auto;
    transition: all ease 2s;
}

.escort-tekst-height {
    height: auto;
}

.escort-tekst.hide-pager .bx-controls {
    display: none;
}

.bx-controls {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.bx-pager-item {
    float: left;
    margin-left: 12px;
}

.bx-pager-link {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    border: 2px solid #000;
    margin-left: 12px;
    float: left;
    position: relative;
    background-color: transparent;
    box-sizing: border-box;
    text-indent: -9999px;
    transition: background-color 0.6s;
    -webkit-transition: background-color 0.6s;
    display: none;
}

.bx-pager-link.active {
    background-color: #000;
}

.bx-prev {
    background-image: url('images/icon-arrow-left.png');
    padding-right: 36px;
    background-position: left center;

}

.bx-next {
    background-image: url('images/icon-arrow-right.png');
    padding-left: 36px;
    background-position: right center;
}

.bx-prev, .bx-next {
    height: 26px;
    width: 24px;
    margin-top: -9px;
    background-size: 16px;
    display: inline-block;
    line-height: 24px;
    background-repeat: no-repeat;
}

.btn-foldable {
    font: italic 16px Merriweather;
    margin-bottom: 0px;
    padding: 9px 18px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    cursor: pointer;
    color: black;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/*.btn-foldable:before{*/
/*content: "Test"*/
/*}*/
/*.btn-foldable:after{*/
/*content: "";*/
/*background-image: url('http://placehold.it/10x10');*/
/*}*/

/* Contact form 7 */
form .wpcf7-form {
    font: 300 13px / 22px Merriweather;
}

form .wpcf7-form p {
    font: 300 13px / 22px Merriweather;
}

.wpcf7-submit {
    font-family: Merriweather !important;
    font-size: 18px !important;
    /*font: bold 18px Merriweather;*/
    font-style: italic !important;
    font-weight: 700 !important;
    margin-bottom: 0px;
    border: 2px solid;
    padding: 8px 24px !important;
    display: inline-block;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    cursor: pointer;
    color: black;
}

.wpcf7-submit:hover {
    background-color: black;
    color: white;
    border: solid 2px black;
}

.wpcf7-form-control {
    border: 2px solid;
    padding: 8px;
    font: 300 13px / 22px Merriweather;
    width: 360px;
    max-width: calc(100% - 16px);
}

.wpcf7-radio, .wpcf7-file {
    border: none;
}

span.wpcf7-list-item {
    display: block;
    font: 300 13px / 22px Merriweather;
}

.footer {
    background-color: #000;
    padding: 48px 5% 0px 5%;
    color: #fff;
}

.bxslider li ul {
    list-style-type: disc;
    padding-left: 17px;
    margin-bottom: 18px;
    font: 300 14px / 24px Merriweather;
}

.bottom-content {
    /*bottom:25px;*/
    /*position: absolute;*/
    width: 100%;
    margin-bottom: 18px;
}

.bottom-content:after {
    content: ' ';
    display: table;
    clear: both;
}

.adult-button img {
    cursor: pointer;
}

.thema-text {
    opacity: 0;
    transition: margin 0.32s, opacity 0.32s;
    -webkit-transition: margin 0.32s, opacity 0.32s;
    font: 300 14px / 22px Merriweather;
    padding: 6px 6px 0px 6px;
}

.thema-box:hover .thema-text {
    opacity: 1;
    margin-bottom: 0px !important;
}

.mouse-down-icon {
    background-image: url(images/mouse-icon-down.png);
    background-size: contain;
    height: 72px;
    background-repeat: no-repeat;
    top: -128px;
    width: 30px;
    left: calc(50% - 36px);
    position: absolute;
    animation: animatemouse 1.25s ease-in-out infinite;
}

@keyframes animatemouse {
    0% {
        margin-top: 0px;
    }
    50% {
        margin-top: 8px;
    }
    100% {
        margin-top: 0px;
    }
}

.wpcf7-recaptcha.spamcheck {
    margin: 10px auto;
}
