/* GLOBAL*/
/* COLORS */
/* BRAND COLORS */
/* GLOBAL */
/* SOCIAL MEDIA */
/* BLOCKS POSITIONS - HOME (only for homepage, include partial below) */
/* BUTTONS */
/* HEADER */
/* HEADER - PHONENUMER */
/* HEADER - ACCOUNT */
/* HEADER - LANGPICKER */
/* FOOTER - LIGHT 
    $footer-bgcolor: $font-base-color;
    $footer-color: #ededed;
    $footer-title-color: #000;
    $footer-icon-color: $brand-color;
    $footer-menu-color: $footer-color;
    $footer-menu-color-hover: $brand-color;
    $footer-sub-border-color: #c7c7c7;
    $footer-sub-copyright-color: $footer-color;
    $footer-sub-menu-color: $footer-color;
    $footer-sub-menu-color-hover: $brand-color;
*/
/* FOOTER - DARK */
/* SLIDER */
/* CONTACTBLOCKS */
/* GRIDCARDS */
/* API */
/* BREADCRUMB */
/* CONTACT */
/* EMPLOYEES*/
/* TESTIMONIALS */
/* NEWS */
/* PROMO */
/* QUICKSEARCH */
/* SPECIALS */
/* RECENTLY VIEWED */
/* BRANCHELOGOS */
/* https://css-tricks.com/snippets/sass/centering-mixin/*/
/* https://css-tricks.com/snippets/sass/maintain-aspect-ratio-mixin/*/
/* Button variants*/
/* -------------------------*/
/* Easily pump out default styles, as well as :hover, :focus, :active,*/
/* and disabled options for all buttons*/
/* Button sizes*/
/* -------------------------*/
.btn {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  /* Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214*/
  border: 1px solid transparent;
  background-image: none;
  /* For input.btn*/
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 0;
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  /* Future-proof disabling of clicks*/
}

/* Alternate buttons*/
/* --------------------------------------------------*/
.btn-default {
  border-color: #c31e24;
  background-color: rgb(217, 33, 40);
  color: rgb(255, 255, 255);
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .btn-default:not(:disabled):not(.disabled).active, .btn-default:not(:disabled):not(.disabled):active {
  border-color: #9f181d;
  background-color: #b61c21;
  color: rgb(255, 255, 255);
}
.open .btn-default.dropdown-toggle {
  border-color: #9f181d;
  background-color: #b61c21;
  color: rgb(255, 255, 255);
}
.btn-default:active, .btn-default.active {
  background-image: none;
}
.open .btn-default.dropdown-toggle {
  background-image: none;
}
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  border-color: #c31e24;
  background-color: rgb(217, 33, 40);
}
.btn-default .badge {
  background-color: rgb(255, 255, 255);
  color: rgb(217, 33, 40);
}

.btn-primary {
  border-color: #c31e24;
  background-color: rgb(217, 33, 40);
  color: rgb(255, 255, 255);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
  border-color: #9f181d;
  background-color: #b61c21;
  color: rgb(255, 255, 255);
}
.open .btn-primary.dropdown-toggle {
  border-color: #9f181d;
  background-color: #b61c21;
  color: rgb(255, 255, 255);
}
.btn-primary:active, .btn-primary.active {
  background-image: none;
}
.open .btn-primary.dropdown-toggle {
  background-image: none;
}
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  border-color: #c31e24;
  background-color: rgb(217, 33, 40);
}
.btn-primary .badge {
  background-color: rgb(255, 255, 255);
  color: rgb(217, 33, 40);
}

/* Success appears as green*/
.btn-success {
  border-color: #013256;
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active {
  border-color: #001b2d;
  background-color: #012947;
  color: rgb(255, 255, 255);
}
.open .btn-success.dropdown-toggle {
  border-color: #001b2d;
  background-color: #012947;
  color: rgb(255, 255, 255);
}
.btn-success:active, .btn-success.active {
  background-image: none;
}
.open .btn-success.dropdown-toggle {
  background-image: none;
}
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  border-color: #013256;
  background-color: rgb(1, 65, 111);
}
.btn-success .badge {
  background-color: rgb(255, 255, 255);
  color: rgb(1, 65, 111);
}

/* Info appears as blue-green*/
.btn-info {
  border-color: #148ea1;
  background-color: rgb(23, 162, 184);
  color: rgb(255, 255, 255);
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active {
  border-color: #106e7d;
  background-color: #128294;
  color: rgb(255, 255, 255);
}
.open .btn-info.dropdown-toggle {
  border-color: #106e7d;
  background-color: #128294;
  color: rgb(255, 255, 255);
}
.btn-info:active, .btn-info.active {
  background-image: none;
}
.open .btn-info.dropdown-toggle {
  background-image: none;
}
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  border-color: #148ea1;
  background-color: rgb(23, 162, 184);
}
.btn-info .badge {
  background-color: rgb(255, 255, 255);
  color: rgb(23, 162, 184);
}

/* Warning appears as orange*/
.btn-warning {
  border-color: #d88415;
  background-color: rgb(233, 145, 29);
  color: rgb(255, 255, 255);
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active {
  border-color: #b26d11;
  background-color: #ca7b14;
  color: rgb(255, 255, 255);
}
.open .btn-warning.dropdown-toggle {
  border-color: #b26d11;
  background-color: #ca7b14;
  color: rgb(255, 255, 255);
}
.btn-warning:active, .btn-warning.active {
  background-image: none;
}
.open .btn-warning.dropdown-toggle {
  background-image: none;
}
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  border-color: #d88415;
  background-color: rgb(233, 145, 29);
}
.btn-warning .badge {
  background-color: rgb(255, 255, 255);
  color: rgb(233, 145, 29);
}

/* Danger and error appear as red*/
.btn-danger {
  border-color: #d32535;
  background-color: rgb(220, 53, 69);
  color: rgb(255, 255, 255);
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active {
  border-color: #b01f2c;
  background-color: #c62232;
  color: rgb(255, 255, 255);
}
.open .btn-danger.dropdown-toggle {
  border-color: #b01f2c;
  background-color: #c62232;
  color: rgb(255, 255, 255);
}
.btn-danger:active, .btn-danger.active {
  background-image: none;
}
.open .btn-danger.dropdown-toggle {
  background-image: none;
}
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  border-color: #d32535;
  background-color: rgb(220, 53, 69);
}
.btn-danger .badge {
  background-color: rgb(255, 255, 255);
  color: rgb(220, 53, 69);
}

/* Link buttons*/
/* -------------------------*/
/* Make a button look and behave like a link*/
.btn-link {
  border-radius: 0;
  color: rgb(255, 255, 255);
  font-weight: normal;
  cursor: pointer;
}
.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  background-color: transparent;
  color: #e6e6e6;
  text-decoration: underline;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}

/* Button Sizes*/
/* --------------------------------------------------*/
.btn-lg {
  /* line-height: ensure even-numbered height of button next to large input*/
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}

.btn-sm {
  /* line-height: ensure proper height of button next to small input*/
  padding: 0.4rem 8rem;
  border-radius: 0;
}

.btn-xs {
  padding: 0.2rem 0.4;
  border-radius: 0;
}

/* Block button*/
/* --------------------------------------------------*/
.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

/* Vertically space out multiple block buttons*/
.btn-block + .btn-block {
  margin-top: 5px;
}

/* Specificity overrides*/
input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

/* custom buttons */
.btn-icon {
  position: relative;
  padding-left: 32px;
}
.btn-icon i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 25px;
  height: 32px;
  border-radius: 4px 0 0 4px;
  line-height: 32px;
}
.btn-icon.btn-icon-right {
  padding-right: 32px;
  padding-left: 12px;
}
.btn-icon.btn-icon-right i {
  right: 0;
  left: auto;
  border-radius: 0 4px 4px 0;
}
.btn-icon.btn-xs {
  padding-left: 25px;
}
.btn-icon.btn-xs i {
  width: 20px;
  height: 20px;
  border-radius: 3px 0 0 3px;
  font-size: 11px;
  line-height: 20px;
}
.btn-icon.btn-xs.btn-icon-right {
  padding-right: 25px;
  padding-left: 5px;
}
.btn-icon.btn-xs.btn-icon-right i {
  border-radius: 0 3px 3px 0;
}
.btn-icon.btn-sm {
  padding-left: 32px;
}
.btn-icon.btn-sm i {
  width: 25px;
  height: 28px;
  border-radius: 3px 0 0 3px;
  font-size: 11px;
  line-height: 28px;
}
.btn-icon.btn-sm.btn-icon-right {
  padding-right: 35px;
  padding-left: 10px;
}
.btn-icon.btn-sm.btn-icon-right i {
  border-radius: 0 3px 3px 0;
}
.btn-icon.btn-lg {
  padding-left: 50px;
}
.btn-icon.btn-lg i {
  width: 40px;
  height: 44px;
  border-radius: 6px 0 0 6px;
  font-size: 22px;
  line-height: 44px;
}
.btn-icon.btn-lg.btn-icon-right {
  padding-right: 55px;
  padding-left: 16px;
}
.btn-icon.btn-lg.btn-icon-right i {
  border-radius: 0 6px 6px 0;
}
.btn-icon.btn-default i {
  background: #a81a1f;
}
.btn-icon.btn-primary i {
  background: #a81a1f;
}
.btn-icon.btn-success i {
  background: #002037;
}
.btn-icon.btn-info i {
  background: #117686;
}
.btn-icon.btn-warning i {
  background: #bc7312;
}
.btn-icon.btn-danger i {
  background: #b9202f;
}

/* Icon container */
.icon-container {
  position: relative;
  display: inline-block;
}
.icon-container i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 25px;
  height: 31px;
  border-radius: 4px 0 0 4px;
  background: #a4191e;
  line-height: 31px;
}
.icon-container .btn {
  padding-left: 32px;
}
.icon-container.icon-container-xs i {
  top: 2px;
  width: 20px;
  height: 19px;
  border-radius: 3px 0 0 3px;
  font-size: 11px;
  line-height: 19px;
}
.icon-container.icon-container-xs .btn-xs {
  padding-left: 25px;
}
.icon-container.icon-container-sm i {
  width: 25px;
  height: 28px;
  border-radius: 3px 0 0 3px;
  font-size: 13px;
  line-height: 28px;
}
.icon-container.icon-container-sm .btn-sm {
  padding-left: 30px;
}
.icon-container.icon-container-lg i {
  width: 40px;
  height: 44px;
  border-radius: 6px 0 0 6px;
  font-size: 22px;
  line-height: 44px;
}
.icon-container.icon-container-lg .btn-lg {
  padding-left: 50px;
}
.icon-container.icon-container-default i {
  background: #a81a1f;
}
.icon-container.icon-container-primary i {
  background: #a81a1f;
}
.icon-container.icon-container-success i {
  background: #002037;
}
.icon-container.icon-container-info i {
  background: #117686;
}
.icon-container.icon-container-warning i {
  background: #bc7312;
}
.icon-container.icon-container-danger i {
  background: #b9202f;
}

.searchdetail.berlin .btn:not(.btn-link), .searchdetail.berlin .btn.btn-block.btn-success.whatsapp {
  background-color: white;
  color: rgb(140, 140, 140);
  border: white;
}
.searchdetail.berlin .btn:not(.btn-link) .badge, .searchdetail.berlin .btn.btn-block.btn-success.whatsapp .badge {
  background-color: #d02128;
  color: white;
}
.searchdetail.berlin .btn:not(.btn-link):hover, .searchdetail.berlin .btn:not(.btn-link):focus, .searchdetail.berlin .btn:not(.btn-link):active, .searchdetail.berlin .btn.btn-block.btn-success.whatsapp:hover, .searchdetail.berlin .btn.btn-block.btn-success.whatsapp:focus, .searchdetail.berlin .btn.btn-block.btn-success.whatsapp:active {
  background: #e3e3e3;
}
.searchdetail.berlin .ctabar .btn.addthis_button_whatsapp {
  background-color: white;
  color: rgb(140, 140, 140);
  border: white;
}
.searchdetail.berlin .ctabar .btn.addthis_button_whatsapp:hover, .searchdetail.berlin .ctabar .btn.addthis_button_whatsapp:focus, .searchdetail.berlin .ctabar .btn.addthis_button_whatsapp:active {
  background: #e3e3e3;
}
.searchdetail.berlin .ctabar .btn.addthis_button_facebook {
  background-color: white;
  color: rgb(140, 140, 140);
  border: white;
}
.searchdetail.berlin .ctabar .btn.addthis_button_facebook:hover, .searchdetail.berlin .ctabar .btn.addthis_button_facebook:focus, .searchdetail.berlin .ctabar .btn.addthis_button_facebook:active {
  background: #e3e3e3;
}
.searchdetail.berlin .ctabar .btn.addthis_button_twitter {
  background-color: white;
  color: rgb(140, 140, 140);
  border: white;
}
.searchdetail.berlin .ctabar .btn.addthis_button_twitter:hover, .searchdetail.berlin .ctabar .btn.addthis_button_twitter:focus, .searchdetail.berlin .ctabar .btn.addthis_button_twitter:active {
  background: #e3e3e3;
}

.form-control {
  border-radius: 0;
}

.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child),
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.field-validation-error {
  color: rgb(217, 33, 40);
}

.input-validation-error {
  border: 1px solid rgb(217, 33, 40) !important;
  background-color: rgb(28, 15, 15) !important;
  color: rgb(217, 33, 40) !important;
}

textarea {
  vertical-align: top;
  overflow: auto;
  resize: none;
}

[placeholder]::input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

[placeholder]:hover::input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[placeholder]:focus::input-placeholder {
  color: transparent;
}

[placeholder]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

[placeholder]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

[placeholder]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

[placeholder]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

[placeholder]::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

[placeholder]:hover::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[placeholder]:hover::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[placeholder]:hover:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[placeholder]:hover::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[placeholder]:hover::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

[placeholder]:focus::-moz-placeholder {
  color: transparent;
}

[placeholder]:focus:-ms-input-placeholder {
  color: transparent;
}

[placeholder]:focus::-ms-input-placeholder {
  color: transparent;
}

[placeholder]:focus::placeholder {
  color: transparent;
}

[placeholder]:input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

[placeholder]:hover:input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[placeholder]:focus:input-placeholder {
  color: transparent;
}

.form-control {
  border-color: rgb(98, 98, 98);
  background-color: rgb(24, 26, 31);
  color: rgb(140, 140, 140);
}
.form-control:focus {
  background-color: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
}

textarea {
  border-color: rgb(98, 98, 98);
  background-color: rgb(24, 26, 31);
  color: rgb(140, 140, 140);
}

.radio input[type=radio] + label::before {
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.25);
}

.radio input[type=radio]:hover + label::before {
  color: rgba(255, 255, 255, 0.4);
}

.radio input[type=radio]:checked + label::before {
  color: rgba(255, 255, 255, 0.8);
}

.input-group-text {
  border-color: rgb(98, 98, 98);
  background-color: rgb(98, 98, 98);
  color: rgb(140, 140, 140);
}

@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "market_decoregular";
  src: url("fonts/market_deco-webfont.woff2") format("woff2"), url("fonts/market_deco-webfont.woff") format("woff");
}
@font-face {
  font-family: "Neutra Text";
  src: url("NeutraText-Book.woff2") format("woff2"), url("NeutraText-Book.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neutra Text TF";
  src: url("NeutraTextTF-Demi.woff2") format("woff2"), url("NeutraTextTF-Demi.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

html.sr .load-hidden {
  visibility: hidden;
}

body {
  background-color: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
  font-family: "Neutra Text", "Roboto", Arial, Helvetica, sans-serif;
}

pre {
  color: rgb(140, 140, 140);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-family: "Neutra Text TF", "Roboto", Arial, Helvetica, sans-serif;
}

h2,
.h2 {
  font-size: 1.8rem;
}

a {
  color: rgb(255, 255, 255);
}
a:hover {
  color: #e6e6e6;
}

p,
ul {
  margin-bottom: 2rem;
}

.btn,
a,
a.nav-link,
input,
select,
textarea,
.link,
.date {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.wrapper {
  padding-top: calc(3rem + 1rem);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .wrapper {
    padding-top: calc(3rem + 1rem);
  }
}
@media (min-width: 992px) {
  .wrapper {
    padding-top: calc(3.75rem + 2rem);
  }
}

.container {
  padding-right: 30px;
  padding-left: 30px;
}

.check-list li::before {
  color: rgb(40, 167, 69);
}

.fullwidth {
  background-color: rgb(35, 38, 45);
}
.fullwidth.search #object-search .tab-content .tab-pane {
  background-color: rgb(35, 38, 45);
}

.card {
  background-color: #1f2127;
}
.card-header {
  color: rgb(255, 255, 255);
}
.card-body {
  background-color: #1f2127;
}

.nav-tabs {
  border-bottom: 1px solid rgb(98, 98, 98);
}
.nav-tabs .nav-link {
  color: rgb(140, 140, 140);
}
.nav-tabs .nav-link.active {
  border-color: rgb(98, 98, 98);
  background-color: rgb(24, 26, 31);
  color: rgb(255, 255, 255);
}

.modal-content {
  background-color: rgb(31, 33, 39);
}
.modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgb(255, 255, 255);
}
.modal-content .modal-header .close {
  color: rgb(140, 140, 140);
  text-shadow: none;
}
.modal-content .modal-header .close:hover {
  color: rgb(217, 33, 40);
}
.modal-content .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pull-right {
  float: right;
}

/* max 576px */
/* max 576px */
/* max 576px */
/* 576px */
@media (min-width: 768px) {
  .contact-module .grid .branch,
.contact-module .grid .employee,
.contact-module .grid .office {
    visibility: hidden;
  }
}
.searchdetail.berlin #nav-photos > .container #object-photos > a {
  background: unset;
}

.member-block {
  background: unset;
  border: unset;
}
.member-block .sub-buttons,
.member-block .buttons {
  background: unset;
  border: unset;
}

/* LAYOUT */
.home .wrapper .mainnavcontainer {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.home .wrapper .slider-container {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.home .wrapper .ctaBlocks {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.home .wrapper .quicksearch {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.home .wrapper .main-content {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.home .wrapper .specials {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.home .wrapper .contentBlocks {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}
.home .wrapper .textblock7 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}
.home .wrapper .textblock8 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}
.home .wrapper .employees {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}
.home .wrapper .news {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}
.home .wrapper .recentlyviewed {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}
.home .wrapper .branchelogos {
  -webkit-box-ordinal-group: 15;
      -ms-flex-order: 14;
          order: 14;
}
.home .wrapper .websiteFooter {
  -webkit-box-ordinal-group: 100;
      -ms-flex-order: 99;
          order: 99;
}

/* uncomment to define order of home page */
.ctaBlocks {
  margin-bottom: 5rem;
  padding: 0;
  background-color: rgb(35, 38, 45);
}
.ctaBlocks > .container {
  margin: 0 auto;
}
.ctaBlocks .ctaBlock {
  margin: 0;
  margin-bottom: 3rem;
  padding: 30px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .ctaBlocks .ctaBlock {
    margin-bottom: 0;
  }
}
.ctaBlocks .ctaBlock .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.ctaBlocks .ctaBlock .text p:first-of-type {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contentBlocks {
  margin-bottom: 5rem;
  padding: 0;
  background-color: rgb(35, 38, 45);
}
.contentBlocks .contentBlock {
  margin: 0 30px 30px;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .contentBlocks .contentBlock {
    margin: 0 30px;
  }
}

.home .wrapper {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .home .wrapper {
    padding-top: 0;
  }
}
.home .main-content {
  margin-bottom: 5rem;
  padding: 5rem 0;
  background-color: #1f2127;
  text-align: center;
  /* 
  >.container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    max-width: 100%;
    margin: 0;
    padding: 0;

    @include respond-to(xl) {
      justify-content: flex-end;
    }

    >.text {
      width: 100%;
      max-width: 540px;
      padding: 50px $container-padding;

      @include respond-to(md) {
        max-width: 720px;
        padding: 50px $container-padding;
      }

      @include respond-to(lg) {
        max-width: 960px;
      }

      @include respond-to(xl) {
        width: calc(1140px / 2);
        max-width: 50%;
        padding: 100px 100px 100px $container-padding;
      }

      @include respond-to(xxl) {
        width: calc(1140px / 2);
      }

      @include respond-to(xxl) {
        width: calc(1340px / 2);
      }

      @include respond-to(xxxl) {
        width: calc(1450px / 2);
      }
    }

    >.image {
      flex-shrink: 0;
      width: 100%;

      @include respond-to(xl) {
        width: 50%;
      }

      @include aspect-ratio(4, 2);

      img {
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        width: 100%;
        height: 100%;
        object-position: center;
      }

    }
  }
  */
}
.home .textblock7 {
  margin-bottom: 5rem;
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(140, 140, 140);
  background-color: #1f2127;
  padding: 60px 0 calc(60px - 1rem);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  text-align: center;
}
@media (min-width: 1200px) {
  .home .textblock7 {
    padding: 100px 0 calc(100px - 1rem);
  }
}
.home .textblock7 .text {
  position: relative;
  z-index: 2;
  color: rgb(140, 140, 140);
}
.home .textblock7 .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.home .textblock7 .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.home .textblock7 .article-title {
  margin-bottom: 2rem;
  font-weight: normal;
  font-size: 2.4rem;
  font-family: "market_decoregular", serif, cursive;
  text-transform: uppercase;
  position: relative;
}
.home .textblock7 .article-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 30px;
  height: 20px;
  padding: 4px;
  background-color: #1f2127;
  background-image: url("../2-beta/beeldmerk.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, 10px);
          transform: translate(-50%, 10px);
}
.home .textblock7 .article-title::after {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  margin: 1.5rem auto 0;
  background: rgba(255, 255, 255, 0.2);
}
.home .textblock7 .article-title span {
  display: block;
  margin: 0.3rem 0;
  font-weight: normal;
  font-size: 1.4rem;
  font-family: "Neutra Text TF", "Roboto", Arial, Helvetica, sans-serif;
  text-transform: none;
}
.home .textblock8 {
  background-color: #1f2127;
  color: rgb(140, 140, 140);
  padding: 0;
  margin-bottom: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://hayweb.blob.core.windows.net/public/zz80ul/2-beta/rotterdam.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .home .textblock8 {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .home .textblock8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.home .textblock8 .text {
  color: rgb(140, 140, 140);
  text-align: left;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .home .textblock8 .text {
    max-width: 55%;
  }
}
.home .textblock8 .text p:last-child {
  margin-bottom: 0;
}
.home .textblock8 .article-title {
  color: rgb(140, 140, 140);
  font-weight: normal;
  font-size: 2.4rem;
  font-family: "market_decoregular", serif, cursive;
  letter-spacing: 0;
}
.home .textblock8 .article-title span {
  color: rgb(217, 33, 40);
}
.home .specials .special-carousel {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .home .specials .special-carousel {
    padding: 0 30px;
  }
}

.sys-textblock .text .nav-pills .nav-item .nav-link {
  border-radius: 0;
}

.mainnav.navbar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 15px;
  padding-left: 15px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "Neutra Text TF", "Roboto", Arial, Helvetica, sans-serif;
  opacity: 1;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .mainnav.navbar {
    padding-right: 45px;
    padding-left: 45px;
  }
}
@media (min-width: 1200px) {
  .mainnav.navbar {
    padding-right: 90px;
    padding-left: 90px;
  }
}
.mainnav.navbar .navbar-brand {
  width: calc(8.375rem + 1rem);
  height: calc(3rem + 1rem);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .mainnav.navbar .navbar-brand {
    margin: 1rem auto 1rem 0;
    padding: 0;
    border-right: 1px solid transparent;
  }
}
@media (min-width: 1200px) {
  .mainnav.navbar .navbar-brand {
    width: 185px;
    height: 60px;
  }
}
.mainnav.navbar .navbar-brand img {
  width: 100%;
  height: auto;
  opacity: 1;
}
.mainnav.navbar .navbar-toggler {
  -webkit-box-ordinal-group: 100;
      -ms-flex-order: 99;
          order: 99;
  margin-left: 0.5rem;
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
}
.mainnav.navbar .navbar-toggler .icon {
  color: rgb(255, 255, 255);
}
.mainnav.navbar .navbar-toggler .icon span {
  background: rgb(255, 255, 255);
}
.mainnav.navbar .mainnavbar {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (max-width: 991px) {
  .mainnav.navbar .mainnavbar.navbar-collapse {
    top: calc(3rem + 1rem);
    height: calc(100vh - 60px) !important;
    border-top: 1px solid transparent;
    background-color: #1f2127;
  }
}
.mainnav.navbar .mainnavbar .navbar-nav.menu-main {
  width: 100%;
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item {
  position: relative;
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .nav-link {
  position: relative;
  border-bottom: 1px solid transparent;
  color: rgb(0, 0, 0);
  font-weight: 600;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .nav-link {
    border-bottom: 0;
  }
  .mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: rgb(217, 33, 40);
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
  }
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu {
  background-color: #1f2127;
  color: rgb(255, 255, 255);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 240px;
    min-width: 10rem;
    margin: 0;
    margin: 0;
    padding: 25px 0;
    padding: 0.5rem 0;
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    border-radius: 0.25rem;
    background-color: rgb(242, 242, 242);
    background-clip: padding-box;
    color: rgb(33, 37, 41);
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    list-style: none;
    font-size: 1rem;
    text-align: left;
  }
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item {
  white-space: normal;
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item > .nav-link {
  padding: 9px 45px 9px 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgb(255, 255, 255);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item > .nav-link {
    color: rgb(33, 37, 41);
  }
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item > .nav-link:hover {
  color: rgb(217, 33, 40);
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item:last-child > .nav-link {
  border-bottom: 0;
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item.active {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 1200px) {
  .mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item.active {
    background-color: rgb(242, 242, 242);
  }
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item.active > .nav-link {
  color: rgb(1, 65, 111);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 1200px) {
  .mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item.active > .nav-link {
    background-color: rgb(242, 242, 242);
  }
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item > .dropdown-menu .dropdown-submenu .dropdown-menu {
  background-color: rgb(242, 242, 242);
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item:hover > .nav-link {
  color: rgb(217, 33, 40);
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item:hover > .nav-link::before {
  width: 100%;
  visibility: visible;
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item:hover > .dropdown-menu {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .mainnav.navbar .mainnavbar .navbar-nav > .nav-item:hover > .dropdown-menu {
    display: block;
  }
}
.mainnav.navbar .mainnavbar .navbar-nav > .nav-item.active > .nav-link {
  color: rgb(217, 33, 40);
}
.mainnav.navbar .widget.emailaddress, .mainnav.navbar .widget.emailadress, .mainnav.navbar .widget.phonenumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0.5rem;
  border-radius: 0 0 0 15px;
  background-color: transparent;
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .mainnav.navbar .widget.emailaddress, .mainnav.navbar .widget.emailadress, .mainnav.navbar .widget.phonenumber {
    width: auto;
    min-width: 40px;
    height: 40px;
    border-radius: 25px;
  }
}
@media (min-width: 1450px) {
  .mainnav.navbar .widget.emailaddress, .mainnav.navbar .widget.emailadress, .mainnav.navbar .widget.phonenumber {
    font-size: 18px;
  }
}
.mainnav.navbar .widget.emailaddress .text, .mainnav.navbar .widget.emailadress .text, .mainnav.navbar .widget.phonenumber .text {
  display: none;
  font-size: 14px;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .mainnav.navbar .widget.emailaddress .text, .mainnav.navbar .widget.emailadress .text, .mainnav.navbar .widget.phonenumber .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1450px) {
  .mainnav.navbar .widget.emailaddress .text, .mainnav.navbar .widget.emailadress .text, .mainnav.navbar .widget.phonenumber .text {
    font-size: 18px;
  }
}
.mainnav.navbar .widget.emailaddress .fa-phone::before, .mainnav.navbar .widget.emailadress .fa-phone::before, .mainnav.navbar .widget.phonenumber .fa-phone::before {
  content: "\f8d3";
}
.mainnav.navbar .widget.emailaddress:hover, .mainnav.navbar .widget.emailaddress.open, .mainnav.navbar .widget.emailadress:hover, .mainnav.navbar .widget.emailadress.open, .mainnav.navbar .widget.phonenumber:hover, .mainnav.navbar .widget.phonenumber.open {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.mainnav.navbar .widget.emailadress {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.mainnav.navbar #account-widget {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
  border-left: 1px solid transparent;
}
.mainnav.navbar #account-widget .account-container .nav-item .avatar {
  border: 1px solid transparent;
}
.mainnav.navbar #account-widget .account-container .nav-item .nav-link {
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0.5rem;
  border-radius: 50%;
  background: transparent;
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .mainnav.navbar #account-widget .account-container .nav-item .nav-link {
    min-width: 40px;
    height: 40px;
  }
}
.mainnav.navbar #account-widget .account-container .nav-item .nav-link:hover {
  background-color: rgb(217, 33, 40);
  color: rgb(255, 255, 255);
}
.mainnav.navbar #account-widget .account-container .nav-item .nav-link.loggedin > .fa-chevron-down {
  display: none;
}
.mainnav.navbar #account-widget .account-container .dropdown-menu {
  border: 1px solid rgb(204, 204, 204);
  background-color: rgb(242, 242, 242);
}
.mainnav.navbar .widget.lang-picker {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
  border-left: 1px solid rgb(237, 234, 232);
}
.mainnav.navbar .widget.lang-picker .dropdown > .lang-active {
  color: rgb(140, 140, 140);
}
.mainnav.navbar .widget.lang-picker .dropdown > .lang-active:hover {
  color: rgb(1, 65, 111);
  text-decoration: none;
}
.mainnav.navbar .widget.lang-picker .dropdown > .dropdown-menu {
  border: 1px solid transparent;
  background-color: rgb(242, 242, 242);
}
.mainnav.navbar .widget.lang-picker .dropdown > .dropdown-menu > .dropdown-item {
  color: rgb(140, 140, 140);
}
.mainnav.navbar .widget.lang-picker .dropdown > .dropdown-menu > .dropdown-item .nav-link {
  color: rgb(140, 140, 140);
}
.mainnav.navbar .widget.lang-picker .dropdown > .dropdown-menu > .dropdown-item.active {
  color: rgb(217, 33, 40);
}
.mainnav.navbar .widget.lang-picker .dropdown > .dropdown-menu > .dropdown-item:hover .nav-link {
  color: rgb(217, 33, 40);
}
.mainnav.navbar.scrolled {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
}

/* max 576px */
/* max 576px */
/* max 576px */
/* 576px */
@media (min-width: 992px) {
  .home .mainnavcontainer .mainnav.navbar {
    background: transparent;
    /* 
    transition: all 200ms ease-in-out;
    &:hover {
      background: linear-gradient(180deg, rgba($header-bgcolor, 0.8) 0%, rgba($header-bgcolor, 0) 100%);      
    }
    */
  }
  .home .mainnavcontainer .mainnav.navbar .navbar-brand {
    position: relative;
    width: 185px;
    height: 60px;
  }
  .home .mainnavcontainer .mainnav.navbar .navbar-brand img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 153px;
    height: 170px;
    -o-object-position: left top;
       object-position: left top;
  }
  .home .mainnavcontainer .mainnav.navbar #account-widget .account-container .nav-item .nav-link,
.home .mainnavcontainer .mainnav.navbar .widget.whatsapp .whatsapp__button,
.home .mainnavcontainer .mainnav.navbar .widget.emailaddress,
.home .mainnavcontainer .mainnav.navbar .widget.phonenumber,
.home .mainnavcontainer .mainnav.navbar .menu-main > .nav-item > .nav-link {
    color: rgb(0, 0, 0);
  }
  .home .mainnavcontainer .mainnav.navbar #account-widget .account-container .nav-item .nav-link:hover,
.home .mainnavcontainer .mainnav.navbar .widget.whatsapp .whatsapp__button:hover,
.home .mainnavcontainer .mainnav.navbar .widget.emailaddress:hover,
.home .mainnavcontainer .mainnav.navbar .widget.phonenumber:hover {
    color: rgb(255, 255, 255);
  }
  .home .mainnavcontainer.scrolled .mainnav.navbar {
    background-color: rgb(255, 255, 255);
  }
  .home .mainnavcontainer.scrolled .mainnav.navbar .navbar-brand img {
    width: 140px;
    height: 60px;
    -webkit-animation: logo-resize 2s ease-in-out;
            animation: logo-resize 2s ease-in-out;
  }
}
@-webkit-keyframes logo-resize {
  0% {
    width: 153px;
    height: 170px;
  }
  25% {
    width: 60px;
    height: 60px;
  }
  50% {
    width: 60px;
    height: 60px;
  }
  100% {
    width: 140px;
    height: 60px;
  }
}
@keyframes logo-resize {
  0% {
    width: 153px;
    height: 170px;
  }
  25% {
    width: 60px;
    height: 60px;
  }
  50% {
    width: 60px;
    height: 60px;
  }
  100% {
    width: 140px;
    height: 60px;
  }
}
#slider1,
#slider2,
#slider3 {
  background: #1f2127;
}
#slider1 .owl-nav [class*=owl-],
#slider2 .owl-nav [class*=owl-],
#slider3 .owl-nav [class*=owl-] {
  background: transparent;
  color: rgb(140, 140, 140);
}
#slider1 .owl-nav [class*=owl-]:hover,
#slider2 .owl-nav [class*=owl-]:hover,
#slider3 .owl-nav [class*=owl-]:hover {
  background: rgba(0, 0, 0, 0);
  color: rgb(140, 140, 140);
}
#slider1 .owl-dots .owl-dot span,
#slider2 .owl-dots .owl-dot span,
#slider3 .owl-dots .owl-dot span {
  border: 2px solid rgb(140, 140, 140);
}
#slider1 .owl-dots .owl-dot.active span, #slider1 .owl-dots .owl-dot:hover span,
#slider2 .owl-dots .owl-dot.active span,
#slider2 .owl-dots .owl-dot:hover span,
#slider3 .owl-dots .owl-dot.active span,
#slider3 .owl-dots .owl-dot:hover span {
  border: 2px solid rgb(140, 140, 140);
  background: rgb(140, 140, 140);
}

#outer-slider1 {
  background-color: #1f2127;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  #outer-slider1 {
    height: 100vh;
  }
}
#outer-slider1 #slider1 {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  #outer-slider1 #slider1 {
    height: 100vh;
  }
}
#outer-slider1 #slider1 .slide {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: center;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  #outer-slider1 #slider1 .slide {
    text-align: left;
  }
}

#slider1 .slide,
#slider2 .slide {
  background-color: #1f2127;
}
#slider1 .slide::before,
#slider2 .slide::before {
  background: transparent;
}
#slider1 .slide .carouselcaption,
#slider2 .slide .carouselcaption {
  max-width: 780px;
  background: transparent;
  color: rgb(140, 140, 140);
  text-align: left;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  #slider1 .slide .carouselcaption,
#slider2 .slide .carouselcaption {
    margin-right: 0;
    margin-left: 0;
  }
}
#slider1 .slide .carouselcaption .sliderTitle,
#slider2 .slide .carouselcaption .sliderTitle {
  color: rgb(255, 255, 255);
}
#slider1 .slide .carouselcaption .sliderTitle h1,
#slider1 .slide .carouselcaption .sliderTitle h2,
#slider1 .slide .carouselcaption .sliderTitle h3,
#slider1 .slide .carouselcaption .sliderTitle h4,
#slider1 .slide .carouselcaption .sliderTitle h5,
#slider1 .slide .carouselcaption .sliderTitle h6,
#slider1 .slide .carouselcaption .sliderTitle .h1,
#slider1 .slide .carouselcaption .sliderTitle .h2,
#slider1 .slide .carouselcaption .sliderTitle .h3,
#slider1 .slide .carouselcaption .sliderTitle .h4,
#slider1 .slide .carouselcaption .sliderTitle .h5,
#slider1 .slide .carouselcaption .sliderTitle .h6,
#slider2 .slide .carouselcaption .sliderTitle h1,
#slider2 .slide .carouselcaption .sliderTitle h2,
#slider2 .slide .carouselcaption .sliderTitle h3,
#slider2 .slide .carouselcaption .sliderTitle h4,
#slider2 .slide .carouselcaption .sliderTitle h5,
#slider2 .slide .carouselcaption .sliderTitle h6,
#slider2 .slide .carouselcaption .sliderTitle .h1,
#slider2 .slide .carouselcaption .sliderTitle .h2,
#slider2 .slide .carouselcaption .sliderTitle .h3,
#slider2 .slide .carouselcaption .sliderTitle .h4,
#slider2 .slide .carouselcaption .sliderTitle .h5,
#slider2 .slide .carouselcaption .sliderTitle .h6 {
  color: rgb(255, 255, 255);
  text-shadow: rgba(0, 0, 0, 0.5) 0 10px 20px;
}
#slider1 .slide .carouselcaption .sliderTitle h1 span,
#slider1 .slide .carouselcaption .sliderTitle h2 span,
#slider1 .slide .carouselcaption .sliderTitle h3 span,
#slider1 .slide .carouselcaption .sliderTitle h4 span,
#slider1 .slide .carouselcaption .sliderTitle h5 span,
#slider1 .slide .carouselcaption .sliderTitle h6 span,
#slider1 .slide .carouselcaption .sliderTitle .h1 span,
#slider1 .slide .carouselcaption .sliderTitle .h2 span,
#slider1 .slide .carouselcaption .sliderTitle .h3 span,
#slider1 .slide .carouselcaption .sliderTitle .h4 span,
#slider1 .slide .carouselcaption .sliderTitle .h5 span,
#slider1 .slide .carouselcaption .sliderTitle .h6 span,
#slider2 .slide .carouselcaption .sliderTitle h1 span,
#slider2 .slide .carouselcaption .sliderTitle h2 span,
#slider2 .slide .carouselcaption .sliderTitle h3 span,
#slider2 .slide .carouselcaption .sliderTitle h4 span,
#slider2 .slide .carouselcaption .sliderTitle h5 span,
#slider2 .slide .carouselcaption .sliderTitle h6 span,
#slider2 .slide .carouselcaption .sliderTitle .h1 span,
#slider2 .slide .carouselcaption .sliderTitle .h2 span,
#slider2 .slide .carouselcaption .sliderTitle .h3 span,
#slider2 .slide .carouselcaption .sliderTitle .h4 span,
#slider2 .slide .carouselcaption .sliderTitle .h5 span,
#slider2 .slide .carouselcaption .sliderTitle .h6 span {
  margin-bottom: 0.5rem;
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-family: "market_decoregular", serif, cursive;
  line-height: 35px;
  letter-spacing: 0;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  #slider1 .slide .carouselcaption .sliderTitle h1 span,
#slider1 .slide .carouselcaption .sliderTitle h2 span,
#slider1 .slide .carouselcaption .sliderTitle h3 span,
#slider1 .slide .carouselcaption .sliderTitle h4 span,
#slider1 .slide .carouselcaption .sliderTitle h5 span,
#slider1 .slide .carouselcaption .sliderTitle h6 span,
#slider1 .slide .carouselcaption .sliderTitle .h1 span,
#slider1 .slide .carouselcaption .sliderTitle .h2 span,
#slider1 .slide .carouselcaption .sliderTitle .h3 span,
#slider1 .slide .carouselcaption .sliderTitle .h4 span,
#slider1 .slide .carouselcaption .sliderTitle .h5 span,
#slider1 .slide .carouselcaption .sliderTitle .h6 span,
#slider2 .slide .carouselcaption .sliderTitle h1 span,
#slider2 .slide .carouselcaption .sliderTitle h2 span,
#slider2 .slide .carouselcaption .sliderTitle h3 span,
#slider2 .slide .carouselcaption .sliderTitle h4 span,
#slider2 .slide .carouselcaption .sliderTitle h5 span,
#slider2 .slide .carouselcaption .sliderTitle h6 span,
#slider2 .slide .carouselcaption .sliderTitle .h1 span,
#slider2 .slide .carouselcaption .sliderTitle .h2 span,
#slider2 .slide .carouselcaption .sliderTitle .h3 span,
#slider2 .slide .carouselcaption .sliderTitle .h4 span,
#slider2 .slide .carouselcaption .sliderTitle .h5 span,
#slider2 .slide .carouselcaption .sliderTitle .h6 span {
    margin-bottom: 1rem;
    font-size: 40px;
    line-height: 45px;
  }
}
@media (min-width: 992px) {
  #slider1 .slide .carouselcaption .sliderTitle h1 span,
#slider1 .slide .carouselcaption .sliderTitle h2 span,
#slider1 .slide .carouselcaption .sliderTitle h3 span,
#slider1 .slide .carouselcaption .sliderTitle h4 span,
#slider1 .slide .carouselcaption .sliderTitle h5 span,
#slider1 .slide .carouselcaption .sliderTitle h6 span,
#slider1 .slide .carouselcaption .sliderTitle .h1 span,
#slider1 .slide .carouselcaption .sliderTitle .h2 span,
#slider1 .slide .carouselcaption .sliderTitle .h3 span,
#slider1 .slide .carouselcaption .sliderTitle .h4 span,
#slider1 .slide .carouselcaption .sliderTitle .h5 span,
#slider1 .slide .carouselcaption .sliderTitle .h6 span,
#slider2 .slide .carouselcaption .sliderTitle h1 span,
#slider2 .slide .carouselcaption .sliderTitle h2 span,
#slider2 .slide .carouselcaption .sliderTitle h3 span,
#slider2 .slide .carouselcaption .sliderTitle h4 span,
#slider2 .slide .carouselcaption .sliderTitle h5 span,
#slider2 .slide .carouselcaption .sliderTitle h6 span,
#slider2 .slide .carouselcaption .sliderTitle .h1 span,
#slider2 .slide .carouselcaption .sliderTitle .h2 span,
#slider2 .slide .carouselcaption .sliderTitle .h3 span,
#slider2 .slide .carouselcaption .sliderTitle .h4 span,
#slider2 .slide .carouselcaption .sliderTitle .h5 span,
#slider2 .slide .carouselcaption .sliderTitle .h6 span {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (min-width: 1200px) {
  #slider1 .slide .carouselcaption .sliderTitle h1 span,
#slider1 .slide .carouselcaption .sliderTitle h2 span,
#slider1 .slide .carouselcaption .sliderTitle h3 span,
#slider1 .slide .carouselcaption .sliderTitle h4 span,
#slider1 .slide .carouselcaption .sliderTitle h5 span,
#slider1 .slide .carouselcaption .sliderTitle h6 span,
#slider1 .slide .carouselcaption .sliderTitle .h1 span,
#slider1 .slide .carouselcaption .sliderTitle .h2 span,
#slider1 .slide .carouselcaption .sliderTitle .h3 span,
#slider1 .slide .carouselcaption .sliderTitle .h4 span,
#slider1 .slide .carouselcaption .sliderTitle .h5 span,
#slider1 .slide .carouselcaption .sliderTitle .h6 span,
#slider2 .slide .carouselcaption .sliderTitle h1 span,
#slider2 .slide .carouselcaption .sliderTitle h2 span,
#slider2 .slide .carouselcaption .sliderTitle h3 span,
#slider2 .slide .carouselcaption .sliderTitle h4 span,
#slider2 .slide .carouselcaption .sliderTitle h5 span,
#slider2 .slide .carouselcaption .sliderTitle h6 span,
#slider2 .slide .carouselcaption .sliderTitle .h1 span,
#slider2 .slide .carouselcaption .sliderTitle .h2 span,
#slider2 .slide .carouselcaption .sliderTitle .h3 span,
#slider2 .slide .carouselcaption .sliderTitle .h4 span,
#slider2 .slide .carouselcaption .sliderTitle .h5 span,
#slider2 .slide .carouselcaption .sliderTitle .h6 span {
    font-size: 60px;
    line-height: 65px;
  }
}
@media (min-width: 1450px) {
  #slider1 .slide .carouselcaption .sliderTitle h1 span,
#slider1 .slide .carouselcaption .sliderTitle h2 span,
#slider1 .slide .carouselcaption .sliderTitle h3 span,
#slider1 .slide .carouselcaption .sliderTitle h4 span,
#slider1 .slide .carouselcaption .sliderTitle h5 span,
#slider1 .slide .carouselcaption .sliderTitle h6 span,
#slider1 .slide .carouselcaption .sliderTitle .h1 span,
#slider1 .slide .carouselcaption .sliderTitle .h2 span,
#slider1 .slide .carouselcaption .sliderTitle .h3 span,
#slider1 .slide .carouselcaption .sliderTitle .h4 span,
#slider1 .slide .carouselcaption .sliderTitle .h5 span,
#slider1 .slide .carouselcaption .sliderTitle .h6 span,
#slider2 .slide .carouselcaption .sliderTitle h1 span,
#slider2 .slide .carouselcaption .sliderTitle h2 span,
#slider2 .slide .carouselcaption .sliderTitle h3 span,
#slider2 .slide .carouselcaption .sliderTitle h4 span,
#slider2 .slide .carouselcaption .sliderTitle h5 span,
#slider2 .slide .carouselcaption .sliderTitle h6 span,
#slider2 .slide .carouselcaption .sliderTitle .h1 span,
#slider2 .slide .carouselcaption .sliderTitle .h2 span,
#slider2 .slide .carouselcaption .sliderTitle .h3 span,
#slider2 .slide .carouselcaption .sliderTitle .h4 span,
#slider2 .slide .carouselcaption .sliderTitle .h5 span,
#slider2 .slide .carouselcaption .sliderTitle .h6 span {
    font-size: 70px;
    line-height: 75px;
  }
}
#slider1 .slide .carouselcaption .sliderDesc,
#slider2 .slide .carouselcaption .sliderDesc {
  color: rgb(255, 255, 255);
}

#outer-slider2 {
  background-color: #1f2127;
}

#slider2 .slide .carouselcaption {
  background: transparent;
  color: rgb(140, 140, 140);
}
#slider2 .slide .carouselcaption .sliderTitle {
  color: rgb(255, 255, 255);
}
#slider2 .slide .carouselcaption .sliderTitle h1,
#slider2 .slide .carouselcaption .sliderTitle h2,
#slider2 .slide .carouselcaption .sliderTitle h3,
#slider2 .slide .carouselcaption .sliderTitle h4,
#slider2 .slide .carouselcaption .sliderTitle h5,
#slider2 .slide .carouselcaption .sliderTitle h6 {
  color: rgb(255, 255, 255);
  text-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
}
#slider2 .slide .carouselcaption .sliderDesc {
  color: rgb(255, 255, 255);
}
#slider2 .owl-nav [class*=owl-] {
  background: transparent;
  color: rgb(255, 255, 255);
}
#slider2 .owl-nav [class*=owl-]:hover {
  background: rgba(0, 0, 0, 0);
  color: rgb(255, 255, 255);
}
#slider2 .owl-nav .owl-dots .owl-dot span {
  border: 2px solid rgb(255, 255, 255);
}
#slider2 .owl-nav .owl-dots .owl-dot.active span, #slider2 .owl-nav .owl-dots .owl-dot:hover span {
  border: 2px solid rgb(255, 255, 255);
  background: rgb(255, 255, 255);
}
#slider2 #slider3 .slide .carouselcaption {
  background: transparent;
}
#slider2 #slider3 .slide .carouselcaption .sliderTitle {
  color: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}
#slider2 #slider3 .slide .carouselcaption .sliderDesc {
  color: rgb(255, 255, 255);
}
#slider2 #slider3 .slide .carouselcaption .btn {
  background: rgb(140, 140, 140);
  color: rgb(255, 255, 255);
}
#slider2 #slider3 .slide .carouselcaption .btn:hover {
  background: #7f7f7f;
  color: rgb(255, 255, 255);
}
#slider2 #slider3 .slide .carouselcaption .btn.btn-link {
  background: transparent;
  color: rgb(255, 255, 255);
}

.pageheaderimage {
  background-color: #1f2127;
}

.pageheaderimage {
  position: relative;
  min-height: auto;
  background-color: rgb(35, 35, 35);
}
.pageheaderimage .sys-textblock {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0;
  background-color: rgb(41, 41, 41);
  text-align: center;
  position: relative;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
.pageheaderimage .sys-textblock::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 66.6666666667%;
}
.pageheaderimage .sys-textblock > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 576px) {
  .pageheaderimage .sys-textblock {
    position: relative;
  }
  .pageheaderimage .sys-textblock::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 37.5%;
  }
  .pageheaderimage .sys-textblock > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 768px) {
  .pageheaderimage .sys-textblock {
    position: relative;
  }
  .pageheaderimage .sys-textblock::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 31.25%;
  }
  .pageheaderimage .sys-textblock > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.pageheaderimage .sys-textblock .text {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 6;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 25px 30px;
  color: rgb(255, 255, 255);
  font-weight: 300;
  font-size: 1rem;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .pageheaderimage .sys-textblock .text {
    font-size: 1.5rem;
  }
}
.pageheaderimage .sys-textblock .text a:not(.btn) {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}
.pageheaderimage .sys-textblock .text a:not(.btn):hover {
  opacity: 0.8;
}
.pageheaderimage .sys-textblock .text .article-title {
  margin: 0;
  background-color: transparent;
  color: rgb(255, 255, 255);
  font-weight: normal;
  font-size: 1.8rem;
  font-family: "market_decoregular", serif, cursive;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .pageheaderimage .sys-textblock .text .article-title {
    font-size: 3rem;
  }
}
.pageheaderimage .sys-textblock .text .article-title span {
  display: block;
  margin: 0.3rem 0;
  font-weight: normal;
  font-size: 1.4rem;
  font-family: "Neutra Text TF", "Roboto", Arial, Helvetica, sans-serif;
  text-transform: none;
}
.pageheaderimage .sys-textblock .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
}
.pageheaderimage .sys-textblock .image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.pageheaderimage .sys-textblock .image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: radial-gradient(circle, rgba(22, 22, 22, 0.5) 0%, rgba(22, 22, 22, 0.05) 100%);
}

#mute-video {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 997;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  background: rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
  font-size: 30px;
  mix-blend-mode: overlay;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  #mute-video {
    bottom: 30px;
    left: 30px;
  }
}

.quicksearch {
  margin-bottom: 5rem;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background-color: #1f2127;
}
.quicksearch .widget #realestateSearchTabs {
  display: none;
  visibility: hidden;
}
.quicksearch .widget #realestateSearchTabs #realestateSearchDropdownMenuButton {
  border: 1px solid rgb(98, 98, 98);
  background-color: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
}
.quicksearch .widget #realestateSearchTabs #realestateSearchDropdownMenuButton .text {
  color: rgb(140, 140, 140);
}
.quicksearch .widget #realestateSearchTabs #realestateSearchDropdownMenuButton:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.quicksearch .widget .tab-content {
  min-height: 48px;
}
.quicksearch .widget #query.fields {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 1200px) {
  .quicksearch .widget #query.fields {
    -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
  .quicksearch .widget #query.fields .query-object-location-container {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.quicksearch .widget #query.fields .filter-container .form-control {
  border-color: rgb(98, 98, 98);
  color: rgb(140, 140, 140);
}
.quicksearch .widget #query.fields .filter-container .form-control:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.quicksearch .widget #query.fields .filter-container .selectboxit-text {
  color: rgb(140, 140, 140);
}
.quicksearch .widget #query.fields .filter-container .selectboxit-container.form-control {
  border-radius: 0;
}
.quicksearch .widget #query.fields .filter-container .selectboxit-container.form-control .dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
}
.quicksearch .widget #query.fields .filter-container .selectboxit-container.form-control .dropdown-menu .selectboxit-option .selectboxit-option-anchor {
  background-color: transparent;
  color: rgb(140, 140, 140);
}
.quicksearch .widget #query.fields .filter-container .selectboxit-container.form-control .dropdown-menu .selectboxit-option .selectboxit-option-anchor.active, .quicksearch .widget #query.fields .filter-container .selectboxit-container.form-control .dropdown-menu .selectboxit-option .selectboxit-option-anchor:focus, .quicksearch .widget #query.fields .filter-container .selectboxit-container.form-control .dropdown-menu .selectboxit-option .selectboxit-option-anchor:hover {
  background-color: rgb(248, 249, 250);
  color: rgb(22, 24, 27);
}
.quicksearch .widget #query.fields .filter-container .selectboxit-container.form-control .dropdown-menu .selectboxit-option.selectboxit-selected .selectboxit-option-anchor {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.quicksearch .widget #query.fields .filter-flex-container .flex.flex__input {
  border-radius: 0;
  background-color: rgb(35, 38, 45);
}
.quicksearch .widget #query.fields .filter-flex-container .flex.flex__input input,
.quicksearch .widget #query.fields .filter-flex-container .flex.flex__input select {
  border-color: rgb(98, 98, 98);
}
.quicksearch .widget #query.fields .sys-search-suggestions {
  border-radius: 0;
  background: #131519;
  color: rgb(140, 140, 140);
}
.quicksearch .widget #query.fields .sys-search-suggestions a {
  color: rgb(140, 140, 140);
}
.quicksearch .widget #query.fields .sys-search-suggestions a:hover {
  color: rgb(140, 140, 140);
}
.quicksearch .widget #query.fields .select2-container.sys-location-filter {
  border-radius: 0;
}
.quicksearch .widget #query.fields .select2-container.sys-location-filter.select2-container-active {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.quicksearch .widget #query.fields .select2-container.sys-location-filter .select2-choice {
  border-color: rgb(98, 98, 98);
  border-radius: 0;
}
.quicksearch .widget #query.fields .select2-container.sys-location-filter .select2-choice > .select2-chosen {
  color: rgb(140, 140, 140);
}
.quicksearch .widget #query.fields .select2-container.sys-location-filter .select2-choice .select2-search-choice-close {
  background: rgb(35, 38, 45);
}
.quicksearch .widget #query.fields .select2-container.sys-location-filter .select2-choice .select2-search-choice-close::after {
  content: "/f00d";
  font-weight: 300;
  font-size: 16px;
  font-family: "Font Awesome 5 Pro";
}
.quicksearch .widget #query .search-commands #btnSearch {
  border: 0;
  border-color: rgb(1, 65, 111);
  border-radius: 0;
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
  font-weight: 500;
}
.quicksearch .widget #query .search-commands #btnSearch:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.quicksearch .widget #query .search-commands #btnSearch:hover {
  border-color: #013256;
  background-color: #013256;
}

#select2-drop {
  border-color: rgb(98, 98, 98);
}
#select2-drop .select2-search {
  background: rgb(35, 38, 45);
}
#select2-drop .select2-search input {
  border-color: rgb(128, 189, 255);
  color: rgb(140, 140, 140);
  font-size: 16px;
}
#select2-drop .select2-results .select2-no-results,
#select2-drop .select2-results .select2-searching {
  background: rgb(244, 244, 244);
  color: rgb(140, 140, 140);
}
#select2-drop .select2-results .select2-highlighted {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
#select2-drop .select2-results .select2-highlighted .select2-result-label .sys-location-item .sys-location-item-info .sys-location-item-description {
  color: rgb(255, 255, 255) !important;
}

.selectboxit-container * {
  font-size: 16px;
  font-family: "Neutra Text", "Roboto", Arial, Helvetica, sans-serif;
}

.breadcrumb-container .breadcrumb .breadcrumb-item a {
  color: rgb(140, 140, 140);
}
.breadcrumb-container .breadcrumb .breadcrumb-item.active a {
  color: rgb(255, 255, 255);
}
.breadcrumb-container .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgb(140, 140, 140);
}

.fullwidth .breadcrumbs {
  background-color: rgb(35, 38, 45);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.specials,
.soldandrented,
.recentlyviewed {
  margin-bottom: 5rem;
  padding: 0 30px;
  background-color: rgb(35, 38, 45);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .specials,
.soldandrented,
.recentlyviewed {
    padding: 0;
  }
}
.specials .noslider,
.soldandrented .noslider,
.recentlyviewed .noslider {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .specials .noslider,
.soldandrented .noslider,
.recentlyviewed .noslider {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.specials .intro,
.soldandrented .intro,
.recentlyviewed .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}
.specials .intro::before, .specials .intro::after,
.soldandrented .intro::before,
.soldandrented .intro::after,
.recentlyviewed .intro::before,
.recentlyviewed .intro::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-top: 1px solid rgba(140, 140, 140, 0.1);
}
.specials .intro h2,
.soldandrented .intro h2,
.recentlyviewed .intro h2 {
  margin: 0;
  padding: 0 30px;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}
.specials .owl-nav [class*=owl-],
.soldandrented .owl-nav [class*=owl-],
.recentlyviewed .owl-nav [class*=owl-] {
  background: transparent;
  color: rgb(140, 140, 140);
}
.specials .owl-nav [class*=owl-]:hover,
.soldandrented .owl-nav [class*=owl-]:hover,
.recentlyviewed .owl-nav [class*=owl-]:hover {
  background: rgba(0, 0, 0, 0);
  color: rgb(140, 140, 140);
}
.specials .object,
.soldandrented .object,
.recentlyviewed .object {
  margin: 0 0 15px;
  border-radius: 0;
  background-color: rgb(35, 38, 45);
  color: rgb(1, 65, 111);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 576px) {
  .specials .object,
.soldandrented .object,
.recentlyviewed .object {
    margin: 0 15px 15px;
  }
}
.specials .object::before,
.soldandrented .object::before,
.recentlyviewed .object::before {
  background-color: rgb(1, 65, 111);
}
.specials .object .object_status,
.soldandrented .object .object_status,
.recentlyviewed .object .object_status {
  top: 15px;
  left: 50%;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 0 0 0 0;
  background-color: rgba(255, 255, 255, 0.9);
  color: rgb(0, 0, 0);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.specials .object .object_status.rented, .specials .object .object_status.sold,
.soldandrented .object .object_status.rented,
.soldandrented .object .object_status.sold,
.recentlyviewed .object .object_status.rented,
.recentlyviewed .object .object_status.sold {
  background-color: rgba(217, 33, 40, 0.9);
  color: rgb(255, 255, 255);
}
.specials .object .object_status.rented_under_conditions, .specials .object .object_status.sold_under_conditions,
.soldandrented .object .object_status.rented_under_conditions,
.soldandrented .object .object_status.sold_under_conditions,
.recentlyviewed .object .object_status.rented_under_conditions,
.recentlyviewed .object .object_status.sold_under_conditions {
  background-color: rgba(217, 33, 40, 0.9);
  color: rgb(255, 255, 255);
}
.specials .object .object_status.new_forsale, .specials .object .object_status.new_forrent,
.soldandrented .object .object_status.new_forsale,
.soldandrented .object .object_status.new_forrent,
.recentlyviewed .object .object_status.new_forsale,
.recentlyviewed .object .object_status.new_forrent {
  background-color: rgba(1, 65, 111, 0.9);
  color: rgb(255, 255, 255);
}
.specials .object .object_status.price_changed,
.soldandrented .object .object_status.price_changed,
.recentlyviewed .object .object_status.price_changed {
  background-color: rgba(23, 162, 184, 0.9);
  color: rgb(255, 255, 255);
}
.specials .object .object_status.open_house,
.soldandrented .object .object_status.open_house,
.recentlyviewed .object .object_status.open_house {
  background-color: rgba(1, 65, 111, 0.9);
  color: rgb(255, 255, 255);
}
.specials .object .img-container,
.soldandrented .object .img-container,
.recentlyviewed .object .img-container {
  border-radius: 0 0 0 0;
}
.specials .object .data,
.soldandrented .object .data,
.recentlyviewed .object .data {
  -webkit-box-shadow: 0 2px 0 0 #111316;
          box-shadow: 0 2px 0 0 #111316;
}
.specials .object .data .obj_header .obj_price,
.soldandrented .object .data .obj_header .obj_price,
.recentlyviewed .object .data .obj_header .obj_price {
  color: rgb(1, 65, 111);
}
.specials .object .data .obj_features,
.soldandrented .object .data .obj_features,
.recentlyviewed .object .data .obj_features {
  border-top: 1px solid rgb(244, 244, 244);
}
.specials .object .data .obj_features > span,
.soldandrented .object .data .obj_features > span,
.recentlyviewed .object .data .obj_features > span {
  border-right: 1px solid rgb(244, 244, 244);
}
.specials .object .data .obj_features > span i,
.soldandrented .object .data .obj_features > span i,
.recentlyviewed .object .data .obj_features > span i {
  color: rgb(1, 65, 111);
}

.specials .special-carousel {
  padding: 0;
}
.specials .special-carousel .object {
  position: relative;
}
.specials .special-carousel .object::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 150%;
}
.specials .special-carousel .object > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.specials .special-carousel .object .img-container {
  height: 100%;
  position: relative;
}
.specials .special-carousel .object .img-container::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 150%;
}
.specials .special-carousel .object .img-container > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.specials .special-carousel .object .img-container img {
  -webkit-transition: -webkit-transform 2s ease-in-out;
  transition: -webkit-transform 2s ease-in-out;
  transition: transform 2s ease-in-out;
  transition: transform 2s ease-in-out, -webkit-transform 2s ease-in-out;
}
.specials .special-carousel .object::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -25px;
  left: 0;
  z-index: 1;
  z-index: 2;
  display: block;
  width: 100%;
  width: 100%;
  height: 100%;
  height: 200%;
  background: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: -webkit-transform 1400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1400ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1400ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.specials .special-carousel .object .data {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 100%;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: -webkit-transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(calc(100% - 140px));
          transform: translateY(calc(100% - 140px));
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .specials .special-carousel .object .data {
    -webkit-transform: translateY(calc(100% - 200px));
            transform: translateY(calc(100% - 200px));
  }
}
.specials .special-carousel .object .data .obj_header {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 140px;
  padding: 1rem;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .specials .special-carousel .object .data .obj_header {
    height: 200px;
    padding: 3rem;
  }
}
@media (min-width: 992px) {
  .specials .special-carousel .object .data .obj_header {
    padding: 3rem 2rem;
  }
}
@media (min-width: 1650px) {
  .specials .special-carousel .object .data .obj_header {
    padding: 3rem;
  }
}
.specials .special-carousel .object .data .obj_header .locality,
.specials .special-carousel .object .data .obj_header .street,
.specials .special-carousel .object .data .obj_header .address,
.specials .special-carousel .object .data .obj_header .obj_price {
  color: rgb(255, 255, 255);
}
.specials .special-carousel .object .data .obj_header .street,
.specials .special-carousel .object .data .obj_header .title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .specials .special-carousel .object .data .obj_header .street,
.specials .special-carousel .object .data .obj_header .title {
    margin: 0.2rem 0 0.3rem;
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
@media (min-width: 1450px) {
  .specials .special-carousel .object .data .obj_header .street,
.specials .special-carousel .object .data .obj_header .title {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
.specials .special-carousel .object .data .obj_header .locality {
  font-weight: 400;
}
.specials .special-carousel .object .data .obj_header .obj_price {
  font-weight: 400;
}
.specials .special-carousel .object .data .obj_features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border: 0;
  font-size: 1rem;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .specials .special-carousel .object .data .obj_features {
    padding: 3rem;
  }
}
@media (min-width: 992px) {
  .specials .special-carousel .object .data .obj_features {
    padding: 3rem 2rem;
  }
}
@media (min-width: 1650px) {
  .specials .special-carousel .object .data .obj_features {
    padding: 3rem;
  }
}
.specials .special-carousel .object .data .obj_features > span {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 0.5rem;
  padding-right: 10px;
  padding-left: 10px;
  border: none;
  line-height: 1;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .specials .special-carousel .object .data .obj_features > span {
    margin-bottom: 2rem;
  }
}
.specials .special-carousel .object .data .obj_features > span > span {
  font-weight: bold;
  font-size: 1.4rem;
}
.specials .special-carousel .object .data .obj_features > span i {
  display: none;
}
.specials .special-carousel .object .data .obj_features::after {
  content: "";
  display: block;
  width: 39px;
  height: 43px;
  margin-top: 0.5rem;
  background: url("//hayweb.blob.core.windows.net/public/zz80ul/2-beta/beeldmerk.svg");
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .specials .special-carousel .object .data .obj_features::after {
    margin-top: 1rem;
  }
}
.specials .special-carousel .object:hover::before {
  bottom: 0;
  opacity: 0.8;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.specials .special-carousel .object:hover .img-container img {
  -webkit-transition-duration: 4s;
          transition-duration: 4s;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.specials .special-carousel .object:hover .data {
  top: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.specials .special-carousel .object:hover .data .obj_header .locality,
.specials .special-carousel .object:hover .data .obj_header .street,
.specials .special-carousel .object:hover .data .obj_header .address,
.specials .special-carousel .object:hover .data .obj_header .obj_price {
  color: rgb(1, 65, 111);
  text-shadow: none;
}
.specials .special-carousel .object:hover .data .obj_features {
  bottom: 0;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.widget.employees {
  margin-bottom: 5rem;
  padding: 0 30px;
  background-color: rgb(35, 38, 45);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .widget.employees {
    padding: 0;
  }
}
.widget.employees .owl-nav [class*=owl-] {
  background: transparent;
  color: rgb(140, 140, 140);
}
.widget.employees .owl-nav [class*=owl-]:hover {
  background: rgba(0, 0, 0, 0);
  color: rgb(140, 140, 140);
}
.widget.employees .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}
.widget.employees .intro::before, .widget.employees .intro::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.widget.employees .intro h2 {
  margin: 0;
  padding: 0 30px;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}
.widget.employees .employeegrid {
  /* 
  width: calc(100% + 20px);
  margin-right: -10px;
  margin-left: -10px;
  */
  padding: 0;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .widget.employees .employeegrid {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.widget.employees .employeegrid .item {
  margin: 0 0 20px;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
.widget.employees .employeegrid .item .bio {
  display: none;
  visibility: hidden;
}
@media (min-width: 1450px) {
  .widget.employees .employeegrid .item {
    width: 20%;
  }
}
.widget.employees .employeegrid .item .employee-image-container::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(23, 23, 23, 0.5)), color-stop(88%, rgba(23, 23, 23, 0)));
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.5) 0, rgba(23, 23, 23, 0) 88%);
}
.widget.employees .employeegrid .item .employee-image-container .employee-image .content.no-photo {
  background-color: rgb(140, 140, 140);
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item .employee-image-container .employee-image::after {
  bottom: -25px;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(18%, rgba(0, 0, 0, 0.18)), to(rgba(0, 0, 0, 0.95)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, 0.18) 18%, rgba(0, 0, 0, 0.95) 100%);
  opacity: 0;
}
.widget.employees .employeegrid .item .employee-image-container .employee-data {
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item .employee-image-container .employee-data a {
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .moreinfo {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .moreinfo > i {
  display: none;
  visibility: hidden;
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .moreinfo::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: rgb(217, 33, 40);
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .moreinfo:hover {
  text-decoration: none;
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .moreinfo:hover::before {
  width: 100%;
  visibility: visible;
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social_facebook {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social_twitter {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social_linkedin {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social_youtube {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social_googleplus, .widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social_instagram {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social_googleplus i::before, .widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social_instagram i::before {
  content: "\f16d";
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social_pinterest {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item .employee-image-container .employee-data .socials .social:hover {
  background-color: rgb(217, 33, 40);
}
.widget.employees .employeegrid .item .employee-data-container {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  z-index: 2;
  padding: 1rem;
  color: rgb(140, 140, 140);
  font-size: 20px;
  line-height: 28px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .widget.employees .employeegrid .item .employee-data-container {
    padding: 3rem;
  }
}
@media (min-width: 992px) {
  .widget.employees .employeegrid .item .employee-data-container {
    padding: 2rem;
  }
}
@media (min-width: 1650px) {
  .widget.employees .employeegrid .item .employee-data-container {
    padding: 3rem;
  }
}
.widget.employees .employeegrid .item .employee-data-container .employee-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 20px;
  line-height: 28px;
  text-align: left;
}
.widget.employees .employeegrid .item .employee-data-container .employee-data .name {
  margin: 0;
  font-size: 1.4rem;
}
.widget.employees .employeegrid .item .employee-data-container .employee-data .role {
  color: rgb(255, 255, 255);
}
.widget.employees .employeegrid .item:hover .employee-data-container {
  opacity: 0.01;
}
.widget.employees .employeegrid .item:hover .employee-image-container .employee-data {
  top: 0;
  z-index: 5;
}

.contact-module {
  background-color: rgb(35, 38, 45);
}
.contact-module .nav-tabs {
  border-color: rgb(98, 98, 98);
}
.contact-module .nav-tabs .nav-link {
  color: rgb(140, 140, 140);
}
.contact-module .nav-tabs .nav-link:focus {
  border-color: transparent;
  color: rgb(1, 65, 111);
}
.contact-module .nav-tabs .nav-link:hover {
  border-color: transparent;
  color: rgb(217, 33, 40);
}
.contact-module .nav-tabs .nav-link.active, .contact-module .nav-tabs .nav-link.active:hover, .contact-module .nav-tabs .nav-link.active:focus {
  border-color: rgb(98, 98, 98);
  border-bottom-color: #1f2127;
  background-color: #1f2127;
  color: rgb(255, 255, 255);
}
.contact-module .tab-content .tab-pane .search-fields {
  border: 1px solid rgb(98, 98, 98);
  border-top: none;
  background-color: #1f2127;
}
.contact-module .contact-module-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-module .grid {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .contact-module .grid {
    -ms-grid-columns: minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr);
    grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr);
  }
}
@media (min-width: 1450px) {
  .contact-module .grid {
    -ms-grid-columns: minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr);
    grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 1fr);
  }
}
.contact-module .grid .employee,
.contact-module .grid .office,
.contact-module .grid .branch {
  background: #1f2127;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-module .grid .employee::before,
.contact-module .grid .office::before,
.contact-module .grid .branch::before {
  display: none;
}
.contact-module .grid .employee > a,
.contact-module .grid .office > a,
.contact-module .grid .branch > a {
  position: relative;
}
.contact-module .grid .employee > a::before,
.contact-module .grid .office > a::before,
.contact-module .grid .branch > a::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(23, 23, 23, 0.5)), color-stop(88%, rgba(23, 23, 23, 0)));
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.5) 0, rgba(23, 23, 23, 0) 88%);
}
.contact-module .grid .employee__image,
.contact-module .grid .office__image,
.contact-module .grid .branch__image {
  position: relative;
}
.contact-module .grid .employee__image::before,
.contact-module .grid .office__image::before,
.contact-module .grid .branch__image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 150%;
}
.contact-module .grid .employee__image > .content,
.contact-module .grid .office__image > .content,
.contact-module .grid .branch__image > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.contact-module .grid .employee__image .content.no-photo,
.contact-module .grid .office__image .content.no-photo,
.contact-module .grid .branch__image .content.no-photo {
  background-color: rgb(140, 140, 140);
  color: rgb(255, 255, 255);
}
.contact-module .grid .employee__image::after,
.contact-module .grid .office__image::after,
.contact-module .grid .branch__image::after {
  bottom: -25px;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(18%, rgba(0, 0, 0, 0.18)), to(rgba(0, 0, 0, 0.95)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, 0.18) 18%, rgba(0, 0, 0, 0.95) 100%);
  opacity: 0;
}
.contact-module .grid .employee__data,
.contact-module .grid .office__data,
.contact-module .grid .branch__data {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: rgb(255, 255, 255);
  font-size: 20px;
  line-height: 28px;
  text-align: left;
}
.contact-module .grid .employee__name,
.contact-module .grid .office__name,
.contact-module .grid .branch__name {
  width: 100%;
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 1.4rem;
}
.contact-module .grid .employee__role,
.contact-module .grid .office__role,
.contact-module .grid .branch__role {
  width: 100%;
  color: rgb(255, 255, 255);
  font-weight: 300;
  font-size: 1rem;
}
.contact-module .grid .employee .office_name, .contact-module .grid .employee .office_location,
.contact-module .grid .office .office_name,
.contact-module .grid .office .office_location,
.contact-module .grid .branch .office_name,
.contact-module .grid .branch .office_location {
  display: none;
  padding-right: 0.5rem;
  font-size: 0.9rem;
}
.contact-module .grid .employee__footer,
.contact-module .grid .office__footer,
.contact-module .grid .branch__footer {
  display: none;
  border-top: 1px solid rgb(98, 98, 98);
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}
.contact-module .grid .employee__footer .link,
.contact-module .grid .employee__footer .listings,
.contact-module .grid .office__footer .link,
.contact-module .grid .office__footer .listings,
.contact-module .grid .branch__footer .link,
.contact-module .grid .branch__footer .listings {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.contact-module .grid .employee__footer .link:hover,
.contact-module .grid .employee__footer .listings:hover,
.contact-module .grid .office__footer .link:hover,
.contact-module .grid .office__footer .listings:hover,
.contact-module .grid .branch__footer .link:hover,
.contact-module .grid .branch__footer .listings:hover {
  color: #e6e6e6;
}
.contact-module .employee-detail__header,
.contact-module .office-detail__header,
.contact-module .branch-detail__header {
  margin-bottom: 3rem;
  background-color: #1f2127;
  color: rgb(140, 140, 140);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-module .employee-detail__header .image,
.contact-module .office-detail__header .image,
.contact-module .branch-detail__header .image {
  position: relative;
}
.contact-module .employee-detail__header .image::before,
.contact-module .office-detail__header .image::before,
.contact-module .branch-detail__header .image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 150%;
}
.contact-module .employee-detail__header .image > .content,
.contact-module .office-detail__header .image > .content,
.contact-module .branch-detail__header .image > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.contact-module .employee-detail__header .personal .employee__name strong,
.contact-module .office-detail__header .personal .employee__name strong,
.contact-module .branch-detail__header .personal .employee__name strong {
  font-weight: 500;
}
.contact-module .employee-detail__header .personal .employee_function,
.contact-module .office-detail__header .personal .employee_function,
.contact-module .branch-detail__header .personal .employee_function {
  color: rgb(140, 140, 140);
  font-weight: 300;
  font-size: 1.4rem;
}
.contact-module .employee-detail__header .data a,
.contact-module .office-detail__header .data a,
.contact-module .branch-detail__header .data a {
  color: rgb(140, 140, 140);
}
.contact-module .employee-detail__header .data .social,
.contact-module .office-detail__header .data .social,
.contact-module .branch-detail__header .data .social {
  border: 1px solid rgb(140, 140, 140);
  color: rgb(140, 140, 140);
}
.contact-module .employee-detail__header .data .social__facebook,
.contact-module .office-detail__header .data .social__facebook,
.contact-module .branch-detail__header .data .social__facebook {
  border-color: rgb(140, 140, 140);
  color: rgb(140, 140, 140);
}
.contact-module .employee-detail__header .data .social__facebook:hover,
.contact-module .office-detail__header .data .social__facebook:hover,
.contact-module .branch-detail__header .data .social__facebook:hover {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.contact-module .employee-detail__header .data .social__twitter,
.contact-module .office-detail__header .data .social__twitter,
.contact-module .branch-detail__header .data .social__twitter {
  border-color: rgb(140, 140, 140);
  color: rgb(140, 140, 140);
}
.contact-module .employee-detail__header .data .social__twitter:hover,
.contact-module .office-detail__header .data .social__twitter:hover,
.contact-module .branch-detail__header .data .social__twitter:hover {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.contact-module .employee-detail__header .data .social__linkedin,
.contact-module .office-detail__header .data .social__linkedin,
.contact-module .branch-detail__header .data .social__linkedin {
  border-color: rgb(140, 140, 140);
  color: rgb(140, 140, 140);
}
.contact-module .employee-detail__header .data .social__linkedin:hover,
.contact-module .office-detail__header .data .social__linkedin:hover,
.contact-module .branch-detail__header .data .social__linkedin:hover {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.contact-module .employee-detail__header .data .social__youtube,
.contact-module .office-detail__header .data .social__youtube,
.contact-module .branch-detail__header .data .social__youtube {
  border-color: rgb(140, 140, 140);
  color: rgb(140, 140, 140);
}
.contact-module .employee-detail__header .data .social__youtube:hover,
.contact-module .office-detail__header .data .social__youtube:hover,
.contact-module .branch-detail__header .data .social__youtube:hover {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.contact-module .employee-detail__header .data .social__googleplus,
.contact-module .office-detail__header .data .social__googleplus,
.contact-module .branch-detail__header .data .social__googleplus {
  border-color: rgb(140, 140, 140);
  color: rgb(140, 140, 140);
}
.contact-module .employee-detail__header .data .social__googleplus:hover,
.contact-module .office-detail__header .data .social__googleplus:hover,
.contact-module .branch-detail__header .data .social__googleplus:hover {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.contact-module .employee-detail__header .data .social__instagram,
.contact-module .office-detail__header .data .social__instagram,
.contact-module .branch-detail__header .data .social__instagram {
  border-color: rgb(140, 140, 140);
  color: rgb(140, 140, 140);
}
.contact-module .employee-detail__header .data .social__instagram:hover,
.contact-module .office-detail__header .data .social__instagram:hover,
.contact-module .branch-detail__header .data .social__instagram:hover {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.contact-module .employee-detail__header .data .social__pinterest,
.contact-module .office-detail__header .data .social__pinterest,
.contact-module .branch-detail__header .data .social__pinterest {
  border-color: rgb(140, 140, 140);
  color: rgb(140, 140, 140);
}
.contact-module .employee-detail__header .data .social__pinterest:hover,
.contact-module .office-detail__header .data .social__pinterest:hover,
.contact-module .branch-detail__header .data .social__pinterest:hover {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.contact-module .employee-detail__text,
.contact-module .office-detail__text,
.contact-module .branch-detail__text {
  background-color: #1f2127;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  margin-top: 3rem;
}
.contact-module .employee-detail__properties .specials,
.contact-module .office-detail__properties .specials,
.contact-module .branch-detail__properties .specials {
  background-color: rgb(35, 38, 45);
}
.contact-module .employee-detail__properties .specials .object .data .obj_header .street,
.contact-module .office-detail__properties .specials .object .data .obj_header .street,
.contact-module .branch-detail__properties .specials .object .data .obj_header .street {
  font-size: 1.4rem;
}

.sys-module-contactplus .contactplus,
.sys-module-contactplus .sys-contact-tab .search-fields {
  display: none;
}

.contact-module .contact-module-header {
  display: none !important;
}

.news.newslist .flex .item,
.news.newslist .flex-row .item, .news.widget .flex .item,
.news.widget .flex-row .item {
  margin: 0;
}
.news.newslist .flex .item a,
.news.newslist .flex-row .item a, .news.widget .flex .item a,
.news.widget .flex-row .item a {
  border-radius: 0;
  background-color: #1f2127;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.news.newslist .flex .item a::before,
.news.newslist .flex-row .item a::before, .news.widget .flex .item a::before,
.news.widget .flex-row .item a::before {
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(23, 23, 23, 0.95)), color-stop(88%, rgba(23, 23, 23, 0)));
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.95) 0, rgba(23, 23, 23, 0) 88%);
}
.news.newslist .flex .item a .image,
.news.newslist .flex-row .item a .image, .news.widget .flex .item a .image,
.news.widget .flex-row .item a .image {
  border-radius: 0 0 0 0;
  position: relative;
}
.news.newslist .flex .item a .image::before,
.news.newslist .flex-row .item a .image::before, .news.widget .flex .item a .image::before,
.news.widget .flex-row .item a .image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.news.newslist .flex .item a .image > .content,
.news.newslist .flex-row .item a .image > .content, .news.widget .flex .item a .image > .content,
.news.widget .flex-row .item a .image > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.news.newslist .flex .item a .image img,
.news.newslist .flex-row .item a .image img, .news.widget .flex .item a .image img,
.news.widget .flex-row .item a .image img {
  -webkit-transition: -webkit-transform 2s ease-in-out;
  transition: -webkit-transform 2s ease-in-out;
  transition: transform 2s ease-in-out;
  transition: transform 2s ease-in-out, -webkit-transform 2s ease-in-out;
}
.news.newslist .flex .item a .image .info span,
.news.newslist .flex-row .item a .image .info span, .news.widget .flex .item a .image .info span,
.news.widget .flex-row .item a .image .info span {
  border-radius: 0;
  background-color: rgb(255, 255, 255);
  color: rgb(140, 140, 140);
  -webkit-box-shadow: 0 1px 6px rgba(61, 65, 84, 0.15);
          box-shadow: 0 1px 6px rgba(61, 65, 84, 0.15);
}
.news.newslist .flex .item a .text,
.news.newslist .flex-row .item a .text, .news.widget .flex .item a .text,
.news.widget .flex-row .item a .text {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 1rem;
  color: rgb(140, 140, 140);
  font-size: 20px;
  line-height: 28px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .news.newslist .flex .item a .text,
.news.newslist .flex-row .item a .text, .news.widget .flex .item a .text,
.news.widget .flex-row .item a .text {
    padding: 3rem 3rem 4rem;
  }
}
@media (min-width: 992px) {
  .news.newslist .flex .item a .text,
.news.newslist .flex-row .item a .text, .news.widget .flex .item a .text,
.news.widget .flex-row .item a .text {
    padding: 2rem 2rem 4rem;
  }
}
@media (min-width: 1650px) {
  .news.newslist .flex .item a .text,
.news.newslist .flex-row .item a .text, .news.widget .flex .item a .text,
.news.widget .flex-row .item a .text {
    padding: 3rem 3rem 4rem;
  }
}
.news.newslist .flex .item a .text .externallink,
.news.newslist .flex-row .item a .text .externallink, .news.widget .flex .item a .text .externallink,
.news.widget .flex-row .item a .text .externallink {
  position: absolute;
  top: 0;
  color: rgb(255, 255, 255);
  font-size: 14px;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 1650px) {
  .news.newslist .flex .item a .text .externallink,
.news.newslist .flex-row .item a .text .externallink, .news.widget .flex .item a .text .externallink,
.news.widget .flex-row .item a .text .externallink {
    top: 1rem;
  }
}
.news.newslist .flex .item a .footer,
.news.newslist .flex-row .item a .footer, .news.widget .flex .item a .footer,
.news.widget .flex-row .item a .footer {
  z-index: 2;
  margin: 0;
  padding: 0;
  border-top: none;
}
.news.newslist .flex .item a .footer .date,
.news.newslist .flex-row .item a .footer .date, .news.widget .flex .item a .footer .date,
.news.widget .flex-row .item a .footer .date {
  position: absolute;
  top: 0;
  top: 2rem;
  left: 0;
  left: 2rem;
  padding: 6px 13px;
  border-radius: 2px;
  background: rgba(20, 21, 22, 0.7);
  color: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .news.newslist .flex .item a .footer .date,
.news.newslist .flex-row .item a .footer .date, .news.widget .flex .item a .footer .date,
.news.widget .flex-row .item a .footer .date {
    left: 3rem;
  }
}
@media (min-width: 992px) {
  .news.newslist .flex .item a .footer .date,
.news.newslist .flex-row .item a .footer .date, .news.widget .flex .item a .footer .date,
.news.widget .flex-row .item a .footer .date {
    left: 2rem;
  }
}
@media (min-width: 1650px) {
  .news.newslist .flex .item a .footer .date,
.news.newslist .flex-row .item a .footer .date, .news.widget .flex .item a .footer .date,
.news.widget .flex-row .item a .footer .date {
    left: 3rem;
  }
}
.news.newslist .flex .item a .footer .link,
.news.newslist .flex-row .item a .footer .link, .news.widget .flex .item a .footer .link,
.news.widget .flex-row .item a .footer .link {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  border-bottom: 1px solid;
  color: rgb(255, 255, 255);
  font-size: 70%;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.5;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .news.newslist .flex .item a .footer .link,
.news.newslist .flex-row .item a .footer .link, .news.widget .flex .item a .footer .link,
.news.widget .flex-row .item a .footer .link {
    left: 3rem;
  }
}
@media (min-width: 992px) {
  .news.newslist .flex .item a .footer .link,
.news.newslist .flex-row .item a .footer .link, .news.widget .flex .item a .footer .link,
.news.widget .flex-row .item a .footer .link {
    left: 2rem;
  }
}
@media (min-width: 1650px) {
  .news.newslist .flex .item a .footer .link,
.news.newslist .flex-row .item a .footer .link, .news.widget .flex .item a .footer .link,
.news.widget .flex-row .item a .footer .link {
    left: 3rem;
  }
}
.news.newslist .flex .item a .footer .link::before,
.news.newslist .flex-row .item a .footer .link::before, .news.widget .flex .item a .footer .link::before,
.news.widget .flex-row .item a .footer .link::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: rgb(217, 33, 40);
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.news.newslist .flex .item a:hover img,
.news.newslist .flex-row .item a:hover img, .news.widget .flex .item a:hover img,
.news.widget .flex-row .item a:hover img {
  -webkit-transition-duration: 4s;
          transition-duration: 4s;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.news.newslist .flex .item a:hover .link,
.news.newslist .flex-row .item a:hover .link, .news.widget .flex .item a:hover .link,
.news.widget .flex-row .item a:hover .link {
  opacity: 0.8;
}
.news.newslist .flex .item a:hover .link::before,
.news.newslist .flex-row .item a:hover .link::before, .news.widget .flex .item a:hover .link::before,
.news.widget .flex-row .item a:hover .link::before {
  width: 100%;
  visibility: visible;
}
.news.newslist .flex .item a:hover .date,
.news.newslist .flex-row .item a:hover .date, .news.widget .flex .item a:hover .date,
.news.widget .flex-row .item a:hover .date {
  background: rgb(255, 255, 255);
  color: rgb(35, 35, 35);
  -webkit-box-shadow: 0 0 20px rgba(23, 23, 23, 0.2);
          box-shadow: 0 0 20px rgba(23, 23, 23, 0.2);
}
.news.widget {
  margin-bottom: 5rem;
  padding: 0 30px;
  background-color: rgb(35, 38, 45);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .news.widget {
    padding: 0;
  }
}
.news.widget .intro {
  margin-bottom: 2rem;
}
.news.widget .intro > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.news.widget .intro > .container::before, .news.widget .intro > .container::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.news.widget .intro > .container h2 {
  margin: 0;
  padding: 0 30px;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}
.news.widget .flex-row {
  width: calc(100% + 30px);
  max-width: calc(100% + 30px);
  margin-right: -15px;
  margin-left: -15px;
}
.news.newslist .flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px 20px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.news.newslist .flex .item {
  width: 100%;
  padding: 0;
}

.news.newsitem footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newspage .main {
  padding: 3rem 0;
  background-color: rgb(35, 38, 45);
}

.newsdetailpage {
  background-color: rgb(35, 38, 45);
}
.newsdetailpage .news.newsitem article .pageheader {
  background-color: #1f2127;
}
.newsdetailpage .news.newsitem article .newscontent {
  background-color: #1f2127;
}
.newsdetailpage .news.newsitem article > .footer {
  margin-bottom: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #1f2127;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.newsdetailpage .news.newsitem article > .footer .share_options_website .btn {
  border-radius: 0 !important;
}
.newsdetailpage .news.newsitem article > .footer .share_options_website .btn.addthis_button_facebook {
  background: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.newsdetailpage .news.newsitem article > .footer .share_options_website .btn.addthis_button_facebook:hover {
  background: #01233c;
}
.newsdetailpage .news.newsitem article > .footer .share_options_website .btn.addthis_button_whatsapp {
  background: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.newsdetailpage .news.newsitem article > .footer .share_options_website .btn.addthis_button_whatsapp:hover {
  background: #01233c;
}
.newsdetailpage .news.newsitem article > .footer .share_options_website .btn.addthis_button_twitter {
  background: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.newsdetailpage .news.newsitem article > .footer .share_options_website .btn.addthis_button_twitter:hover {
  background: #01233c;
}
.newsdetailpage .news.newsitem article .widget.news.detail .back {
  display: none;
  visibility: hidden;
}

.widget.branchelogos {
  min-height: 80px;
  margin-bottom: 5rem;
  padding: 0;
  background: rgb(35, 38, 45);
}
.widget.branchelogos .owl-nav [class*=owl-] {
  background: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
}
.widget.branchelogos .owl-nav [class*=owl-]:hover {
  background: rgba(0, 0, 0, 0);
  color: rgb(140, 140, 140);
}
.widget.branchelogos .owl-dots .owl-dot span {
  border: 2px solid rgb(140, 140, 140);
}
.widget.branchelogos .owl-dots .owl-dot.active span, .widget.branchelogos .owl-dots .owl-dot:hover span {
  border: 2px solid rgb(140, 140, 140);
  background: rgb(140, 140, 140);
}
.widget.branchelogos .item {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget.branchelogos .item:hover {
  opacity: 1;
}

.widget.social .social {
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 0;
  color: rgb(255, 255, 255);
}
.widget.social .social:hover {
  text-decoration: none;
  background-color: rgb(217, 33, 40) !important;
}
.widget.social .social.social_facebook {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.social .social.social_twitter {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.social .social.social_linkedin {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.social .social.social_youtube {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.social .social.social_googleplus, .widget.social .social.social_instagram {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
.widget.social .social.social_googleplus i::before, .widget.social .social.social_instagram i::before {
  content: "\f16d";
}
.widget.social .social.social_pinterest {
  border-color: rgb(1, 65, 111);
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}

.websiteFooter .footerBottom .widget.social {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.websiteFooter .footerWidgets .widget.social {
  margin-top: 1rem;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.websiteFooter .footerWidgets .widget.social .social {
  margin-right: 4px;
}
.websiteFooter .footerWidgets .widget.social .social:last-child {
  margin-right: 0;
}

.social.social__googleplus i::before {
  content: "\f16d";
}

.recentlyviewed {
  background-color: rgba(1, 65, 111, 0.04);
}
.recentlyviewed .intro h2 {
  color: rgb(140, 140, 140);
}
.recentlyviewed .recentlyviewed-carousel .object {
  background-color: rgb(255, 255, 255);
}
.recentlyviewed .recentlyviewed-carousel .object .sys-project-type.full-width {
  background-color: #e6e6e6;
}

.module-testimonials .module-testimonials-content .testimonial {
  border-color: #1f2127;
  background-color: #1f2127;
  color: rgb(140, 140, 140);
}
.module-testimonials .module-testimonials-content .testimonial .testimonial-header .testimonial-title {
  color: rgb(217, 33, 40);
}
.module-testimonials .module-testimonials-content .testimonial .testimonial-header .testimonial-location {
  color: rgb(140, 140, 140);
}
.module-testimonials .module-testimonials-content .testimonial .testimonial-contact-image {
  border-color: rgb(1, 65, 111);
}
.module-testimonials .module-testimonials-content .testimonial .testimonial-content .testimonial-contact-name {
  color: rgb(140, 140, 140);
  font-weight: 500;
  font-style: normal;
  font-size: 85%;
  font-family: "Neutra Text TF", "Roboto", Arial, Helvetica, sans-serif;
}
.module-testimonials .module-testimonials-content .testimonial .testimonial-content .testimonial-contact-text {
  font-size: 16px;
}

.testimonials__author {
  margin-bottom: 1rem;
}
.testimonials__author .name {
  margin: 0;
}

.testimonials-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.testimonials-carousel .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.testimonials-carousel .owl-stage .owl-item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.testimonials-carousel .owl-nav {
  width: 90px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 100%;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.testimonials-carousel .owl-nav button[class*=owl-] {
  color: rgb(140, 140, 140);
  background: transparent;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonials-carousel .owl-nav button[class*=owl-]:hover {
  background: rgba(0, 0, 0, 0);
  color: rgb(140, 140, 140);
}
.testimonials-carousel .owl-nav button[class*=owl-].owl-next {
  right: 0;
  position: absolute;
}
.testimonials-carousel .owl-nav button[class*=owl-].owl-prev {
  left: 0;
  position: absolute;
}
.testimonials-carousel .owl-nav button[class*=owl-] .disabled {
  opacity: 0.5;
}

.page {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .page .sidebar {
    max-width: 45%;
    padding: 5rem 15px 2rem 100px;
  }
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) {
  background-color: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
  margin-bottom: 5rem;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) > .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 20px;
  background-color: #1f2127;
  color: rgb(140, 140, 140);
  text-align: center;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px;
  }
}
@media (min-width: 992px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .text {
    max-width: 50%;
  }
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .text .article-title {
  margin-bottom: 2rem;
  font-weight: normal;
  font-size: 2.4rem;
  font-family: "market_decoregular", serif, cursive;
  text-transform: uppercase;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .text .article-title span {
  display: block;
  margin: 0.3rem 0;
  font-weight: normal;
  font-size: 1.4rem;
  font-family: "Neutra Text TF", "Roboto", Arial, Helvetica, sans-serif;
  text-transform: none;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  overflow: hidden;
  width: 100%;
  background-color: #0d0e10;
  position: relative;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 576px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image {
    position: relative;
  }
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 50%;
  }
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 768px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image {
    position: relative;
  }
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
  }
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 768px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image {
    width: 50%;
  }
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .image > .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) h2 {
  position: relative;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 30px;
  height: 20px;
  padding: 4px;
  background-color: #1f2127;
  background-image: url("../2-beta/beeldmerk.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, 10px);
          transform: translate(-50%, 10px);
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) h2::after {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  margin: 1.5rem auto 0;
  background: rgba(255, 255, 255, 0.2);
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .text > p {
  width: 100%;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8) .btn-default {
  margin-bottom: 5px;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) {
  background-color: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
  margin-bottom: 5rem;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) > .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 20px;
  background-color: #1f2127;
  color: rgb(140, 140, 140);
  text-align: center;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -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;
    padding: 60px;
  }
}
@media (min-width: 992px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .text {
    max-width: 50%;
  }
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .text .article-title {
  margin-bottom: 2rem;
  font-weight: normal;
  font-size: 2.4rem;
  font-family: "market_decoregular", serif, cursive;
  text-transform: uppercase;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .text .article-title span {
  display: block;
  margin: 0.3rem 0;
  font-weight: normal;
  font-size: 1.4rem;
  font-family: "Neutra Text TF", "Roboto", Arial, Helvetica, sans-serif;
  text-transform: none;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  overflow: hidden;
  width: 100%;
  background-color: #0d0e10;
  position: relative;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image > .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 576px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image {
    position: relative;
  }
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 50%;
  }
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 768px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image {
    position: relative;
  }
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
  }
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image > .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 768px) {
  .page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 50%;
  }
}
.page .sys-textblock:not(.textblock1, .textblock6, .textblock7, .textblock8):nth-child(2n) .image > .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
.page .textblock6 {
  margin-bottom: 5rem;
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(140, 140, 140);
  background-color: #1f2127;
  padding: 60px 0 calc(60px - 1rem);
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  text-align: center;
}
@media (min-width: 1200px) {
  .page .textblock6 {
    padding: 100px 0 calc(100px - 1rem);
  }
}
.page .textblock6 .text {
  position: relative;
  z-index: 2;
  color: rgb(140, 140, 140);
}
.page .textblock6 .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.page .textblock6 .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page .textblock6 .article-title {
  margin-bottom: 2rem;
  font-weight: normal;
  font-size: 2.4rem;
  font-family: "market_decoregular", serif, cursive;
  text-transform: uppercase;
  position: relative;
}
.page .textblock6 .article-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 30px;
  height: 20px;
  padding: 4px;
  background-color: #1f2127;
  background-image: url("../2-beta/beeldmerk.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, 10px);
          transform: translate(-50%, 10px);
}
.page .textblock6 .article-title::after {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  margin: 1.5rem auto 0;
  background: rgba(255, 255, 255, 0.2);
}
.page .textblock6 .article-title span {
  display: block;
  margin: 0.3rem 0;
  font-weight: normal;
  font-size: 1.4rem;
  font-family: "Neutra Text TF", "Roboto", Arial, Helvetica, sans-serif;
  text-transform: none;
}
.page .textblock7 {
  background-color: #1f2127;
  color: rgb(255, 255, 255);
  padding: 0;
  margin-bottom: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://hayweb.blob.core.windows.net/public/zz80ul/2-beta/rotterdam.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .page .textblock7 {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .page .textblock7 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.page .textblock7 .text {
  color: rgb(255, 255, 255);
  text-align: left;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .page .textblock7 .text {
    max-width: 55%;
  }
}
.page .textblock7 .text p:last-child {
  margin-bottom: 0;
}
.page .textblock7 .article-title {
  color: rgb(255, 255, 255);
  font-weight: normal;
  font-size: 2.4rem;
  font-family: "market_decoregular", serif, cursive;
  letter-spacing: 0;
}
.page .textblock7 .article-title span {
  color: rgb(217, 33, 40);
}
.page .textblock7 > .container {
  margin: 0 auto;
  padding: 0 30px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 576px) {
  .page .textblock7 > .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .page .textblock7 > .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .page .textblock7 > .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .page .textblock7 > .container {
    max-width: 1140px;
  }
}
@media (min-width: 1450px) {
  .page .textblock7 > .container {
    max-width: 1340px;
  }
}
@media (min-width: 1650px) {
  .page .textblock7 > .container {
    max-width: 1450px;
  }
}
.page .textblock7 > .container .text {
  padding: 0;
}

.grid-cards .card {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.grid-cards .card__content .btn {
  margin-top: 1rem;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}
.grid-cards .card__content .btn:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(1, 65, 111);
}
.grid-cards .card__funda {
  background-color: rgb(146, 91, 0);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 2px 0 0 #694200;
          box-shadow: 0 2px 0 0 #694200;
}
.grid-cards .card__funda img {
  max-width: 80px;
}
.grid-cards .card__funda .btn:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(146, 91, 0);
}
.grid-cards .card-primary {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 2px 0 0 #012947;
          box-shadow: 0 2px 0 0 #012947;
}
.grid-cards .card-success {
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 2px 0 0 #208637;
          box-shadow: 0 2px 0 0 #208637;
}
.grid-cards .card-info {
  background-color: rgb(23, 162, 184);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 2px 0 0 #128294;
          box-shadow: 0 2px 0 0 #128294;
}
.grid-cards .card-warning {
  background-color: rgb(233, 145, 29);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 2px 0 0 #ca7b14;
          box-shadow: 0 2px 0 0 #ca7b14;
}
.grid-cards .card-danger {
  background-color: rgb(220, 53, 69);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 2px 0 0 #c62232;
          box-shadow: 0 2px 0 0 #c62232;
}

.form-input-wide {
  width: 100%;
}

.objects.search #object-search #query .filter-container.card .card-header .card-title {
  color: rgb(140, 140, 140);
  font-weight: 500;
}
.objects.search #object-search #query .card {
  border-color: rgb(98, 98, 98);
  background-color: rgb(35, 38, 45);
}
.objects.search #object-search #query .card-header {
  background-color: #1f2127;
}
.objects.search #object-search #query .card-header .card-title {
  color: rgb(255, 255, 255);
}
.objects.search #object-search #query .card-body {
  background-color: transparent;
}
.objects.search #object-search #query .sys-search-radius {
  width: calc(30% - 15px);
}
.objects.search #object-search #query .select2-container.sys-location-filter {
  border-radius: 0;
}
.objects.search #object-search #query .select2-container.sys-location-filter.sys-search-radius-active {
  width: 70%;
}
.objects.search #object-search #query .select2-container.sys-location-filter.select2-container-active {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.objects.search #object-search #query .select2-container.sys-location-filter .select2-choice {
  height: 38px;
  border-color: rgb(98, 98, 98);
  border-color: rgb(98, 98, 98);
  border-radius: 0;
  background-color: rgb(24, 26, 31);
  color: rgb(140, 140, 140);
}
.objects.search #object-search #query .select2-container.sys-location-filter .select2-choice .select2-arrow {
  background-color: rgb(24, 26, 31);
  color: rgb(140, 140, 140);
}
.objects.search #object-search #query .select2-container.sys-location-filter .select2-choice > .select2-chosen {
  color: rgb(140, 140, 140);
}
.objects.search #object-search #query .select2-container.sys-location-filter .select2-choice .select2-search-choice-close {
  background: rgb(35, 38, 45);
}
.objects.search #object-search #query .select2-container.sys-location-filter .select2-choice .select2-search-choice-close::after {
  content: "/f00d";
  font-weight: 300;
  font-size: 16px;
  font-family: "Font Awesome 5 Pro";
}

.searchresults.berlin .object_search_header .object_search_layout .btn {
  margin-right: 0.6rem;
}
.searchresults.berlin .object_search_header .object_search_layout .btn.map {
  display: none;
}
.searchresults.berlin #sys-search-result-filters .filter.filter_object_salerent, .searchresults.berlin #sys-search-result-filters .filter.filter_countries, .searchresults.berlin #sys-search-result-filters .filter.filter_availability, .searchresults.berlin #sys-search-result-filters .filter.filter_buildable_area, .searchresults.berlin #sys-search-result-filters .filter.filter_livable_area, .searchresults.berlin #sys-search-result-filters .filter.filter_fitment, .searchresults.berlin #sys-search-result-filters .filter.filter_buildingPeriods, .searchresults.berlin #sys-search-result-filters .filter.filter_States, .searchresults.berlin #sys-search-result-filters .filter.filter_object_properties, .searchresults.berlin #sys-search-result-filters .filter.filter_object_characteristics, .searchresults.berlin #sys-search-result-filters .filter.filter_object_near_to {
  display: none;
  visibility: hidden;
}
.searchresults.berlin .widget.filter {
  background-color: #1f2127;
}
.searchresults.berlin .widget.filter .btn {
  border: 1px solid rgb(98, 98, 98);
  color: rgb(140, 140, 140);
}
.searchresults.berlin .widget.filter .btn::before {
  display: none;
}
.searchresults.berlin .widget.filter .btn .text {
  background-color: #1f2127;
}
.searchresults.berlin .widget.filter .btn .text .filterTitle {
  color: rgb(140, 140, 140);
  font-weight: 500;
  font-size: 14px;
}
.searchresults.berlin .widget.filter .btn .text .filterActive {
  opacity: 1;
}
.searchresults.berlin .widget.filter > .filter-content {
  border-color: rgb(98, 98, 98);
  background-color: rgb(31, 33, 39);
  color: rgb(140, 140, 140);
}
.searchresults.berlin .widget.filter.filter_object_location .select2-container.sys-location .select2-choice .select2-search-choice-close {
  background-color: #1f2127;
}
.searchresults.berlin .widget.filter.filter_object_location .sys-search-radius {
  border: 1px solid rgb(98, 98, 98);
  background-color: #1f2127;
  color: rgb(140, 140, 140);
}
.searchresults.berlin .widget.filter.filter_object_location .sys-search-radius .form-control {
  border: none;
  color: rgb(140, 140, 140);
}
.searchresults.berlin .object_list .object {
  border-color: rgb(98, 98, 98);
  background-color: #1f2127;
}
.searchresults.berlin .object_list .object .object_status {
  background-color: rgba(255, 255, 255, 0.9);
  color: rgb(0, 0, 0);
  -webkit-transition: -webkit-transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}
.searchresults.berlin .object_list .object .object_status.rented, .searchresults.berlin .object_list .object .object_status.sold {
  background-color: rgba(217, 33, 40, 0.9);
  color: rgb(255, 255, 255);
}
.searchresults.berlin .object_list .object .object_status.rented_under_conditions, .searchresults.berlin .object_list .object .object_status.sold_under_conditions {
  background-color: rgba(217, 33, 40, 0.9);
  color: rgb(255, 255, 255);
}
.searchresults.berlin .object_list .object .object_status.new_forsale, .searchresults.berlin .object_list .object .object_status.new_forrent {
  background-color: rgba(1, 65, 111, 0.9);
  color: rgb(255, 255, 255);
}
.searchresults.berlin .object_list .object .object_status.price_changed, .searchresults.berlin .object_list .object .object_status.has_received_bid {
  background-color: rgba(23, 162, 184, 0.9);
  color: rgb(255, 255, 255);
}
.searchresults.berlin .object_list .object a,
.searchresults.berlin .object_list .object a:hover {
  color: rgb(1, 65, 111);
}
.searchresults.berlin .object_list .object .datashort {
  -webkit-transition: -webkit-transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}
.searchresults.berlin .object_list .object .data {
  background-color: rgba(255, 255, 255, 0.9);
  color: rgb(1, 65, 111);
}
.searchresults.berlin .object_list .object .data .obj_price {
  color: rgb(1, 65, 111);
}
.searchresults.berlin .object_list .object .data .obj_address .street {
  color: rgb(1, 65, 111);
  font-weight: 600;
}
.searchresults.berlin .object_list .object .data .obj_address .locality,
.searchresults.berlin .object_list .object .data .obj_address .zipcode {
  color: rgb(1, 65, 111);
}
.searchresults.berlin .object_list .object.special_object .data {
  background-color: #131519;
}
.searchresults.berlin .object_list .object:hover .object_status {
  -webkit-transform: translate(-50%, -200%);
          transform: translate(-50%, -200%);
}
.searchresults.berlin .object_list .object:hover .datashort {
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
}
.searchresults.berlin .object_list .object > .data {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.searchresults.berlin .object_list .object > .data::after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 33px;
  margin-top: 0.5rem;
  background-image: url("//hayweb.blob.core.windows.net/public/zz80ul/2-beta/beeldmerk.svg");
  background-size: contain;
}
.searchresults.berlin .object_list .object > .data .saletitle {
  display: none;
}
.searchresults.berlin .object_list .object > .data .stats {
  display: none;
}
.searchresults.berlin .object_list .object > .data .object_data_labels {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
.searchresults.berlin .object_list.list .object .data {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.searchresults.berlin .object_list.list .object .data::after {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.searchresults.berlin .object_list.list .object .data .stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.searchresults.berlin .object_list.list .object .data .object_data_labels {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.searchdetail.berlin .realtorinfo-large .object_detail_department_logo {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 250px;
}
.searchdetail.berlin .wrapper .objectheader .bx-wrapper {
  background-color: #1f2127;
}
.searchdetail.berlin .wrapper .objectheader .object_status {
  background-color: rgba(255, 255, 255, 0.9);
}
.searchdetail.berlin .wrapper .objectheader .object_status.topper {
  background-color: rgb(1, 65, 111);
}
.searchdetail.berlin .wrapper .objectheader .object_status.new_forsale, .searchdetail.berlin .wrapper .objectheader .object_status.new_forrent {
  background-color: rgba(1, 65, 111, 0.9);
}
.searchdetail.berlin .wrapper .objectheader .object_status.price_changed, .searchdetail.berlin .wrapper .objectheader .object_status.has_received_bid {
  background-color: rgba(23, 162, 184, 0.9);
}
.searchdetail.berlin .wrapper .objectheader .object_status.rented_under_conditions, .searchdetail.berlin .wrapper .objectheader .object_status.sold_under_conditions {
  background-color: rgba(217, 33, 40, 0.9);
}
.searchdetail.berlin .wrapper .objectheader .object_status.sold, .searchdetail.berlin .wrapper .objectheader .object_status.rented {
  background-color: rgba(217, 33, 40, 0.9);
}
.searchdetail.berlin .wrapper .objectheader .data .obj_price {
  color: rgb(140, 140, 140);
}
.searchdetail.berlin .wrapper .wrapper .objectheader {
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 768px) {
  .searchdetail.berlin .wrapper .wrapper .objectheader .object_status {
    -webkit-transform: translate(0, 80px);
            transform: translate(0, 80px);
  }
  .searchdetail.berlin .wrapper .wrapper .objectheader .object_status.mela, .searchdetail.berlin .wrapper .wrapper .objectheader .object_status.signature {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}
.searchdetail.berlin .wrapper .realtorinfo-small::before {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(23, 23, 23, 0.95)), color-stop(88%, rgba(23, 23, 23, 0)));
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.95) 0, rgba(23, 23, 23, 0) 88%);
}
.searchdetail.berlin .wrapper .realtorinfo-large {
  background-color: #1f2127;
  /* 
  .ctaoptions {
    background-color: transparent;

    .whatsapp {
      border-color: $font-base-color;
      background-color: transparent;

      &:hover {
        background-color: transparent;
      }
    }
  }
  */
}
.searchdetail.berlin .wrapper .realtorinfo-large .ctaoptions {
  background-color: #1f2127;
}
.searchdetail.berlin .wrapper .realtorinfo-large .data {
  background-color: transparent;
  color: rgb(140, 140, 140);
}
.searchdetail.berlin .wrapper .realtorinfo-large .data .object_detail_contact_name {
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-family: "Neutra Text TF", "Roboto", Arial, Helvetica, sans-serif;
  letter-spacing: -0.5px;
}
.searchdetail.berlin .wrapper .realtorinfo-large .data .object_detail_contact_email,
.searchdetail.berlin .wrapper .realtorinfo-large .data .object_detail_department_phone,
.searchdetail.berlin .wrapper .realtorinfo-large .data .object_detail_contact_mobile,
.searchdetail.berlin .wrapper .realtorinfo-large .data .object_detail_contact_mobilephone,
.searchdetail.berlin .wrapper .realtorinfo-large .data .object_detail_contact_phone,
.searchdetail.berlin .wrapper .realtorinfo-large .data .object_detail_department_email,
.searchdetail.berlin .wrapper .realtorinfo-large .data .object_detail_department_mobile,
.searchdetail.berlin .wrapper .realtorinfo-large .data .object_detail_department_mobilephone,
.searchdetail.berlin .wrapper .realtorinfo-large .data .data .object_detail_department_phone,
.searchdetail.berlin .wrapper .realtorinfo-large .data .data .object_detail_department_website {
  color: rgb(140, 140, 140);
}
.searchdetail.berlin .wrapper .actionbar {
  background-color: #1f2127;
}
.searchdetail.berlin .wrapper .block {
  background-color: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
}
.searchdetail.berlin .wrapper .block:nth-child(2n) {
  background-color: #1f2127;
}
.searchdetail.berlin .wrapper #nav-features table,
.searchdetail.berlin .wrapper .table {
  color: rgb(140, 140, 140);
}
.searchdetail.berlin .wrapper #nav-features table td,
.searchdetail.berlin .wrapper #nav-features table th,
.searchdetail.berlin .wrapper .table td,
.searchdetail.berlin .wrapper .table th {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.searchdetail.berlin .wrapper #nav-features table th,
.searchdetail.berlin .wrapper .table th {
  background-color: rgba(255, 255, 255, 0.2);
}
.searchdetail.berlin .wrapper #nav-features table td,
.searchdetail.berlin .wrapper .table td {
  color: rgb(140, 140, 140);
}
.searchdetail.berlin .wrapper .ctabar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #1f2127;
  /*
  .btn,
  .btn:hover {
    background-color: transparent;
    color: $font-base-color;

  }
  */
}
.searchdetail.berlin .object-modal .object-modal-body {
  background: #1f2127;
  color: rgb(140, 140, 140);
}
.searchdetail.berlin .object-modal .object-modal-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgb(35, 38, 45);
}
.searchdetail.berlin .object-modal .object-modal-nav .btn {
  margin-right: 0.5rem;
}
.searchdetail.berlin .object-modal .object-modal-nav .btn:hover {
  background-color: transparent;
}
.searchdetail.berlin .object-modal .object-modal-close {
  color: rgb(217, 33, 40);
}
.searchdetail.berlin .fancybox-container .fancybox-bg {
  background: #1f2127;
}
.searchdetail.berlin .fancybox-container .fancybox-button {
  background: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
}

#sys-searchresult-view-map .results .listings .listing .listing-image .object_status {
  background-color: rgba(255, 255, 255, 0.9);
}
#sys-searchresult-view-map .results .listings .listing .listing-image .object_status.topper {
  background-color: rgb(1, 65, 111);
}
#sys-searchresult-view-map .results .listings .listing .listing-image .object_status.new_forsale, #sys-searchresult-view-map .results .listings .listing .listing-image .object_status.new_forrent {
  background-color: rgba(1, 65, 111, 0.9);
}
#sys-searchresult-view-map .results .listings .listing .listing-image .object_status.price_changed, #sys-searchresult-view-map .results .listings .listing .listing-image .object_status.has_received_bid {
  background-color: rgba(23, 162, 184, 0.9);
}
#sys-searchresult-view-map .results .listings .listing .listing-image .object_status.rented_under_conditions, #sys-searchresult-view-map .results .listings .listing .listing-image .object_status.sold_under_conditions {
  background-color: rgba(217, 33, 40, 0.9);
}
#sys-searchresult-view-map .results .listings .listing .listing-image .object_status.sold, #sys-searchresult-view-map .results .listings .listing .listing-image .object_status.rented {
  background-color: rgba(217, 33, 40, 0.9);
}
#sys-searchresult-view-map .infoBox .object_status {
  background-color: rgba(255, 255, 255, 0.9);
}
#sys-searchresult-view-map .infoBox .object_status.topper {
  background-color: rgb(1, 65, 111);
}
#sys-searchresult-view-map .infoBox .object_status.new_forsale, #sys-searchresult-view-map .infoBox .object_status.new_forrent {
  background-color: rgba(1, 65, 111, 0.9);
}
#sys-searchresult-view-map .infoBox .object_status.price_changed, #sys-searchresult-view-map .infoBox .object_status.has_received_bid {
  background-color: rgba(23, 162, 184, 0.9);
}
#sys-searchresult-view-map .infoBox .object_status.rented_under_conditions, #sys-searchresult-view-map .infoBox .object_status.sold_under_conditions {
  background-color: rgba(217, 33, 40, 0.9);
}
#sys-searchresult-view-map .infoBox .object_status.sold, #sys-searchresult-view-map .infoBox .object_status.rented {
  background-color: rgba(217, 33, 40, 0.9);
}
#sys-searchresult-view-map .sys-close-map {
  color: rgb(140, 140, 140);
}
#sys-searchresult-view-map .sys-close-map:hover {
  color: rgb(140, 140, 140);
}

.searchdetail.berlin #nav-features table {
  color: rgb(140, 140, 140);
}
.searchdetail.berlin #nav-features table th {
  background: rgb(35, 38, 45);
}

.object_list_paging .pagination .sys_paging {
  color: rgb(140, 140, 140);
}
.object_list_paging .pagination .sys_paging.prev-page, .object_list_paging .pagination .sys_paging.next-page, .object_list_paging .pagination .sys_paging.first-page, .object_list_paging .pagination .sys_paging.last-page, .object_list_paging .pagination .sys_paging.other-page {
  color: rgb(140, 140, 140);
}
.object_list_paging .pagination .sys_paging.current-page {
  color: #fff;
}

.companypage {
  background-color: rgb(35, 38, 45);
}
.companypage .company__pageheader {
  background-color: rgb(51, 51, 51);
}
.companypage .company__map .mapboxgl-marker svg g {
  fill: rgb(217, 33, 40);
}
.companypage .company__container {
  background-color: #1f2127;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.companypage .company__details {
  background: rgb(1, 65, 111);
  background: -webkit-gradient(linear, left top, left bottom, from(#01416f), to(#013256));
  background: linear-gradient(180deg, #01416f 0%, #013256 100%);
  color: rgb(255, 255, 255);
}
.companypage .company__details h1 {
  color: rgb(255, 255, 255);
}
.companypage .company__details a {
  color: rgb(255, 255, 255);
}

.websiteFooter {
  padding: 0;
  border-top: 1px solid rgba(140, 140, 140, 0.1);
  background-color: rgb(35, 38, 45);
  color: rgb(140, 140, 140);
}
.websiteFooter > .container {
  padding: 0;
}
.websiteFooter .footerWidgets {
  padding: 60px 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .websiteFooter .footerWidgets {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.websiteFooter .footerWidgets .widgetTitle {
  color: rgb(255, 255, 255);
}
.websiteFooter .footerWidgets .widget.company i {
  color: rgb(1, 65, 111);
}
.websiteFooter .footerWidgets .widget.company .company.name {
  color: rgb(140, 140, 140);
}
.websiteFooter .footerWidgets .widget.company a {
  color: rgb(140, 140, 140);
}
.websiteFooter .footerWidgets .widget.company a:hover {
  color: rgb(1, 65, 111);
}
.websiteFooter .footerWidgets .widget.offices .widgetContent .office .branchName .branchName,
.websiteFooter .footerWidgets .widget.offices .widgetContent .office .branchName .officeName,
.websiteFooter .footerWidgets .widget.offices .widgetContent .office .officeName .branchName,
.websiteFooter .footerWidgets .widget.offices .widgetContent .office .officeName .officeName,
.websiteFooter .footerWidgets .widget.offices .widgetContent .branch .branchName .branchName,
.websiteFooter .footerWidgets .widget.offices .widgetContent .branch .branchName .officeName,
.websiteFooter .footerWidgets .widget.offices .widgetContent .branch .officeName .branchName,
.websiteFooter .footerWidgets .widget.offices .widgetContent .branch .officeName .officeName,
.websiteFooter .footerWidgets .widget.branches .widgetContent .office .branchName .branchName,
.websiteFooter .footerWidgets .widget.branches .widgetContent .office .branchName .officeName,
.websiteFooter .footerWidgets .widget.branches .widgetContent .office .officeName .branchName,
.websiteFooter .footerWidgets .widget.branches .widgetContent .office .officeName .officeName,
.websiteFooter .footerWidgets .widget.branches .widgetContent .branch .branchName .branchName,
.websiteFooter .footerWidgets .widget.branches .widgetContent .branch .branchName .officeName,
.websiteFooter .footerWidgets .widget.branches .widgetContent .branch .officeName .branchName,
.websiteFooter .footerWidgets .widget.branches .widgetContent .branch .officeName .officeName {
  color: rgb(140, 140, 140);
}
.websiteFooter .footerWidgets .widget.offices .widgetContent .office a,
.websiteFooter .footerWidgets .widget.offices .widgetContent .branch a,
.websiteFooter .footerWidgets .widget.branches .widgetContent .office a,
.websiteFooter .footerWidgets .widget.branches .widgetContent .branch a {
  color: rgb(140, 140, 140);
}
.websiteFooter .footerWidgets .widget.offices .widgetContent .office a i,
.websiteFooter .footerWidgets .widget.offices .widgetContent .branch a i,
.websiteFooter .footerWidgets .widget.branches .widgetContent .office a i,
.websiteFooter .footerWidgets .widget.branches .widgetContent .branch a i {
  color: rgb(1, 65, 111);
}
.websiteFooter .footerWidgets .widget.offices .widgetContent .office a:hover,
.websiteFooter .footerWidgets .widget.offices .widgetContent .branch a:hover,
.websiteFooter .footerWidgets .widget.branches .widgetContent .office a:hover,
.websiteFooter .footerWidgets .widget.branches .widgetContent .branch a:hover {
  color: rgb(1, 65, 111);
}
.websiteFooter .footerWidgets .widget.offices .widgetContent .office .officeFax i,
.websiteFooter .footerWidgets .widget.offices .widgetContent .branch .officeFax i,
.websiteFooter .footerWidgets .widget.branches .widgetContent .office .officeFax i,
.websiteFooter .footerWidgets .widget.branches .widgetContent .branch .officeFax i {
  color: rgb(1, 65, 111);
}
.websiteFooter .footerWidgets .widget.offices.minimal ul li a,
.websiteFooter .footerWidgets .widget.branches.minimal ul li a {
  color: rgb(140, 140, 140);
}
.websiteFooter .footerWidgets .widget.offices.minimal ul li a i,
.websiteFooter .footerWidgets .widget.branches.minimal ul li a i {
  color: rgb(1, 65, 111);
}
.websiteFooter .footerWidgets .widget.offices.minimal ul li a:hover,
.websiteFooter .footerWidgets .widget.branches.minimal ul li a:hover {
  color: rgb(1, 65, 111);
}
.websiteFooter .footerWidgets > .col-lg-3 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .websiteFooter .footerWidgets > .col-lg-3 {
    padding-left: 0;
    padding-right: 60px !important;
  }
}
.websiteFooter .footerWidgets .footerMenu {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .websiteFooter .footerWidgets .footerMenu {
    padding-right: 0;
    padding-left: 30px !important;
  }
}
.websiteFooter .footerWidgets .footerMenu ul li a {
  color: rgb(140, 140, 140);
}
.websiteFooter .footerWidgets .footerMenu ul li a i {
  color: rgb(1, 65, 111);
}
.websiteFooter .footerWidgets .footerMenu ul li a:hover {
  color: rgb(1, 65, 111);
}
.websiteFooter .footerBottom {
  max-width: 100%;
  padding: 0 30px;
  border-top: 1px solid rgba(140, 140, 140, 0.05);
}
.websiteFooter .footerBottom .copyright {
  color: rgb(140, 140, 140);
}
.websiteFooter .footerBottom .subfooterMenu > li > a {
  border-bottom: 1px solid rgb(140, 140, 140);
  color: rgb(140, 140, 140);
}
.websiteFooter .footerBottom .subfooterMenu > li > a:hover {
  border-bottom: 1px solid rgb(1, 65, 111);
  color: rgb(1, 65, 111);
}

.widget.whatsapp {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}
.widget.whatsapp .whatsapp__button {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  color: rgb(0, 0, 0);
  font-size: 18px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  /* max 576px */
  /* max 576px */
  /* max 576px */
  /* 576px */
}
@media (min-width: 992px) {
  .widget.whatsapp .whatsapp__button {
    width: 40px;
    height: 40px;
  }
}
.widget.whatsapp .whatsapp__button:hover, .widget.whatsapp .whatsapp__button.open {
  background-color: rgb(1, 65, 111);
  color: rgb(255, 255, 255);
}
/*# sourceMappingURL=customer.css.map */