/*==================================================
=           	     Font faces          			  =
==================================================*/

/*==================================================
=           	     Defaults          			  =
==================================================*/
@page {
    size: A4 landscape;
}

* {
    margin: 0;
    padding: 0;
    --webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
}

body,
html {
    height: 100%;
    background: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

body {
    position: relative;
    overflow-x: hidden;
    color: #181818;
}

body,
p,
li,
label,
input,
textarea,
th,
td {
    color: #000000;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #181818;
    line-height: 1;
}

.tbl-stl td {
    padding: 0px 40px 20px 0px;
    color: white;
    text-align: justify;
}

h1 {
    font-size: 38px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

h1.title {
    position: relative;
    margin: 25px 0;
    padding-bottom: 18px;
}

h1.title:first-letter {
    text-transform: uppercase;
}

h1.title:after {
    width: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: inline-block;
    border-bottom: 1px solid #181818;
}

h1.not-found-title {
    font-size: 150px;
    color: #F0CA38;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

h2.not-found-subtext {
    font-size: 38px;
    color: #181818;
}

h2.sub-title {
    font-size: 22px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
}

h5 {
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

ul li {
    list-style: none;
}

a:hover,
a:focus,
a:visited,
a:active,
button:hover,
button:focus,
button:visited,
button:active,
select:focus,
span:focus {
    outline: 0;
    box-shadow: none;
    text-decoration: none;
}

:root {
    --blue: #204168;
    --yellow: #F0CA38;
    --bg-grey: #F6F8F9;
}

a.link-text {
    color: #747474;
    text-decoration: underline;
}

a.link-text:hover,
a.link-text:focus {
    color: #747474;
    text-decoration: underline;
}

label {
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1;
}

video.video {
    width: 100% !important;
}

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
    display: none !important;
}

.text-right {
    text-align: right;
}

/*==================================================
=       			Animations        		  =
==================================================*/
@-moz-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

@-moz-keyframes slideUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

/* Dropdowns Animation */
.open>.dropdown-menu {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
}

.dropdown-menu {
    opacity: 0;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transform: scale(1, 0);
    display: block;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* Properties search form slide down transition */
.slide-down.ng-hide-add.ng-hide-add-active,
.slide-down.ng-hide-remove.ng-hide-remove-active {
    transition: all 0.6s linear;
    -webkit-transition: all 0.6s linear;
}

.slide-down.ng-hide {
    opacity: 0;
}

/* Slide up/down for read more */
.animate-if.ng-enter {
    animation-name: slideDown;
    -webkit-animation-name: slideDown;

    animation-duration: 1s;
    -webkit-animation-duration: 1s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
}

.animate-if.ng-leave.ng-leave-active {
    animation-name: slideUp;
    -webkit-animation-name: slideUp;

    animation-duration: 6s;
    -webkit-animation-duration: 6s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
}

/* -------------------------------
Horizontal progress bar
------------------------------- */
.progress {
    width: 100%;
    float: left;
    height: 5px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border-radius: 0;
    margin-bottom: 0;
    background: #dbdee0;
}

.progress-bar {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.progress-bar-success {
    background-color: #F0CA38;
}

/* Home grid overlay */
.hover-overlay {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a.hover-overlay {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
}

.hover-overlay-background {
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.hover-overlay .home-content-image {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.hover-overlay:hover .home-content-image {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    /* IE 9 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
    /* IE8 */
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
    /* IE6 and 7 */
}

a.hover-overlay:hover+div.row-xs-12 .hover-overlay-background {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    /* IE 9 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
    /* IE8 */
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
    /* IE6 and 7 */
}

.home-content-container .home-content-image:after {
    content: "";
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0);
}

.home-content-container a.hover-overlay:hover+div.row-xs-12 .home-content-image {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    /* IE 9 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
    /* IE8 */
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
    /* IE6 and 7 */
}

.home-content-container a.hover-overlay:hover+div.row-xs-12 .home-content-image:after {
    background: rgba(0, 0, 0, 0.6);
}

.home-content-container a.hover-overlay:hover+div.row-xs-12 .btn-yellow-phantom,
.home-content-container a.hover-overlay:hover+div.row-xs-12 .btn-primary-phantom {
    background: #fff;
}

/* about CTA */
.cta-section .col-no-padding {
    overflow: hidden;
    position: relative;
}

.cta-section .abs-inner {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.cta-section .hover-overlay-background:before {
    content: "";
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
}

.cta-section a.hover-overlay {
    z-index: 6 !important;
}

.cta-section a.hover-overlay:hover+div.row-xs-12 .hover-overlay-background:before {
    opacity: 1 !important;
}

/* news-container Animation */
.news-container .col-no-padding {
    overflow: hidden;
}

.news-container .abs-inner {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.news-container a.hover-overlay:hover+div.row-xs-12 .abs-inner:after {
    background: rgba(0, 0, 0, 0.6);
}

.news-container a.hover-overlay:hover+div.row-xs-12 .btn-yellow-phantom {
    background: #fff;
}

/* map infowindow images and text hover animation */
.same-location-properties .row-xs-12 {
    overflow: hidden;
    margin-bottom: 10px;
}

.same-location-properties a .row-xs-12 .abs-inner {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.same-location-properties a:hover .row-xs-12 .abs-inner {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    /* IE 9 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
    /* IE8 */
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
    /* IE6 and 7 */
}

.same-location-properties a:hover p {
    color: #F0CA38;
}

.big-screen {
    display: block;
}

.normal-screen,
.ipad-screen,
.small-screen {
    display: none;
}

.ellipses {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*==================================================
=       	 Packages Customization        		  =
==================================================*/
/* Slick Carousel */
.slick-prev,
.slick-next {
    width: 17px;
    height: 14px;
}

.slick-prev {
    left: -30px;
}

.slick-next {
    right: -30px;
}

.slick-prev,
.slick-prev:hover,
.slick-prev:focus {
    background: url("../images/previous_arrow.svg") no-repeat;
}

.slick-next,
.slick-next:hover,
.slick-next:focus {
    background: url("../images/next_arrow.svg") no-repeat;
}

.slick-next:before,
.slick-prev:before {
    display: none;
}

.slick-slider .slick-list {
    padding: 0 !important;
}

/* select ui */
.ui-select-container .form-control,
.ui-select-container .btn-default:hover,
.ui-select-container .btn-default:focus,
.ui-select-container .btn-default.focus,
.ui-select-bootstrap>.ui-select-match>.btn:focus,
.ui-select-bootstrap>.ui-select-match>.btn:active,
.ui-select-match:focus,
.ui-select-match {
    border-color: #fff !important;
    background: #fff;
    outline: 0 !important;
    box-shadow: none;
    background-color: #f4f4f8 !important;
}

.ui-select-bootstrap .ui-select-match-text {
    line-height: 28px;
}

.ui-select-bootstrap .ui-select-toggle>.caret {
    color: #F0CA38;
}

.ui-select-container .dropdown-menu {
    min-width: 50px;
    font-size: 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.ui-select-container.open .form-control {
    border-color: transparent !important;
    box-shadow: none;
}

.ui-select-toggle {
    z-index: 1;
}

.caret {
    z-index: -1;
}

.ui-select-container.open>.dropdown-menu {
    border-color: transparent !important;
    padding-top: 0;
    padding-bottom: 0;
}

.ui-select-bootstrap .ui-select-choices-row {
    width: 100%;
    float: left;
    font-size: 12px;
}

.ui-select-bootstrap .ui-select-choices-row.active {
    width: 100%;
    float: left;
    background: #181818;
}

.ui-select-bootstrap .ui-select-choices-row.active>span {
    color: #fff;
    background: #181818;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.ui-select-choices-row:focus {
    outline: 0;
}

.select-dark.ui-select-container .form-control,
.select-dark.ui-select-container .btn-default:hover,
.select-dark.ui-select-container .btn-default:focus,
.select-dark.ui-select-container .btn-default.focus,
.select-dark.ui-select-bootstrap>.ui-select-match>.btn:focus,
.select-dark.ui-select-bootstrap>.ui-select-match>.btn:active,
.ui-select-match:focus,
.select-dark.ui-select-match {
    border-color: #181818 !important;
    background: #fff;
    outline: 0 !important;
    box-shadow: none;
    border-radius: 0;
}

.ui-select-bootstrap .ui-select-choices-row {
    padding-top: 2px;
    padding-bottom: 2px;
    border-top: 1px solid #f5f5f5;
    background-color: white;
}

.select-dark.ui-select-bootstrap>.ui-select-match>.btn {
    height: 38px;
}

/* Angular Material Radio buttons */
.theme-yellow .md-on {
    background-color: #F0CA38;
}

.theme-yellow.md-checked .md-off {
    border-color: #F0CA38;
}

.theme-yellow.md-checked .md-icon {
    background-color: #F0CA38;
}

.radio-estate-page-rt-one {
    padding-right: 40px !important;
}

.radio-estate-page-rt-two {
    padding-right: 14px !important;
}

/*rzslider*/
div.rzslider {
    margin: 15px 0 35px 0;
}

.rzslider .rz-bubble {
    top: 18px;
}

.rzslider .rz-pointer {
    outline: 0;
}

.rzslider .rz-bar {
    height: 2px;
}

.rzslider .rz-bar.rz-selection {
    height: 4px;
}

.rzslider .rz-pointer:after,
.rzslider .rz-pointer:hover:after,
.rzslider .rz-pointer.rz-active:after {
    background-color: #F0CA38;
}

.rzslider[disabled] .rz-pointer:after {
    background-color: #d8e0f3;
}

/* Videosharing Embed */
embed-video {
    width: 100%;
    height: 100%;
}

embed-video iframe {
    width: 100%;
    height: 100%;
}

/* read more */
.read-more-container {
    width: 100%;
    float: left;
    position: relative;
}

.read-more-container.collapsed {
    padding-bottom: 60px;
    margin-bottom: 30px;
}

.read-more-container:not(.collapsed)>.show-when-collapsed {
    display: none;
}

.read-more-container.collapsed>.hide-when-collapsed {
    display: none;
}

.read-more-container p:last-child {
    display: inherit;
}

.read-more {
    width: 165px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40px;
    padding: 0 30px;
    display: inline-block;
    border: 1px solid #204168;
    border-radius: 2px;
    cursor: pointer;
    background: #204168;
    text-align: center;
    line-height: 40px;
    color: #fff !important;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-decoration: none !important;
}

.read-more:hover,
.read-more:focus {
    background: #204168;
    outline: 0;
    box-shadow: none;
}

.read-more:before {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 5px;
    background: url("../images/add_yellow_icon.svg") no-repeat center center;
}

.read-more.read-less:before {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 5px;
    background: url("../images/minus_yellow_icon.svg") no-repeat center center;
}

/* Pagination */
.pagination>li>a,
.pagination>li>span {
    width: 24px;
    height: 24px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    color: #181818;
}

.pagination {
    border-radius: 0px;
    margin: 10px 0 20px 0;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    font-size: 20px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 20px;
}

.pagination>li>a,
.pagination>li>span {
    margin: 0 2px;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    color: #F0CA38;
    background-color: #fff;
    border-color: #F0CA38;
}

.pagination-text {
    color: #9a9ca3;
    font-size: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* Angular Material */
md-radio-group.md-focused.ng-pristine md-radio-button .md-container:before {
    display: none;
}

md-radio-group.md-default-theme.md-focused:not(:empty) .md-checked .md-container:before,
md-radio-group.md-default-theme.md-focused:not(:empty) .md-checked .md-container:before {
    background-color: transparent !important;
    display: none;
}

md-radio-group.md-focused .md-checked .md-container:before {
    display: none;
}

/*==================================================
=           		  Header             		  =
==================================================*/
.home .navbar.navbar-default {
    background-color: transparent;
}

.home .navbar.navbar-default::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.80) 0%, transparent 100%);
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent); */
    pointer-events: none;
    z-index: -1;
}

.navbar.navbar-default {
    height: 70px;
    background: #3f3f3f;
    /* background: rgba(24, 24, 24, 0.7); */
    border-bottom: 0;
}

.navbar.navbar-default .dropdown-menu {
    background: #3f3f3f;
    /* background: rgba(24, 24, 24, 0.7); */
}

.navbar-brand {
    height: auto;
}

.navbar-default .navbar-nav>li>a,
.navbar-default .navbar-nav>li.divider {
    color: #fff;
    text-transform: uppercase;
}

a.menu-item-call {
    text-transform: initial !important;
}

.navbar-default .popups a.search {
    padding-left: 2px;
}

.navbar-default .popups.search-l {
    position: relative;
}

.navbar-default .popups.search-l .mini-search {
    position: absolute;
    right: 0;
    width: 250px;
    margin-top: -3px;
    margin-right: 10px;
}

.navbar-default .popups.search-l .mini-search label {
    display: flex;
    border: 1px solid #F0CA38;
}

.navbar-default .popups.search-l .mini-search input {
    border: none;
    border-radius: 0;
    height: 30px;
    background: #3b3b3b;
    color: #c2c2c2;
}

.navbar-default .popups.search-l .mini-search button {
    background: #2c2c2c;
    border: none;
    color: #c2c2c2;
    padding-right: 20px;
    padding-left: 20px;
}

.navbar-default .popups i.circle {
    display: inline-block;
    border-radius: 60px;
    box-shadow: 0px 0px 2px #F0CA38;
    padding: 0.5em 0.6em;
    cursor: pointer;
    margin-top: -10px;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.dropdown-menu>li>a {
    color: #fff;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus,
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus,
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: #F0CA38;
    background: none;
}

.navbar-default .navbar-nav>li>a>img {
    vertical-align: baseline;
}

.navbar-default .navbar-nav>li {
    transition: 0.6s;
    transform-style: preserve-3d;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.navbar-default .navbar-nav>li.open>a>img {
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: FlipV;
    -ms-filter: "FlipV";
}

.navbar-default .navbar-nav>li.divider {
    display: none;
}


.navbar-collapse.collapse.in {
    background: #181818;
}

.navbar-default .navbar-toggle {
    border: 0;
    margin-top: 12px;
    margin-bottom: 20px;
    margin-right: 8px;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, .25);
    width: 42px;
    height: 42px;
    z-index: 1;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background: rgba(255, 255, 255, .3) !important;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background: transparent;
}

.navbar-collapse.collapse.in.responsive-menu {
    display: block !important;
    height: 100vh;
    max-height: 100vh;
    width: 100%;
    position: absolute;
    top: 70px;
    border-top: 0;
    box-shadow: none;
    z-index: 1200;
    padding-bottom: 50px;
}

.navbar-toggle {
    position: relative;
}

.icon-bar,
.icon-bar:after,
.icon-bar:before {
    width: 22px;
    height: 2px;
}

.icon-bar {
    position: relative;
    transform: translateY(25px);
    background: #fff !important;
    transition: all 0ms 300ms;
    display: inline-block;
    float: left;
    top: -18px;
}

.navbar-header.navbar-header-menu {
    margin: 0;
}

.navbar>.container .navbar-brand {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
}

.navbar-header-menu .icon-bar {
    transform: translateY(42px);
    top: -42px;
}

.icon-bar.hamburger-cross {
    background: rgba(255, 255, 255, 0) !important;
}

.icon-bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    background: white;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.icon-bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    background: white;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.icon-bar.hamburger-cross:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.icon-bar.hamburger-cross:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-default .responsive-menu li>a {
    font-size: 24px;
}

.navbar-default .responsive-menu ul.navbar-nav {
    margin: 0;
}

.navbar-default .responsive-menu ul.navbar-nav>li:first-child {
    margin-top: 0px;
}

.navbar-default .responsive-menu ul.navbar-nav>li>a {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #292929;
}

.navbar-default .responsive-menu ul.navbar-nav>li>ul.dropdown-menu {
    border-left: 1px solid #292929;
    margin-bottom: 30px;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-default .responsive-menu ul.navbar-nav>li>ul.dropdown-menu li a {
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    word-break: break-word;
    white-space: normal;
}

.navbar-default .responsive-menu ul.navbar-nav>li>ul.dropdown-menu li:first-child a {
    padding-top: 0;
}

.navbar-default .responsive-menu ul.navbar-nav>li>ul.dropdown-menu li:last-child a {
    padding-bottom: 0;
}

/*==================================================
=              Global Add-ons            		  =
==================================================*/
.hidden {
    display: none;
}

.btn {
    border-radius: 2px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.btn:focus,
a.btn:focus,
button.btn:focus {
    outline: 0;
    box-shadow: none;
}

.btn-primary-phantom {
    height: 40px;
    padding: 0 30px;
    margin: 0;
    border: 1px solid #ffffff;
    background: transparent;
    text-align: center;
    line-height: 40px;
    color: #181818 !important;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none !important;
}

.btn-primary-phantom:hover,
.btn-primary-phantom:focus {
    background: #ffffff;
    outline: 0;
    box-shadow: none;
}

.btn-yellow {
    background: #F0CA38;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none !important;
}

.btn-yellow:hover,
.btn-yellow:focus {
    background: #F0CA38;
    color: #fff;
    outline: 0;
    box-shadow: none;
}

.btn-yellow-phantom {
    height: 40px;
    padding: 0 30px;
    margin: 0;
    border: 1px solid #ffffff;
    background: transparent;
    text-align: center;
    line-height: 40px;
    color: #F0CA38 !important;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
}

.btn-yellow-phantom:hover,
.btn-yellow-phantom:focus {
    background: #ffffff;
    outline: 0;
    box-shadow: none;
}

.btn-read-more {
    height: 40px;
    padding: 0 30px;
    display: inline-block;
    border: 1px solid #204168;
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 30px;
    background: #204168;
    text-align: center;
    line-height: 40px;
    color: #fff !important;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-decoration: none !important;
}

.btn-read-more:hover,
.btn-read-more:focus {
    background: #204168;
    outline: 0;
    box-shadow: none;
}

.btn-read-more:before {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 5px;
    background: url("../images/add_yellow_icon.svg") no-repeat center center;
}

.btn-read-more.btn-read-less:before {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 5px;
    background: url("../images/minus_yellow_icon.svg") no-repeat center center;
}

.btn-not-found {
    max-width: 380px;
    width: 100%;
    height: 80px;
    line-height: 80px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 80px;
    color: #fff;
    background: #181818;
    text-transform: uppercase;
    padding: 0;
}

.btn-not-found:hover,
.btn-not-found:focus {
    color: #fff;
    outline: 0;
    padding: 0;
}

.btn-blue {
    height: 40px;
    padding: 0 30px;
    display: inline-block;
    border: 1px solid #204168;
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 30px;
    background: #204168;
    text-align: center;
    line-height: 40px;
    color: #fff !important;
    font-size: 16px;
    text-decoration: none !important;
}

.btn-yl {
    height: 40px;
    padding: 0 30px;
    display: inline-block;
    border: 1px solid #F0CA38;
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 30px;
    background: #F0CA38;
    text-align: center;
    line-height: 40px;
    color: #000 !important;
    font-size: 16px;
    text-decoration: none !important;
}

.btn-yl a {
    color: #000 !important;
    /* margin-top: 5px; */
    display: block;
}

.btn-yl a i {
    /* margin-top: 7px !important; */
}

.btn-yl i {
    color: #000 !important;
}

.btn-blue:hover,
.btn-blue:focus {
    background: #204168;
    outline: 0;
    box-shadow: none;
}

.btn-black {
    height: 40px;
    padding: 0 30px;
    display: inline-block;
    border: 1px solid #181818;
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 30px;
    background: #181818;
    text-align: center;
    line-height: 40px;
    color: #fff !important;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-decoration: none !important;
}

.btn-black:hover,
.btn-black:focus {
    background: #181818;
    outline: 0;
    box-shadow: none;
}

.btn-fullwidth {
    width: 100%;
    display: block;
}

.form-control {
    width: 100%;
    height: 40px;
    border: solid 1px #dbdee0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    box-shadow: none;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background: #f3f4f5;
}

.yellow {
    color: #F0CA38;
}

.color-black {
    color: #181818;
}

.color-grey {
    color: #9a9ca3;
}

.color-grey-light {
    color: #ababb0;
}

.color-blue {
    color: #204168;
}

.capitalize {
    text-transform: capitalize;
}

.text-underline {
    text-decoration: underline;
}

.text-md {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.text-sm {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.small {
    font-size: 14px;
    color: #5d5d5d;
    margin-bottom: 0;
}

.bold {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #060617;
}

.no-margin {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin: 0 !important;
}

.no-top-margin {
    margin-top: 0 !important;
}

.margin-top-sm {
    margin-top: 30px;
}

.margin-top-lg {
    margin-top: 150px;
}

.margin-bottom-xs {
    margin-bottom: 10px;
}

.margin-bottom-sm {
    margin-bottom: 30px;
}

.margin-bottom-md {
    margin-bottom: 50px;
}

.padding-bottom-sm {
    padding-bottom: 30px;
}

.padding-bottom-md {
    padding-bottom: 50px;
}

.margin-bottom-lg {
    margin-bottom: 50px;
}

.margin-bottom-xs {
    margin-bottom: 10px !important;
}

.padding-top-xs {
    padding-top: 10px;
}


.no-padding-right {
    padding-right: 0;
}

.border-right {
    border-right: 1px solid #999999;
}

.border-left {
    border-left: 1px solid #999999;
}

.white-bg {
    background: #ffffff;
}

.black-bg {
    background: #17181c;
}

.page-wrapper {
    min-height: 100%;
    width: 100%;
    float: left;
    overflow: hidden !important;
    margin-bottom: -22px;
}

.main-container {
    width: 100%;
    /* min-height: 700px; */
    height: 100%;
    float: left;
}

.gray-section {
    width: 100%;
    float: left;
    background: rgba(146, 145, 182, 0.1);
}

.flex-container {
    display: -webkit-flex;
    display: flex;
}

.flex-center {
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.equal-center {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    width: 100%;
    float: left;
    height: 570px;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 570px;
}

.hero .jumbotron-image:after {
    display: none;
}

.page-content-container {
    position: relative;
    top: -80px;
    z-index: 5;
    margin-bottom: -50px;
}

.page-content {
    width: 100%;
    float: left;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
}

.page-content p:last-child {
    margin-bottom: 0;
}

.page-content a {
    color: #747474;
    text-decoration: underline;
}

.display-overflow {
    overflow: visible !important;
}

.row-no-padding {
    width: 100%;
    float: left;
}

.row-no-padding>[class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.col-no-padding {
    padding-left: 0;
    padding-right: 0;
}

.col-no-padding>.row {
    margin-left: 0;
    margin-right: 0;
}

.back {
    width: 20px;
    height: 16px;
    position: absolute;
    top: 30px;
    left: -40px;
    background: url("../images/back_icon.svg") no-repeat;
}

.overflow-visible {
    overflow: visible !important;
}

.modal-open .modal {
    overflow-y: scroll;
}

.modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}

.modal-header h2.modal-title {
    width: 92%;
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #181818;
}

.modal-header .close {
    margin-top: 7px;
    opacity: 1;
}

.video-modal embed-video iframe {
    height: 319px;
}

.load-more-row {
    width: 100%;
    float: left;
}

.border-top {
    border-top: 1px solid #d7d1d2;
}

.border-bottom {
    border-bottom: 1px solid #d7d1d2;
}

.border-left {
    border-left: 1px solid #d7d1d2;
}

.border-right {
    border-right: 1px solid #d7d1d2;
}

.overflow-visible {
    overflow: visible !important;
}

.map-marker {
    width: 55px;
    height: 85px;
    background: url("../images/properties_marker.svg") no-repeat center center;
}

.cluster img {
    width: 100%;
}

.cluster div {
    width: 53px !important;
    line-height: 53px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-family: 'Lato', sans-serif;
    font-weight: 700 !important;
}

.map-hidden {
    display: none !important;
}

.walking-marker {
    width: 50px;
    height: 45px;
    background: url("../images/marker_distance.svg") no-repeat center center;
}

.walking-marker:first-child,
.walking-marker:first-child i,
.walking-marker:first-child h5 {
    display: none !important;
}

.walking-marker i {
    display: block !important;
}

.walking-duration {
    font-size: 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #181818;
    margin: 0;
    margin-top: 45px;
}

.cursor-normal {
    cursor: default;
}

.relative-div {
    position: relative;
}

/*==================================================
=           		  Home Page           		  =
==================================================*/
.jumbotron-container {
    width: 100%;
    height: 100vh;
    float: left;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.jumbotron-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.jumbotron-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.jumbotron-video .video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.jumbotron-content {
    width: 100%;
    float: left;
    /* padding-top: 70px; */
    position: absolute;
    top: 50%;
    text-align: center;
    z-index: 10;
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    -webkit-transform: translate(0, -50%);
    /* Safari */
    transform: translate(0, -50%);
}

.cover-container,
.filter-container,
.property-types {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.property-type-image {
    width: 62px;
    height: 62px;
}

.jumbotron-content .property-types img {
    margin: 0 auto 15px auto;
}

.jumbotron-content .cover-container h1 {
    margin-top: 0;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
}

.jumbotron-content .cover-container h1:after {
    width: 175px;
    content: "";
    border-bottom: 1px solid #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    /* IE 9 */
    -webkit-transform: translateX(-50%);
    /* Safari */
    transform: translateX(-50%);
}

.jumbotron-content .cover-container p {
    color: #fff;
}

.jumbotron-content .search-area h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
}

.jumbotron-content .search-box {
    padding-top: 30px;
}

.jumbotron-content .search-area .search-label {
    display: flex;
    border: 3px solid #F0CA38;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.jumbotron-content .search-area .search-label input {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #000;
    border-radius: 0;
}

.jumbotron-content .search-area .search-label input::placeholder {
    color: #000;
}

.jumbotron-content .search-area .search-label button {
    border-radius: 0;
    margin: 0;
}

.jumbotron-content .search-area .view-all {
    margin-top: 30px;
    color: #fff;
    text-decoration: underline;
    font-size: 20px;
    display: block;
}

.jumbotron-content .search-area .view-all:hover {
    text-decoration: none;
}

.jumbotron-content .search-area {
    color: #fff;
}

.jumbotron-content .filter-container .filter-input {
    width: 100%;
    height: 40px;
    background: #fff;
    float: left;
    border-radius: 25px;
}

.jumbotron-content .filter-container .filter-input .btn-yellow {
    width: 45px;
}

.jumbotron-content .filter-container .filter-border-right {
    border-right: 1px solid #c4c5c4;
}

.jumbotron-content .filter-container .ui-select-container {
    margin-top: 0.5px;
    height: 40px;
    margin: 0 5px 0 20px;
}

.jumbotron-content .filter-container .ui-select-container .form-control {
    padding: 0;
    margin: 0;
}

.jumbotron-content .filter-container .ui-select-bootstrap .ui-select-match-text {
    font-size: 12px;
    color: #83838b;
    line-height: 38px;
}

.jumbotron-content .filter-container .ui-select-bootstrap .ui-select-choices-row>span {
    font-size: 12px;
    color: #83838b;
}

.jumbotron-content .filter-container .ui-select-bootstrap .ui-select-choices-row.active>span {
    color: #83838b;
    font-size: 12px;
}

.jumbotron-content .filter-container .input-group {
    margin-right: -16px;
}

.jumbotron-content .filter-container .input-group .input-group-addon,
.jumbotron-content .filter-container .input-group .form-control {
    background: transparent;
    border: 0;
}

.jumbotron-content .filter-container .input-group .form-control {
    padding-left: 0;
    color: #83838b;
    font-size: 12px;
}

.jumbotron-content .filter-container .input-group .input-group-addon:first-child {
    padding: 0 15px;
}

.jumbotron-content .filter-container .input-group .input-group-addon:last-child {
    border-radius: 0 25px 25px 0;
    padding: 0;
    background: #F0CA38;
    overflow: hidden;
}

.jumbotron-content .filter-container .input-group .input-group-addon:last-child:hover,
.jumbotron-content .filter-container .input-group .input-group-addon:last-child:hover .btn-yellow {
    background: #f3d533;
}

.jumbotron-content .property-types a {
    display: inline-block;
}

.jumbotron-content .property-types img {
    margin-bottom: 15px;
}

.jumbotron-content .property-types p {
    color: #fff;
    margin-bottom: 0;
}

.jumbotron-content .property-types a.scroll-down {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1c1e22;
    text-align: center;
    line-height: 55px;
    display: inline-block;
    cursor: pointer;
}

.jumbotron-content .property-types a.scroll-down img {
    margin-bottom: 0;
}

.home-content-container {
    width: 100%;
    float: left;
    position: relative;
}

.home-content-container .row-no-padding {
    margin-top: -1px;
}

.home-content-container .carousel-block {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.home-content-container .carousel-block-text {
    width: 100%;
    float: left;
    padding: 0 45px;
}

.home-content-container .carousel-block-text .carousel-text {
    margin: 0;
    padding: 40px 0;
    border-top: 1px solid #F0CA38;
    border-bottom: 1px solid #F0CA38;
}

.home-content-container .carousel-block-text .carousel-text p {
    font-size: 28px;
    margin-bottom: 0;
    text-align: center;
}

.home-content-container .carousel-block-text .carousel-text .slick-track {
    display: flex;
    align-items: center;
}

.home-content-container .carousel-block-text .carousel-text .slick-prev,
.home-content-container .carousel-block-text .carousel-text .slick-next {
    display: none !important;
}

.home-content-container .abs-inner {
    width: 100%;
    height: 100%;
    float: left;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.home-content-container .home-content-border {
    outline: 1px solid #ffffff;
    outline-offset: -20px;
}

.home-content-container .home-content-block-container {
    width: 100%;
    height: 100%;
    float: left;
}

.home-content-container .home-content-block {
    width: 100%;
    padding: 50px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.home-content-container .home-content-image {
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.home-content-container .home-content-block h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 28px;
    text-transform: uppercase;
    color: #fff;
}

.home-content-container .home-content-block p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
}

.home-content-container .news-block {
    background: #204168;
}

.home-content-container .news-block-content {
    padding: 30px;
}

.home-content-container .studios-block {
    background: #fd7853;
}

.home-content-container .news-block h2,
.home-content-container .studios-block h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    text-transform: uppercase;
    color: #fff;
}

.home-content-container .studios-block img {
    margin-bottom: 30px;
}

.home-content-container .news-block p,
.home-content-container .studios-block p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
}

.home-content-container .news-block p.small {
    font-size: 14px;
    color: #F0CA38;
}

.cta-type-1-hover:hover {}

.cta-type-1-hover img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.cta-type-1-hover:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.grid-link {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
}

/*==================================================
=           		  About Page           		  =
==================================================*/
.about-content ol,
.about-content ul {
    margin-left: 30px;
}

.about-content ul li {
    list-style: disc;
}

.vertical .carousel-inner {
    height: 230px;
    padding-top: 20px;
}

.carousel.vertical .item {
    -webkit-transition: 0.6s ease-in-out top;
    -moz-transition: 0.6s ease-in-out top;
    -ms-transition: 0.6s ease-in-out top;
    -o-transition: 0.6s ease-in-out top;
    transition: 0.6s ease-in-out top;
}

.carousel.vertical .active {
    top: 0;
}

.carousel.vertical .carousel-control,
.carousel.vertical .carousel-indicators {
    display: none;
}

.carousel.vertical .next {
    top: 400px;
}

.carousel.vertical .prev {
    top: -400px;
}

.carousel.vertical .next.left,
.carousel.vertical .prev.right {
    top: 0;
}

.carousel.vertical .active.left {
    top: -400px;
}

.carousel.vertical .active.right {
    top: 400px;
}

.carousel.vertical .item {
    left: 0;
}

.clients {
    position: relative;
}

.clients .row {
    margin-bottom: 20px;
}

.clients .row:last-child {
    margin-bottom: 0;
}

.client-brands-container {
    width: 100%;
    height: 230px;
    position: relative;
    overflow: hidden;
}

.client-brands {
    width: 100%;
    height: 230px;
    box-sizing: border-box;
    text-align: center;
}

.client-brands .client-brands-item {
    display: flex;
    height: 95px;
    position: relative;
    justify-content: center;
    align-items: center;
}

.client-brands .slick-slider {
    width: 100%;
    float: left;
    margin: 0;
}

.client-brands .slick-slider .slick-list {
    height: 230px !important;
    width: 100%;
    float: left;
    margin: 0;
    padding: 0 !important;
}

.client-brands .slick-slide {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.client-brands .client-brands-item img {
    max-height: 64%;
    max-width: 250px;
}

.client-brands .row .col-md-3:first-child .client-brands-item {
    justify-content: flex-start;
}

.client-brands .row .col-md-3:last-child .client-brands-item {
    justify-content: flex-end;
}

.cta-section {
    width: 100%;
    float: left;
    max-width: 100% !important;
}

.cta-block {
    width: 100%;
    float: left;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10;
}

.cta-section .abs-inner.page-links {
    outline: 1px solid #ffffff;
    outline-offset: -10px;
    z-index: 5;
}

.cta-section .creatives {
    background: #fd7853;
}

.cta-section .contact {
    background: #204168;
}

.cta-block-content {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}

.cta-block-content h2 {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 20px;
}

.cta-block-content p {
    color: #fff;
}

.cta-block-content .btn {
    min-width: 220px;
}

/*==================================================
=           		Tenants Page           		  =
==================================================*/
.other-tenants-item {
    width: 100%;
    float: left;
    text-align: center;
    padding: 30px;
}

.other-tenants-item:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.other-tenants-item div {
    width: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;
}

.other-tenants-item h3 {
    font-size: 30px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 0;
}

.other-tenants-item .btn {
    width: 110px;
}

/*==================================================
=           		Team Page           		  =
==================================================*/
.team-tab-container {
    width: 100%;
    float: left;
    background-color: #204168;
}

.team-member {
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
}


.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.team-single-cards {
    aspect-ratio: 4/5;
}

.team-single-cards>div {
    height: 100%;
}

@media (min-width: 1200px) {
    .team-single-cards {
        width: 20% !important;
    }
}

.team-member-info {
    width: 100%;
    height: 85px;
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.8s cubic-bezier(0.23, 1, 0.23, 0.9);
    transition: 0.8s cubic-bezier(0.23, 1, 0.23, 0.9);
    background: rgba(32, 65, 104, 0.9);
}

.team-member-info:before {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: 0.8s cubic-bezier(0.23, 1, 0.23, 1);
    transition: 0.8s cubic-bezier(0.23, 1, 0.23, 1);
}

.team-member-info h2 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.team-member-info p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.team-member-info .open-details {
    width: 35px;
    height: 35px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.team-member-info .open-details:focus {
    outline: 0;
    box-shadow: none;
}

.team-member-info .open-details:after {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 10px;
    background: url("../images/plus_icon.svg") no-repeat center center;
    -moz-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.team-member-info.details-expanded:before {
    background: rgba(0, 0, 0, 0.9);
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
}

.team-member-info.details-expanded h3,
.team-member-info.details-expanded p {
    color: #F0CA38;
}

.team-member-info.details-expanded .open-details:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.team-member-info:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 47%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    -moz-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    opacity: 0;
}

.team-member-info.details-expanded:after {
    opacity: 1;
}

.team-member-details {
    width: 100%;
    float: left;
    background: #fff;
    transition: height 0.3s !important;
}

.team-member-details .info-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    float: left;
}

.team-member-details .info-text {
    width: calc(100% - 45px);
    float: left;
    word-break: break-all;
}

.team-member-details .row {
    margin-top: 30px;
    margin-bottom: 30px;
}

.team-member-details .row .col-md-4 .row {
    margin-bottom: 20px;
    margin-top: 0;
}

.collapsing {
    transition: height 0.3s !important;
}

.team-member-details .row {
    margin-top: 30px;
    margin-bottom: 30px;
}

.team-member-details p:last-child {
    margin-bottom: 0;
}

/*==================================================
=		             	News Page        		  	=
==================================================*/
.news-container {
    width: 100%;
    float: left;
}

.news-container .row {
    background-color: #204168;
}

.news-container .abs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-container .abs-inner:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.news-container .abs-inner.no-overlay:after {
    display: none;
}

.news-container .abs-inner.page-links {
    outline: 1px solid #ffffff;
    outline-offset: -30px;
}

.news-container .abs-inner .news-created {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 14px;
    z-index: 10;
}

.news-container .abs-inner.page-links .news-created {
    top: 50px;
    right: 50px;
}

.news-container .abs-inner .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-container .abs-inner .news-content {
    width: 100%;
    float: left;
    position: relative;
    text-align: center;
    padding: 50px;
    z-index: 2;
}

.news-container .abs-inner .news-content img {
    margin-bottom: 30px;
}

.news-container .abs-inner .news-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 38px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.news-container .abs-inner .news-content p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.news-container .abs-inner .news-content p.text-md {
    margin: 0;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.news-container .abs-inner .news-content p.text-md.color-black {
    color: #181818;
}

.news-container .abs-inner .news-content .btn img {
    margin-top: -6px;
}

/*==================================================
=          			Properties Page        		  =
==================================================*/
.properties-search {
    width: 100%;
    float: left;
    background: #f4f4f8;
    padding: 10px 20px;
    margin-bottom: 30px;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
}

.properties-search md-checkbox {
    margin-bottom: 0;
}

.properties-search .md-label {
    color: #5d5d5d;
}

.properties-search-tab {
    color: #5d5d5d;
    padding-top: 5px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.properties-search-tab:hover {
    color: #5d5d5d;
}

.properties-search-tab.tab-active {
    border-bottom: 1px solid #aeaeae;
    cursor: default;
}

.properties-search .expand-search-filters {
    width: 18px;
    height: 10px;
    display: inline-block;
    background: url("../images/down_arrow.svg") no-repeat center center;
}

.properties-search .expand-search-filters:focus {
    outline: 0;
    box-shadow: none;
}

.properties-search .collapse-search-filters {
    background: url("../images/up_arrow.svg") no-repeat center center;
}

.properties-search .search-box .input-group-addon {
    background: transparent;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-radius: 0;
    border-color: #ebebef;
}

.estate-search-box {
    padding-top: 10px;
}

.properties-search .search-box .form-control {
    background: white;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-radius: 0;
    border-color: #ebebef;
    border-bottom: 0.15rem solid #5d5d5d;
}

.properties-search .rzslider .rz-bubble {
    color: #a6a6a8;
    font-size: 12px;
}


.properties-search-result-top {
    margin-bottom: 30px;
}

.properties-search-result-top p {
    margin-bottom: 0;
    margin-top: 7px;
}

.mobile-listing-views {
    margin-top: 80px !important;
    width: calc(100% - 30px);
    margin-inline: auto;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mobile-listing-views.map-visible {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: -30px;
}

.mobile-listing-views button {
    margin-bottom: 0px;
}

.properties-container {
    width: 100%;
    float: left;
    position: relative;
}


.map-parent {
    z-index: 0;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    padding-right: 0;
    padding-left: 0;
}

.property-grid {
    margin-bottom: 30px;
    overflow: hidden;
}

.property-grid p,
.property-grid h5,
.nearby-properties-details h5 {
    color: #fff;
}

.property-about {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    top: 80%;
    background-color: #204168;
    opacity: 0.9;
    z-index: 10;
}

.property-inner-div {
    padding: 5px;
    height: 100%;
    overflow: hidden;
    border: 1px solid transparent;
    -webkit-transition: all 0.8s ease-in-out 0s;
    -moz-transition: all 0.8s ease-in-out 0s;
    transition: all 0.8s ease-in-out 0s;
}

.property-inner-div h2 {
    text-transform: capitalize;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #fff;
}

.property-inner-div p,
.nearby-properties-details p {
    font-size: 14px;
    margin-bottom: 0;
}

.property-description {
    display: none;
    -webkit-transition: all 0.8s ease-in-out 0s;
    -moz-transition: all 0.8s ease-in-out 0s;
    transition: all 0.8s ease-in-out 0s;
}

.property-read-more {
    position: absolute;
    bottom: 10px;
    color: #fff;
}

.property-grid:hover .property-about {
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    top: 0;
}

.property-grid:hover .property-description {
    display: block;
}

.property-grid:hover .property-inner-div {
    border: 1px solid #fff;
}

.property-grid .property-price-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #181818;
    padding: 5px 20px;
    z-index: 1;
}

.property-grid .property-price-label p {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.property-carousel {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    max-height: 570px;
    aspect-ratio: 600 / 360;
    margin-top: 70px;
}

.unit-images-slick {
    margin-bottom: 0px !important;
}

.unit-images-slick img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.unit-images-slick .slick-slide {
    position: relative;
    aspect-ratio: 364 / 230;
    max-height: 230px;
    overflow: hidden;
}


.unit-nearby-details {
    width: 100%;
    padding: 14px 15px;
    position: relative;
    bottom: 0;
    left: 0;
    background: #F6F8F9;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.unit-nearby-details__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.unit-nearby-details__title {
    font-size: 14px;
    margin: 0px;
}

.unit-nearby-details__estate {
    font-size: 14px;
    margin: 0px;
}

.unit-nearby-details__address {
    font-size: 14px;
    margin: 0px;
}


.unit-nearby-details__row--top {
    margin-bottom: 5px;
}

.unit-nearby-details__price {
    position: absolute;
    top: -35px;
    background: #F0CA38;
    padding: 1.5px 5px;
    border-radius: 3px;
}

.unit-nearby-details__price-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.unit-nearby-details__price p {
    color: #204168;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 0px;
}

.unit-nearby-details__price span {
    color: #204168;
    font-weight: 400;
    font-size: 12px;
    position: relative;
    top: 0px;
}

.unit-nearby-details__price span.property-pcm__rates {
    color: #000;
    background: #77dd77;
    font-weight: 400;
    font-size: 12px;
    position: relative;
    top: 0px;
    display: block;
    margin-right: -5px;
    margin-left: -5px;
    margin-top: -20px;
}


.unit-nearby-details__sqft {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.unit-nearby-details__sqft p {
    color: #204168;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 0px;
}

.unit-nearby-details__sqft span {
    color: #204168;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    top: -2px;
}




.unit-images-slick button {
    background: rgb(0 0 0 / 40%);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    top: 50%;
    backdrop-filter: blur(5px);
}

.unit-images-slick .slick-prev {
    background-image: url('../../../angular-assets/Existing/images/icons/icon-left-chevron-rounded.svg') !important;
    background-repeat: no-repeat !important;
    background-position: 12px 12px !important;
    <<<<<<< HEAD background-size: 12px;
    left: 10px;
    background-color: rgb(0 0 0 / 40%) !important;
    =======background-size: 12px !important;
    left: 10px;
    background-color: rgb(0 0 0 / 40%) !important;
    transition: 0.15s ease-in all;
}

.unit-images-slick .slick-prev:hover {
    background-color: #204168 !important;
    >>>>>>>update-recommended-units-logic
}

.unit-images-slick .slick-next {
    background-image: url('../../../angular-assets/Existing/images/icons/icon-right-chevron-rounded.svg') !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    <<<<<<< HEAD background-size: 12px;
    right: 10px;
    background-color: rgb(0 0 0 / 40%) !important;
    =======background-size: 12px !important;
    right: 10px;
    background-color: rgb(0 0 0 / 40%) !important;
    transition: 0.15s ease-in all;
}

.unit-images-slick .slick-next:hover {
    background-color: #204168 !important;
    >>>>>>>update-recommended-units-logic
}

.admin-bar .property-carousel {
    margin-top: 102px;
}

@media (min-width: 1170px) {
    .property-carousel {
        width: 1170px;
        margin-left: auto;
        margin-right: auto;
    }
}

.property-carousel .slick-slider {
    display: none;
}

.property-carousel .slick-slider.slick-initialized {
    display: block;
}


.property-carousel button {
    background: rgb(0 0 0 / 40%);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    top: 50%;
    backdrop-filter: blur(5px);
}

.property-carousel .slick-prev {
    background-image: url('../../../angular-assets/Existing/images/icons/icon-left-chevron-rounded.svg') !important;
    background-repeat: no-repeat !important;
    background-position: 12px 12px !important;
    background-size: 12px !important;
    left: 10px;
    background-color: rgb(0 0 0 / 40%) !important;
    transition: 0.15s ease-in all;
}

.property-carousel .slick-prev:hover {
    background-color: #204168 !important;
}

.property-carousel .slick-next {
    background-image: url('../../../angular-assets/Existing/images/icons/icon-right-chevron-rounded.svg') !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 12px !important;
    right: 10px;
    background-color: rgb(0 0 0 / 40%) !important;
    transition: 0.15s ease-in all;
}

.property-carousel .slick-next:hover {
    background-color: #204168 !important;
}

.property-carousel .slick-dots {
    bottom: 38px;
}

@media (min-width: 768px) {
    .property-carousel .slick-dots {
        bottom: 30px;
    }
}

.property-carousel .slick-dots li {
    width: auto;
    height: auto;
    margin: 0px !important;
    display: inline-block;
}

@media (min-width: 768px) {
    .property-carousel .slick-dots li {
        margin: 0 5px !important;
    }
}


.property-carousel .slick-dots li button {
    width: 15px;
    height: 4px;
    padding: 0;
}

@media (min-width: 768px) {
    .property-carousel .slick-dots li button {
        width: 30px;
    }
}

.property-carousel .slick-dots li button:before {
    line-height: 4;
    width: 5px;
    height: 4px;
    content: '';
    opacity: 1;
    color: #fff;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .property-carousel .slick-dots li button:before {
        width: 30px;
    }
}

.property-carousel .slick-dots li.slick-active button:before {
    background-color: #F0CA38;
    opacity: 1;
    color: #fff;
}

.property-carousel-content {
    width: 100%;
    max-height: 570px;
    aspect-ratio: 600 / 360;
    float: left;
    position: relative;
}

.property-carousel-content .property-rent {
    background: #F0CA38;
    bottom: 0px;
    height: 27px;
    padding: 0px 20px;
    position: absolute;
    width: 100%;
}

.has-contribution .property-rent {
    bottom: 0px
}

.property-carousel-content .property-rent--contribution {
    background: #77dd77;
    color: #000;
    text-align: center;
    bottom: 25px !important;
    z-index: 1;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 24.5px !important;
}

@media (max-width: 768px) {
    .has-contribution .slick-dots {
        bottom: 60px;
    }
}


@media (min-width: 768px) {

    .property-carousel-content .property-rent {
        border-radius: 2px;
        bottom: 85px;
        height: auto;
        left: 110px;
        padding: 5px 20px;
        position: absolute;
        width: auto;
    }

    .has-contribution .property-rent {
        bottom: 65px;
    }

    .property-carousel-content .property-rent--contribution {
        bottom: 105px !important;
    }
}

.property-carousel-content .property-rent p {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: #181818;
    text-align: center;
}

/* Estate fully let header slider tag */
.property-carousel-content .property-let-tag {
    background: #ff0000;
    bottom: 0px;
    height: 27px;
    padding: 0px 20px;
    position: absolute;
    width: 100%;
}

.property-carousel-content .property-let-tag p {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: #fff;
    text-align: center;
}

@media (min-width: 768px) {
    .property-carousel-content .property-let-tag {
        border-radius: 2px;
        bottom: 85px;
        height: auto;
        left: 110px;
        padding: 8px 30px;
        position: absolute;
        width: auto;
    }
}

h1.property-title {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-top: 0;
}

.property-title--second {
    margin-bottom: 20px;
}

.property-status {
    display: inline-block;
    padding: 5px 12px;
    background: #181818;
    border-radius: 60px;
}

.property-status p {
    color: #fff;
}

.property-status img {
    width: 14px;
    height: 14px;
}

.property-status--type {
    background: #F6F8F9;
    align-items: center;
    gap: 8px;
    display: inline-flex;
}

.property-status--type p {
    color: #204168;
}

.property-status-available {
    background: #77dd77;
}

.property-status-available p {
    color: #000;
}

.property-status.estate-let {
    background: #ff0000;
}

.property-status.estate-let p {
    color: #fff;
}

.property-status p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}

.other-units {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.other-units a.link-text {
    font-size: 18px;
}

.property-type-icon {
    width: 60px;
    height: 50px;
    float: left;
}

.property-type-content {
    width: calc(100% - 60px);
    float: left;
}

.property-type-content p:first-child {
    margin-bottom: 0;
    margin-top: 10px;
}

.property-type-content p.text-md {
    text-transform: capitalize;
}


@media (max-width: 991px) {
    .property-agent-details-container {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
    }
}


.property-agent-details-container .btn:last-child {
    margin-bottom: 0 !important;
}

.property-agent-details-container .btn a>span,
.property-agent-details-container .btn a>i {
    display: inline-block !important;
}

.property-agent-details-container img.pull-right {
    margin-top: 6px;
}


.property-agent-details {
    width: calc(100% - 100px);
}


.property-agent-details p a.link-text {
    word-break: break-all;
}

.property-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 768px) {
    .property-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .property-features {
        grid-template-columns: repeat(6, 1fr);
        /* 6 items per row for desktops */
    }
}

.property-features-card {
    background: #F6F8F9;
    aspect-ratio: 93/104;
    max-width: 93px
}

.property-features-img {
    width: 30px;
    float: left;
}

.property-features-img img {
    width: 30px;
    max-height: 30px;
}

.property-features-text {
    width: calc(100% - 35px);
    margin-left: 5px;
    float: left;
}

.property-features-text p {
    margin-bottom: 0;
}

.location-row {
    margin-top: 4px;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.nearby-properties-container {
    float: left;
    width: 100%;
    background: #f4f4f8;
    overflow: hidden;
}

.is-fully-let .nearby-properties-container {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 30px;
}

.nearby-properties-container h2 {
    margin: 30px 0 25px 0;
}

.nearby-properties-carousel {
    width: 100%;
    float: left;
    margin-top: 0;
    margin-bottom: 30px;
}

.nearby-properties-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 30px);
    margin-inline: auto;
    margin-bottom: 60px;
}

.nearby-properties-list .unit-card {
    max-width: 340px;
    flex: auto;
}


@media (min-width: 992px) {
    .nearby-properties-list .unit-card {
        max-width: none;
        flex: 1;
    }
}

.nearby-properties-list__item {
    width: 100%;
    max-width: 400px;
    border: 1px solid #0000001A;
    border-radius: 4px;
    transition: all 150ms ease;
}

.nearby-properties-list__item:hover {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .nearby-properties-list__item {
        width: calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .nearby-properties-list {
        width: 100%;
    }

    .nearby-properties-list__item {
        width: calc(33% - 15px);
    }
}

.nearby-properties {
    /*Tile*/
    width: 100%;
    float: left;
    position: relative;
}

.nearby-properties .property-rent {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #181818;
    padding: 5px 20px;
}

.nearby-properties .property-rent p {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.nearby-properties .nearby-properties-details {
    width: 100%;
    height: 100px;
    float: left;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(32, 65, 104, 0.9);
}

.nearby-properties .nearby-properties-details p.small,
.nearby-properties .nearby-properties-details p {
    color: #fff;
}

.nearby-properties .nearby-properties-details img {
    display: inline;

}

.estate-tab .nav-tabs {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.estate-tab-count {
    padding: 3px 6px 0px 6px;
    border: 1px solid #181818;
}

.estate-tab .nav-tabs>li>a {
    color: #181818;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    cursor: pointer;
    padding: 15px 30px;
}

.estate-tab .nav-tabs>li>a:first-child {
    padding-left: 0;
}

.estate-tab .nav-tabs>li>a:hover,
.estate-tab .nav-tabs>li.active>a,
.estate-tab .nav-tabs>li.active>a:hover,
.estate-tab .nav-tabs>li.active>a:focus {
    color: #204168;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    border: 1px solid transparent;
    background: transparent !important;
    position: relative;
}

.estate-tab .nav-tabs>li>a uib-tab-heading,
.estate-tab .nav-tabs>li.active uib-tab-heading,
.estate-tab .nav-tabs>li.active>a uib-tab-heading,
.estate-tab .nav-tabs>li.active>a uib-tab-heading {
    position: relative;
}

.estate-tab .nav-tabs>li>a:hover uib-tab-heading:after,
.estate-tab .nav-tabs>li.active>a uib-tab-heading:after,
.estate-tab .nav-tabs>li.active>a:hover uib-tab-heading:after,
.estate-tab .nav-tabs>li.active>a:focus uib-tab-heading:after {
    content: "";
    display: flex;
    width: 100%;
    height: 6px;
    /* position: absolute; */
    position: relative;
    bottom: -23px;
    border-bottom: 6px solid #F0CA38;
}

.estate-tab .nav-tabs>li.active>a .estate-tab-count,
.estate-tab .nav-tabs>li>a:hover .estate-tab-count {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #fff;
    background: #204168;
}

.estate-tab-content {
    width: 100%;
    float: left;
    padding: 20px 0;
}

.estate-tab-img {
    width: 110px;
    height: 110px;
    float: left;
    border: 3px solid #fff;
    outline: 1px solid #c4c4c4;
}

.estate-tab-img img {
    width: 100%;
}

.estate-tab-details {
    width: calc(100% - 105px);
    margin-left: 5px;
    float: left;
}

.estate-tab-content p {
    margin: 0;
}

.estate-tab-content p:first-child {
    word-break: break-word;
}

.properties-search-title {
    margin-top: 100px;
}

.properties-search-title h1 img {
    width: 30px;
    vertical-align: top;
}

/* .ng-map-info-window {
  background-color: #181818 !important;
  color: #fff;
  padding: 10px 20px !important;
  border-radius: 2px;

}
.ng-map-info-window div:first-child > div:nth-child(1) {
  	border-top-color: #181818 !important;
}
*/

/* .gm-style .gm-style-iw > div:first-child {
	position: relative;
    overflow-x: hidden !important;
} */
/* .ng-map-info-window div:first-child > div:nth-child(3) div {
  display: none;
}
.ng-map-info-window div:first-child > div:nth-child(4) {
  display: none;
} */

/*
.gm-style .gm-style-iw-t::after {
  background-color: #181818 !important;
} */

button.gm-ui-hover-effect>img {
    background: white !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 10px !important;
}

.gm-ui-hover-effect {
    opacity: 1 !important;
}

.gm-ui-hover-effect:hover {
    opacity: 0.6 !important;
}

/* .ng-map-info-window ::-webkit-scrollbar {
  width: 10px !important;
  background-color: #181818 !important;
}

.ng-map-info-window ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #181818 !important;
}

.ng-map-info-window ::-webkit-scrollbar-track-piece {
  background: transparent !important;
}

.ng-map-info-window ::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
  border-radius: 25px;
} */

.geofences {
    z-index: -1 !important;
    position: absolute !important;
}

/*
.same-location-properties-container {
	max-height: 590px;
	padding-left: 40px;
    margin-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px
} */

/* .same-location-properties-count {
	width: 195px;
	display: block;
}

.same-location-properties-count p {
	font-size: 14px;
	color: #fff;
}

.same-location-properties {
	width: 195px;
	display: block;
	padding-bottom: 10px;
	padding-top: 5px;
	overflow: hidden;
}

.same-location-properties,
.same-location-properties * {
	display: block!important;
}

.same-location-properties a {
	border-bottom: 1px solid #333;
	 display: inherit;
    padding-bottom: 15px;
}

.same-location-properties a:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.same-location-properties img {
	width: 100%;
	max-width: 235px;
	margin-bottom: 10px;
}

.same-location-properties + .same-location-properties {
	margin-top: 10px;
}

.same-location-properties:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.same-location-properties p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
}

.same-location-properties p:first-child {
	font-weight: 700;
} */

.mobile-listing-view {
    width: 100%;
    float: left;
    /* padding: 10px 30px; */
    position: fixed;
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.mobile-listing-view .btn-black {
    color: #F0CA38 !important;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0;
    cursor: pointer;
}

.mobile-property-filters {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    padding: 100px 20px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow-y: auto;
    display: none;
}

.mobile-property-filters.in,
.mobile-property-filters.in form.form {
    display: block !important;
}

.close-mobile-filter {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: url("../images/close_filter_icon.svg") no-repeat center center;
    cursor: pointer;
}

.mobile-property-filters.in .form-group {
    margin-bottom: 30px;
}

.mobile-property-filters.in .search-box .input-group-addon {
    background: transparent;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-radius: 0;
    border-color: #ebebef;
}

.mobile-property-filters.in .search-box .input-group-addon>img {
    max-width: unset;
}

.mobile-property-filters.in .search-box .form-control {
    background: transparent;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-radius: 0;
    border-color: #ebebef;
}

.mobile-property-filters.in md-radio-group .row {
    width: 100%;
}

.mobile-property-filters.in .btn-black {
    width: 100%;
    float: left;
    display: block;
    color: #F0CA38 !important;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0;
    cursor: pointer;
}

.properties-search .search-section.pt-2 .row.label_values,
.mobile-property-filters .row.label_values {
    margin-left: -30px;
    margin-right: -30px;
}

.properties-search .search-section.pt-2 .row.label_values .col-xs-6,
.mobile-property-filters .row.label_values .col-xs-6 {
    padding-left: 0;
    padding-right: 0;
}

.property-list-title {
    width: calc(100% - 60px);
    padding-left: 15px;
    float: left;
}

.property-list-icon {
    width: 60px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
}

.property-list-location {
    flex: 1 1 0px;
    min-width: 0;
}

.property-list-area {
    flex: none;
}

/*==================================================
=           		Contact Page           		  =
==================================================*/
.contact-page h2 {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #060617;
    margin: 0 0 10px 0;
}

ul.social-links {
    padding: 0;
    margin-bottom: 30px;
}

ul.social-links li {
    display: inline-block;
    margin-right: 20px;
}

ul.social-links li:last-child {
    margin-right: 0;
}

ul.social-links li a {
    display: inline-block;
}

ul.social-links li a i.social {
    width: 39px;
    height: 37px;
    display: inline-block;
    margin-bottom: -8px;
    background: url("../images/contact-social.svg") no-repeat;
}

ul.social-links li a i.social.twitter {
    background-position: -59px 0;
}

ul.social-links li a:hover i.social.twitter {
    background-position: -243px 0;
}

ul.social-links li a i.social.facebook {
    background-position: -118px 0;
}

ul.social-links li a:hover i.social.facebook {
    background-position: -303px 0;
}

ul.social-links li a i.social.linkedin {
    background-position: 1px 0;
}

ul.social-links li a:hover i.social.linkedin {
    background-position: -183px 0;
}

ul.social-links li a i.social.email {
    background-position: -362px 0;
}

ul.social-links li a:hover i.social.email {
    background-position: -422px 0;
}

ul.social-links li a i.social.instagram {
    background-position: -481px 0;
}

ul.social-links li a:hover i.social.instagram {
    background-position: -541px 0;
}

.privacy-page {
    margin: 100px 0;
    margin-block-start: 100px !important;
}

.privacy-page ol,
.privacy-page ul {
    margin-left: 30px;
}

.social-share-icons .social-links {
    margin-bottom: 0px;
    margin-top: 15px;
}

.social-share-icons .social-links li {
    margin-right: 10px;
}

/*==================================================
=           		  Footer             		  =
==================================================*/
.footer {
    width: 100%;
    float: left;
    z-index: 9999;
    padding: 80px 0;
    background: #17181c;
}

.footer ul,
.footer p {
    margin-bottom: 0;
}

.footer p {
    font-size: 14px;
    color: #fff;
    margin-left: -1px;
}

.footer p.copyright img {
    vertical-align: bottom;
}

.footer ul li a {
    color: #fff;
}

.footer ul li a:hover,
.footer ul li a:focus {
    color: #F0CA38;
}

.footer ul.list-inline {
    margin-bottom: 5px;
}

.footer ul.list-inline li a {
    display: inline-block;
}

.footer ul.list-inline li a i.footer-social {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-bottom: -8px;
    background: url("../images/footer_social_icons.svg") no-repeat;
}

.footer ul.list-inline li a i.footer-social.twitter {
    background-position: 1px 0;
}

.footer ul.list-inline li a:hover i.footer-social.twitter {
    background-position: -132.5px 0;
}

.footer ul.list-inline li a i.footer-social.facebook {
    background-position: -42.5px 0;
}

.footer ul.list-inline li a:hover i.footer-social.facebook {
    background-position: -175px 0;
}

.footer ul.list-inline li a i.footer-social.linkedin {
    background-position: -86px 0;
}

.footer ul.list-inline li a:hover i.footer-social.linkedin {
    background-position: -218px 0;
}

.footer ul.list-inline li a i.footer-social.instagram {
    background-position: -261px 0;
}

.footer ul.list-inline li a:hover i.footer-social.instagram {
    background-position: -303px 0;
}

/*==================================================
=       			PDF styles        		  =
==================================================*/
canvas {
    border: none !important;
}

.pdf-wrapper {
    margin: 0 auto 0 auto;
    width: 100%;
}

.pdf-container {
    width: 100%;
    float: left;
    background: #fff;
    overflow: hidden;
}

.pdf-container h1 {
    font-size: 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin: 0;
}

.pdf-container h2 {
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.pdf-container h3 {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin: 0;
}

.pdf-container .estate-heading h1 {
    margin-bottom: 10px;
}

.pdf-container .estate-heading p {
    margin-bottom: 0;
}

.pdf-container .estate-heading p:last-of-type {
    margin-bottom: 20px;
}

.pdf-container p {
    font-size: 14px;
    margin: 0 0 20px 0;
}

.pdf-container p.small {
    font-size: 7px;
    margin: 0;
}

.pdf-padding-container {
    width: 100%;
    float: left;
    padding: 0 30px;
}

.pdf-map {
    width: 100%;
}

.single-page {
    width: 100%;
    float: left;
}

#page_1 {
    break-after: page;
}

#page_2 {
    break-before: page;
}

.pdf-hero {
    width: 100%;
    float: left;
    height: 600px;
    position: relative;
    overflow-y: hidden;
}

.pdf-hero-content-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 625px;
}

.pdf-background-image {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.pdf-hero-title-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    /*background: rgba(32,65,104,0.8);*/
    /*clip-path: polygon(0 0, 51% 0, 80% 100%, 0% 100%);*/
    /*background-image: url("../images/brochure/slanted-shape.svg");*/
    /*background-repeat: no-repeat;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.pdf-hero-description h1 {
    color: white;
}

.pdf-hero-title h2 {
    color: white;
}

/*.pdf-hero-title {*/
/*    width: 100%;*/
/*    height: 65px;*/
/*    float: left;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    padding: 0 30px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

.pdf-hero-title img {
    width: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.pdf-hero-title h1 {
    color: #fff;
    display: inline-block;
}

.pdf-unit-price-container {
    position: absolute;
    bottom: 12px;
    right: 0;
}

.pdf-unit-price {
    padding: 15px 50px;
    position: relative;
    overflow: hidden;
    margin: 0 48px;
    font-size: 1.3em;
}

.pdf-unit-price .pdf-y-button {
    position: absolute;
    top: 0;
    left: 0;
    height: 55px;
    width: 247px;
    z-index: 0;
}

.pdf-unit-price h1 {
    position: relative;
}

.about-pdf {
    width: 100%;
    float: left;
    padding: 20px 30px;
}

.about-pdf .property-agent-details-container {
    margin-bottom: 20px;
}

.about-pdf .property-agent-details-container p {
    margin: 0;
}

.about-pdf .pdf-photos img {
    width: 100%;
    max-height: 220px;
    margin-bottom: 20px;
}

.about-pdf .pdf-photos:last-child .col-md-12 img {
    margin-bottom: 0;
}

.pdf-page-title-container {
    width: 100%;
    height: 65px;
    float: left;
    margin-bottom: 20px;
    background: rgba(32, 65, 104, 0.8);
}

.pdf-page-title-container h1 {
    color: #fff;
}

.pdf-page-title {
    width: 100%;
    height: 65px;
    float: left;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.pdf-page-title img {
    width: 40px;
    margin-right: 10px;
}

.features-pdf-page-title {
    width: 100%;
    float: left;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.features-pdf-page-title img {
    width: 40px;
    margin-right: 10px;
}

.pdf-page-title h1 {
    display: inline-block;
    margin: 0;
}

.pdf-location {
    width: 100%;
    float: left;
    position: relative;
}

.pdf-footer {
    position: relative;
    color: #ffffff;
    font-size: 10px;
}

.pdf-footer .pdf-footer-blue-bg {
    position: absolute;
    height: 200px;
    top: 0;
    left: 0;
    bottom: 0;
}

.pdf-footer small {
    position: relative;
    display: block;
    padding: 15px 0;
}

.has-border {
    border: 1px solid #F0CA38;
}

.border-left-0 {
    border-left: 0;
}

.has-padding {
    padding: 1em;
}

.map-brochure {
    margin-bottom: 20px;
}

.pdf-location .pdf-page-title-container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.pdf-padding-container .property-features {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pdf-padding-container .property-features .col-md-3 {
    display: flex;
    align-items: center;
}

.pdf-properties-list {
    width: 100%;
    float: left;
    padding: 0 30px;
    margin-bottom: 30px;
}

.pdf-properties-list-gray {
    width: 100%;
    float: left;
    padding: 30px;
    margin: 30px 0;
    background: #ededed;
    margin-bottom: 30px;
    position: relative;
}

.pdf-properties-list .property-grid .property-about,
.pdf-properties-list-gray .property-grid .property-about {
    height: auto;
    top: initial;
    bottom: 0;
}

.pdf-properties-list .property-grid:hover .property-about,
.pdf-properties-list-gray .property-grid:hover .property-about {
    top: initial;
}

.pdf-properties-list .property-grid .property-about p,
.pdf-properties-list-gray .property-grid .property-about p {
    margin: 0;
}

.pdf-properties-list .property-grid .property-about .property-inner-div,
.pdf-properties-list-gray .property-grid .property-about .property-inner-div {
    border: 0;
}

.pdf-properties-list .property-grid:hover .property-about .property-inner-div,
.pdf-properties-list-gray .property-grid:hover .property-about .property-inner-div {
    border: 0;
}

.pdf-properties-list .property-grid .property-about .property-inner-div .row,
.pdf-properties-list-gray .property-grid .property-about .property-inner-div .row {
    display: flex;
    align-items: center;
}

.pdf-properties-list-gray .row:last-child>.col-md-4>.property-grid {
    margin-bottom: 0;
}

.pdf-properties-list .property-grid .property-price-label,
.pdf-properties-list-gray .property-grid .property-price-label {
    background: #204168;
}

.pdf-properties-list .property-grid h3,
.pdf-properties-list-gray .property-grid h3 {
    color: #fff;
}

.pdf-properties-list .property-grid .property-price-label p,
.pdf-properties-list-gray .property-grid .property-price-label p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 11px;
}

.pdf-properties-list>.row:last-child>.col-md-4>.property-grid,
.pdf-properties-list-gray>.row:last-child>.col-md-4>.property-grid {
    margin-bottom: 0;
}

@media print {
    * {
        color-adjust: exact;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        box-shadow: inset 0 0 0 1000px gold;
    }

    body {
        -webkit-print-color-adjust: exact !important;
    }

    .col-print-1,
    .col-print-2,
    .col-print-3,
    .col-print-4,
    .col-print-5,
    .col-print-6,
    .col-print-7,
    .col-print-8,
    .col-print-9,
    .col-print-10,
    .col-print-11,
    .col-print-12 {
        float: left !important;
    }

    .col-print-1 {
        width: 8% !important;
    }

    .col-print-2 {
        width: 16% !important;
    }

    .col-print-3 {
        width: 25% !important;
    }

    .col-print-4 {
        width: 33% !important;
    }

    .col-print-5 {
        width: 42% !important;
    }

    .col-print-6 {
        width: 50% !important;
    }

    .col-print-7 {
        width: 58% !important;
    }

    .col-print-8 {
        width: 66% !important;
    }

    .col-print-9 {
        width: 75% !important;
    }

    .col-print-10 {
        width: 83% !important;
    }

    .col-print-11 {
        width: 92% !important;
    }

    .col-print-12 {
        width: 100% !important;
    }

    .page-break {
        display: block;
        page-break-after: always;
    }

    .pdf-hero-title-container {
        width: 100%;
    }
}

/*==================================================
=             Media Queries              		  =
==================================================*/
@media (max-width: 1625px) {
    .big-screen {
        display: none;
    }

    .normal-screen {
        display: block;
    }

    h5.normal-screen {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .search-section {
        flex-flow: column !important;
        align-items: flex-start !important;
    }

    .ui-select-holder {
        width: 100% !important;
    }
}

/* @media  (min-width: 330px) and (max-width: 1440px) {
  .legend{
    margin-left: 743px !important ;
  }
} */

@media (max-width: 1440px) {
    .property-about {
        top: 70%;
    }

    /* .search-section {
    flex-flow: column !important;
    align-items: flex-start !important;
  } */
    .search-location {
        flex-flow: column !important;
        align-items: flex-start !important;
    }

    .search-location .form-group {
        width: 100% !important;
        padding: 0 !important;
    }

    /* .search-section .ls {
    width: 80% !important;
  } */
    .search-section .f-1 {
        width: 100% !important;
    }

    /* .ui-select-holder {
    width: 100% !important;
  } */
}

@media (min-width: 1200px) {
    .back {
        left: -50px;
    }

    .contact-padding {
        padding-left: 15px;
    }
}


@media only screen and (min-width: 1024px) {
    .navbar-default .navbar-toggle {
        margin-right: 0px;
    }
}

@media only screen and (min-width: 360px) {
    .jumbotron-container {
        margin-right: -73px;
        height: 100vh;

    }
}

@media (min-width: 992px) and (max-width: 1625px) {
    p.normal-screen {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


@media (min-width: 769px) and (max-width: 1200px) {

    .home-content-container .carousel-block-text .carousel-text p,
    .home-content-container .home-content-block p {
        font-size: 15px;
    }

    .home-content-container .carousel-block-text .carousel-text h2,
    .home-content-container .home-content-block h2 {
        font-size: 20px;
    }

    .slick-prev {
        left: -15px;
    }

    .slick-next {
        right: -15px;
    }

    .creatives .cta-block h2,
    .contact .cta-block h2,
    .cta-block-content h2 {
        font-size: 16px;
        padding: 0 2px;
    }

    .creatives .cta-block p,
    .contact .cta-block p {
        font-size: 13px;
    }

    .contact .btn-yellow-phantom {
        min-width: initial;
    }

    .team-member-info {
        height: 65px;
        padding: 10px;
    }

    .team-member-info .open-details {
        width: 28px;
        height: 28px;
    }

    .team-member-info .open-details:after {
        width: 10px;
        height: 10px;
        top: 8px;
        left: 8px;
    }

    .team-member-info h2 {
        font-size: 16px;
    }

    .team-member-info p {
        font-size: 12px;
    }

    .news-container .abs-inner .news-content img {
        margin-bottom: 18px;
    }

    .news-container .abs-inner .text-md {
        font-family: 'Lato', sans-serif;
        font-weight: 400;
    }

    .news-container .abs-inner .news-content p.text-md {
        font-size: 16px;
    }

    .layout,
    .layout-column,
    .layout-row {
        display: block;
    }

    .ipad-screen {
        display: block;
    }

    h5.ipad-screen {
        font-size: 14px;
    }

    .big-screen,
    .normal-screen {
        display: none;
    }

    .property-inner-div p,
    .nearby-properties-details p {
        font-size: 12px;
    }
}

@media (min-width: 992px) {

    .cover-container,
    .property-types {
        width: 550px;
    }

    .filter-container {
        width: 650px;
    }

    .property-details-left {
        padding-right: 30px;
    }

    .navbar-default .navbar-nav>li.divider {
        /* display: inline-block;
    padding-top: 23px; */
        padding-bottom: 23px;
    }
}

@media (min-width: 100px) and (max-width: 1340px) {
    .results-teaser {
        flex-flow: column-reverse !important;
        height: auto !important;
        opacity: 1;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .results-teaser:hover {
        opacity: 0.8;
    }
}

@media (min-width: 734px) and (max-width: 1024px) {
    .dropdown-menu {
        position: relative;
        top: 100%;
        z-index: 1000;
        display: none;
        float: none;
        min-width: 160px;
        padding: 5px 0;
        margin: 2px 0 0;
        font-size: 14px;
        text-align: left;
        list-style: none;
        opacity: 0;
        transform-origin: top;
        animation-fill-mode: forwards;
        transition: all 0.3s ease-in-out 0s;
    }

    .open>.dropdown-menu {
        transform: scale(1, 1);
        opacity: 1;
    }

    .ftr-btn {
        margin-left: -45px;
    }
}

@media (min-width: 289px) and (max-width: 768px) {
    .ftr-btn {
        margin-left: 17px;
    }
}

@media (min-width: 509px) and (max-width: 768px) {
    .mg-enquiry {
        margin-top: 21px;
    }
}

@media (min-width: 559px) and (max-width: 768px) {
    .lengend_img {
        width: 15%;
        margin-left: 18px;
        margin-right: 25px;
        height: 100%;
    }

    .legend {
        background-color: white;
        top: 83px;
        z-index: 9999;
        right: 71px;
        margin-right: -61px;
        width: 116px;
        position: fixed;
    }

    .legend_txt {
        margin-left: 68px !important;
        margin-top: -25px;
    }
}

@media (min-width: 509px) and (max-width: 768px) {
    .navbar-default .responsive-menu ul.navbar-nav>li>a {
        padding-top: 20px;
        padding-bottom: 20px;
        border-top: 1px solid #292929;
    }
}

@media (min-width: 551px) and (max-width: 768px) {
    .unit-page-contact-footer {
        padding: 359px 0px 50px 11px !important;
        position: absolute;
        justify-content: space-between;
    }
}

@media (min-width: 425px) and (max-width: 551px) {
    .unit-page-contact-footer {
        padding: 359px 0px 50px 11px !important;
        position: absolute;
        justify-content: space-between;
    }

    .mg-enquiry {
        margin-top: 21px;
    }
}

@media (min-width: 320px) and (max-width: 551px) {
    .unit-page-contact-footer {
        padding: 359px 0px 50px 11px !important;
        position: absolute;
        justify-content: space-between;
    }
}

@media (min-width: 320px) and (max-width: 568px) {
    .navbar-default .responsive-menu ul.navbar-nav>li>a {
        padding-top: 19px;
        padding-bottom: 19px;
        border-top: 1px solid #292929;
    }

    .mg-enquiry {
        margin-top: 21px;
    }
}



@media (min-width: 320px) and (max-width: 509px) {

    .property-carousel-content {
        width: 100%;
        float: left;
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .property-carousel {
        width: 100%;
        height: auto;
        position: relative;
        margin-bottom: 30px;
    }

}

/* @media (min-width: 1024px) and (max-width: 1366px) {
  .ftr-btn{
  position: absolute;
  margin-left: 17px;
  padding-top: 52px !important;
}
} */


@media (max-width: 991px) {

    /* Collapse nav early */
    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-collapse.collapse.in {
        display: block !important;
    }

    .navbar-header .collapse,
    .navbar-toggle {
        display: block !important;
    }

    .navbar-header {
        float: none;
    }

    .navbar-nav.navbar-right {
        float: left !important;
        margin-right: 0;
        width: 100%;
    }

    .navbar-nav>li {
        width: 100%;
    }

    .open>.dropdown-menu {
        position: relative;
        width: 100%;
        box-shadow: none;
        background: transparent;
        border: 0;
    }

    .back {
        left: 95%;
    }

    .property-about {
        top: 79%;
    }

    .property-details-container .flex-container {
        display: block;
    }

    .property-details-container .flex-container .border-right {
        border-right: 0;
    }

    .property-features .col-md-3 {
        width: 100%;
        float: left;
        margin-bottom: 10px;
    }

    .property-agent-details-container {
        margin-bottom: 30px;
    }

    .navbar-default .navbar-nav>li.divider {
        display: none;
    }

    .big-screen,
    .normal-screen,
    .ipad-screen {
        display: none;
    }

    .small-screen {
        display: block;
    }

    h5.small-screen {
        font-size: 16px;
    }

    .small-screen {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .navbar-collapse.collapse.in.responsive-menu {
        left: 0;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 426px) and (max-width: 768px) {

    .home-content-container .carousel-block-text .carousel-text p,
    .home-content-container .home-content-block p {
        font-size: 24px;
        padding: 0 30px;
    }

    .home-content-container .carousel-block-text .carousel-text h2,
    .home-content-container .home-content-block h2,
    .jumbotron-content .home-search-container {
        padding: 0 30px;
    }

    .jumbotron-content .filter-container .input-group {
        margin-right: 0px;
    }

    .home-content-container .news-block p.small {
        font-size: 18px;
    }

    .jumbotron-content .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0;
        z-index: 1000;
        float: left;
        padding: 5px 0;
        margin: 2px 0 0;
        text-align: left;
        list-style: none;
        background-color: #fff !important;
        border-radius: 4px;
    }

    footer .copyright {
        text-align: left;
        margin-top: 10px;
    }

    footer .social-icons {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .navbar-nav>li>a {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .footer ul.list-inline li {
        margin-top: 38px;
    }

    .fixed-div {
        position: fixed;
    }
}

@media (max-width: 768px) {

    .jumbotron-content .search-area .search-label {
        width: 100% !important;
    }

    .estate-tab .nav-tabs>li>a:hover uib-tab-heading:after,
    .estate-tab .nav-tabs>li.active>a uib-tab-heading:after,
    .estate-tab .nav-tabs>li.active>a:hover uib-tab-heading:after,
    .estate-tab .nav-tabs>li.active>a:focus uib-tab-heading:after {
        left: 0;
    }

    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #fff !important;
    }

    .equal-center,
    .client-brands .client-brands-item,
    .flex-container {
        display: block !important;
    }

    .client-brands .client-brands-item {
        display: inline-block;
        text-align: center;
        height: 70px;
        margin-bottom: 20px;
    }

    .border-left {
        border-left: 0;
        border-top: 1px solid #d7d1d2;
        margin-top: 30px;
        padding-top: 30px;
    }

    .border-right {
        border-right: 0;
    }

    .news-container .abs-inner .news-content img {
        margin-bottom: 24px;
    }

    .news-container .abs-inner .news-content {
        padding: 90px;
    }

    .news-container .abs-inner .news-content h2 {
        line-height: 26px;
    }

    h5.normal-screen {
        font-size: 14px;
    }

    .property-agent-details-container {
        margin-bottom: 30px;
    }
}

.mobile-results {
    visibility: hidden;
    display: none;
}

@media (max-width: 767px) {

    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
        color: #ffffff;
        background-color: transparent;
    }

    /*    .jumbotron-content {
            position: relative;
            -ms-transform: translate(0, 0);
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
            top: 0;
            padding-top: 100px;
            padding-left: 25px;
            padding-right: 25px;
            height: 147vh;
        }*/
    .jumbotron-content .filter-container .filter-input {
        height: auto;
        background: transparent;
    }

    .jumbotron-content .filter-container .col-xs-12 {
        border-right: 0;
        background: #fff;
        border-radius: 25px;
        margin-bottom: 10px;
    }

    .jumbotron-content .filter-container .ui-select-container.open>.dropdown-menu {
        top: 0;
    }

    .jumbotron-content .filter-container .ui-select-container {
        margin: 0 20px;
    }

    .jumbotron-content .property-types p {
        font-size: 12px;
    }

    #property-listing .properties-container .property-map {
        width: 100%;
        height: 100%;
        float: left;
        position: relative;
    }

    .property-features.margin-bottom-sm {
        margin-bottom: 0;
    }

    /* .mobile-properties {
    margin-bottom: -500px;
  } */
    .mobile-results.visible-xs,
    .mobile-map.visible-xs {
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        width: 80%;
    }

    .navbar-brand img {
        width: 240px;
        margin-top: 5px;
    }

    .navbar-nav li a span.yellow {
        display: block;
    }

    .social-icons {
        text-align: left;
        margin-top: 24px;
    }

    .copyright {
        text-align: left;
        /* margin-top: 12px; */
    }

    .jumbotron-content .filter-container .input-group .form-control {
        padding-right: 45px;
    }

    .home-content-container .home-content-block h2,
    .home-content-container .carousel-block-text .carousel-text p,
    .news-container .abs-inner .news-content h2 {
        font-size: 18px;
    }

    .news-container .abs-inner .news-content,
    .home-content-container .home-content-block {
        padding: 30px;
    }

    .home-content-container .home-content-block p,
    .news-container .abs-inner .news-content p.text-md {
        font-size: 14px;
    }

    .property-agent-details-container .btn {
        font-size: 12px;
    }

    .jumbotron-content .property-types img {
        margin: 0;
        display: inline-block;
    }

    .jumbotron-content .property-types [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .nearby-properties-carousel {
        width: auto;
        float: none;
    }

    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }
}

@media (max-width: 320px) {
    .property-about {
        top: 72%;
    }

    p.small-screen {
        line-height: 1;
    }

    .jumbotron-container {
        height: 100vh;
    }

    h1 {
        font-size: 32px;
    }
}

@media print {
    img {
        max-width: none !important;
    }
}


.property-agent-details-container img.pull-right.links-small-icon {
    margin-top: 15px;
}

.property-agent-details-container img.pull-right.links-icon {
    margin-top: 12px;
}

.property-agent-details-container i.pull-right {
    margin-top: 10px;
    color: #F0CA38;
    font-size: 22px;
}

.search-left {
    background: #fff;
}

.search-location {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.search-location .label-img {
    display: flex;
    align-items: center;
    width: 30%;
}

.search-location .imga {
    padding-right: 1rem;
}

.search-location .form-group {
    margin-bottom: 0;
    flex: 1;
    padding-left: 1rem;
}

.search-location .text-md {
    margin-bottom: 0;
}

.no-padding {
    padding: 0 !important;
    margin: 0 !important;
}

.pt-2 {
    padding-top: 3rem;
}

.search-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-section .ls {
    width: 30%;
}

.search-section .f-1 {
    flex: 1;
    white-space: nowrap;
    padding-left: 30px;
}

.location-label {
    font-size: 25px;
    line-height: 18px;
    color: #5d5d5d;
}

.properties-search label {
    color: #5d5d5d;
}

.properties-search .layout-row {
    flex-wrap: wrap;
    width: 274px !important;
}

.lb {
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid black;
}

.fbtn {
    padding: 2px 10px;
    border: 1px solid #5d5d5d;
}

.ui-select-holder {
    width: 68%;
}

.results-teaser {
    display: flex;
    min-height: 189px;
    margin-bottom: 30px;
    /* border: 3px solid #5d5d5d; */
    height: 180px;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.results-teaser:hover {
    opacity: 0.8;
}

.results-teaser .teaser-text {
    background: #5d5d5d;
    padding: 20px 15px 15px 15px;
    flex: 1;
    z-index: 999;
}

.results-teaser .teaser-image {
    flex: 1;
    position: relative;
}

.results-teaser .teaser-image .estate-let {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0000;
    color: #fff;
    padding: 0 1rem;
    padding-top: 1px;
}

.results-teaser .teaser-image .estate-join {
    position: absolute;
    bottom: 16px;
    right: 15px;
    background: #204168;
    color: #fff;
    padding: 0 1rem;
    padding-top: 1px;
}

.results-teaser .teaser-image img {
    width: 100%;
    height: 189px;
    object-fit: cover;
}

.results-teaser .teaser-text {
    display: flex;
    flex-flow: column;
}

.results-teaser .teaser-text .property-title a {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.results-teaser .teaser-text .property-title a:hover {
    text-decoration: underline;
}

.results-teaser .teaser-text .property-data p {
    color: #F0CA38;
    font-size: 17px;
    margin-bottom: 0;
}

.results-teaser .teaser-text .property-pcm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
}

.results-teaser .teaser-text .property-pcm span {
    background-color: #F0CA38;
    padding: 0 15px;
    font-weight: bold;
    font-size: 14px;
    color: #000;
    padding-top: 3px;
    min-width: 151px;
}

.results-teaser .teaser-text span.property-pcm__rates {
    display: block;
    background: #77dd77;
    font-size: 11px;
    padding: 3px 8.3px;
    margin-bottom: 2px;
    color: #000;
}

.estate-header__title {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0;
    margin-right: 2px;
    display: inline-block;
}

.estate-header__title a {
    color: #204168;
}

.estate-header__location {
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    line-height: 13px;
    display: inline-block;
}

/* Info window */

.gm-style-iw {
    width: 480px;
    height: 350px;
    background: #204168 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.gm-style-iw .abs {
    flex-basis: 100%;
}

.gm-style-iw-d {
    height: 100%;
    overflow: auto !important;
    padding: 5px !important;
    max-width: unset !important;
}

.gm-style-iw button {
    top: 16px !important;
    right: 9px !important;
}

.iwca {
    display: flex;
    flex-direction: column;
}

.iwca .pd {
    padding: 20px 0 10px 20px;
}

.iwca p {
    color: #fff;
}

.iwca .capitalize {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.h100 {
    height: 100%;
    overflow: hidden;
}

.abs {
    flex: 1;
    transition: all 0.3s linear;
}

.abs .imgwrapper {
    display: inline-block;
    /* change the default display type to inline-block */
    overflow: hidden;
    /* hide the overflow */
    height: 100%;
    width: 100%;
}

.gm-style .gm-style-iw-t::after {
    background: #204168 !important;
}

/* Contact Modal */
.modal-row {
    /* display: flex; */
    z-index: 999999;
}

/* .modal-row .main-right {
  padding-right: 40px;
} */

.contact-container {
    /* padding-left: calc(((100% - 1170px) / 2) + 15px); */
    padding-left: 50px;
    padding-right: 50px;
}

.contact-nav-modal,
.contact-modal {
    position: fixed;
    overflow-y: scroll;
    left: 0;
    top: 70px;
    bottom: 0;
    width: 100%;
    background: rgba(41, 41, 41, 0.92);
    z-index: 2;
    color: #fff;
}

.contact-nav-modal h1,
.contact-modal h1 {
    color: #fff;
    margin-bottom: 30px;
    margin-top: 0;
}

.contact-nav-modal p,
.contact-modal p {
    color: #fff;
    font-size: 2rem;
}

.contact-nav-modal .control-label,
.contact-modal .control-label {
    width: 100% !important;
    border: 3px solid #F0CA38;
}

.contact-nav-modal .control-label i,
.contact-modal .control-label i {
    color: #fff;
    position: absolute;
    top: 17px;
    left: 40px;
}

.contact-nav-modal .control-label i.fa-phone,
.contact-modal .control-label i.fa-phone {
    font-size: 17px;
    top: 17px;
}

.contact-nav-modal .control-label.textarea i,
.contact-modal .control-label.textarea i {
    top: 32px;
}

.contact-nav-modal .modal-image,
.contact-modal .modal-image {
    width: 100%;
    height: auto;
    padding-bottom: 66.66%;
    margin-top: 21px;
    position: relative;
    border: 3px solid #F0CA38;
    margin-bottom: 30px;
    background-position: center !important;
}

@media (min-width: 992px) {

    .contact-nav-modal .main-right .modal-image,
    .contact-modal .main-right .modal-image {
        height: 332px;
        padding-bottom: 0;
    }
}

@media (min-width: 1400px) {

    .contact-nav-modal .main-right .modal-image,
    .contact-modal .main-right .modal-image {
        width: 145%;
    }
}

.contact-nav-modal .form-control,
.contact-modal .form-control {
    border: none;
    border-radius: 0;
    padding: 24px 12px;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    padding-left: 50px;
}

.contact-nav-modal .form-control::placeholder,
.contact-modal .form-control::placeholder {
    color: #fff;
}

.contact-nav-modal .close-dialog,
.contact-modal .close-dialog {
    font-size: 40px;
    color: white;
    margin-left: auto;
    cursor: pointer;
    height: fit-content;
}

.contact-nav-modal .close-dialog:hover,
.contact-modal .close-dialog:hover {
    color: #F0CA38;
}

.contact-nav-modal .contact-modal-header,
.contact-modal .contact-modal-header {
    padding-top: 30px;
    display: flex;
}

.mt-3 {
    margin-top: 20px;
}

.contact-footer {
    padding: 50px 0px 50px 0px;
    justify-content: space-between;
}

.footer-bottom {
    padding-bottom: 20px;
}

.con-top {
    padding-top: 10px;
}

.con-btn {
    text-align: center;
}

.contact-footer .c2,
.contact-footer .c3 {
    align-self: flex-end;
}

.contact-footer .c2 a {
    color: #F0CA38;
    text-decoration: none;
}

.contact-footer .c2 a:hover {
    color: #F0CA38;
    text-decoration: underline;
}

.contact-footer .c3 {
    padding-left: 20px;
}

.contact-footer label {
    color: #fff;
}

.contact-footer label .small {
    color: #fff;
}

.contact-footer .btn-yellow {
    border-radius: 0;
    color: #000;
    text-transform: inherit;
    font-size: 25px;
    padding: 8px 40px;
    border: 3px solid #F0CA38;
}

.contact-footer .btn-yellow:hover {
    color: #F0CA38;
    background: transparent;
}

/* Customize the label (the container) */
.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 50%;
}

.radio-container input~.checkmark {
    border: 3px solid #F0CA38;
}

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

/* When the radio button is checked, add a blue background */
.radio-container input:checked~.checkmark {
    background-color: #F0CA38;
}

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

/* Occupational costs */
.property-occupational-costs .occ-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-occupational-costs .occ-switcher a {
    color: #204168;
    font-size: 18px;
}

.property-occupational-costs .occ-switcher a.disabled {
    pointer-events: none;
    color: #000;
    border-bottom: 1px solid #000;

}

.property-occupational-costs .occ-switcher a.selected {
    color: #000;
}

.property-occupational-costs .occ-switcher.pt-1 {
    padding-top: 1rem;
}

.property-occupational-costs .property-occ-label {
    font-size: 20px;
}

.property-occupational-costs .property-occ-value {
    color: #204168;
    font-size: 20px;
}

.property-occupational-costs .occ-help .help-text {
    cursor: pointer;
    display: inline-block;
}

.property-occupational-costs .occ-help .help-box {
    position: relative;
    background: #204168;
    color: #fff;
    min-height: 250px;
    margin-top: 60px;
    padding-left: 16px;
    padding-top: 20px;
    color: #fff;
    font-size: 12px;
}

.property-occupational-costs .occ-help .col-size {
    padding-top: 5px;
    padding-bottom: 5px;
}

.property-occupational-costs .occ-help .help-box:before {
    content: "";
    position: absolute;
    top: -36px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #204168;
}

.property-occupational-costs .occ-help .help-box h4 {
    font-size: 20px;
    color: #fff;
}

/* @media (min-width: 1200px) {
  .container {
    width: 1460px;
  }
}

@media (min-width: 1460px) {
  .property-carousel {
    width: 1460px;
    margin-left: auto;
    margin-right: auto;
  }
} */

@media (min-width: 0px) {
    .navbar-header {
        float: none;
    }

    .navbar-left,
    .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
    }

    .navbar-nav>li {
        float: left;
        width: 100% !important;
    }

    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .collapse.in {
        display: block !important;
    }

    .popups .search {
        padding-left: 15px !important;
    }

    .mini-search {
        left: 0 !important;
    }

    .site-search-form-container.active {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        left: 0;
    }
}

.landing-header {
    background: #102452;
    width: 100%;
    height: 350px;
    padding: 40px 0;
    position: absolute;
    top: 70px;
}

.landing-top h4,
.landing-top h1,
.landing-top h5 {
    color: #fff;
}

.landing-top h5 {
    font-size: 16px;
}

.landing-top-wrapper {
    padding: 0 100px;
}

ul.blocks {
    padding: 0;
    list-style: none;
    padding-top: 30px;
    display: flex;
}

ul.blocks li {
    padding-right: 40px;
}

ul.nearest li {
    display: block;
    color: #fff;
    font-size: 14px;
}

.landing-left {
    padding: 40px 100px;
}

.landing-desc {
    font-size: 14px;
    color: #939393;
}

.landing-image {
    border: 2px solid #F0CA38;
}

.landing-top {
    display: flex;
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 70px;
}

.landing-body {
    display: flex;
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 70px;
}

.landing-row {
    flex: 1;
    display: flex;
}

.landing-row:first-of-type {
    flex-flow: wrap;
}

.landing-row .rowspan-2 {
    flex: 1 1 100%;
}

.landing-row .landing-col {
    flex: 1;
}

.landing-black {
    padding-right: 130px;
}

.landing-black h4,
.landing-black h1,
.landing-black h5 {
    color: #0f2552 !important;
}

.landing-tb {
    z-index: 99;
}

.wt p {
    color: #fff !important;
}

.wt li {
    color: #fff !important;
}

.wt h1 {
    color: #fff !important;
}

.wt h3 {
    color: #fff !important;
}

.estate-header h3 a:hover {
    color: black;
}

a.property-title {
    color: #fff;
}

/* ngIf animation */
.animationIf.ng-enter,
.animationIf.ng-leave {
    -webkit-transition: opacity ease-in-out 0.5s;
    -moz-transition: opacity ease-in-out 0.5s;
    -ms-transition: opacity ease-in-out 0.5s;
    -o-transition: opacity ease-in-out 0.5s;
    transition: opacity ease-in-out 0.5s;
}

.animationIf.ng-enter,
.animationIf.ng-leave.ng-leave-active {
    opacity: 0;
}

.animationIf.ng-leave,
.animationIf.ng-enter.ng-enter-active {
    opacity: 1;
}

.btn,
button {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.main-left {
    margin-top: 21px;
}

/* Landscape */
@media only screen and (min-width: 1366px) {
    .main-left {
        width: auto;
    }
}

/*Portrait*/
@media only screen and (min-width: 1024px) and (orientation: portrait) {
    .main-left {
        width: auto;
        overflow-y: scroll;
    }
}

.frm_style_formidable-style.with_frm_style .form-field.frm_top_container.vertical_radio .frm_checkbox label a {
    color: #F0CA38;
    text-decoration: none;
}

.frm_style_formidable-style.with_frm_style .form-field.frm_top_container.vertical_radio+.form-field.frm_top_container.vertical_radio .frm_checkbox+.frm_checkbox {
    margin-top: 10px;
}

.frm_style_formidable-style.with_frm_style .form-field.frm_top_container.vertical_radio+.form-field.frm_top_container.vertical_radio .frm_checkbox label {
    font-size: 14px;
    line-height: 1.4;
}

.property-agent-details-container * {
    box-sizing: border-box;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .contact-container {
        padding-left: 50px;
        padding-right: 50px;
        /* padding-bottom: 616px !important; */
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1390px) {
    .ui-select-bootstrap .ui-select-choices-row {
        padding-top: 2px;
        font-size: 12px;
        padding-bottom: 2px;
        border-top: 1px solid #f5f5f5;
        background-color: white;
    }

    .ui-select-bootstrap .ui-select-choices-row>span {
        cursor: pointer;
        display: block;
        padding: 3px 6px;
        clear: both;
        font-weight: 400;
        line-height: 1.42857143;
        color: #333;
        white-space: nowrap;
    }
}

.unit-page-contact-footer {
    padding: 50px 0px 50px 11px;
    justify-content: space-between;
}

.footer-bottom {
    padding-bottom: 20px;
}

.con-top {
    padding-top: 10px;
}

.con-btn {
    text-align: center;
}

.unit-page-contact-footer .c2,
.unit-page-contact-footer .c3 {
    align-self: flex-end;
}

.unit-page-contact-footer .c2 a {
    color: #F0CA38;
    text-decoration: none;
}

.unit-page-contact-footer.c2 a:hover {
    color: #F0CA38;
    text-decoration: underline;
}

.unit-page-contact-footer.c3 {
    padding-left: 20px;
}

.unit-page-contact-footer label {
    color: #fff;
}

.unit-page-contact-footer label .small {
    color: #fff;
}

.unit-page-contact-footer .btn-yellow {
    border-radius: 0;
    color: #000;
    text-transform: inherit;
    font-size: 25px;
    padding: 8px 40px;
    border: 3px solid #F0CA38;
}

.unit-page-contact-footer.btn-yellow:hover {
    color: #F0CA38;
    background: transparent;
}

.unit-page-btn {
    padding-top: 20px;
    padding-bottom: 50px;
}

.c2-unit-page {
    padding-top: 10px;
}

@media (max-width: 796px) {
    .results-teaser {
        border: 2px solid #333333;
        margin-bottom: 30px;
    }

    .teaser-image {
        height: 100px !important;
    }
}

.legend {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.8px);
    top: 83px;
    width: 133px;
    padding: 11px 20px;
    z-index: 9999;
    right: 71px;
    margin-right: -40px;
    position: fixed;
    border-radius: 6px;
}

.legend-card {
    float: right;
}

.lengend_img {
    width: 21px;
    margin-left: 34px;
    margin-right: 34px;
    height: 100%;
    margin-top: 5px
}

.legend_txt {
    margin-left: -44px;
}

@media (max-width: 768px) {
    .teaser-image {
        height: 135px !important;
    }

    #mobile-scroll {
        padding-bottom: 20px;
    }

    /* p.copyright {
    margin-bottom: 27px;
  } */
}

@media (max-width: 767px) {
    .legend {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .legend {
        z-index: 99;
    }

    .navbar-collapse.collapse.in.responsive-menu {
        z-index: 99;
        left: 0px;
    }
}

.mob-search {
    margin-top: 75px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .legend {
        z-index: 99;
    }
}

.slick-dots li {
    margin: 0px 0px !important;
}

.property-carousel .slick-dots {
    margin: 0px !important;
}

.ui-select-bootstrap .ui-select-choices-row.active>span {
    background-color: gray !important;
}

@media (min-width: 320px) and (max-width: 768px) {
    .jumbotron-video .video {
        display: none;
    }
}

.ui-select-bootstrap .ui-select-choices-row {
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: white;
    border-top: 1px solid #cec7c7;
    border-right: 2px solid #333333;
    border-left: 2px solid #333333;
}

.ui-select-holder {
    width: 68%;
    border-bottom: 1px solid #333333;
}

.download {
    font-size: 26px !important
}

@media (min-width: 320px) and (max-width: 768px) {
    .results-teaser .teaser-text .property-data p {
        font-size: 14px;
    }

    .results-teaser .teaser-image .estate-let {
        padding: 0px 1.5px 0px 1px;
        right: 22px;
    }

    .results-teaser .teaser-image .estate-join {
        bottom: 16px;
        right: 21px;
        line-height: 20px;
        padding: 4px 0.5rem;
    }

    .properties-footer-estate-join {
        bottom: -28px;
        right: 21px;
        line-height: 20px;
        padding: 4px 0.5rem;
        background: #204168;
        color: #fff;
        position: absolute;
    }

    .footer {
        padding: 20px 0;
    }
}

.lan-pge-tit h1 {
    color: white;
}

.lan-pge-sub-tit h1 {
    color: #0f2551;
}

.lan-pge-tit h2 {
    color: white;
}

.lan-pge-sub-tit h2 {
    color: #0f2551;
}

.lan-pge-tit h3 {
    color: white;
}

.lan-pge-sub-tit h3 {
    color: #0f2551;
}

.lan-pge-tit h4 {
    color: white;
}

.lan-pge-sub-tit h4 {
    color: #0f2551;
}

.lan-pge-tit h5 {
    color: white;
}

.lan-pge-sub-tit h5 {
    color: #0f2551;
}

.lan-pge-tit h6 {
    color: white;
}

.lan-pge-sub-tit h6 {
    color: #0f2551;
}

.lan-pge-tit pre {
    color: white;
}

.lan-pge-sub-tit pre {
    color: #0f2551;
}

.lan-pge-tit p {
    color: white;
}

.lan-pge-sub-tit p {
    color: #0f2551;
}

.flt-color {
    background: gray !important;
}

/**landing-page**/
@media (min-width: 320px) and (max-width: 768px) {
    .landing-body {
        width: 100% !important;
    }

    .landing-body .col-xs-6 {
        width: 100% !important;
        padding-right: 10px !important;
    }

    .landing-desc {
        width: 67%;
    }

    .lan-pge-tit p {
        width: 40%;
    }

    .landing-desc {
        width: 63%
    }

    .lan-pge-tit h4 {
        width: 40%;
        font-size: 21px;
    }

    .blocks.tbl-stl h1 {
        width: 30%;
    }

    .lan-pge-sub-tit p {
        width: 58%;
    }

    .property-details-container .col-xs-12 {
        float: none;
    }

    .margin-bottom-md {
        margin-bottom: 0px;
    }

    .landing-black {
        margin-top: 445px;
    }

    .landing-image {
        border: none;
    }

    .landing-image img {
        display: none !important;
    }

    .landing-tb {
        z-index: unset;
    }

    .landing-tb tr {
        display: grid;
    }

    .landing-tb td {
        width: 55% !important;
    }

    .tbl-stl td {
        text-align: unset;
    }

    .landing-body .tbl-stl td {
        text-align: unset;
    }

    .landing-header {
        height: 834px;
    }

    .properties-container {
        border: 2px solid #eeeeee;
    }
}

@media (max-width: 320px) {
    .landing-tb td {
        width: 51% !important;
    }

    .landing-desc {
        width: 58%;
    }

    .contact-nav-modal .form-control .contact-modal .form-control {
        font-size: 15px;
    }
}

@media only screen and (max-width: 360px) {
    .landing-tb td {
        width: 51% !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    /* .property-map {width: 100% !important;} */
    .lan-pge-tit {
        margin-bottom: 30px;
    }

    .landing-tb td {
        width: 76% !important;
    }
}

.home-search-container {
    margin-bottom: 60px;
    margin-top: 60px;
}

.hero-section .slick-slider {
    margin: 0;
}

.site-search-form-container {
    background: white;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
    display: none;
}

.site-search-form-container.active {
    display: flex;
}

.site-search-form-container .input-group {
    width: 50%;
}


/* Extra css by m */
.contact-nav-modal,
.contact-modal {
    display: none;
}

.contact-nav-modal.active,
.contact-modal.active {
    display: block;
}


/************ MY NEW STYLE **********/
.navbar-collapse.collapse.in.responsive-menu {
    width: 358px;
    top: 0px;
    padding-bottom: 0px;
}

.dropdown-menu {
    position: relative;
    display: none;
    border: none;
    border-radius: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-default .responsive-menu ul.navbar-nav>li>ul.dropdown-menu {
    border-left: none;
    margin-bottom: 30px;
}

.navbar.navbar-default .dropdown-menu {
    background: inherit;
    width: 100%;
}

.navbar-collapse.collapse.in {
    background: #5d5d5d;
}

.navbar-default .responsive-menu ul.navbar-nav>li>a {
    border-top: 1px solid #696869;
}

.navbar-default .responsive-menu ul.navbar-nav {
    padding: 0 35px;
}

.navbar-default .responsive-menu ul.navbar-nav span.yellow {
    display: block;
    padding-top: 15px;
}

.nav-open .navbar-header .navbar-toggle-nav {
    /* opacity: 0;
    visibility: hidden; */
}

.navbar-header-open button.navbar-toggle {
    background: #707070;
    padding: 20px 0;
    border-radius: 2px !important;
    right: 35px;
    width: 42px;
}

.navbar-header-open button.navbar-toggle .icon-bar {
    left: 10px;
    top: -25px;
}

@media (min-width: 0px) {
    .navbar-collapse.collapse.in.responsive-menu {
        /* left: inherit; */
        /* right: 0px; */
        height: 100vh !important;
    }

}

.home-footer {
    background-position: center center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.home-footer .list-inline.text-right.social-icons {
    float: right;
    /*width: 28px;*/
    margin-bottom: 0px;
    text-align: right;
}

.home-footer .text-right.copyright {
    float: left;
    width: 90%;
    text-align: left;
}

.home-footer .footer ul.footer-left-menu li {
    padding-right: 16px;
}

.home-footer .footer ul.footer-right-menu li {
    padding-left: 16px;
}

.home-footer .footer-bottom-sec {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 25px;
    margin-top: 40px;
}

@media (max-width: 767px) {

    footer.wp-block-template-part .footer-block .footer-bottom-sec>div,
    footer.wp-block-template-part .footer-block .footer-bottom-sec>div>div {
        flex-flow: column !important;
    }

    footer.wp-block-template-part .footer-block .footer-bottom-sec ul.social-icons {
        position: absolute;
        right: 10px;
        bottom: 0;
    }

    footer.wp-block-template-part .footer-block .footer-bottom-sec>div>div .menu-footer-menu-3-container {
        margin-top: 13px;
    }

    footer.wp-block-template-part .footer-block .footer-bottom-sec>div>div .menu-footer-menu-3-container #menu-footer-menu-3 {
        flex-direction: row !important;
    }

    footer.wp-block-template-part .footer-block .footer-bottom-sec>div>div .menu-footer-menu-3-container #menu-footer-menu-3.legal-menu li:first-child {
        margin-left: 0;
    }
}

.slider-items {
    background-position: center center !important;
    background-size: cover !important;
    height: 100vh;
    width: 100%;
    position: relative;
}

.hero-section .slick-dots {
    bottom: 30px;
}

.hero-section .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 5px !important;
    display: inline-block;
}

.hero-section .slick-dots li button {
    width: 30px;
    height: 4px;
    padding: 0;
}

.hero-section .slick-dots li button::before {
    line-height: 4;
    width: 30px;
    height: 4px;
    content: '';
    opacity: 1;
    color: #fff;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.hero-section .slick-dots li.slick-active button::before {
    background-color: #F0CA38;
    opacity: 1;
    color: #fff;
}

.hero-section .cover-container,
.property-types {
    width: 80%;
    max-width: 600px;
}

.hero-section .jumbotron-content .cover-container h1 {
    font-size: 35px;
    text-transform: inherit;
    padding: 0;
    margin: 0;
    line-height: 43px;
}

.hero-section .jumbotron-content .cover-container h1::after {
    display: none;
}

.hero-section .jumbotron-content .search-area .search-label {
    border: none;
    width: 90%;
    max-width: 756px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
}

.hero-section .jumbotron-content .search-area .search-label input {
    background-color: transparent !important;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.hero-section .jumbotron-content .search-area .search-label input::placeholder {
    color: #102134;
    opacity: .6;
}

.hero-section .jumbotron-content .search-area .search-label button {
    color: #102134 !important;
}

.hero-section .margin-bottom-sm {
    margin-bottom: 4px;
}

.hero-section .jumbotron-content {
    padding-top: 0px;
    /*top: 50%; -ms-transform: translate(0, -40%); -webkit-transform: translate(0, -40%); -moz-transform: translate(0, -40%); transform: translate(0, -40%);*/
}

.hero-section {
    height: 100vh;
    position: relative;
}

.home-footer {
    position: relative;
    float: left;
    width: 100%;
}

.home-footer .footer {
    background: rgba(23, 24, 28, .8);
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
}

.home-footer .footer {
    background: rgba(23, 24, 28);
    min-height: 190px;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.search-box-menu .site-search-form-container {
    background-color: transparent;
    padding: 0px;
    justify-content: center;
    display: block;
}

.search-box-menu form {
    display: flex;
}

.search-box-menu form input {
    flex-grow: 1;
}

.search-box-menu form .input-group-btn {
    flex-grow: 2;
}

.search-box-menu .form-control {
    width: unset;
    height: 60px;
    border: none;
    border-radius: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    box-shadow: none;
    color: #fff;
}

.search-box-menu .btn-yl {
    height: 60px;
    padding: 0 15px;
    border: 1px solid #6e6e6e;
    border-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background: #6e6e6e;
    text-align: center;
    line-height: 60px;
    color: #fff !important;
    font-size: 16px;
}

.search-box-menu .btn-yl i {
    color: #fff !important;
}

.search-box-menu .input-group {
    width: 100%;
}

.form-control {
    background-color: #6e6e6e;
    border: 1px solid #6e6e6e;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width: 768px) {
    .home-footer .footer ul.list-inline li {
        margin-top: 0;
    }

    .home-footer .footer ul.footer-left-menu li {
        display: inline-block;
    }

    .home-footer .footer ul.footer-right-menu {
        text-align: right;
    }

    .home-footer .footer ul.footer-right-menu li {
        display: inline-block;
    }

    .home-footer .text-right.copyright {
        margin-top: 0;
    }

    .home-footer .col-md-6.col-xs-12 {
        width: 50%;
    }

    .home-footer .footer ul.footer-right-menu li:first-child {
        padding-left: 0;
    }
}

@media (max-width: 991px) {

    .hero-section .cover-container,
    .property-types {
        width: 96%;
    }

    .home-footer .footer-bottom-sec {
        padding-top: 20px;
        margin-top: 20px;
    }

}

@media (max-width: 767px) {

    .home-footer .footer ul.footer-left-menu li,
    .home-footer .footer ul.footer-right-menu li {
        width: 50%;
        float: left;
        padding-left: 0;
        padding-right: 10px;
    }

    .home-footer .text-right.copyright {
        margin-top: 0;
    }

}

@media (max-width: 640px) {
    .jumbotron-content .search-box {
        padding-top: 15px;
    }

    .hero-section .jumbotron-content .search-area .search-label input {
        padding-left: 5px;
        font-size: 15px;
    }

    .hero-section .jumbotron-content .search-area .btn-yl {
        padding: 0 12px;
        font-size: 15px;
    }

    .container>.navbar-collapse {
        margin: 0;
    }

    .navbar-default .responsive-menu ul.navbar-nav {
        padding: 0 10px;
    }

    .navbar-default .navbar-toggle {
        margin-right: 0;
    }

    .navbar-header-open button.navbar-toggle {
        right: 10px;
    }

    .nav>li>a,
    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu>li>a {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-default .responsive-menu ul.navbar-nav>li>ul.dropdown-menu {
        margin-bottom: 19px;
    }


}

@media (max-width: 480px) {
    .navbar-collapse.collapse.in.responsive-menu {
        width: 100%;
    }

    .hero-section .jumbotron-content .cover-container h1 {
        font-size: 28px;
        line-height: 34px;
    }

    .home footer .social-icons {
        margin-top: 0;
    }

    .hero-section .jumbotron-content .search-area .search-label {
        padding: 7px;
    }

    .jumbotron-content .search-box {
        padding-top: 10px;
    }
}

@media (max-width: 360px) {
    .hero-section .jumbotron-content .cover-container h1 {
        font-size: 26px;
        line-height: 32px;
    }

    .hero-section .jumbotron-content .search-area .btn-yl {
        padding: 0 8px;
        font-size: 14px;
    }

    .hero-section .jumbotron-content .search-area .search-label {
        padding: 6px;
    }
}

.frm_error_style p {
    color: #B94A48;
    font-size: 14px;
    margin: 0;
}

.property-details-container__tour-icon {
    width: 28px;
}