/* Document */
html, body {
    height: 100%;
    width: 100%;
}
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #615b5e;
}

/* Heading */
h1 {
    margin: 0 0 30px;
    font-size: 36px;
    font-weight: 300;
    color: #b20838;
    line-height: 32px;
}
h2 {
    margin: 5px 0 20px;
    font-size: 26px;
    font-weight: 400;
    color: #715d57;
}
h3 {
    margin: 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #585355;
}

/* Paragraph */
p {
    margin: 0 0 25px;
}

/* Hyperlink */
a {
    color: #459fde;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #b20838;
    text-decoration: underline;
}
a:focus {
    text-decoration: none;
}

/* List */
ul, ol {
    margin: 0 0 25px;
}

/* Lines */
hr {
    margin: 40px 0;
}
hr.space-top-collapse {
    margin-top: 0;
}
hr.space-bottom-collapse {
    margin-bottom: 0;
}

/* Images */
img[align="left"] {
    margin: 20px 30px 20px 0;
    float: left;
}
img[align="right"] {
    margin: 20px 0 20px 30px;
    float: right;
}

/* Video */
video {
    margin-bottom: 10px;
    width: 100%;
}

/* Blockquote */
blockquote {
    margin: 0 0 25px;
    padding: 0;
    font-size: 30px;
    font-weight: 300;
    color: #a0989a;
    line-height: 34px;
    border: none;
}
blockquote hr {
    margin: 20px auto 0;
    width: 160px;
}
blockquote strong {
    font-size: 14px;
    color: #4f4a4c;
    line-height: normal;
}

/* Text color */
.text-primary { color: #b20838; }
.text-dark-primary { color: #4a0015; }
.text-light { color: #9b9496; }
.text-white { color: #fff; }

/* Text size */
.smaller { font-size: 75%; }
.smallest { font-size: 65%; }

/* Text weight */
.text-thin { font-weight: 300; }
.text-normal { font-weight: normal; }
.text-medium { font-weight: 600; }
.text-bold { font-weight: 700; }

/* Background color */
.bg-primary { background-color: #b20838; }
.bg-light { background-color: #f8f2f0; }
.bg-white { background-color: #fff; }

/* Button */
.btn {
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid transparent;
}
.btn.btn-primary {
    color: #fff;
    background-color: #b20838;
}
.btn.btn-primary:hover {
    border-color: transparent;
    background-color: #99042e;
}
.btn.btn-secondary {
    color: #fff;
    background-color: #459fde;
}
.btn.btn-secondary:hover {
    background-color: #b20838;
}
.btn.btn-white {
    color: #b20838;
    background-color: #fff;
}
.btn.btn-line-primary {
    color: #b20838;
    border-color: #b20838;
    background-color: transparent;
}
.btn.btn-line-primary:hover {
    color: #fff;
    border-color: #b20838;
    background-color: #b20838;
}
.btn.btn-line-white {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}
.btn.btn-line-white:hover {
    color: #b20838;
    border-color: #fff;
    background-color: #fff;
}

/* Forms */
.control-label,
.form-horizontal .control-label {
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: 14px;
    color: #7e7b7c;
    font-weight: normal;
    text-align: left;
}
.form-control {
    height: 42px;
    padding: 10px 8px;
    color: #6f6b65;
    border: 1px solid #dcd7d8;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}
textarea.form-control {
    height: 160px;
}
.form-control.error {
    border-color: #da4e32;
}
.form-control:focus {
    border-color: #76a6ec;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}
.form-line {
    color: #fff;
    border-color: transparent;
    border-bottom-color: #8e062d;
    border-radius: 0;
    background-color: transparent;
}

select.form-line:focus option {
    color: #615b5e;
    background: #fff;
}
.form-line:focus {
    border-color: #e3c0c6;
}
.form-line::-webkit-input-placeholder {
    color: #e3c0c6;
}
.form-line::-moz-input-placeholder {
    color: #e3c0c6;
}


/* Container */
.container {
    position: relative;
    max-width: 960px;
}
.container-sm {
    max-width: 800px;
}

/* Content padding */
.content-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Spacer */
.spacer {
    height: 30px;
    clear: both;
}
.spacer-lg {
    height: 60px;
    clear: both;
}
.spacer-sm {
    height: 15px;
    clear: both;
}
.spacer-xs {
    height: 5px;
    clear: both;
}

/* Row */
.row {
    margin-left: -30px;
    margin-right: -30px;
}
.row.gutter-sm {
    margin-left: -15px;
    margin-right: -15px;
}
.row.gutter-xs {
    margin-left: -5px;
    margin-right: -5px;
}
.row.gutter-collapse {
    margin-left: 0;
    margin-right: 0;
}

/* Columns */
.row > [class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
}
.row.gutter-sm > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}
.row.gutter-xs > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}
.row.gutter-collapse > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Block */
.block {
    position: relative;
}
.block-padding {
    padding: 20px;
}
.block-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: 20px;
    width: 100%;
}
.block-bottom.overlay:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(6%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 6%,rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 6%,rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 6%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 6%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
    display: block;
    opacity: .5;
    z-index: 0;
}
.block-bottom .btn {
    position: relative;
}
.block-xs-xsmall { height: 50px; }
.block-xs-small { height: 100px; }
.block-xs-medium { height: 200px; }
.block-xs-large { height: 300px; }

/* Table */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border-top: 1px solid #ece6e8;
    border-bottom: 1px solid #ece6e8;
}

/* Rounded */
.rounded {
    border-radius: 3px;
}

/* Required */
.required {
    margin-left: 3px;
    width: 4px;
    height: 4px;
    text-indent: -1234em;
    vertical-align: 1px;
    border-radius: 50%;
    background-color: #da4e32;
    display: inline-block;
}

/* Heading */
.heading {
    margin: 0 0 25px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 30px;
}

/* Subtitle */
.subtitle {
    position: relative;
    top: -20px;
}

/* Cover */
.cover {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cover.link3d{
    position: relative;
    text-align: center;
    background: url('../images/3d.png') no-repeat center, -moz-linear-gradient(top, rgba(109,186,234,1) 0%, rgba(142,202,239,1) 100%); /* FF3.6-15 */
    background: url('../images/3d.png') no-repeat center, -webkit-linear-gradient(top, rgba(109,186,234,1) 0%,rgba(142,202,239,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: url('../images/3d.png') no-repeat center, linear-gradient(to bottom, rgba(109,186,234,1) 0%,rgba(142,202,239,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background-size: contain;
}
.cover.link3d a{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    height: 100%;
    min-height: 100%;
    z-index: 2;
}


.cover.link3d a:after{
    position: absolute;
    top: 0;
    left :0;
    right: 0;
    bottom: 0;
    content: '';
    background: transparent no-repeat center;
    background-size: 200%;
    -webkit-transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -o-transition: all .25s ease-in-out;
      transition: all .25s ease-in-out;
}
.cover.link3d a:hover:after{
    background: url('../images/play.png') no-repeat center;
    background-size: 100%;
    -webkit-transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -o-transition: all .25s ease-in-out;
      transition: all .25s ease-in-out;
}
.title3d{
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    width :100%;
    bottom: 15px;
    color: #00456f;
}
.cover .cover-wrapper {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}

.cover img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: none;
    display: block;
}
.cover img.landscape {
    height: 50%;
}
.cover.fit img.landscape {
    height: auto;
    max-width: 50%;
    max-height: 50%;
}
.cover img.portrait {
    width: 50%;
}
.cover.fit img.portrait {
    width: auto;
    max-width: 50%;
    max-height: 50%;
}

/* Social */
.social {
    width: 30px;
    height: 30px;
    font-size: 14px;
    color: #b20838;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #b20838;
    display: inline-block;
}
.social-facebook {
    color: #3b5999;
    border-color: #3b5999;
}
.social-twitter {
    color: #32ccfe;
    border-color: #32ccfe;
}
.social:hover {
    color: #b20838;
    border-color: #b20838;
}

/* Share */
.share {
    padding: 0 15px;
    height: 42px;
    font-size: 14px;
    font-weight: 600;
    line-height: 42px;
    color: #fff;
    border-radius: 3px;
    display: inline-block;
}
.share.share-facebook {
    background-color: #3b5999;
}
.share.share-twitter {
    background-color: #32ccfe;
}
.share:hover {
    color: #fff;
    text-decoration: none;
    background-color: #b20838;
}

/* Phone */
.phone {
    padding: 10px 5px;
    font-weight: 600;
    font-size: 14px;
    color: #b20838;
    text-decoration: none;
}
.phone:hover {
    color: #459fde;
    text-decoration: none;
}

/* Search bar */
.search-bar {
    height: 38px;
    display: inline-block;
}
.search-bar button {
    position: absolute;
    top: 21px;
    right: 11px;
    width: 38px;
    height: 40px;
    border: none;
    border-radius: 2px;
    background-color: #fff;
    display: block;
}
.search-bar > button {
    position: relative;
    top: -4px;
    right: auto;
}
.search-bar button:hover,
.search-open .search-bar > button {
    color: #b20838;
}
.search-bar .search-bar-container {
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px;
    width: 100%;
    background-color: #b20838;
    display: none;
}
.search-open .search-bar .search-bar-container {
    display: block;
}
.search-bar input {
    border: none;
}

/* Logo */
.logo {
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: block;
}
.logo img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* Menu */
.menu ul {
    margin: 0;
    padding: 0;
}
.menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Menu main */
.menu-main ul {
    position: absolute;
    left: 0;
    padding: 30px 0;
    width: 100%;
    background-color: #b20838;
    display: none;
}
.menu-open .menu-main > ul {
    display: block;
}
.menu-main li {
    position: relative;
}
.menu-main a {
    padding: 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
}
.menu-main a span {
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}
.menu-main li.active > a span {
    border-bottom-color: rgba(255, 255, 255, .3);
}
.menu-main a i.icon-home {
    font-size: 17px;
}
.menu-main a .icon-arrow-down {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: transform .15s;
    -moz-transition: transform .15s;
    -ms-transition: transform .15s;
    transition: transform .15s;
}
.menu-main li.touch-open > a .icon-arrow-down {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.menu-main ul ul {
    position: relative;
    padding: 0 0 15px;
    display: none;
}
.menu-main li.touch-open > ul {
    display: block;
}
.menu-main ul ul li {
    border-top: 1px solid #9b0731;
}
.menu-main ul ul li:first-child {
    border-top: none;
}
.menu-main ul ul a {
    padding: 8px 5px;
    font-size: 14px;
    font-weight: 400;
    color: #e3c0c6;
    line-height: normal;
    text-transform: none;
    text-align: center;

    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
.menu-main ul ul a:hover,
.menu-main ul ul li.active > a {
    color: #fff;
}

/* Menu togglerr */
.menu-toggler {
    position: relative;
    margin-left: -20px;
    padding: 0;
    width: 60px;
    height: 50px;
    border: none;
    background-color: transparent;
    display: inline-block;
    outline: none;
}
.menu-toggler span {
    margin: 2px auto;
    width: 20px;
    height: 3px;
    text-indent: -1234em;
    background-color: #8e8688;
    display: block;
    -webkit-transition: opacity .2s, transform .2s;
    -moz-transition: opacity .2s, transform .2s;
    -ms-transition: opacity .2s, transform .2s;
    transition: opacity .2s, transform .2s;
}
.menu-open .menu-toggler span {
    background-color: #b20838;
}
.menu-open .menu-toggler span:first-child {
    -webkit-transform: rotate(45deg) translate(4px, 4px);
    -moz-transform: rotate(45deg) translate(4px, 4px);
    -ms-transform: rotate(45deg) translate(4px, 4px);
    transform: rotate(45deg) translate(4px, 4px);
}
.menu-open .menu-toggler span:first-child + span {
    opacity: 0;
}
.menu-open .menu-toggler span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -3px);
    -moz-transform: rotate(-45deg) translate(3px, -3px);
    -ms-transform: rotate(-45deg) translate(3px, -3px);
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Breadcrumb */
.breadcrumb ul {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
}
.breadcrumb li {
    height: 40px;
    font-size: 12px;
    color: #8e8688;
    line-height: 40px;
    display: inline-block;
}
.breadcrumb li:before {
    margin-right: 2px;
    content: '\e80e';
    font-family: 'ottenmakelaardij';
    vertical-align: -1px;
    display: inline-block;
}
.breadcrumb li:first-child:before {
    display: none;
}
.breadcrumb a {
    height: 100%;
    text-decoration: underline;
    display: inline-block;
}
.breadcrumb a:hover {
    text-decoration: none;
}

/* Services list */
.services-list {
    margin: 0;
    padding: 0;
    font-size: 0;
    text-align: center;
}
.services-list li {
    margin: 30px 0 0;
    padding: 0 20px 0 55px;
    width: 100%;
    font-size: 15px;
    text-align: left;
    vertical-align: top;
    line-height: normal;
    display: inline-block;
}
.services-list h3 {
    white-space: nowrap;
}
.services-list a {
    color: #b20838;
    text-decoration: none;
}
.services-list li > span {
    margin-left: -35px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    background-color: #b20838;
    float: left;
    display: block;
}
.services-list h3 span {
    margin-left: -5px;
}

/* News list */
.news-list {
    margin: 0 0 25px;
    padding: 0;
}
.news-list li {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #ece6e8;
}
.news-list li:first-child {
    border-top: 1px solid #ece6e8;
}
.news-list a {
    padding: 8px 0 8px 70px;
    font-size: 14px;
    line-height: 18px;
    color: #615b5e;
    text-decoration: none;
    display: block;
}
.news-list.big a {
    padding-left: 150px;
}
.news-list a:hover,
.news-list li:hover h3 {
    color: #b20838;
}
.news-list .left {
    margin-left: -70px;
    width: 70px;
    display: block;
    float: left;
}
.news-list.big .left {
    margin-left: -150px;
    width: 150px;
}
.news-list figure {
    padding-right: 20px;
}
.news-list figure + h3 {
    margin: 25px 0 0;
}

/* News home */
.news-home {
    position: relative;
}
.news-home > .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
}

/* Sold Object home */
.sold-object-home {
    padding-left: 30px;
}
.sold-object-home .object-price {
    position: relative;
    display: inline-block;
    background: #b20838;
    color: #fff;
    font-size: 16px;
    line-height: 32px;
    padding: 4px 16px;
    border-radius: 3px;
}
.sold-object-home .object-adres {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    line-height: 26px;
    font-weight: 300;
    padding-top: 8px;
    padding-right: 120px;
}
.sold-object-home .object-price:hover,
.sold-object-home .object-adres:hover {
    text-decoration: none;
}

/* Object list */
.object-list {
    margin: 0;
    padding: 0;
}
.object-list li {
    list-style: none;
}

/* Object item */
.object-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    cursor: pointer;
}
.object-item figure {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform .12s ease-in-out;
    -moz-transition: transform .12s ease-in-out;
    -ms-transition: transform .12s ease-in-out;
    transition: transform .12s ease-in-out;
}
.object-item:hover figure {
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
}
.object-item figure img {
    -webkit-backface-visibility: hidden;
}
.object-item h3 {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 700;
}
.object-item h3 a {
    color: #615b5e;
}
.object-item:hover h3 a,
.object-item h3 a:hover {
    color: #b20838;
    text-decoration: none;
}
.object-item strong {
    display: block;
}
.object-item:hover strong {
    color: #615b5e;
}

/* Object images */
.object-images {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.object-images figure {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}
.object-images figure:first-child {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.object-images figure.active {
    z-index: 2;
}
.object-images figure.video {
    padding: 80px;
}
.object-images a {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #b20838;
    display: block;
    z-index: 3;
}
.object-images a:hover {
    background-color: #99042e;
}
.object-images a.prev {
    left: 20px;
}
.object-images a.next {
    right: 20px;
}
.object-images a i {
    display: inline-block;
    -webkit-transition: transform .15s;
    -moz-transition: transform .15s;
    -ms-transition: transform .15s;
    transition: transform .15s;
    -webkit-backface-visibility: hidden;
}
.object-images a.next i,
.object-images a.prev i {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.object-images a.prev:hover i {
    -webkit-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    transform: translateX(-3px);
}
.object-images a.next:hover i {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}
.object-images a.close {
    top: 40px;
    left: 50%;
    margin-left: -23px;
    width: 46px;
    height: 46px;
    font-size: 14px;
    line-height: 46px;
}
.object-images a.close i {
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    -ms-transition-duration: .3s;
    transition-duration: .3s;
}
.object-images a.close:hover i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* Video */
.background-video iframe{
    width :100% !important;
}


/* Object preview */
.object-preview {
    margin-right: -100%;
    width: 100%;
    float: left;
}
.object-preview .object-image img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform .25s;
    -moz-transition: transform .25s;
    -ms-transition: transform .25s;
    transition: transform .25s;
}
.object-preview .object-image.hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* Object details */
.object-details h2 {
    margin-top: -5px;
}
.object-details strong {
    font-size: 14px;
    line-height: normal;
}
.object-details .btn {
    font-size: 16px;
    font-weight: 700;
}

/* Object status */
.object-status {
    position: absolute;
    z-index: 1;
    background: #0b6822;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.object-status-small {
    top: -90px;
    right: -90px;
    height: 175px;
    width: 175px;
    padding-top: 125px;
    font-size: 14px;
    line-height: 50px;
}
.object-status-large {
    top: -140px;
    right: -140px;
    height: 275px;
    width: 275px;
    padding-top: 200px;
    font-size: 24px;
    line-height: 75px;
}

/* Object usp */
.object-usp {
    padding: 0;
}
.object-usp li {
    padding: 30px 0 0 0;
    width: 50%;
    height: 130px;
    font-size: 12px;
    color: #a0989a;
    text-align: center;
    line-height: normal;
    list-style: none;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    float: left;
}
.object-usp li:first-child,
.object-usp li:first-child + li + li {
    border-right-color: #ece6e8;
}
.object-usp li:first-child,
.object-usp li:first-child + li {
    border-bottom-color: #ece6e8;
}
.object-usp li span {
    margin: 0;
    color: #4f4a4c;
    display: block;
}

/* Object properties */
.object-properties {
    font-size: 14px;
}
.object-properties h3 {
    margin-bottom: 10px;
    color: #b20838;
}
.object-properties .table {
    margin-bottom: 30px;
}
.object-properties .table th {
    padding-left: 0;
    font-weight: 400;
    color: #8e8688;
}
.object-properties .table td {
    padding-right: 0;
    color: #4f4a4c;
}

/* Map */
.map {
    height: 100%;
    width: 100%;
}
.marker-checkbox{
    float: left;
    width :100%;
}
/* Customize the label (the container) */
.checkcontainer {
  display: block;
  width :33%;
  float: left;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid silver;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
  background-color: #b20838;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Route form */
.route-form .route-form-to {
    padding-top: 10px;
}

/* Directions */
.directions table {
    width: 100%;
}
.directions .adp,
.directions td {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: normal;
    letter-spacing: 0;
}
.directions td {
    padding: 10px;
    border-top-color: #eaeaea;
}
.directions .adp-directions {
    color: #68686a;
    font-weight: 400;
}
.directions .adp-placemark {
    color: #373739;
    font-weight: 600;
    border: none;
    background-color: transparent;
}
.directions .adp-summary {
    font-size: 12px;
    font-weight: 600;
}
.directions .adp-legal {
    font-size: 11px;
    color: #909095;
}
.directions img {
    max-width: none;
}
.directions .adp-placemark td:first-child {
    display: none;
}
.directions .adp-text {
    position: relative;
    padding-left: 46px;
}
.directions .adp-text:before {
    position: absolute;
    top: 5px;
    left: 0;
    content: '';
    width: 28px;
    height: 40px;
    background: url('../images/marker.png') no-repeat 0 0;
    background-size: 28px 40px;
    display: block;
}

/* Member */
.member {
    padding: 10px 5px;
    display: inline-block;
}

/* VisualMedia */
.vm {
    margin: 0 20px;
    width: 28px;
    height: 26px;
    text-indent: -1234em;
    vertical-align: 7px;
    background: url('../images/dappr.png') no-repeat right 0;
    display: inline-block;
}

/* Header */
.header {
    position: relative;
    z-index: 999;
}
.header .header-block {
    padding: 10px 0 0 60px;
    width: 50%;
    height: 80px;
    float: left;
}
.header .header-block:first-child {
    padding: 10px 60px 0 0;
    text-align: right;
}
.header .header-block:before {
    margin-left: -0.3em;
    width: 0;
    height: 100%;
    content: '';
    vertical-align: middle;
    display: inline-block;
}

/* Footer */
.footer {
    font-size: 14px;
    color: #e3c0c6;
    background-color: #b20838;
}
.footer h2 a {
    color: #fff;
    text-decoration: none;
}
.footer .menu li a {
    color: #e3c0c6;
    text-decoration: none;
}
.footer .menu li.active > a,
.footer .menu a:hover {
    color: #fff;
}
.footer .footer-bottom {
    position: relative;
    padding: 20px 0;
    font-size: 12px;
    text-align: center;
}
.footer .footer-bottom a {
    padding: 0 5px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}
.footer .footer-bottom a.active,
.footer .footer-bottom a:hover {
    text-decoration: underline;
}

/* Jubileum */
.jubileum .jubileum-logo {
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -110px;
    width: 220px;
    height: 220px;
    display: block;
    z-index: 2;
}
.jubileum .jubileum-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}
.jubileum.block .block-bottom {
    padding-bottom: 15px;
}

/* Wrapper */
#wrapper {
    width: 100%;
    overflow: hidden;
}
/* help */
.help-block{
    color: yellow;
    text-align: left;
    font-size :11px;
}
/* Small devices (phones, 320px and up) */
@media (min-width: 320px) {
    /* maps */
    .marker-checkbox .checkcontainer{
        width :50%;
        float: left;
    }
    /* kaart */
    .kaart-plaatsen{
        height: 400px;
    }
    #kaart.block-sm-medium{
        height: 400px;
        overflow: hidden;
    }
    #afspraak-maken-small{
        text-align: left;
    }
    .block-xs-medium{
        overflow: hidden;
    }
    .foto-small{
        height: 200px;
    }
    .small-3d{
        height: 200px;
    }
    .cover .cover-wrapper.video{
        position: absolute;
        top: -180px;
        left: 0;
        width: 100%;
        height: 200px;
    }
    .small-form{
        overflow: hidden;
    }
    .ytplayer-player{
        height: 200px !important;
    }
    .photo-block.height{
        position: relative;
        height: 200px;
        z-index: 10;
        float: left;
        width: 100%;
    }
    .photo-block{
        position: relative;
        height: 0px;
        z-index: 1;
    }
    .small-form.margintop{
        margin-top: 200px;
    }
    #object-images.bg-light{
        background-image: url("../images/loading.gif");
        background-repeat: no-repeat;
        background-position: center;
    }

}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

    h1 {
        font-size: 42px;
        line-height: 40px;
    }

    /* Blockquote */
    blockquote {
        font-size: 40px;
        line-height: 44px;
    }

    /* Content padding */
    .content-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    #afspraak-maken-small{
        text-align: center;
    }

    /* Block */
    .block-sm-xsmall { height: 100px; }
    .block-sm-small { height: 200px; }
    .block-sm-medium { height: 300px; overflow: hidden;}
    .block-sm-large { height: 500px; overflow: hidden;}
    #kaart.block-sm-medium{
        height: 400px;
    }
    /* Logo */
    .logo {
        margin-left: -60px;
        width: 120px;
        height: 120px;
    }

    /* Services list */
    .services-list li {
        width: 50%;
    }

    /* maps */
    .marker-checkbox .checkcontainer{
        width :50%;
        float: left;
    }

    /* Team */
    .team {
        position: static;
    }
    .team > img {
        position: absolute;
        bottom: 0;
        max-width: 500px;
    }

    /* Header */
    .header .header-block {
        padding: 10px 0 0 80px;
        height: 100px;
    }
    .header .header-block:first-child {
        padding: 10px 80px 0 0;
    }

    /* video */
    .ytplayer-player{
        height: 500px !important;
    }

    .photo-block.height{
        position: relative;
        height: 300px;
        z-index: 10;
    }
    .small-form {
        overflow: hidden;
        margin-top: 0px;
    }
    #object-images.bg-light{
        background-image: none;
        background-repeat: no-repeat;
        background-position: center;
    }

    /* kaart */
    .kaart-plaatsen{
        height: 400px;
    }

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {

    /* Button */
    .btn {
        padding: 10px 15px;
    }

    /* Block */
    .block-padding {
        padding: 30px;
    }
    .block .block-bottom {
        padding-bottom: 30px;
    }
    .block-md-xsmall { height: 200px; }
    .block-md-small { height: 300px; }
    .block-md-medium { height: 400px; }
    .block-md-large { height: 500px;
        overflow: hidden;
    }
    .block-md-xlarge { height: 600px;
        overflow: hidden;
    }

    /* Phone */
    .phone {
        margin-right: 10px;
    }
    /* maps */
    .marker-checkbox .checkcontainer{
        width :50%;
        float: left;
    }

    /* Search bar */
    .search-bar {
        margin-right: 20px;
    }
    .search-bar button {
        top: 1px;
        right: 1px;
    }
    .search-bar > button {
        display: none;
    }
    .search-bar .search-bar-container {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        width: auto;
        background-color: transparent;
        display: block;
    }
    .search-bar input {
        border: 1px solid #dcd7d8;
    }

    /* Logo */
    .logo {
        margin-left: -70px;
        width: 140px;
        height: 140px;
    }

    /* Menu main */
    .menu-main ul {
        position: static;
        padding: 0;
        background-color: transparent;
        display: inline-block;
    }
    .menu-main > ul > li {
        display: inline-block;
    }
    .menu-main > ul > li > a {
        padding: 0 8px;
        height: 40px;
        font-size: 14px;
        line-height: 40px;
        color: #8e8688;
    }
    .menu-main a:hover,
    .menu-main li.active > a {
        color: #b20838;
    }
    .menu-main a span {
        padding: 0;
        border: none;
    }
    .menu-main a .icon-arrow-down {
        display: none;
    }
    .menu-main ul ul {
        position: absolute;
        left: 0;
        margin-left: -1234em;
        padding: 15px 0;
        width: 160px;
        border-radius: 3px;
        background-color: #b20838;
        opacity: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
        transition: opacity .3s;
        display: block;
    }
    .menu-main li.hover > ul {
        left: 50%;
        margin-left: -80px;
        opacity: 1;
    }
    .menu-main ul ul:before {
        position: absolute;
        top: -5px;
        left: 50%;
        margin-left: -4px;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 4px 5px 4px;
        border-color: transparent transparent #b20838 transparent;
        display: block;
    }

    /* Services list */
    .services-list li {
        width: 33.333333%;
    }

    /* VisualMedia */
    .vm {
        position: absolute;
        top: 13px;
        right: 0;
        margin: 0;
        width: 141px;
    }

    /* Header */
    .header .header-block {
        padding: 10px 0 0 100px;
        height: 120px;
    }
    .header .header-block:first-child {
        padding: 10px 100px 0 0;
    }
    /* kaart */
    .kaart-plaatsen{
        height: 400px;
    }
    /* video */


}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    /* Block */
    .block-lg-xsmall { height: 300px; }
    .block-lg-small { height: 400px; }
    .block-lg-medium { height: 500px; }
    .block-lg-large { height: 600px;
        overflow: hidden;
    }

    /* Heading */
    .heading {
        margin: 0 0 30px;
        font-size: 32px;
        line-height: 34px;
    }



    /* Services list */
    .services-list li {
        width: 25%;
    }

    /* video */
    .ytplayer-player{
        height: 600px !important;
    }

    .background-video iframe{
        width :100% !important;
    }

    /* kaart */
    .kaart-plaatsen{
        height: 400px;
    }

}

@media (min-width: 1800px) {
    /* video */

}
@media (min-width: 1900px) {
    /* video */

}
.dathuis__bottomRight___JpEqU{
    box-shadow: 0px 0px 50px white;
}
