/* This comment is
    * several lines long.
    * since it uses the CSS comment syntax,
    * it will appear in the CSS output. */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

/*
IMPORT FONTS
-------------------------------------------- */
body,
input,
select,
button,
textarea {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 300; }

h1,
h2,
h3 {
  margin-bottom: 40px;
  font-size: 50px;
  line-height: 58px;
  font-weight: 700;
  color: #19479B; }
  @media (max-width: 768px) {
    h1,
    h2,
    h3 {
      font-size: 42px;
      line-height: 48px; } }
  @media (max-width: 640px) {
    h1,
    h2,
    h3 {
      font-size: 36px;
      line-height: 41px; } }

h1 em,
h3 em {
  display: inline-block;
  position: relative;
  padding: 0 5px 2px 5px;
  color: white;
  font-style: normal;
  background-color: #E3233F; }
  h1 em:before,
  h3 em:before {
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    width: 0;
    height: 0;
    border-top: 60px solid #E3233F;
    border-right: 14px solid transparent; }
    @media (max-width: 768px) {
      h1 em:before,
      h3 em:before {
        border-top: 48px solid #E3233F; } }
    @media (max-width: 640px) {
      h1 em:before,
      h3 em:before {
        border-top: 41px solid #E3233F; } }

h2 {
  text-transform: uppercase; }
  h2 em {
    font-weight: 300; }

h4 {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  color: #E3233F; }
  @media (max-width: 768px) {
    h4 {
      font-size: 28px;
      line-height: 32px; } }

h5 {
  margin-bottom: 20px;
  font-size: 35px;
  line-height: 41px;
  font-weight: 700;
  color: #19479B; }
  @media (max-width: 768px) {
    h5 {
      font-size: 28px;
      line-height: 32px; } }

h6 {
  margin-bottom: 20px;
  font-size: 35px;
  line-height: 41px;
  font-weight: 400;
  color: #333333; }
  @media (max-width: 768px) {
    h6 {
      font-size: 28px;
      line-height: 32px; } }

p,
ol li,
ul li {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 32px;
  color: #333333; }
  p strong,
  ol li strong,
  ul li strong {
    font-weight: 700; }
  @media (max-width: 768px) {
    p,
    ol li,
    ul li {
      font-size: 18px;
      line-height: 26px; } }

ol,
ul {
  margin-bottom: 20px;
  padding-left: 30px; }
  ol li,
  ul li {
    margin-bottom: 0;
    list-style-type: disc; }

.description-outer h3,
.specification-outer h3,
.location-outer h3,
.contact-agent-outer h3 {
  margin-bottom: 40px;
  font-size: 35px; }

/*
GLOBAL STYLES
-------------------------------------------- */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  position: relative;
  background-color: #f3f3f3;
  -webkit-overflow-scrolling: touch; }

img {
  max-width: 100%;
  height: auto; }

.wrapper {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box; }

section {
  padding-top: 70px;
  padding-bottom: 70px; }
  @media (max-width: 640px) {
    section {
      padding-top: 30px;
      padding-bottom: 30px; } }
  section.bgr-white {
    background-color: white; }

/* apply a natural box layout model to all elements
*, *:before, *:after {
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
 } */
/*
|------------------------------------------------------------
| Help Classes
|------------------------------------------------------------
*/
.display-none {
  display: none; }

.display-block {
  display: block; }

.display-inline {
  display: inline; }

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

.left {
  float: left; }

.right {
  float: right; }

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

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

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

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

.bold {
  font-weight: bold; }

.italic {
  font-style: italic; }

.capitalize {
  text-transform: capitalize; }

.uppercase {
  text-transform: uppercase; }

.lowercase {
  text-transform: lowercase; }

.fixed {
  position: fixed; }

/*
|------------------------------------------------------------
| Clearfix
|------------------------------------------------------------
*/
.clearfix {
  zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden; }
  .clearfix:after {
    clear: both; }

/*
BUTTONS GLOBAL
-------------------------------------------- */
/*
FORMS GLOBAL
-------------------------------------------- */
.form-outer {
  margin: 0;
  padding: 0; }
  .form-outer li {
    position: relative;
    padding: 0;
    margin-bottom: 20px;
    list-style-type: none; }
    .form-outer li input[type="text"],
    .form-outer li input[type="tel"],
    .form-outer li input[type="email"] {
      width: 100%;
      height: 55px;
      padding: 0;
      margin: 0;
      font-family: "Roboto", Arial, Helvetica, sans-serif;
      font-weight: 300;
      font-size: 24px;
      color: #333333;
      border: 0;
      border-bottom: #19479B solid 1px;
      outline: none;
      box-shadow: none; }
      @media (max-width: 640px) {
        .form-outer li input[type="text"],
        .form-outer li input[type="tel"],
        .form-outer li input[type="email"] {
          font-size: 20px; } }
    .form-outer li input[type="submit"] {
      width: 100%;
      height: 70px;
      padding: 0;
      margin: 20px 0 0 0;
      font-size: 28px;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      background-color: #E3233F;
      border: 0;
      cursor: pointer; }
      .form-outer li input[type="submit"]:hover {
        background-color: #19479B; }
    .form-outer li .wpcf7-not-valid-tip {
      font-size: 14px; }
    .form-outer li .ajax-loader {
      position: absolute; }
    .form-outer li:last-child {
      margin-bottom: 0; }

@unclude breakpoint(640) {
  .form-outer li input {
    -webkit-appearance: none; } }

/*
+ Landscape message */
.landscape-message {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: none !important;
  width: 100%;
  height: 200%;
  background: url(../img/bgr-landscape-message.jpg) center no-repeat #000000;
  background-size: contain;
  -webkit-transform: translateY(-25%);
  -moz-transform: translateY(-25%);
  transform: translateY(-25%); }

.mobile.landscape .landscape-message {
  display: block !important; }

/*
= HEADER AND NAVIGATION
------------------------------------------------------------------------------------- */
header {
  padding: 22px 0;
  background-color: #19479B; }

/*
FOOTER
-------------------------------------------- */
footer {
  padding: 15px 0;
  background-color: #19479B; }
  footer .footer-cols {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between; }
    @media (max-width: 640px) {
      footer .footer-cols {
        display: block;
        text-align: center; } }
    footer .footer-cols p {
      margin: 0;
      color: white;
      font-size: 16px;
      line-height: 22px; }
      @media (max-width: 640px) {
        footer .footer-cols p {
          margin-bottom: 20px; } }
    footer .footer-cols ul.social {
      margin: 0; }
      footer .footer-cols ul.social li {
        display: inline-block;
        margin: 0 0 0 10px;
        padding: 0;
        list-style-type: none;
        vertical-align: middle; }
        @media (max-width: 640px) {
          footer .footer-cols ul.social li {
            margin: 0 5px; } }
        footer .footer-cols ul.social li img {
          display: block; }

/*
GRID SYSTEM
-------------------------------------------- */
/*
HERO
-------------------------------------------- */
.hero {
  position: relative; }
  .hero .hero-slider .slide:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); }
  .hero .hero-slider .slide figure {
    height: 30.0vw;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover; }
    @media (max-width: 768px) {
      .hero .hero-slider .slide figure {
        height: 400px; } }
    @media (max-width: 640px) {
      .hero .hero-slider .slide figure {
        height: 200px; } }
  .hero .hero-slider .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 40px;
    height: 40px;
    text-align: left;
    text-indent: -9999px;
    background: none;
    border: 0;
    cursor: pointer; }
    .hero .hero-slider .slick-arrow:before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 25px;
      height: 25px;
      border-left: 3px solid white;
      border-top: 3px solid white; }
    .hero .hero-slider .slick-arrow.slick-prev {
      left: 50%;
      -webkit-transform: translateX(-620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
      -moz-transform: translateX(-620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
      -ms-transform: translateX(-620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
      -o-transform: translateX(-620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
      transform: translateX(-620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); }
      .hero .hero-slider .slick-arrow.slick-prev:before {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -moz-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -ms-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -o-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); }
      @media (max-width: 768px) {
        .hero .hero-slider .slick-arrow.slick-prev {
          left: 3px;
          -webkit-transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -moz-transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -ms-transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -o-transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); } }
    .hero .hero-slider .slick-arrow.slick-next {
      right: 50%;
      -webkit-transform: translateX(620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
      -moz-transform: translateX(620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
      -ms-transform: translateX(620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
      -o-transform: translateX(620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
      transform: translateX(620px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); }
      .hero .hero-slider .slick-arrow.slick-next:before {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -moz-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -ms-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -o-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); }
      @media (max-width: 768px) {
        .hero .hero-slider .slick-arrow.slick-next {
          right: 3px;
          -webkit-transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -moz-transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -ms-transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -o-transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          transform: translateX(0) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); } }

/*
FORM INTRO CONTENT
-------------------------------------------- */
.form-content-outer {
  position: relative;
  z-index: 10; }
  .form-content-outer .form-content-columns {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between; }
    @media (max-width: 640px) {
      .form-content-outer .form-content-columns {
        display: block; } }
    .form-content-outer .form-content-columns .col {
      flex: 1; }
      .form-content-outer .form-content-columns .col .form-holder {
        padding: 60px 50px;
        margin-top: -200px;
        background-color: white;
        box-shadow: 0px 6px 47px rgba(0, 0, 0, 0.15); }
        @media (max-width: 768px) {
          .form-content-outer .form-content-columns .col .form-holder {
            padding: 30px; } }
        @media (max-width: 640px) {
          .form-content-outer .form-content-columns .col .form-holder {
            margin-top: 40px; } }

/*
CONTENT IMAGE + TEXT
-------------------------------------------- */
.content-columns-image-text {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between; }
  @media (max-width: 640px) {
    .content-columns-image-text {
      display: block; } }
  .content-columns-image-text .col.img-col.image-offset-left img {
    display: block;
    margin-left: -50px; }
    @media (max-width: 768px) {
      .content-columns-image-text .col.img-col.image-offset-left img {
        margin-left: -30px; } }
    @media (max-width: 640px) {
      .content-columns-image-text .col.img-col.image-offset-left img {
        margin: 0 auto 40px; } }
  .content-columns-image-text .col.img-col.image-offset-top {
    flex: 110%;
    padding-left: 50px; }
    @media (max-width: 640px) {
      .content-columns-image-text .col.img-col.image-offset-top {
        padding-left: 0; } }
    .content-columns-image-text .col.img-col.image-offset-top img {
      display: block;
      max-width: calc(100% + 60px);
      margin-top: -120px; }
      @media (max-width: 768px) {
        .content-columns-image-text .col.img-col.image-offset-top img {
          margin-top: 0; } }
      @media (max-width: 640px) {
        .content-columns-image-text .col.img-col.image-offset-top img {
          max-width: 100%;
          margin: 0 auto 40px; } }
  .content-columns-image-text .col.txt-col {
    padding-top: 10px; }
    .content-columns-image-text .col.txt-col ul li {
      position: relative;
      margin-bottom: 30px;
      list-style-type: none;
      font-size: 35px;
      line-height: 41px; }
      @media (max-width: 640px) {
        .content-columns-image-text .col.txt-col ul li {
          margin-bottom: 15px; } }
      .content-columns-image-text .col.txt-col ul li:before {
        content: "";
        position: absolute;
        left: -28px;
        top: 10px;
        width: 12px;
        height: 18px;
        background-color: #E3233F; }
      @media (max-width: 768px) {
        .content-columns-image-text .col.txt-col ul li {
          font-size: 28px;
          line-height: 32px; } }
      @media (max-width: 640px) {
        .content-columns-image-text .col.txt-col ul li {
          font-size: 20px;
          line-height: 31px; }
          .content-columns-image-text .col.txt-col ul li:before {
            width: 8px;
            height: 10px; } }

/*
CONTENT COLUMNS COUNTER
-------------------------------------------- */
.content-columns-counter .col-counter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  margin-left: -25px;
  margin-right: -25px;
  counter-reset: content-columns-counter; }
  @media (max-width: 640px) {
    .content-columns-counter .col-counter {
      display: block; } }
  .content-columns-counter .col-counter .col {
    position: relative;
    padding: 70px 25px 0 25px;
    counter-increment: content-columns-counter; }
    .content-columns-counter .col-counter .col:before {
      content: counter(content-columns-counter);
      position: absolute;
      left: -30px;
      top: -50px;
      z-index: -1;
      font-size: 260px;
      font-weight: 700;
      line-height: normal;
      color: white;
      text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.05); }

/*
FEATURE COLUMNS
-------------------------------------------- */
.feature-columns {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
  padding-top: 20px;
  padding-bottom: 60px; }
  @media (max-width: 640px) {
    .feature-columns {
      display: block; } }
  .feature-columns .col {
    flex: 0 0 calc(50% - 50px);
    position: relative;
    padding: 60px 25px 0 25px; }
    .feature-columns .col figure {
      margin-bottom: 20px; }
      .feature-columns .col figure img {
        max-height: 100px;
        width: auto;
        max-width: none; }
    .feature-columns .col p strong {
      color: #E3233F; }

/*
PROPERTIES
-------------------------------------------- */
.property-single-outer .property-single-top {
  position: relative;
  padding: 53px 0 68px 0;
  background-color: white; }
  .property-single-outer .property-single-top .top-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px; }
    @media (max-width: 640px) {
      .property-single-outer .property-single-top .top-info {
        display: block; } }
  .property-single-outer .property-single-top h6 {
    margin-bottom: 3px; }
  .property-single-outer .property-single-top h1 {
    margin-bottom: 0; }
  .property-single-outer .property-single-top .info-right {
    text-align: right; }
    @media (max-width: 640px) {
      .property-single-outer .property-single-top .info-right {
        padding-top: 30px;
        text-align: left; } }
    .property-single-outer .property-single-top .info-right h6 {
      margin-bottom: 15px;
      color: #E3233F; }
    .property-single-outer .property-single-top .info-right p {
      margin: 0; }

.property-single-outer .property-nav-outer {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
  height: 68px;
  width: 100%;
  background-color: white; }
  .property-single-outer .property-nav-outer ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0 0 0 -20px;
    padding-left: 0; }
    @media (max-width: 768px) {
      .property-single-outer .property-nav-outer ul {
        margin-left: -10px; } }
    @media (max-width: 640px) {
      .property-single-outer .property-nav-outer ul {
        overflow-x: auto;
        width: calc(100% + 30px); } }
    .property-single-outer .property-nav-outer ul li {
      margin: 0 20px;
      list-style-type: none;
      font-size: 20px;
      line-height: 32px; }
      @media (max-width: 768px) {
        .property-single-outer .property-nav-outer ul li {
          margin: 0 10px; } }
      .property-single-outer .property-nav-outer ul li a {
        display: block;
        position: relative;
        padding: 18px 0;
        color: #828282; }
        .property-single-outer .property-nav-outer ul li a.current {
          color: #19479B; }
          .property-single-outer .property-nav-outer ul li a.current:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background-color: #E3233F; }
  .property-single-outer .property-nav-outer.sticky {
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.05); }

.property-single-outer .property-video-outer {
  padding: 70px 0;
  background-color: #004E9B; }
  .property-single-outer .property-video-outer .video-holder {
    padding-left: 70px;
    padding-right: 70px; }
    @media (max-width: 768px) {
      .property-single-outer .property-video-outer .video-holder {
        padding-left: 0;
        padding-right: 0; } }
    .property-single-outer .property-video-outer .video-holder.type-embed iframe {
      width: 100%;
      height: 580px; }
      @media (max-width: 768px) {
        .property-single-outer .property-video-outer .video-holder.type-embed iframe {
          height: 400px; } }
      @media (max-width: 640px) {
        .property-single-outer .property-video-outer .video-holder.type-embed iframe {
          height: 250px; } }
    .property-single-outer .property-video-outer .video-holder.type-native video {
      width: 100%;
      height: 580px; }
      @media (max-width: 768px) {
        .property-single-outer .property-video-outer .video-holder.type-native video {
          height: 400px; } }
      @media (max-width: 640px) {
        .property-single-outer .property-video-outer .video-holder.type-native video {
          height: 250px; } }

.property-single-outer .property-gallery-outer {
  padding: 70px 0;
  background-color: #E5EFFA;
  border-bottom: #19479B solid 1px; }
  .property-single-outer .property-gallery-outer .property-slider {
    position: relative;
    padding-left: 70px;
    padding-right: 70px; }
    @media (max-width: 768px) {
      .property-single-outer .property-gallery-outer .property-slider {
        padding-left: 0;
        padding-right: 0; } }
    .property-single-outer .property-gallery-outer .property-slider li figure {
      width: 100%;
      height: 580px;
      background-position: 50% 50%;
      background-size: cover; }
      @media (max-width: 768px) {
        .property-single-outer .property-gallery-outer .property-slider li figure {
          height: 420px; } }
      @media (max-width: 640px) {
        .property-single-outer .property-gallery-outer .property-slider li figure {
          height: 200px; } }
    .property-single-outer .property-gallery-outer .property-slider .slick-arrow {
      position: absolute;
      top: 50%;
      z-index: 10;
      width: 40px;
      height: 40px;
      text-align: left;
      text-indent: -9999px;
      background: none;
      border: 0;
      cursor: pointer; }
      .property-single-outer .property-gallery-outer .property-slider .slick-arrow:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 25px;
        height: 25px;
        border-left: 3px solid #19479B;
        border-top: 3px solid #19479B; }
        @media (max-width: 768px) {
          .property-single-outer .property-gallery-outer .property-slider .slick-arrow:before {
            border-left: 3px solid white;
            border-top: 3px solid white; } }
        @media (max-width: 640px) {
          .property-single-outer .property-gallery-outer .property-slider .slick-arrow:before {
            width: 15px;
            height: 15px; } }
      .property-single-outer .property-gallery-outer .property-slider .slick-arrow.slick-prev {
        left: 0;
        -webkit-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -moz-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -ms-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -o-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); }
        .property-single-outer .property-gallery-outer .property-slider .slick-arrow.slick-prev:before {
          -webkit-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -moz-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -ms-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -o-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-45deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); }
      .property-single-outer .property-gallery-outer .property-slider .slick-arrow.slick-next {
        right: 20px;
        -webkit-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -moz-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -ms-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        -o-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
        transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); }
        .property-single-outer .property-gallery-outer .property-slider .slick-arrow.slick-next:before {
          -webkit-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -moz-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -ms-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -o-transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-225deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); }
  .property-single-outer .property-gallery-outer .property-slider-thumbs {
    padding-left: 70px;
    padding-right: 70px;
    margin: 0 -7px; }
    @media (max-width: 768px) {
      .property-single-outer .property-gallery-outer .property-slider-thumbs {
        padding-left: 0;
        padding-right: 0; } }
    @media (max-width: 640px) {
      .property-single-outer .property-gallery-outer .property-slider-thumbs {
        margin: 0 -3px; } }
    .property-single-outer .property-gallery-outer .property-slider-thumbs li {
      margin: 0 7px; }
      @media (max-width: 640px) {
        .property-single-outer .property-gallery-outer .property-slider-thumbs li {
          margin: 0 3px; } }
      .property-single-outer .property-gallery-outer .property-slider-thumbs li figure {
        opacity: 0.4;
        width: 100%;
        height: 125px;
        background-position: 50% 50%;
        background-size: cover;
        box-sizing: border-box; }
        @media (max-width: 768px) {
          .property-single-outer .property-gallery-outer .property-slider-thumbs li figure {
            height: 100px; } }
        @media (max-width: 640px) {
          .property-single-outer .property-gallery-outer .property-slider-thumbs li figure {
            height: 50px; } }
      .property-single-outer .property-gallery-outer .property-slider-thumbs li.slick-current figure {
        opacity: 1;
        border: white solid 3px; }

.property-single-outer .description-outer {
  padding: 70px 0 50px; }
  .property-single-outer .description-outer .description-content {
    column-count: 2;
    column-gap: 50px; }
    @media (max-width: 768px) {
      .property-single-outer .description-outer .description-content {
        column-count: 1; } }

.property-single-outer .specification-outer {
  padding: 70px 0 50px;
  background: url(../img/skew-bgr.png) 100% 0 no-repeat;
  background-size: auto 100%; }
  @media (max-width: 640px) {
    .property-single-outer .specification-outer {
      background: white; } }
  .property-single-outer .specification-outer .specification-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    grid-gap: 20px;
    padding: 0;
    margin: 0; }
    @media (max-width: 768px) {
      .property-single-outer .specification-outer .specification-list {
        grid-template-columns: repeat(2, minmax(250px, 1fr)); } }
    @media (max-width: 640px) {
      .property-single-outer .specification-outer .specification-list {
        display: block; } }
    .property-single-outer .specification-outer .specification-list li {
      position: relative;
      min-height: 100px;
      padding-left: 115px;
      margin-bottom: 70px;
      list-style-type: none; }
      .property-single-outer .specification-outer .specification-list li figure {
        position: absolute;
        left: 0;
        top: 0;
        width: 100px;
        height: 100px;
        border: #D0D0D0 solid 1px;
        border-radius: 50%; }
        .property-single-outer .specification-outer .specification-list li figure img {
          position: absolute;
          left: 50%;
          top: 50%;
          max-width: 60px;
          max-height: 60px;
          -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -moz-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -ms-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          -o-transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1);
          transform: translateX(-50%) translateY(-50%) translateZ(0px) rotate(0deg) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1, 1); }
      .property-single-outer .specification-outer .specification-list li h6 {
        padding-top: 15px;
        font-size: 24px;
        line-height: 32px;
        font-weight: 500; }
        @media (max-width: 640px) {
          .property-single-outer .specification-outer .specification-list li h6 {
            font-size: 20px;
            line-height: 32px; } }
      .property-single-outer .specification-outer .specification-list li p {
        padding-top: 0;
        font-size: 18px;
        line-height: 32px;
        color: #828282; }
        @media (max-width: 640px) {
          .property-single-outer .specification-outer .specification-list li p {
            font-size: 15px;
            line-height: 26px; } }

.property-single-outer .location-outer {
  padding: 70px; }
  @media (max-width: 768px) {
    .property-single-outer .location-outer {
      padding-left: 0;
      padding-right: 0; } }
  .property-single-outer .location-outer .location-content iframe {
    width: 100%;
    height: 540px;
    box-shadow: 0px 6px 47px rgba(0, 0, 0, 0.15); }
    @media (max-width: 768px) {
      .property-single-outer .location-outer .location-content iframe {
        height: 400px; } }

.property-single-outer .contact-agent-outer {
  padding: 70px 0 100px;
  background-color: white; }
  .property-single-outer .contact-agent-outer .contact-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    grid-gap: 70px;
    margin-bottom: 80px; }
    @media (max-width: 768px) {
      .property-single-outer .contact-agent-outer .contact-content {
        grid-template-columns: 1fr 30%; } }
    @media (max-width: 640px) {
      .property-single-outer .contact-agent-outer .contact-content {
        display: block;
        position: relative; } }
    @media (max-width: 640px) {
      .property-single-outer .contact-agent-outer .contact-content .txt {
        margin-bottom: 30px; } }
    .property-single-outer .contact-agent-outer .contact-content .txt .destination-email {
      display: none; }
    .property-single-outer .contact-agent-outer .contact-content .txt h4 {
      margin-bottom: 20px;
      padding-top: 20px;
      text-transform: uppercase;
      font-size: 35px; }
      @media (max-width: 640px) {
        .property-single-outer .contact-agent-outer .contact-content .txt h4 {
          padding-right: 70px;
          font-size: 30px; } }
    .property-single-outer .contact-agent-outer .contact-content .txt h5 {
      margin-bottom: 70px;
      font-weight: 400; }
      @media (max-width: 640px) {
        .property-single-outer .contact-agent-outer .contact-content .txt h5 {
          margin-bottom: 20px;
          font-size: 20px; } }
      .property-single-outer .contact-agent-outer .contact-content .txt h5 a {
        color: #333333; }
        .property-single-outer .contact-agent-outer .contact-content .txt h5 a:hover {
          color: #19479B; }
    .property-single-outer .contact-agent-outer .contact-content .txt p {
      margin-bottom: 70px; }
      @media (max-width: 640px) {
        .property-single-outer .contact-agent-outer .contact-content .txt p {
          margin-bottom: 30px; } }
    @media (max-width: 640px) {
      .property-single-outer .contact-agent-outer .contact-content figure {
        position: absolute;
        top: 5px;
        right: 0;
        overflow: hidden;
        width: 65px;
        height: 65px;
        border-radius: 50%; } }
    .property-single-outer .contact-agent-outer .contact-content figure img {
      display: block;
      max-width: 100%;
      height: auto;
      box-shadow: 0px 6px 47px rgba(0, 0, 0, 0.15); }
  .property-single-outer .contact-agent-outer .bottom-contact-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0;
    padding: 0; }
    @media (max-width: 768px) {
      .property-single-outer .contact-agent-outer .bottom-contact-info {
        display: block; } }
    .property-single-outer .contact-agent-outer .bottom-contact-info li {
      padding: 0 0 0 30px;
      margin: 0 70px 20px 0;
      font-size: 20px;
      line-height: 32px;
      color: #333333;
      list-style-type: none;
      background-position: 0 3px;
      background-repeat: no-repeat; }
      .property-single-outer .contact-agent-outer .bottom-contact-info li a {
        color: #333333;
        white-space: nowrap; }
        .property-single-outer .contact-agent-outer .bottom-contact-info li a:hover {
          color: #19479B; }
      .property-single-outer .contact-agent-outer .bottom-contact-info li.phone {
        background-image: url(../img/icon-info-phone.svg); }
      .property-single-outer .contact-agent-outer .bottom-contact-info li.address {
        background-image: url(../img/icon-info-location.svg); }
