* {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

html, body {
    height: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

.large-pad {
    padding-left: 10%;
    padding-right: 10%;
}

.pad-top {
    padding-top: 5rem;
}

.pad-bottom {
    padding-bottom: 5rem;
}

.margin-top {
    margin-top: 5rem;
}

.margin-bottom {
    margin-bottom: 5rem;
}

.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 500;
}

.blue-text {
    color: #04A2E6;
}

.white-bg {
    background-color: #ffffff;
}

.dark-bg {
    background-color: #707070;
}

.shadow-panel {
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.16);
            box-shadow: 0 3px 6px rgba(0,0,0,.16)
}

@media (max-width:1365px) {
    .large-pad {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width:1199px) {
    .large-pad {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width:767px) {
    .large-pad {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* *** NAVBAR *** */
/******************/

header {
    border-bottom: 1px solid #707070;
    position: relative;
    z-index: 1;
}

nav {
    background-color: #ffffff;
    min-height: 0;
    -webkit-transition: all .35s ease-out;
    -o-transition: all .35s ease-out;
    transition: all .35s ease-out;
}

.nav-logo {
    transform: translateY(-.5rem);
}

.gradient-logo {
    position: absolute;
    top: 0;
    background: #04A2E6;
    background: -moz-linear-gradient(45deg, #2e3192 0%, #00afef 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #2e3192), color-stop(100%, #00afef));
    background: -webkit-linear-gradient(45deg, #2e3192 0%, #00afef 100%);
    background: -o-linear-gradient(45deg, #2e3192 0%, #00afef 100%);
    background: -ms-linear-gradient(45deg, #2e3192 0%, #00afef 100%);
    background: linear-gradient(45deg, #2e3192 0%, #00afef 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e3192', endColorstr='#00afef', GradientType=1 );
}

.nav-logo-home {
    width: 100%;
    width: 300px;
    height: 300px;
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
}

.navbar-brand {
    width: 100%;
    /* padding: 0.875rem 2.5rem; */
    margin-right: 0;
}

.nav-logo-home .navbar-brand {
    padding: 3rem;
}

.navbar-brand img {
    width: 100%;
}

.nav-logo-home .navbar-brand img {
    width: 100%;
}

.nav-logo p {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    margin-top: 1rem;
}

.nav-logo-home p {
    padding: .875rem 3rem 3rem;
    white-space: nowrap;
    font-size: .9375rem;
}

.navbar-collapse {
    padding-left: 140px;
}

.nav-logo-home ~ .navbar-collapse {
    padding-left: 0;
}

.navbar-toggler {
    border: 0;
    position: relative;
    z-index: 100;
}

.navbar-light .navbar-nav .nav-item .nav-link {
    font-family: 'Oswald', sans-serif;
    padding-left: .75rem;
    padding-right: .75rem;
    color: #000000;
    padding-bottom: 1.5rem;
}

.navbar-light .navbar-nav .nav-item .nav-link.blue-text {
    color: #04A2E6;
}

.navbar-light .navbar-nav .nav-item:first-child .nav-link {
    padding-left: 0;
}

/* Dropdown */
header::before {
    content: ' ';
    background-color: #363636;
    width: 100%;
    height: 42px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: bottom .1s ease-out;
}

header.show-submenu::before {
    bottom: -43px;
}

#main-nav .dropdown-toggle {
    position: relative;
}

#main-nav .dropdown-toggle::after {
    top: 2.5rem;
    left: 40%;
    position: absolute;
    border-top-color: #04A2E6;
    transition: all .1s ease-out;
}

#main-nav .dropdown-toggle:focus::after,
#main-nav .dropdown-toggle:hover::after {
    top: 3.5rem;
    border-top-color: #FFFFFF;
}

#main-nav .navbar-nav > .nav-item {
    background-color: #FFFFFF;
}

#main-nav .nav-item {
    position: relative;
}

#main-nav .sub-menu {
    position: absolute;
    background-color: #363636;
    color: #FFFFFF;
    top: 0;
    padding: 0;
    white-space: nowrap;
    transform: translateX(-24%);
    transition: all .1s ease-out;
    z-index: -5;
}

#main-nav .dropdown-toggle:nth-child(5) .sub-menu {
    transform: translateX(-32%);
}

#main-nav .dropdown-toggle:nth-child(6) .sub-menu {
    transform: translateX(-18%);
}

header.show-submenu #main-nav .dropdown-toggle .nav-link:focus + .sub-menu,
header.show-submenu #main-nav .dropdown-toggle:hover .sub-menu {
    top: 57px;
    z-index: 0;
}

#main-nav .sub-menu li {
    display: inline-block;
}

#main-nav .sub-menu li a {
    padding: .5rem 1rem;
    color: #FFFFFF;
}

nav .dropdown-menu {
    background-color: #04A2E6;
    border-radius: 0;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

nav .dropdown-menu a.dropdown-item {
    color: #ffffff;
}

nav .dropdown-menu a.dropdown-item:focus,
nav .dropdown-menu a.dropdown-item:hover {
    color: #ffffff;
    text-decoration: underline;
    background-color: transparent;
}

#thirty-years {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 40;
    text-align: right;
}

#thirty-years img {
    width: 100px;
}

@media (max-width: 1199px) {
    .navbar-light .navbar-nav .nav-item .nav-link {
        padding-left: .5rem;
        padding-right: .5rem;
    }
}

@media (max-width: 991px) {
    .nav-logo {
        position: absolute;
        -webkit-transform: translate(-50%, .5rem);
        -ms-transform: translate(-50%, .5rem);
            transform: translate(-50%, .5rem);
        left: 50%;
        top: 0;
        width: auto;
        max-width: 165px;
        height: auto;
    }

    .nav-logo-home .navbar-brand {
        padding: 1.25rem;
    }
    
    .nav-logo-home .navbar-brand img {
        width: 125px;
    }

    .navbar-collapse {
        padding-left: 1rem;
    }
    
    .navbar-light .navbar-nav .nav-item .nav-link {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: .5rem;
    }

    #main-nav .navbar-nav > .nav-item {
        background-color: transparent;
    }
    
    #main-nav .dropdown-toggle::after {
        display: none;
    }
    
    #main-nav .sub-menu {
        position: static;
        background-color: transparent;
    }

    #main-nav .dropdown-toggle:nth-child(n) .sub-menu {
        transform: none;
    }

    #main-nav .sub-menu li {
        display: block;
    }

    #main-nav .sub-menu li a {
        color: #000000;
    }
}

@media (max-width: 585px) {
    .nav-logo {
        transform: translate(-50%, .25rem);
    }
    .nav-logo .navbar-brand {
        max-width: 130px;
        padding: 0.875rem 2.25rem;
    }

    .nav-logo-home .navbar-brand {
        padding: 1rem;
    }

    .nav-logo-home .navbar-brand img {
        width: 98px;
    }

    #thirty-years img {
        width: 75px;
    }
}

/* *** HOME PAGE *** */
/*********************/

/*** HOME - Slider ***/

.slider-container, #slider, .slide {
    height: 100%;
    position: relative;
}

.slider-container {
    height: 90%;
    height: calc(100% - 73px);
}

.slick-list,
.slick-track,
.slick-slide div {
    height: 100%;
}

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

.slick-prev, .slick-next {
    z-index: 1;
}

.slick-prev {
    left: 25px;
}

.slick-next {
    right: 35px;
}

.slide img {
    width: 100%;
}

.slide-caption {
    position: relative;
    max-width: 640px;
}

.slide-caption h1  {
    color: #ffffff;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
    font-size: 2rem;
    position: absolute;
    bottom: 6rem;
}

.btn-strate {
    padding: .625rem 2.75rem;
    background-color: #04A2E6;
    color: #ffffff;
    font-weight: 300;
    display: inline-block;
    border: 0;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    cursor: pointer;
}

.btn-strate:hover, .btn-strate:focus {
    color: #ffffff;
    text-decoration: none;
    background-color: #00afef;
}

@media (max-width:991px) {
    .slide-caption {
        max-width: 100%;
    }
    
    .slide-caption h1  {
        bottom: auto;
        top: 40%;
        position: relative;
    }
}

@media (max-width:575px) {
    .slide-caption h1  {
        top: 20%;
    }
}

/*** HOME - Search ***/

.home-search-container {
    position: absolute;
    bottom: 6rem;
    right: 0;
}

.search-form-container {
    min-width: 400px;
}

.search-form-container {
    padding: 1.75rem 2.5rem 0;
}

.home-search-container .search-form-container {
    background-color: rgba(255,255,255,.9);
    padding: 1.25rem 2rem;
}

h4.search-title {
    font-family: 'Oswald', sans-serif;
    color: #04A2E6;
    font-weight: 300;
    margin: 0;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.home-search-container .bootstrap-select {
    width: 100%!important;
    margin-bottom: 1rem;
}

.home-search-container .bootstrap-select button {
    background-color: #ffffff;
    border-radius: 0;
    border: 1px solid #707070;
    padding: .5rem 1rem;
}

.buy-rent .btn {
    border-radius: 0;
    color: #ffffff;
    background-color: #707070;
}

.buy-rent .btn:not(.active) i {
    visibility: hidden;
}

.buy-rent .btn.active {
    background-color: #707070;
}
.buy-rent .btn.active i {
    visibility: visible;
}

.search-form-container label {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
}

.home-search-container label {
    color: #000000;
    margin-bottom: .5rem;
    margin-top: 1rem;
}

.bootstrap-select>.dropdown-toggle {
    border-radius: 0;
    background-color: #ffffff;
    border: 1px solid #707070;
    min-height: 38px;
    padding: .5rem 1rem;
}

#realty-form input[type=text], #realty-form input[type=number], .home-search-container .search-form-container input[type=text] {
    min-height: 38px;
    padding: .5rem 1rem;

    width: 100%;
    border-radius: 0;
    border: 1px solid #707070;
}

#realty-form input[type=submit] {
    width: auto;
    padding: .625rem 2.75rem;
    margin-top: 2.125rem;
}

.home-search-container .search-form-container input {
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .home-search-container {
        position: relative;
        margin-top: -57px;
        padding-bottom: 0;
    }

    .footer-home {
        margin-top: 280px;;
    }
}

@media (max-width:575px) {
    .search-form-container {
        min-width: 288px;
        padding: 2rem;
    }
}

/*** HOME - Scroll Arrow ***/
#scroll {
    text-align: center;
    width: 36px;
    height: 36px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    margin-right: -18px;
    color: white;
    text-decoration: none;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index:1;
    cursor: pointer;
    
    transition: 0.3s;
}
  
#scroll:hover {
    background-color: #ffffff;
}
#scroll:hover > div{
    border-color: #212529;
}

.arrow-bounce{
    position: relative;
    margin: 0 auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    border-radius: 2px;
    transform: rotate(45deg); 
    -webkit-animation:  arrow 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    -moz-animation:     arrow 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    -o-animation:       arrow 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    animation:          arrow 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
  
@keyframes arrow {
    0% { top: 5px; opacity: 0;}
    30% {opacity: 1;}
    60% {top: 15px; opacity: 0;}
    100%{opacity: 0;}
}

@media (max-width:991px) {
    #scroll {
          bottom: auto;
          top: 65%;
      }
}

@media (max-width:575px) {
    #scroll {
          top: 60%;
      }
}

/*** HOME - Popup ***/
#home-modal .modal-body {
    padding: 0;
    position: relative;
}

#home-modal .close {
    padding: 0 .625rem;
    position: absolute;
    background-color: #545454;
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 300;
    right: 0;
    z-index: 1;
    opacity: 1;
}

.pop-img-container {
    width: 45%;
}

.pop-text {
    width: 55%;
    padding: 1.5rem;
}

.pop-text h3,
.pop-text h3 strong {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
}

.pop-text h3 strong {
    font-weight: 500;
}

.pop-text a {
    color: #000000;
    vertical-align: center;
    line-height: 1.75rem;
}

.pop-text a i {
    color: #04A2E6;
}

.pop-text a:hover,
.pop-text a:focus {
    text-decoration: none;
}

/*** HOME - Titles & Map ***/

.section-title {
    padding-top: 5rem;
    padding-bottom: 3rem;
    color: #5D5C5E;
}

.section-title h2 {
    display: inline-block;
    font-weight: 300;
    font-size: 2rem;
    line-height: 2.75rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
    max-width: 768px;
}

.section-title h3 {
    font-weight: 300;
    font-size: 1rem;
    margin: 1rem 0 0 0;
}

#map {
    height: 320px;
}

#map .infobubble img {
    max-width: 100%;
}

#map .infobubble .infobubble-text {
    padding: 1rem;
}

#map .infobubble .infobubble-text h4 {
    font-size: 18px;
    line-height: 24px;
}

#map .infobubble .infobubble-text p,
#map .infobubble .infobubble-text .btn-strate {
    font-size: 14px;    
}

@media (max-width:575px) {
    .section-title h2 {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    #map {
        height: 400px;
    }
}

/*** HOME - Highlights ***/
.highlight h4 {    
    font-size: 1rem;
    color: #5D5C5E;
    text-transform: uppercase;
    line-height: 1.875rem;
}

.highlight .highlight-thumb {
    width: 100%;
    height: 250px;
    height: 15vw;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.highlight p.highlight-address {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: #919187;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

@media (max-width:991px) {
    .highlight {
        margin: 0 auto;
        margin-bottom: 4rem;
        max-width: 540px;
    }

    .highlight h4 {
        margin-bottom: 1rem;
    }

    .highlight .highlight-thumb {
        height: 250px;
    }
}

@media (max-width:575px) {
    .highlight h4 {
        font-size: .875rem;
        line-height: 1.5rem;
    }

    .highlight .highlight-thumb {
        height: 200px;
    }

    .highlight p.highlight-address {
        margin-top: 1rem;
        margin-bottom: 1rem;
        font-size: .875rem;
    }
}

/*** HOME - Services ***/
#services {
    color: #ffffff;
    padding-bottom: 8rem;
}

#services h3 {
    font-size: 2rem;
    text-transform: uppercase;
    color: #B5B5A3;
    margin-bottom: 1.75rem;
}

#services p.services-subtitle {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 5rem;
}

#services .service img {
    width: 100%;
    height: auto;
}

#services .service h4 {
    font-size: 1.5rem;
    color: #B5B5A3;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

#services .service p {
    font-weight: 300;
    line-height: 1.75rem;
}

.btn-strate-dark {
    background-color: #5D5C5E;
    border: 2px solid #919187;
}

.btn-strate-dark:hover {
    background-color: #919187;
}

@media (max-width:991px) {
    #services {
        padding-bottom: 2rem;
    }

    #services .service {
        margin-bottom: 5rem;
    }

    #services .service:last-child {
        margin-bottom: 0;
    }
}

/* *** PROJECT LIST *** */
/************************/
.realty.project h4 a {
    text-transform: none;
    font-size: 1.125rem;
    color: #919187;
}

.realty.project h4 a:hover,
.realty.project h4 a:focus {
    color: #B5B5A3;
    text-decoration: none;
}

.realty.project .address-rooms {
    border-bottom: none;
    border-top: 1px solid #919187;
}

.realty.project .realty-img span.sold-out {
    font-size: 2rem;
    text-transform: uppercase;
    background-color: #B5B5A3;
    padding: .25rem 1rem;
    color: #ffffff;
    opacity: 0.85;
}

.realty.project .realty-img:hover span.sold-out {
    opacity: .66;
}

.realty.project h4 a, .realty.project .realty-img span.sold-out {
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

/* *** PROPERTY SEARCH  *** */
/****************************/

/*** PROPERTY SEARCH - List ***/
.realty {
    margin-bottom: 2rem;
}

.realty-content {
    padding: .5rem;
}

.realty-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.realty-img a {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.realty-text {
    padding: .5rem 1.5rem 2rem;
    background-color: #f5f5f5;
}

.address-rooms, .area-price {
    border-bottom: 1px solid #707070;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.address-rooms  {
    font-size: .75rem;
}

.address-rooms .address {
    text-transform: uppercase;
}

.realty-text h4 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.realty-text h4 a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.25rem;
}

.area-price span {
    font-family: 'Oswald', sans-serif;
    font-size: .875rem;
}

@font-face {
    font-family: 'icomoon';
    src: url("./webfonts/icomoon.eot");
    src: url("./webfonts/icomoon.eot#iefix") format("embedded-opentype"),url("./webfonts/icomoon.ttf") format("truetype"),url("./webfonts/icomoon.woff") format("woff"),url("./webfonts/icomoon.svg#icomoon") format("svg");
    font-weight: normal;
    font-style: normal
}

.im-icon {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: .35rem;
    font-size: 1.375rem;
}

.icon-bed::before {
    content: "\e904";
}

.icon-bath::before {
    content: "\e900";
}

.icon-toilet::before {
    content: "\e91e";
}

.icon-car::before {
    content: "\e901";
}

.icon-floor::before {
    content: "\e906";
}

.icon {
    margin-bottom: .5rem;
    margin-right: .5rem;
}

.icon img {
    width: 100%;
    max-width: 35px;
    margin-right: .35rem;
    max-height: 27px;
}

/*** MULTISELECT CSS ***/
#realty-form .bootstrap-select {
    width: 100%;
    position: relative;
}

#plz ~ .dropdown-menu li {
    display: inline-block;
}

.bootstrap-select.show-tick .dropdown-menu li a span.check-mark {
    display: inline-block;
    position: static!important;
    margin-left: -5px;
    margin-right: 5px;
    border: 2px solid #212529;
    border-radius: 2px;
    width: 14px;
    height: 14px;
    color: #ffffff;
    font-size: 10px;
    vertical-align: middle;
}

.bootstrap-select.show-tick .dropdown-menu li a span.check-mark:before {
    content: "";
}

.bootstrap-select.show-tick .dropdown-menu li a.selected span.check-mark {
    border-color: #B5B5A3;
}

.bootstrap-select.show-tick .dropdown-menu li a.selected span.check-mark:before {
    content: '\f00c';
    background-color: #B5B5A3;
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
    margin-right: auto;
}

.dropdown-item.active {
    background-color: #04A2E6;
}

.dropdown-item:active {
    background-color: transparent;
    color: #919187;
}
/* End Multiselect Styling */

h4.no-results {
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    font-weight: 300;
}

h4.no-results span {
    display: block;
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

h4.no-results a {
    color: #ffffff;
    text-decoration: underline;
}

/* *** PROPERTY PAGE  *** */
/**************************/
.projekt-content .row {
    margin-bottom: 3rem;
}

/* Gallery */
.objekt-cover {
    margin-bottom: 1.5rem;
    position: relative;
}

.objekt-thumb {
    padding: 0 .375rem;
}

.objekt-thumb:first-child {
    padding-left: 15px;
}

.objekt-cover a:not(.cover-email),
.objekt-thumb a {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.objekt-cover a:not(.cover-email) {
    height: 360px;
    height: 28vw;
}

/* .objekt-cover a.cover-email {
    font-size: 2rem;
    color: #B5B5A3;
    position: absolute;
    right: 2rem;
    background-color: #545456;
    padding: 1rem .75rem .25rem;
    -webkit-transition: padding .25s;
    -o-transition: padding .25s;
    transition: padding .25s;
}

.objekt-cover a.cover-email:after {
    content: '';
    background-color: #545456;
    position: absolute;
    width: 100%;
    height: 1rem;
    -webkit-transform: skewY(15deg);
    -ms-transform: skewY(15deg);
            transform: skewY(15deg);
    left: 0px;
    bottom: -.5rem;
}

.objekt-cover a.cover-email:hover {
    padding-bottom: .5rem;
} */

.objekt-thumb a {
    height: 80px;
    height: 8vw;
    position: relative;
}

.objekt-thumb a:before, .objekt-thumb a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity .15s;
    -o-transition: opacity .15s;
    transition: opacity .15s;
}

.objekt-thumb a:before {
    background:#ffffff;
}

.objekt-thumb a:after {
    background-image: url(img/open_gallery.png);
    background-image: url(img/open_gallery.svg);
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
}

.objekt-thumb a:hover:before {
    opacity: .5;
}

.objekt-thumb a:hover:after {
    opacity: 1;
}

.view-all a img {
    width: 100%;
    max-width: 40px;
}

/* Highlights */
.objekt-highlights .id, .objekt-highlights .id span {
    font-size: 1.125rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.75rem;
}

.btn-inquire {
    min-width: 165px;
    margin-bottom: .5rem;
}

#msg {
    margin: 0;
}
 /*
.btn-inquire i {
    margin-right: .75rem;
} */

/* Description */
.objekt-subtitle {
    font-size: 1.125rem;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#objekt-desc {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 300;
}

#objekt-desc * { /* fix white bg for decription text served from Justimmo sometimes */
    background-color: transparent!important;
    color: #000000!important;
}

#desc-intro {
    position: relative;
    line-height: 20px;
}

#desc-intro p {
    text-align: left!important;
    margin-bottom: 20px;
}

#objekt-desc .collapse:not(.show) {
    height: 320px !important;
    overflow: hidden;
    display: block;
}

#objekt-desc .collapsing {
    min-height: 320px !important;
}

#objekt-desc a.collapsed:after  {
    content: '+ Mehr';
}

#objekt-desc a {
    color: #B5B5A3;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: underline;
}

#objekt-desc a:not(.collapsed):after {
    content: '- Weniger';
}

.price-info h3.objekt-subtitle,
.contact-info h3.objekt-subtitle {
    margin-bottom: 1rem;
}

.price-info hr, .contact-info hr  {
    border-top: 1px solid #707070;
    max-width: 240px;
    margin-left: 0;
}

.price-info td {
    font-size: .875rem;
    margin-bottom: .5rem;
    height: .75rem;
    padding: .25rem;
    font-weight: 700;
}

.price-info td span {
    font-weight: 400;
}

/* Equipment */
.equipment-panel {
    margin-bottom: 3rem;
}

.equipment-panel h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: .875rem;
    color: #919187;
    font-weight: 700;
}

.equipment-panel hr {
    border-top: 1px solid #919187;
    max-width: 250px;
    margin-left: 0;
}

.equipment-panel p {
    margin-bottom: .25rem;
}

.contact-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: inline-block;
    background-size:cover;
    background-position: top;
    background-color: #2B2B2B;
}

.contact-info h4 {
    color: #5D5C5E;
}

.contact-info p a {
    color: #B5B5A3;
}

@media (max-width:991px) {
    .objekt-cover a:not(.cover-email) {
        height: 420px;
        height: 48vw;
    }
    
    .objekt-thumb a {
        height: 120px;
        height: 13vw;
    }

    .objekt-highlights {
        height: auto;
        max-height: none;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

@media (max-width:767px) {
    .objekt-cover a:not(.cover-email) {
        height: 360px;
        height: 48vw;
    }
    
    .objekt-thumb a {
        height: 90px;
        height: 14vw;
    }
}

@media (max-width:575px) {
    .objekt-cover a:not(.cover-email) {
        height: 280px;
        height: 48vw;
    }
    
    .objekt-thumb a {
        height: 60px;
        height: 15vw;
    }
}

/* ***  REFERENZEN PAGE  *** */
/*****************************/
.ref-thumb {
    margin-bottom: .5rem;
    padding: 0 15px;
}

.slick-slide .ref-thumb {
    height: auto;
}

.ref-thumb:nth-child(odd) {
    padding-right: .25rem;
}

.ref-thumb:nth-child(even) {
    padding-left: .25rem;
}

.ref-thumb:nth-child(3),
.ref-thumb:nth-child(4) {
    margin-bottom: 0;
}

.ref-thumb a {
    height: 150px;
    height: 10.25vw;
}

.slider-arrows img {
    cursor: pointer;
}

.slider-arrows .prev-arrow {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .ref-thumb a {
        height: 25vw;
    }
}

/* *** ARTICLE PAGE  *** */
/*************************/
.article-title {
    background-image: url(img/strate_tite_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 7rem;
    padding-bottom: 7rem;
    margin-bottom: 6rem;
}

.article-title h1 {
    font-size: 5rem;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

h3.article-subtitle, h3.article-subtitle span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

h3.article-subtitle.fw-500, h3.article-subtitle span.fw-500 {
    font-weight: 500;
}

@media (max-width:767px) {
    .article-title h1 {
        font-size: 3rem;
    }
}

@media (max-width:585px) {
    .article-title h1 {
        font-size: 2.5rem;
    }
}

/* *** SERVICES PAGE  *** */
/**************************/
.service-title img {
    width: 55px;
    height: auto;
}


/* *** OFFICE PAGE  *** */
/**************************/
.member {
    margin-bottom: 4rem;
}

.member img {
    margin-bottom: 2rem;
    width: 250px;
    height: 250px;
}

h3 .member-name {
    font-weight: 500;
}

.member-contact i {
    color: #04A2E6;
    margin-right: .5rem;
}

.member-contact a {
    color: #000000;
    font-family: 'Oswald', sans-serif;
}

.member-contact a:hover,
.member-contact a:focus {
    color: #04A2E6;
}

.office-thumb a {
    display: block;
    height: 300px;
    height: 16vw;
}

#office-slider .office-thumb {
    padding-left: 0;
}

#office-slider .office-thumb a img {
    height: 100%;
    width: auto;
}

@media (max-width: 575px) {
    .office-thumb a {
        height: 160px;
        height: 35vw;
    }
}

/* *** PRESS PAGE  *** */
/***********************/
.press-article-cover {
    width: 100%;
    height: 250px;
    height: 16vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.press-article-text {
    padding: 1rem;
    background-color: #F5F5F5;
}

.press-article-title {
    line-height: 1.25rem;
}

.press-article-title a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    color: #000000;
    font-weight: 300;
}

.press-article-title a:hover,
.press-article-title a:focus {
    text-decoration: none;
}

.press-article-cover a {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1367px){
    .press-article-cover {
        height: 200px;
        height: 18vw;
    } 
}

@media (max-width: 767px){
    .press-article-cover {
        height: 335px;
        height: 28vw;
    } 
}

@media (max-width: 575px){
    .press-article-cover {
        height: 350px;
        height: 60vw;
    } 
}

/* *** KONTAKT *** */
/*******************/
#kontakt-form input, #kontakt-form #message, #kontakt-form .bootstrap-select .dropdown-toggle,
#anfragen-form input, #anfragen-form #message, #anfragen-form .bootstrap-select .dropdown-toggle  {
    border: none;
    border-left: 4px solid #04A2E6;
    border-radius: 0;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.16);
            box-shadow: 0 1px 4px rgba(0,0,0,.16);
            padding-top: .675rem;
            padding-bottom: .675rem;
}

#kontakt-form  .dropdown-toggle::after,
#anfragen-form  .dropdown-toggle::after {
    color: #04A2E6;
}

#kontakt-form .agree a,
#anfragen-form .agree a {
    color: #04A2E6;
    text-decoration: none;
}

#kontakt-form .agree a:hover,
#kontakt-form .agree a:focus,
#anfragen-form .agree a:hover,
#anfragen-form .agree a:focus {
    text-decoration: underline;
}

.form-control::-webkit-input-placeholder {
    color: #BCBCBC;
}
.form-control:-ms-input-placeholder {
    color: #BCBCBC;
}
.form-control::-ms-input-placeholder {
    color: #BCBCBC;
}
.form-control::placeholder {
    color: #BCBCBC;
}

#kontakt-form #send button {
    text-transform: uppercase;
}

.error {
    color: orangered;
    margin-right: 1rem;
}

/* *** FOOTER *** */
/******************/
.footer-phrase {
    position: relative;
    background-color: #ECECEC;
}

.footer-phrase .logo {
    width: 150px;
    padding: 2rem 2rem;
    position: absolute;
    top: -8.375rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.footer-phrase .logo img {
    width: 100%;
}

.footer-phrase p {
    margin: 0 ;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
}

.footer-nav {
    background-color: #434343;
}

.footer-nav img {
    width: 100px;
}

.footer-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    display: inline-block;
    margin: 0 .5rem;
}

.footer-nav {
    color: #ffffff;
}

.footer-nav ul li a {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: .825rem;
    font-weight: 300;
}

/*
////// FINANCING CALCULATOR ////////
*/
.calculator {
    background-color: #f5f5f5;
    padding: 30px 36px;
    width: 100%;
}
.input-label {
    min-width: 120px;
    font-size: 18px;
    font-weight: 300;
    color: #505050;
}
.input-field {
    min-width: 150px;
}
.input-field input{
    max-width: 90px;
    border: none;
    font-size: .875rem;
    color: #505050;
    text-align: right;
    padding: .5rem 14px;
    border-radius: 0;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.16);
    box-shadow: 0 1px 4px rgba(0,0,0,.16);
}
.um {
    margin-left: .5rem;
    font-size: .875rem;
    color: #505050;
    padding: .5rem 0;
}
.hide {
    display: none;
}
.input-slider {
    height: 6px !important;
    background-color: #FFFFFF !important;
    box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.25) !important;
    border-radius: 3px !important;
    border: 0 !important;
}
.ui-slider-handle {
    width: 16px !important;
    height: 16px !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5) !important;
    border: 0 !important;
    border-radius: 10px !important;
    top: -6px !important;
}
.ui-slider-range {
    background-color: #04A2E6 !important;
}
.min {
    float: left;
}
.max {
    float: right;
}
.min, .max {
    position: relative;
    top: 10px;
    font-size: 12px;
    color: #505050;
}
.res-container {
    margin-bottom: 2rem;
}
.res-values {
    margin-bottom: 1rem;
}
hr.blue {
    border-top: 1px solid #04A2E6;
}
.result-total-label {
    font-size: 1.125rem;
    font-weight: 300;
    color: #505050;
}
.result-total-value {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: right;
    color: #04A2E6;
    letter-spacing: 2px;
}
.res-field {
    color: #505050;
    font-size: .875rem;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 12px;
    color: #505050;
} 

@media (max-width:585px) {
    .result-total-value {
        font-size: 1.875rem;
    }
}