/**
 * Most of the custom and specific CSS for the theme is here
 */
/*==================================================================
▐	0. INITIAL SETTINGS
===================================================================*/
/*==================================================================
▐	1. BASE
===================================================================*/
/*------------------------------------------------------------------
#	BASE STYLES FOR ELEMENTS
-------------------------------------------------------------------*/
/*  1. General
-------------------------------------------------------------------*/
html {
  height: 100%;
}
body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
  color: #53565a;
  transition: opacity 1s ease-in;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1,
h2 {
  line-height: 1.25;
}
h3,
h4,
h5,
h6 {
  line-height: 1.35;
}
ul {
  margin-left: 0;
  margin-bottom: 0;
}
.user-text ul,
.user-text ol {
  margin: 0 0 1.5em 3em;
}
video {
  width: 100%;
  display: block;
}
a {
  transition: color, background-color 0.2s ease-out;
  color: inherit;
  text-decoration: none;
}
a:focus,
a:hover,
a:active {
  color: inherit;
}
a:hover,
a:active {
  text-decoration: none;
}
a:visited {
  color: inherit;
}
a i {
  vertical-align: middle;
}
/*  2. Generic element modules
-------------------------------------------------------------------*/
/*  2.1 Standard Table  */
.table th {
  border-top: none;
  font-weight: 600;
}
.table th,
.table td {
  padding: 1.05em 1.2em;
}
/*------------------------------------------------------------------
#	BASE STYLES
-------------------------------------------------------------------*/
/*  0. General
-------------------------------------------------------------------*/
.cursor-pointer {
  cursor: pointer;
}
/*  1. Layout & Positioning
-------------------------------------------------------------------*/
.pos-abs-std,
.std-dots-shadow,
.nf-form-content .field-wrap:before,
.nf-form-content .field-wrap:after,
.std-dots-shadow-b:before,
.pt-btn-std:before {
  position: absolute;
  top: 0;
  left: 0;
}
.pos-abs-std-b {
  position: absolute;
  bottom: 0;
  left: 0;
}
.pos-abs-std-r {
  position: absolute;
  top: 0;
  right: 0;
}
.pos-abs-std-br {
  position: absolute;
  bottom: 0;
  right: 0;
}
.abs-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.abs-centered-3d {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.abs-centered-hack {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(calc(-50% - .55px));
}
.abs-v-centered,
.dec-line > span:first-child,
.main-menu-wrap > ul > li a:before,
.main-menu-wrap > ul > li a:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.abs-h-centered {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.flex-centered-vh,
.modal {
  justify-content: center;
  align-items: center;
}
.flex-centered-h {
  justify-content: center;
}
.flex-centered-v {
  align-items: center;
}
.flex-dir-col {
  flex-direction: column;
}
.pos-rel,
.main-menu-wrap > ul > li a {
  position: relative;
}
.pos-fixed {
  position: fixed;
}
.before-after-std,
.before-std:before,
.after-std:after,
.std-dots-shadow,
.main-menu-wrap > ul > li a:before,
.main-menu-wrap > ul > li a:after,
.nf-form-content .field-wrap:before,
.nf-form-content .field-wrap:after,
.std-dots-shadow-b:before,
.pt-btn-std:before {
  content: ' ';
  position: absolute;
  display: block;
}
.before-disabled:before {
  content: inherit !important;
  display: none !important;
}
.centered-block {
  margin: 0 auto;
  display: block;
}
.display-block {
  display: block;
}
.display-ib {
  display: inline-block;
}
.display-none {
  display: none;
}
.display-none-i {
  display: none !important;
}
.display-flex,
.modal {
  display: flex;
}
.display-none-hack {
  top: 0;
  position: absolute;
  visibility: hidden;
  display: block;
  pointer-events: none;
  width: 100%;
  opacity: 0;
}
.display-none-hack a {
  display: none;
}
.z-index-minus-1 {
  z-index: -1;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-100 {
  z-index: 100;
}
.overflow-h {
  overflow: hidden !important;
}
.overflow-v-svg svg:not(:root) {
  overflow: visible !important;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.wh-100,
.std-dots-shadow,
.std-dots-shadow-b:before,
.pt-btn-std:before {
  width: 100%;
  height: 100%;
}
.h-100vh {
  height: 100vh;
}
.w-100vw {
  width: 100vw;
}
.mw-100vw {
  max-width: 100vw;
}
.margin-0 {
  margin: 0;
}
.margin-0i {
  margin: 0 !important;
}
.padding-0 {
  padding: 0;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.pe-none {
  pointer-events: none !important;
}
.pe-auto {
  pointer-events: auto !important;
}
.lc-m-0 :last-child {
  margin-bottom: 0;
}
.hide-native-scrollbars::-webkit-scrollbar {
  width: 0;
  background: transparent;
  /* Chrome/Safari/Webkit */
}
.hide-native-scrollbars {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
/*  3. Colors
-------------------------------------------------------------------*/
/* Text */
.color-txt-white {
  color: #fff !important;
}
.color-txt-error {
  color: #c9544b !important;
}
/* BG */
.color-bg-white {
  background: #fff !important;
}
.color-fill-white {
  fill: #fff;
}
.color-stroke-white {
  stroke: #fff;
}
.fill-even-odd {
  fill-rule: evenodd;
}
.outline-0i {
  outline: none !important;
}
.std-dots-shadow,
.std-dots-shadow-b:before,
.pt-btn-std:before {
  background: url('../img/pattern-dots-grey-1.png');
  z-index: -1;
  pointer-events: none;
}
.std-dots-shadow-b:before {
  transition: transform 0.3s ease-in-out;
}
.std-pattern-lines-1 {
  background: url('../img/pattern-lines-1.png');
}
.bg-size-cover-i {
  background-size: cover !important;
}
/*  3. Transitions & Animations
-------------------------------------------------------------------*/
.base-transition,
.main-menu-wrap > ul > li a {
  transition: all 0.2s ease-out;
}
.base-transition-l {
  transition: all 0.2s linear;
}
.transition-none {
  transition: none;
}
.backface-v-hidden,
.bg-img-elem-wrap {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.vis-hidden {
  visibility: hidden;
}
.opacity-0i {
  opacity: 0 !important;
}
.opacity-0 {
  opacity: 0;
}
.opacity-1 {
  opacity: 1;
}
/*  4. Images
-------------------------------------------------------------------*/
/*  5. Responsiveness
-------------------------------------------------------------------*/
.img-w100 {
  width: 100% !important;
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.embed-responsive-4by3::before {
  padding-top: 75%;
}
.embed-responsive-1by1::before {
  padding-top: 100%;
}
.embed-responsive-1024by684::before {
  padding-top: 66.8%;
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
/*  6. Bootstrap 4 | CSS Fixes
-------------------------------------------------------------------*/
/*  7. WP | CSS Fixes
-------------------------------------------------------------------*/
/* admin bar fix */
html.desktop-design,
html.mobile-design {
  margin-top: 0 !important;
}
/*-------------------------------------------------------------------
#	Theme iconic font
-------------------------------------------------------------------*/
@font-face {
  font-family: 'fontello';
  src: url('../css/fonts/fontello.eot?71276836');
  src: url('../css/fonts/fontello.eot?71276836#iefix') format('embedded-opentype'), url('../css/fonts/fontello.woff2?71276836') format('woff2'), url('../css/fonts/fontello.woff?71276836') format('woff'), url('../css/fonts/fontello.ttf?71276836') format('truetype'), url('../css/fonts/fontello.svg?71276836#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../../css/fonts/fontello.svg?71276836#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-calendar:before {
  content: '\e800';
}
/* '' */
.icon-clock:before {
  content: '\e801';
}
/* '' */
.icon-play:before {
  content: '\e802';
}
/* '' */
.icon-phone:before {
  content: '\e803';
}
/* '' */
.icon-dre-clean:before {
  content: '\e804';
}
/* '' */
.icon-globe:before {
  content: '\e805';
}
/* '' */
.icon-star-empty:before {
  content: '\e806';
}
/* '' */
.icon-star:before {
  content: '\e807';
}
/* '' */
.icon-twitter:before {
  content: '\f099';
}
/* '' */
.icon-facebook:before {
  content: '\f09a';
}
/* '' */
.icon-mail-alt:before {
  content: '\f0e0';
}
/* '' */
.icon-linkedin:before {
  content: '\f0e1';
}
/* '' */
.icon-angle-right:before {
  content: '\f105';
}
/* '' */
.icon-youtube:before {
  content: '\f167';
}
/* '' */
.icon-instagram:before {
  content: '\f16d';
}
/* '' */
.icon-vimeo:before {
  content: '\f27d';
}
/* '' */
.icon-gplus:before {
  content: '\f30f';
}
/* '' */
/*------------------------------------------------------------------
#	LAYOUT
-------------------------------------------------------------------*/
.page-template-default .site-content,
body.error404 .site-content {
  margin-top: 120px;
  margin-bottom: 30px;
}
/*  2. Bootstrap 4 fixes/changes
-------------------------------------------------------------------*/
/*==================================================================
▐	2. MODULES
===================================================================*/
/*-------------------------------------------------------------------
#	SECTION BLOCKS
-------------------------------------------------------------------*/
.content-area {
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
  transform: translateZ(0);
  will-change: filter;
  min-height: 100vh;
}
.content-area section:last-of-type {
  margin-bottom: 110px !important;
}
/*  1. General
-------------------------------------------------------------------*/
.content-padding,
.site-content-section {
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 410px) {
  .content-padding,
  .site-content-section {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.site-content-section {
  position: relative;
}
.site-content-section.--full-width {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 410px) {
  .site-content-section .__section-inner-wrap.--text {
    border-left-width: 10px;
    border-left-style: solid;
    padding-left: 55px;
    padding-top: 60px;
  }
}
.site-content-section .__content-wrap {
  margin-top: 35px;
}
.site-content-section.--outside-title .title-block {
  margin-bottom: 38px;
}
/*  2. Spacers - Margin
-------------------------------------------------------------------*/
.sec-spacer-1t {
  margin-top: 60px;
}
.sec-spacer-1tb-p {
  padding-top: 68px;
  padding-bottom: 68px;
}
.sec-spacer-2t {
  margin-top: 50px;
}
.sec-spacer-2tb-p {
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec-spacer-3t {
  margin-top: 70px;
}
.sec-spacer-3b {
  margin-bottom: 70px;
}
.sec-spacer-4b {
  margin-bottom: 75px;
}
.generic-page-spacer-1tb-p {
  padding-top: 100px;
  padding-bottom: 90px;
}
@media (min-width: 1024px) {
  .generic-page-spacer-1tb-p {
    padding-top: 60px;
  }
}
/*  4. BG
-------------------------------------------------------------------*/
.section-bg-stripe {
  width: 200%;
  height: 80px;
}
@media (min-width: 470px) {
  .section-bg-stripe {
    height: 100px;
  }
}
@media (min-width: 560px) {
  .section-bg-stripe {
    height: 150px;
  }
}
@media (min-width: 768px) {
  .section-bg-stripe {
    height: 195px;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .section-bg-stripe {
    height: 150px;
  }
}
@media (min-width: 1200px) {
  .section-bg-stripe {
    height: 150px;
  }
}
@media (min-width: 1400px) {
  .section-bg-stripe {
    height: 195px;
  }
}
/*  4. Mobile & Desktop
-------------------------------------------------------------------*/
.mobile-design .hide-mobile {
  display: none;
}
.mobile-design .mobile-d-block {
  display: block;
}
.desktop-design .hide-desktop {
  display: none;
}
.desktop-design .site-content-section {
  margin-left: 450px;
}
/*  5. Generic page
-------------------------------------------------------------------*/
.page-template-default .entry-content p:last-of-type {
  margin-bottom: 0;
}
.mobile-design .page-template-default .sidebar-area,
.mobile-design body.error404 .sidebar-area {
  display: none;
}
.mobile-design .page-template-default .top-mobile-menu-bar,
.mobile-design body.error404 .top-mobile-menu-bar {
  opacity: 1 !important;
}
/*  6. 404 page
-------------------------------------------------------------------*/
.section-error-404 {
  min-height: 100vh;
}
.section-error-404 .title-delimiter-2 svg {
  visibility: visible;
}
.section-error-404 .__title {
  font-size: 28vw;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 600px) {
  .section-error-404 .__title {
    font-size: 22vw;
  }
}
@media (min-width: 1024px) {
  .section-error-404 .__title {
    font-size: 14.33vw;
  }
}
.section-error-404 .__subtitle {
  font-size: 16px;
}
@media (min-width: 450px) {
  .section-error-404 .__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 700px) {
  .section-error-404 .__subtitle {
    font-size: 3vw;
  }
}
@media (min-width: 1024px) {
  .section-error-404 .__subtitle {
    font-size: 2.08vw;
  }
}
@media (min-width: 1300px) {
  .section-error-404 .__subtitle {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .section-error-404 .pt-btn {
    font-size: 12px;
  }
  .section-error-404 .pt-btn .__content {
    min-width: 200px;
  }
}
.section-error-404 .pt-btn .__content {
  min-width: 305px;
}
.section-error-404 .__title,
.section-error-404 .__subtitle,
.section-error-404 .title-delimiter-2 {
  margin-bottom: 30px;
}
@media (min-width: 700px) {
  .section-error-404 .__title,
  .section-error-404 .__subtitle,
  .section-error-404 .title-delimiter-2 {
    margin-bottom: 4vw;
  }
}
@media (min-width: 1024px) {
  .section-error-404 .__title,
  .section-error-404 .__subtitle,
  .section-error-404 .title-delimiter-2 {
    margin-bottom: 3vw;
  }
}
@media (min-width: 1300px) {
  .section-error-404 .__title,
  .section-error-404 .__subtitle,
  .section-error-404 .title-delimiter-2 {
    margin-bottom: 2.5vw;
  }
}
.desktop-design .section-error-404 {
  margin-bottom: 50px;
}
/*-------------------------------------------------------------------
#	TEXT & HEADINGS
-------------------------------------------------------------------*/
/*  1. Typography
-------------------------------------------------------------------*/
.font-main {
  font-family: 'Montserrat', sans-serif;
}
.letter-spacing-2,
.nf-response-msg p {
  letter-spacing: 0.06em;
}
.letter-spacing-3,
.main-menu-wrap > ul > li a {
  letter-spacing: 0.08em;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-bold {
  font-weight: bold;
}
.fs-small-std {
  font-size: 15px;
}
.lh-0 {
  line-height: 0;
}
.lh-1 {
  line-height: 1;
}
/*  2. General
-------------------------------------------------------------------*/
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.txt-center {
  text-align: center;
}
.txt-uc {
  text-transform: uppercase;
}
.txt-transform-none {
  text-transform: none;
}
.links-decor a {
  text-decoration: underline;
}
/*  3. List
-------------------------------------------------------------------*/
.ul-no-dots {
  list-style-type: none;
}
/*  4. Headings
-------------------------------------------------------------------*/
/* Delimiters */
.title-delimiter {
  display: flex;
}
.title-delimiter > div {
  width: 6px;
  height: 50px;
}
.title-delimiter > div:first-child {
  margin-right: 7px;
  transform: translateY(24%);
}
.title-delimiter > div:last-child {
  transform: translateY(-24%);
}
.title-delimiter.--small > div {
  width: 2px;
  height: 25px;
}
.title-delimiter.--small > div:first-child {
  margin-right: 5px;
}
.title-delimiter.--h {
  display: inline-block;
}
.title-delimiter.--h > div:first-child {
  margin-right: auto;
}
.title-delimiter.--small.--h > div {
  width: 25px;
  height: 2px;
}
.title-delimiter.--small.--h > div:first-child {
  margin-bottom: 5px;
  transform: translateX(-5px);
}
.title-delimiter.--small.--h > div:last-child {
  transform: translateX(5px);
}
/* Headings */
.title-block .__inner-wrap {
  font-size: 26px;
}
@media (min-width: 370px) {
  .title-block .__inner-wrap {
    font-size: 28px;
  }
}
@media (min-width: 450px) {
  .title-block .__inner-wrap {
    font-size: 32px;
  }
}
@media (min-width: 700px) {
  .title-block .__inner-wrap {
    font-size: 35px;
  }
}
.title-block.animated-title-2-block .__inner-wrap {
  justify-content: center;
}
.title-block.animated-title-2-block .title-delimiter-2 {
  margin-top: 22px;
}
.title-block .section-title {
  font-size: inherit;
}
@media (max-width: 369px) {
  .title-block .section-title {
    font-weight: 700;
  }
}
.title-block .title-delimiter {
  margin-right: 0.86em;
  margin-top: -0.09em;
}
.title-block.--no-subtitle .section-title {
  margin-bottom: 12px;
}
@media (min-width: 700px) {
  .title-block.--no-subtitle .section-title {
    margin-bottom: 22px;
  }
}
.small-heading {
  font-size: 14px;
}
@media (min-width: 375px) {
  .small-heading {
    font-size: 15px;
  }
}
.small-heading .__separator-line {
  width: 50px;
  height: 2px;
}
.site-content-section .small-heading {
  margin-top: 29px;
}
.special-title .__heading-line-svg {
  left: 7px;
}
.special-title .__heading-line-svg:before {
  height: 11em;
  top: -11em;
  left: 0;
  width: 7px;
}
/*  4. Headings
-------------------------------------------------------------------*/
.title-block-two .__heading-wrap {
  border-left-width: 7px;
  border-left-style: solid;
  padding-left: 43px;
}
.title-block-two .__heading {
  font-size: 40px;
  min-height: 90px;
}
@media (min-width: 450px) {
  .title-block-two .__heading {
    font-size: 45px;
  }
}
@media (min-width: 700px) {
  .title-block-two .__heading {
    font-size: 50px;
  }
}
/*-------------------------------------------------------------------
#	IMAGES
-------------------------------------------------------------------*/
/*  1. BG images
-------------------------------------------------------------------*/
.bg-img-std {
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-img-elem-wrap {
  overflow: hidden;
}
.bg-img-elem-wrap img {
  width: auto;
  max-width: initial;
}
@media screen and (orientation: portrait) {
  .bg-img-elem-wrap img {
    height: 100vh;
    width: auto;
  }
}
@media screen and (orientation: landscape) {
  .bg-img-elem-wrap img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 700px) {
  .bg-img-elem-wrap img {
    min-width: 1200px;
  }
}
@media (min-width: 1024px) {
  .bg-img-elem-wrap img {
    min-width: 1500px;
  }
}
@media (min-width: 1200px) {
  .bg-img-elem-wrap img {
    min-width: 1700px;
  }
}
/*  2. SVG images
-------------------------------------------------------------------*/
.svg-image-wrap {
  display: inline-block;
  line-height: 0;
}
/*  3. Specific SVG images
-------------------------------------------------------------------*/
.triangle-shapes-svg-wrap {
  top: -5px;
  right: -7px;
}
.triangle-shapes-svg {
  fill: none;
  stroke-width: 11px;
  fill-rule: evenodd;
  opacity: 0.1;
}
.big-squares-shape-svg {
  opacity: 0.1;
  fill: none;
  stroke-width: 10.5px;
}
@media (max-width: 650px) {
  .triangle-shapes-svg-wrap,
  .triangle-shape-2-svg-wrap,
  .big-squares-shape-wrap {
    display: none !important;
  }
}
@media (max-width: 410px) {
  .top-border-dots-wrap {
    display: none;
  }
}
/*-------------------------------------------------------------------
#	BUTTONS
-------------------------------------------------------------------*/
/*  1. General
-------------------------------------------------------------------*/
.pt-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.25px;
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  z-index: 1;
}
.pt-btn .__content {
  display: block;
  background: #fff;
  transition: all 0.2s linear;
}
.pt-btn:before {
  transition: all 0.2s linear;
}
.pt-btn:hover,
.pt-btn:active,
.pt-btn:focus {
  text-decoration: none;
  outline: none !important;
}
.pt-btn:hover .__content > span:first-child,
.pt-btn:active .__content > span:first-child,
.pt-btn:focus .__content > span:first-child {
  transform: translate(-0.54em, -50%);
  opacity: 0;
}
.dec-line > span:first-child {
  height: 0.75em;
  top: 50%;
  width: 2px;
  transition: inherit;
}
.dec-line > span:last-child {
  padding-left: 0.68em;
  display: inline-block;
}
.dec-line:hover > span:first-child {
  transform: translate(-0.54em, -50%);
  opacity: 0;
}
.pt-btn-extra-base,
.pt-btn-std {
  text-transform: uppercase;
  text-align: center;
  min-width: 208px;
}
.pt-btn-std {
  border-width: 1px;
  border-style: solid;
}
.pt-btn-std:hover:before,
.pt-btn-std:active:before,
.pt-btn-std:focus:before {
  transform: translate(0.6em, 0.8em);
}
.pt-btn-std:before {
  transform: translate(0.9em, 1.1em);
  z-index: -1;
}
.pt-btn-md .__content {
  padding: 1.14em 1.7em 1.14em;
}
.pt-btn-fw {
  width: 100%;
}
/*  2. Specific
-------------------------------------------------------------------*/
.pt-btn-close {
  width: 40px;
  height: 40px;
  border: none;
}
/* The Close Modal Button */
.close-modal {
  z-index: 100;
  cursor: pointer;
  transition: background 0.3s ease-out;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/*  Video Slider button  */
.video-slider-btn {
  padding: 16px 62px 16px 58px;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .video-slider-btn {
    width: 80%;
    text-align: center;
  }
}
.video-slider-btn .__icon {
  margin-right: 7px;
}
/* Arrow Nav buttons */
.arrow-nav-btn-svg .__bg {
  opacity: 0.6;
}
.arrow-nav-btn-svg:hover .__bg,
.arrow-nav-btn-svg:focus .__bg {
  opacity: 0.8;
}
/*  Gallery button  */
.gallery-button-svg .__bg {
  opacity: 0.6;
}
.gallery-button-svg:hover .__bg,
.gallery-button-svg:focus .__bg {
  opacity: 0.8;
}
/*-------------------------------------------------------------------
#	Modal / Pop-Up
-------------------------------------------------------------------*/
/*  1. General
-------------------------------------------------------------------*/
/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}
@media (max-width: 650px) {
  .modal .__slider-buttons {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .modal .__nav-link.__next {
    margin-right: 50px;
  }
}
@media (min-width: 768px) {
  .modal .__nav-link.__prev {
    margin-left: 50px;
  }
}
/* Modal Content/Box */
.modal-content {
  background-color: #fff;
  overflow: hidden;
}
.modal-loading-notice {
  top: 50%;
}
/* Media Modal */
@media (min-width: 768px) {
  .media-modal .close-modal {
    top: 10px;
    right: 10px;
  }
}
.media-modal iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.media-modal .modal-content {
  background: transparent;
  width: 100%;
}
@media (max-width: 1024px) {
  .media-modal .modal-content {
    padding: 0;
  }
}
.media-modal img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.modal-fixed-width .modal-content {
  max-width: 1200px;
  width: 90%;
}
@media (max-width: 1024px) {
  .modal-fixed-width .modal-content {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 650px) {
  .video-modal .__slider-buttons {
    bottom: 0;
  }
}
.video-modal img {
  transition: opacity 0.5s linear;
}
.content-modal .modal-title {
  font-size: 35px;
  margin: 0;
  padding: 0.715em 0;
}
.content-modal .modal-content {
  background-color: #fff;
  max-width: 800px;
  width: 90%;
  margin: auto;
}
.content-modal .modal-content-inner {
  padding: 45px 40px 45px;
}
/*==================================================================
▐	3. PLUGINS & SCRIPTS
===================================================================*/
/*------------------------------------------------------------------
#	SLICK SLIDER | GENERAL
-------------------------------------------------------------------*/
.slick-slider {
  transition: opacity 0.5s ease-out;
}
.slick-slider iframe {
  max-width: none ;
}
/*  0.1 Arrows
-------------------------------------------------------------------*/
.ll-slick-arrow {
  width: 50px;
  height: 50px;
  bottom: 0;
  cursor: pointer;
  font-size: 30px;
  z-index: 100;
}
@media (min-width: 1300px) {
  .ll-slick-arrow {
    width: 60px;
    height: 60px;
  }
}
.ll-slick-arrow i {
  top: 55%;
}
.ll-slick-left-arrow {
  left: 0;
}
.ll-slick-left-arrow i {
  left: 48%;
}
.ll-slick-right-arrow {
  right: 0;
}
.ll-slick-right-arrow i {
  left: 52%;
}
/*  0.2 Dots
-------------------------------------------------------------------*/
ul.slick-dots {
  bottom: 50px;
}
ul.slick-dots button {
  width: 13px;
  height: 13px;
}
ul.slick-dots button:before {
  content: '';
  width: 13px;
  height: 13px;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  opacity: 1 !important;
}
.slick-slide {
  outline: none !important;
}
/*------------------------------------------------------------------
#	SLICK SLIDER | for certain sliders
-------------------------------------------------------------------*/
.media-page-slider-wrap .__slider-buttons {
  padding: 0;
}
@media (max-width: 600px) {
  .media-page-slider-wrap .__slider-buttons {
    bottom: 0;
    top: auto;
    transform: none;
  }
}
@media (min-width: 768px) {
  .media-page-slider-wrap .__slider-buttons {
    padding: 0 50px;
  }
}
@media (min-width: 768px) {
  .media-page-slider-wrap .__slider-buttons {
    padding: 0 50px;
  }
}
@media (min-width: 1024px) {
  .media-page-slider-wrap .__slider-buttons {
    padding: 0;
  }
}
@media (min-width: 1180px) {
  .media-page-slider-wrap .__slider-buttons {
    padding: 0 20px;
  }
}
@media (min-width: 1350px) {
  .media-page-slider-wrap .__slider-buttons {
    padding: 0 50px;
  }
}
.slick-slider .slider-item:focus {
  outline: 0;
}
.slick-slider.--media-page-slider .embed-responsive img {
  transition: all 5s ease-out;
}
.slick-slider.--media-page-slider .embed-responsive:hover img {
  transform: scale(1.1);
}
/*  1. Floorplans | slick slider
-------------------------------------------------------------------*/
.floorplans-slider img {
  border-style: solid;
  border-width: 1px;
}
/*------------------------------------------------------------------
#	SWIPER SLIDER | in lightboxes
-------------------------------------------------------------------*/
@media (orientation: landscape) and (max-width: 1024px) {
  .swiper-container img {
    height: 100vh;
    max-width: initial;
  }
}
@media (orientation: landscape) and (min-width: 1025px) {
  .swiper-container img {
    max-width: initial;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .swiper-container .__slider-buttons {
    position: fixed;
    transform: none;
  }
}
.swiper-pagination-fraction {
  bottom: 0 !important;
  padding: 5px 0;
  font-size: 14px;
}
/*==================================================================
▐	4. SPECIFIC
===================================================================*/
/*------------------------------------------------------------------
#	SIDEBAR
-------------------------------------------------------------------*/
.sidebar-area {
  position: absolute;
  width: 100%;
  padding: 0 40px;
  text-align: center;
  /*  1. Logo
-------------------------------------------------------------------*/
  /*  2. Address
-------------------------------------------------------------------*/
  /*  3.0 Menu Button
-------------------------------------------------------------------*/
  /*  4. Footer
-------------------------------------------------------------------*/
}
@media (min-width: 1024px) {
  .sidebar-area {
    transition: border-right-color 0.4s ease-in;
    border-right: 1px solid #fff;
    position: fixed;
    max-width: 450px;
    text-align: initial;
  }
}
.sidebar-area .__bg-overlay--color {
  transition: opacity 0.4s ease-in;
}
.sidebar-area .__bg-overlay--image {
  transition: opacity 0.4s ease-in;
}
.sidebar-area .sidebar-arrow-mouse {
  right: -40px;
  bottom: 14%;
  transition: opacity 0.1s ease-in;
}
.sidebar-area .__intro-wrap {
  justify-content: space-between;
}
@keyframes scroll-down-arrow-anim {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
  0% {
    transform: translateY(0);
  }
}
.sidebar-area .scroll-down-arrow-anim {
  outline: 2px solid transparent !important;
  animation-name: scroll-down-arrow-anim;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.sidebar-area .small-heading .__text {
  margin-left: 14px;
}
.sidebar-area .__logo-wrap {
  margin-top: 90px;
  margin-left: 83px;
}
.sidebar-area .__logo-wrap.--squares-off {
  margin-top: 40px;
  margin-left: 0;
  width: 100%;
  text-align: center;
}
.sidebar-area .site-logo-squares {
  top: -66px;
  left: -83px;
}
.sidebar-area .custom-logo-link {
  z-index: 1;
  position: relative;
}
.sidebar-area .__address {
  margin-top: 60px;
}
@media (min-width: 1024px) {
  .sidebar-area .__address {
    margin-top: 85px;
  }
}
@media (min-width: 1024px) {
  .sidebar-area .__address .__heading-wrap {
    border-left-width: 7px;
    border-left-style: solid;
    padding-left: 43px;
  }
}
.sidebar-area .__address .__heading-sep-hor-svg {
  margin-top: 28px;
}
.sidebar-area .__address .__heading-sep-hor-svg svg {
  visibility: visible;
}
.sidebar-area .__address .__heading {
  font-size: 36px;
}
@media (min-width: 370px) {
  .sidebar-area .__address .__heading {
    font-size: 40px;
  }
}
@media (min-width: 450px) {
  .sidebar-area .__address .__heading {
    font-size: 45px;
  }
}
@media (min-width: 700px) {
  .sidebar-area .__address .__heading {
    font-size: 50px;
  }
}
.sidebar-area .__address .sub-heading {
  font-size: 20px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .sidebar-area .__address .sub-heading {
    margin-top: 16px;
    line-height: 1.4;
  }
}
.sidebar-area .main-menu-btn-wrap {
  width: 150px;
  height: 56px;
  margin: 25px auto;
}
@media (max-width: 1023px) {
  .sidebar-area .main-menu-btn-wrap {
    margin: 4% auto;
  }
}
.sidebar-area .__footer {
  padding: 0 0 50px;
}
@media (min-width: 1024px) {
  .sidebar-area .__footer {
    padding: 15px 0 50px;
  }
}
.sidebar-area .__footer-links .title-delimiter {
  margin: 0 20px;
}
.sidebar-area .__footer-links:hover .title-delimiter div {
  transform: translateY(0);
}
.desktop-design .sidebar-area.--darkened .__bg-overlay--color,
.desktop-design .page-template-default .sidebar-area .__bg-overlay--color,
.desktop-design body.error404 .sidebar-area .__bg-overlay--color {
  opacity: 1;
}
.desktop-design .sidebar-area.--darkened .__bg-overlay--image,
.desktop-design .page-template-default .sidebar-area .__bg-overlay--image,
.desktop-design body.error404 .sidebar-area .__bg-overlay--image {
  opacity: 0.1;
}
.desktop-design .sidebar-area.--darkened .sidebar-arrow-mouse,
.desktop-design .page-template-default .sidebar-area .sidebar-arrow-mouse,
.desktop-design body.error404 .sidebar-area .sidebar-arrow-mouse {
  opacity: 0;
}
/*  5. Standard Panel
-------------------------------------------------------------------*/
.standard-panel {
  top: 0;
  left: 0;
  z-index: 10001;
  max-width: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.6s ease;
  overflow: hidden;
  justify-content: flex-end;
}
@media (min-width: 481px) {
  .standard-panel {
    max-width: 450px;
  }
}
.standard-panel .__content-wrap {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 55px 15px 35px;
}
@media (min-width: 370px) {
  .standard-panel .__content-wrap {
    padding: 55px 20px 35px;
  }
}
@media (min-width: 450px) {
  .standard-panel .__content-wrap {
    padding: 55px 35px 35px;
  }
}
@media (min-width: 481px) {
  .standard-panel .__content-wrap {
    padding: 55px 40px 35px;
  }
}
/*  6. Animation of Panels
-------------------------------------------------------------------*/
.mobile-device .site-content-overlay {
  transition: opacity 0.7s ease-out;
  background: rgba(0, 0, 0, 0.75);
}
.show-main-menu,
.agents-panel-on.mobile-design {
  overflow-y: hidden;
}
.show-main-menu #page,
.agents-panel-on.mobile-design #page {
  overflow-y: scroll;
}
.show-main-menu .content-area,
.agents-panel-on.mobile-design .content-area {
  pointer-events: none;
}
.show-main-menu #colophon,
.agents-panel-on.mobile-design #colophon {
  z-index: 1;
}
.show-main-menu.mobile-design.mobile-design #sidebar-intro-wrap,
.agents-panel-on.mobile-design.mobile-design #sidebar-intro-wrap {
  opacity: 0;
}
.show-main-menu.mobile-design.mobile-design .site-content-overlay,
.agents-panel-on.mobile-design.mobile-design .site-content-overlay {
  opacity: 1;
  z-index: 100;
}
.show-main-menu.mobile-design .top-mobile-menu-bar,
.agents-panel-on.mobile-design .top-mobile-menu-bar {
  visibility: hidden;
  z-index: 0;
}
/*  7. Unbranded / Branded Home | Contact section
-------------------------------------------------------------------*/
@media (max-width: 1023px) {
  .unbranded-home .sidebar-area .__address {
    margin-top: 85px;
  }
}
/*------------------------------------------------------------------
#	MAIN MENU
-------------------------------------------------------------------*/
/*  Menu Button
-------------------------------------------------------------------*/
.main-menu-btn {
  left: 1px;
}
.main-menu-btn:hover .__menu-btn_b2,
.main-menu-btn:active .__menu-btn_b2,
.main-menu-btn:focus .__menu-btn_b2 {
  transform: translateX(100%);
}
.main-menu-btn .__menu-btn {
  width: 23px;
  display: block;
  height: 14px;
}
.main-menu-btn .__menu-btn > span {
  height: 2px;
  width: 100%;
  display: block;
}
.main-menu-btn .__menu-btn > span + span {
  margin-top: 4px;
}
.main-menu-btn .__menu-btn .__menu-btn_b2 {
  width: 50%;
}
.main-menu-btn .__link-menu_word {
  padding-left: 34px;
}
/*  Menu Panel
-------------------------------------------------------------------*/
.main-navigation .__menu-footer {
  padding: 26px 20px;
  font-size: 12px;
}
.main-menu-wrap {
  width: 100%;
  margin-left: 45px;
  font-size: 16px;
  text-align: left;
}
.main-menu-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-menu-wrap > ul {
  padding-bottom: 1.2em !important;
}
.main-menu-wrap > ul > li + li {
  margin-top: 1.1em;
}
.main-menu-wrap > ul > li a {
  text-transform: uppercase;
}
.main-menu-wrap > ul > li a:before,
.main-menu-wrap > ul > li a:after {
  width: 20px;
  height: 2px;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.main-menu-wrap > ul > li a:before {
  background: #fff;
  top: 0.35em;
  transform: translateX(-85px);
}
.main-menu-wrap > ul > li a:after {
  top: 0.75em;
  transform: translateX(-5px);
}
.main-menu-wrap > ul > li:not(.current_page_item):hover > a:before,
.main-menu-wrap > ul > li:not(.current_page_item):hover > a:after {
  transition: inherit;
  opacity: 1;
}
.main-menu-wrap > ul > li:not(.current_page_item):hover > a:before {
  transform: translateX(-45px);
}
.main-menu-wrap > ul > li:not(.current_page_item):hover > a:after {
  transform: translateX(-35px);
}
.main-menu-wrap .current_page_item a:before,
.main-menu-wrap .current_page_item a:after {
  opacity: 1;
}
.main-menu-wrap .current_page_item a:before {
  transform: translateX(-45px);
}
.main-menu-wrap .current_page_item a:after {
  transform: translateX(-35px);
}
.main-menu-wrap a {
  color: #fff;
  text-decoration: none;
}
.main-menu-wrap .accordion-menu-item {
  position: relative;
  cursor: pointer;
}
.main-menu-wrap .accordion-menu-item ul {
  display: none;
}
.main-menu-wrap .accordion-menu-item .__active .__icon:before {
  content: '\e801' !important;
}
.main-menu-wrap .accordion-menu-item .__icon {
  margin-left: 5px;
  color: #fff;
}
/*  Menu extra links
-------------------------------------------------------------------*/
.main-nav-extra-links {
  margin-top: 20px;
  font-size: 13px;
}
.main-nav-extra-links .pt-btn-link {
  font-size: inherit;
  display: block;
}
.main-nav-extra-links .pt-btn-link .__content {
  background: transparent;
}
.main-nav-extra-links .pt-btn-link .__content > span:last-child {
  padding-left: 1.2em;
}
.main-nav-extra-links .pt-btn-link + .pt-btn-link {
  margin-top: 0.85em;
}
/*  Mobile menu bar
-------------------------------------------------------------------*/
.top-mobile-menu-bar {
  height: 64px;
  line-height: 1.3;
  transition: opacity 0.6s ease-out;
}
.top-mobile-menu-bar .__address {
  font-size: 15px;
  padding-left: 29px;
  padding-right: 10px;
}
.top-mobile-menu-bar .mobile-bar-svg-shape {
  top: 0.14em;
}
@media (max-width: 550px) {
  .top-mobile-menu-bar .__address {
    top: -0.2em;
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .top-mobile-menu-bar {
    justify-content: center !important;
  }
  .top-mobile-menu-bar .__address {
    display: none;
  }
}
/*  If Menu is opened
-------------------------------------------------------------------*/
.show-main-menu .sidebar-arrow-mouse {
  opacity: 0;
}
.show-main-menu:not(.mobile-device) .content-area {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.show-main-menu .main-navigation {
  transform: translate3d(0, 0, 0);
  overflow-y: auto !important;
}
/*------------------------------------------------------------------
#	AGENTS PANEL
-------------------------------------------------------------------*/
.desktop-design .agents-panel {
  padding-bottom: 85px;
  transform: translate3d(0, 100%, 0);
}
.agents-panel {
  transition: transform 0.8s ease;
  overflow-y: auto;
}
.agents-panel .title-block-two {
  margin-bottom: 55px;
}
.agents-panel .small-heading {
  font-size: 15px;
}
@media (min-width: 400px) {
  .agents-panel .small-heading {
    font-size: 20px;
    line-height: 1.3;
  }
}
.agents-panel .__info-wrap {
  padding-bottom: 20px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.agents-panel .__info a {
  bottom: 0.1em;
}
.agents-panel .__info > i {
  width: 40px;
  height: 40px;
  border-style: solid;
  border-width: 2px;
  padding: 2px;
  font-size: 22px;
  margin-right: 22px;
}
.agents-panel .__info > i:before {
  position: relative;
}
.agents-panel .__info + .__info {
  margin-top: 10px;
}
.agents-panel .__info .icon-phone:before {
  top: 0.055em;
  left: 0.055em;
}
.agents-panel .__info .icon-mail-alt:before {
  font-size: 21px;
  top: -0.1em;
}
.agents-panel .__info .icon-dre-clean {
  font-size: 10px !important;
}
.agents-panel .__info .icon-dre-clean:before {
  left: -0.7em;
  top: 0.8em;
}
.agents-panel .__social-icons {
  font-size: 20px;
  margin-top: 20px;
}
.agents-panel .__social-icons .__bg-overlay {
  height: calc(100% - 9px);
}
.agents-panel .__social-icons a {
  padding: 2px 2px;
  width: 33px;
  height: 33px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.agent + .agent {
  margin-top: 50px;
}
.agent.--no-photo .small-heading {
  margin-bottom: 17px;
}
.agent.--photo .__header {
  margin-bottom: 25px;
}
.agent.--photo .small-heading {
  margin-left: 30px;
}
@media (min-width: 360px) {
  .agent.--photo .small-heading {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
}
.agent.--photo .__text {
  margin-left: 0;
}
.agent.--photo .__photo-wrap {
  padding-right: 5px;
  padding-bottom: 5px;
  max-width: 85px;
}
.agent.--photo .__photo:before {
  width: 100%;
  height: 100%;
  transform: translate(5px, 5px);
}
.agents-panel-on .agents-panel {
  transform: translate3d(0, 0, 0);
}
/*------------------------------------------------------------------
#	MAIN MENU
-------------------------------------------------------------------*/
.site-footer {
  height: 90px;
  background: #2f3134;
  font-size: 12px;
}
.site-footer .__delimiter-wrap {
  padding: 0 30px;
}
.site-footer .title-delimiter > div {
  height: 22px;
}
.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
}
@media (max-width: 500px) {
  .site-footer {
    flex-direction: column;
  }
  .site-footer .__delimiter-wrap {
    display: none;
  }
  .site-footer > div + div {
    margin-top: 10px;
  }
}
/*  2. Share Listing | modal/lightbox
-------------------------------------------------------------------*/
.share-modal .__btn-wrap {
  margin-bottom: 20px;
}
.share-modal .__btn-wrap span {
  font-size: 15px;
  margin-left: 10px;
}
@media (min-width: 620px) and (max-width: 991px) {
  .share-modal .__btn-wrap {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media (max-width: 450px) {
  .share-modal .__btn-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.share-modal .__copy-btn-wrap {
  margin-top: 30px;
  padding-top: 30px;
  border-top-style: dashed;
  border-top-width: 1px;
}
.share-modal .pt-btn {
  max-width: 250px;
  width: 100%;
}
.share-modal #copy-site-link-input {
  opacity: 0.01;
  display: none;
}
#a2apage_dropdown,
#a2apage_full {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}
#a2apage_dropdown a,
#a2apage_full a,
#a2apage_dropdown #a2apage_find,
#a2apage_full #a2apage_find {
  font-weight: normal;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
/*==================================================================
▐	5. SECTIONS
===================================================================*/
/*------------------------------------------------------------------
#	FIRST SECTION
-------------------------------------------------------------------*/
/*  0. First section + Sidebar | Combined on mobile
-------------------------------------------------------------------*/
@media (orientation: portrait) and (max-width: 660px) {
  .mobile-design .home-first-section,
  .mobile-design .sidebar-area,
  .mobile-design .hero-slider,
  .mobile-design .hero-slider .slider-item,
  .mobile-design .hero-slider img {
    height: 120vh;
  }
}
@media (orientation: portrait) and (max-width: 500px) {
  .mobile-design .home-first-section,
  .mobile-design .sidebar-area,
  .mobile-design .hero-slider,
  .mobile-design .hero-slider .slider-item,
  .mobile-design .hero-slider img {
    height: 125vh;
  }
}
@media (orientation: portrait) and (max-width: 430px) {
  .mobile-design .home-first-section,
  .mobile-design .sidebar-area,
  .mobile-design .hero-slider,
  .mobile-design .hero-slider .slider-item,
  .mobile-design .hero-slider img {
    height: 130vh;
  }
}
@media (orientation: portrait) and (max-width: 430px) and (max-height: 760px) {
  .mobile-design .home-first-section,
  .mobile-design .sidebar-area,
  .mobile-design .hero-slider,
  .mobile-design .hero-slider .slider-item,
  .mobile-design .hero-slider img {
    height: 140vh;
  }
}
@media (orientation: portrait) and (max-width: 350px) {
  .mobile-design .home-first-section,
  .mobile-design .sidebar-area,
  .mobile-design .hero-slider,
  .mobile-design .hero-slider .slider-item,
  .mobile-design .hero-slider img {
    height: 170vh;
  }
}
@media (orientation: landscape) and (max-height: 700px) {
  .mobile-design .home-first-section,
  .mobile-design .sidebar-area,
  .mobile-design .hero-slider,
  .mobile-design .hero-slider .slider-item,
  .mobile-design .hero-slider img {
    height: 230vh;
  }
}
@media (orientation: landscape) and (max-height: 550px) {
  .mobile-design .home-first-section,
  .mobile-design .sidebar-area,
  .mobile-design .hero-slider,
  .mobile-design .hero-slider .slider-item,
  .mobile-design .hero-slider img {
    height: 230vh;
  }
}
@media (orientation: landscape) and (max-height: 430px) {
  .mobile-design .home-first-section,
  .mobile-design .sidebar-area,
  .mobile-design .hero-slider,
  .mobile-design .hero-slider .slider-item,
  .mobile-design .hero-slider img {
    height: 240vh;
  }
}
@media (orientation: landscape) and (max-height: 350px) {
  .mobile-design .home-first-section,
  .mobile-design .sidebar-area,
  .mobile-design .hero-slider,
  .mobile-design .hero-slider .slider-item,
  .mobile-design .hero-slider img {
    height: 300vh;
  }
}
@media (orientation: portrait) and (max-width: 660px) {
  .mobile-design .info-lines-4 .home-first-section,
  .mobile-design .info-lines-4 .sidebar-area,
  .mobile-design .info-lines-4 .hero-slider,
  .mobile-design .info-lines-4 .hero-slider .slider-item,
  .mobile-design .info-lines-4 .hero-slider img {
    height: 130vh;
  }
}
@media (orientation: portrait) and (max-width: 500px) {
  .mobile-design .info-lines-4 .home-first-section,
  .mobile-design .info-lines-4 .sidebar-area,
  .mobile-design .info-lines-4 .hero-slider,
  .mobile-design .info-lines-4 .hero-slider .slider-item,
  .mobile-design .info-lines-4 .hero-slider img {
    height: 135vh;
  }
}
@media (orientation: portrait) and (max-width: 430px) {
  .mobile-design .info-lines-4 .home-first-section,
  .mobile-design .info-lines-4 .sidebar-area,
  .mobile-design .info-lines-4 .hero-slider,
  .mobile-design .info-lines-4 .hero-slider .slider-item,
  .mobile-design .info-lines-4 .hero-slider img {
    height: 140vh;
  }
}
@media (orientation: portrait) and (max-width: 430px) and (max-height: 760px) {
  .mobile-design .info-lines-4 .home-first-section,
  .mobile-design .info-lines-4 .sidebar-area,
  .mobile-design .info-lines-4 .hero-slider,
  .mobile-design .info-lines-4 .hero-slider .slider-item,
  .mobile-design .info-lines-4 .hero-slider img {
    height: 150vh;
  }
}
@media (orientation: portrait) and (max-width: 350px) {
  .mobile-design .info-lines-4 .home-first-section,
  .mobile-design .info-lines-4 .sidebar-area,
  .mobile-design .info-lines-4 .hero-slider,
  .mobile-design .info-lines-4 .hero-slider .slider-item,
  .mobile-design .info-lines-4 .hero-slider img {
    height: 190vh;
  }
}
@media (orientation: landscape) and (max-height: 700px) {
  .mobile-design .info-lines-4 .home-first-section,
  .mobile-design .info-lines-4 .sidebar-area,
  .mobile-design .info-lines-4 .hero-slider,
  .mobile-design .info-lines-4 .hero-slider .slider-item,
  .mobile-design .info-lines-4 .hero-slider img {
    height: 240vh;
  }
}
@media (orientation: landscape) and (max-height: 550px) {
  .mobile-design .info-lines-4 .home-first-section,
  .mobile-design .info-lines-4 .sidebar-area,
  .mobile-design .info-lines-4 .hero-slider,
  .mobile-design .info-lines-4 .hero-slider .slider-item,
  .mobile-design .info-lines-4 .hero-slider img {
    height: 240vh;
  }
}
@media (orientation: landscape) and (max-height: 430px) {
  .mobile-design .info-lines-4 .home-first-section,
  .mobile-design .info-lines-4 .sidebar-area,
  .mobile-design .info-lines-4 .hero-slider,
  .mobile-design .info-lines-4 .hero-slider .slider-item,
  .mobile-design .info-lines-4 .hero-slider img {
    height: 250vh;
  }
}
@media (orientation: landscape) and (max-height: 350px) {
  .mobile-design .info-lines-4 .home-first-section,
  .mobile-design .info-lines-4 .sidebar-area,
  .mobile-design .info-lines-4 .hero-slider,
  .mobile-design .info-lines-4 .hero-slider .slider-item,
  .mobile-design .info-lines-4 .hero-slider img {
    height: 320vh;
  }
}
@media (orientation: landscape) {
  .mobile-design .hero-slider img {
    width: auto;
  }
}
.desktop-design .hero-slider .--video img {
  will-change: opacity;
  transition: opacity 1s ease-out;
}
/*  1. Property info list | FIRST section
-------------------------------------------------------------------*/
.property-info-list-wrap.--mobile {
  position: relative;
}
.property-info-list-wrap.--mobile .property-info-list {
  align-items: center;
  padding: 0;
}
.property-info-list-wrap.--mobile li {
  width: 100%;
}
@media (max-width: 600px) {
  .property-info-list-wrap.--mobile li {
    line-height: 1.4;
  }
  .property-info-list-wrap.--mobile li span::after {
    display: block;
    clear: both;
    content: "";
  }
}
.property-info-list {
  padding: 20px 0 43px;
  align-items: flex-end;
}
@media (min-width: 1200px) {
  .property-info-list {
    padding: 20px 0 48px;
  }
  .property-info-list li {
    padding: 10px 25px 10px 25px;
  }
}
.property-info-list li {
  text-transform: inherit;
  padding: 10px 50px 10px 25px;
  font-size: 19px;
  line-height: 1.14;
}
@media (min-width: 450px) {
  .property-info-list li {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .property-info-list li {
    font-size: 28px;
  }
}
.property-info-list li svg {
  margin-right: 12px;
}
@media (max-width: 449px) {
  .property-info-list li svg {
    top: 3px;
  }
}
.property-info-list li span + svg {
  margin-left: 20px;
}
.property-info-list li + li {
  margin-top: 11px;
}
/*------------------------------------------------------------------
#	ABOUT
-------------------------------------------------------------------*/
/*  2. Content | of section
-------------------------------------------------------------------*/
@media (min-width: 992px) {
  .home-about-section .__text-block {
    padding-right: 25px;
  }
  .home-about-section .__text-block p:last-child {
    margin-bottom: 0;
  }
}
.home-about-section .__buttons .pt-btn + .pt-btn {
  margin-top: 2.68em;
}
@media (max-width: 1240px) {
  .home-about-section .__content-wrap {
    display: block;
  }
  .home-about-section .__content-wrap .__col {
    max-width: inherit;
  }
  .home-about-section .__content-wrap .__col:last-child {
    margin-top: 30px;
  }
}
.open-hours-outer-wrap {
  padding-bottom: 25px;
}
.open-hours-wrap {
  margin-top: 75px;
  border-width: 1px;
  border-style: solid;
  padding: 0 10% 35px;
}
@media (min-width: 1331px px) {
  .open-hours-wrap {
    margin-top: 52px;
  }
}
.open-hours-wrap:before {
  transform: translate(19px, 27px);
}
.open-hours-wrap:hover:before {
  transform: translate(13px, 21px);
}
.open-hours-wrap .__title {
  padding: 0.6em 2.2em;
  top: -2.27em;
  border: 15px solid #fff;
  width: 90%;
  outline: 1px solid transparent;
}
@media (min-width: 550px) {
  .open-hours-wrap .__title {
    width: 70%;
  }
}
@media (min-width: 1170px) {
  .open-hours-wrap .__title {
    width: auto;
  }
}
@media (min-width: 1550px) {
  .open-hours-wrap .__delimiter-wrap {
    display: block;
  }
}
.open-hours-wrap .__content {
  transform-style: preserve-3d;
  perspective: 600;
  perspective-origin: 50% 50%;
}
@media (max-width: 459px) {
  .open-hours-wrap .__content {
    padding-top: 30px;
  }
}
@media (min-width: 460px) and (max-width: 1329px) {
  .open-hours-wrap .__content {
    display: inline-flex;
    flex-direction: column;
    align-items: baseline;
    padding-top: 10px;
  }
}
.open-hours-wrap .__date-block {
  justify-content: space-between;
}
@media (max-width: 1329px) {
  .open-hours-wrap .__date-block {
    display: block;
  }
}
.open-hours-wrap .__date-block + .__date-block {
  margin-top: 25px;
  padding-top: 25px;
  border-top-width: 1px;
  border-top-style: dashed;
}
@media (min-width: 1330px) {
  .open-hours-wrap .__date-block + .__date-block {
    margin-top: 20px;
    padding-top: 20px;
  }
}
.open-hours-wrap .__date-block:first-child {
  padding-top: 40px;
}
.open-hours-wrap .__icon-wrap {
  padding: 7px 8px;
  border-width: 2px;
  border-style: solid;
  font-size: 23px;
}
.open-hours-wrap .__date .__icon-wrap {
  margin-right: 30px;
}
@media (max-width: 1329px) {
  .open-hours-wrap .__time {
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-top: 20px;
  }
}
.open-hours-wrap .__time .__icon-wrap {
  font-size: 22px;
  margin-right: 30px;
  padding: 7.5px 8.5px;
}
@media (min-width: 1330px) {
  .open-hours-wrap .__time .__icon-wrap {
    margin-left: 30px;
    margin-right: auto;
  }
}
/*------------------------------------------------------------------
#	AMENITIES
-------------------------------------------------------------------*/
/*  1. Content | of section
-------------------------------------------------------------------*/
.home-amenities-section .__content-wrap {
  margin-top: 12px;
}
.__amenity-wrap {
  margin-top: 30px;
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .__amenity-wrap {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media (min-width: 1300px) and (max-width: 1500px) {
  .__amenity-wrap {
    max-width: 33.333%;
    flex: 0 0 33.333%;
  }
}
.__amenity-wrap .__icon {
  height: 46px;
  margin-right: 29px;
}
/*------------------------------------------------------------------
#	PROPERTY VIDEO
-------------------------------------------------------------------*/
/*  1. Slider
-------------------------------------------------------------------*/
.property-slider .slick-slide.slider-item {
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 550px) {
  .property-slider .slick-slide.slider-item {
    max-width: 480px;
  }
}
@media (min-width: 768px) {
  .property-slider .slick-slide.slider-item {
    max-width: 640px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (min-width: 1024px) {
  .property-slider .slick-slide.slider-item {
    max-width: 480px;
  }
}
@media (min-width: 1350px) {
  .property-slider .slick-slide.slider-item {
    max-width: 600px;
  }
}
@media (min-width: 1650px) {
  .property-slider .slick-slide.slider-item {
    max-width: 920px;
  }
}
.property-slider .slick-slide.slider-item:not(.slick-current) .video-slider-btn {
  opacity: 0;
}
/*------------------------------------------------------------------
#	PHOTO GALLERY
-------------------------------------------------------------------*/
@media (min-width: 768px) {
  .photo-gallery-slider .slick-slide.slider-item {
    padding: 0 100px;
  }
}
@media (min-width: 1024px) {
  .photo-gallery-slider .slick-slide.slider-item {
    padding: 0 0;
  }
}
@media (min-width: 1150px) {
  .photo-gallery-slider .slick-slide.slider-item {
    padding: 0 80px;
  }
}
@media (min-width: 1300px) {
  .photo-gallery-slider .slick-slide.slider-item {
    padding: 0 120px;
  }
}
@media (min-width: 1600px) {
  .photo-gallery-slider .slick-slide.slider-item {
    padding: 0 180px;
  }
}
.photo-gallery-slider-nav {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .photo-gallery-slider-nav {
    margin-top: 25px;
  }
}
@media (min-width: 1024px) {
  .photo-gallery-slider-nav {
    margin-top: 20px;
  }
}
@media (min-width: 1600px) {
  .photo-gallery-slider-nav {
    margin-top: 25px;
  }
}
.photo-gallery-slider-nav .slider-item {
  padding: 0 7.5px;
}
/*------------------------------------------------------------------
#	FLOORPLANS | SECTION
-------------------------------------------------------------------*/
.home-floorplans-section .__main-slider-wrap {
  margin-top: 40px;
  padding: 0;
  padding-bottom: 50px !important;
}
@media (min-width: 500px) {
  .home-floorplans-section .__main-slider-wrap {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .home-floorplans-section .__main-slider-wrap {
    margin-top: 70px;
  }
}
@media (min-width: 850px) {
  .home-floorplans-section .__main-slider-wrap {
    margin-top: 70px;
    padding: 0 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .home-floorplans-section .__main-slider-wrap {
    margin-top: 60px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .home-floorplans-section .__main-slider-wrap {
    padding: 0;
    margin-top: 70px;
  }
}
@media (min-width: 1600px) {
  .home-floorplans-section .__main-slider-wrap {
    padding: 0 60px;
  }
}
.home-floorplans-section .__main-slider-wrap .slick-dots {
  bottom: -56px;
}
@media (max-width: 767px) {
  .home-floorplans-section .__main-slider-wrap .__slider-buttons {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .home-floorplans-section .__main-slider-wrap .__slider-buttons {
    display: none;
  }
}
/*  1. Slider
-------------------------------------------------------------------*/
@media (min-width: 768px) {
  .floorplans-slider .slick-slide.slider-item {
    padding: 0 80px;
  }
}
@media (min-width: 850px) {
  .floorplans-slider .slick-slide.slider-item {
    padding: 0 110px;
  }
}
@media (min-width: 1024px) {
  .floorplans-slider .slick-slide.slider-item {
    padding: 0 0;
  }
}
@media (min-width: 1200px) {
  .floorplans-slider .slick-slide.slider-item {
    padding: 0 110px;
  }
}
@media (min-width: 1500px) {
  .floorplans-slider .slick-slide.slider-item {
    padding: 0 160px;
  }
}
/*------------------------------------------------------------------
#	SCHOOLS | SECTION
-------------------------------------------------------------------*/
.schools-block-wrap {
  margin-top: 30px;
}
@media (min-width: 1450px) {
  .schools-table {
    display: table;
  }
}
.schools-table th:not(:first-child),
.schools-table td:not(:first-child) {
  text-align: center;
}
.schools-table td,
.schools-table th {
  border-width: 1px;
  border-style: none;
  border-bottom-style: solid;
}
.schools-table tr td:first-of-type,
.schools-table tr th:first-of-type {
  padding-left: 0;
  min-width: 165px;
}
.schools-table tr td:last-of-type,
.schools-table tr th:last-of-type {
  padding-right: 0;
}
.schools-table td:hover .title-delimiter > div,
.schools-table td:focus .title-delimiter > div {
  opacity: 0;
}
.schools-table td:hover .title-delimiter > div:first-child,
.schools-table td:focus .title-delimiter > div:first-child {
  transform: translateX(100%);
}
.schools-table td:hover .title-delimiter > div:last-child,
.schools-table td:focus .title-delimiter > div:last-child {
  transform: translateX(-100%);
}
.schools-table .title-delimiter {
  margin-right: 1.8em;
}
.schools-table .title-delimiter div {
  transition: all 0.4s ease-out;
}
.niche-rating {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
.disclaimer-block {
  text-align: center;
  font-size: 12px;
  margin: 40px 0 20px;
}
.disclaimer-block .niche-disclaimer-niche-logo {
  position: relative;
  top: 3px;
  padding-left: 5px;
  width: 100px;
  height: 15px;
}
.disclaimer-block .niche-disclaimer-link {
  border-bottom: 1px solid;
}
.disclaimer-block cite {
  font-style: normal;
}
.disclaimer-block .__sd-image {
  max-width: 300px;
}
.niche-disclaimer-text {
  margin-top: 10px;
}
.sd-disclaimer-text {
  margin-top: 15px;
}
/*------------------------------------------------------------------
#	CONTACT | SECTION
-------------------------------------------------------------------*/
/*  1. General
-------------------------------------------------------------------*/
.home-contact-section .__content-wrap {
  margin-top: 40px;
}
@media (max-width: 1349px) {
  .home-contact-section .__content-wrap {
    display: block;
  }
}
@media (min-width: 1350px) {
  .home-contact-section .__content-wrap {
    margin-top: 20px;
  }
}
@media (max-width: 1349px) {
  .home-contact-section .__map {
    margin-bottom: 15px;
  }
}
@media (min-width: 1450px) {
  .home-contact-section .__map {
    flex: 0 0 55%;
  }
}
.home-contact-section .__map iframe {
  width: 100%;
  max-height: 405px;
  height: 450px;
}
.home-contact-section .__form-wrap {
  padding: 35px 50px 45px;
}
@media (min-width: 1450px) {
  .home-contact-section .__form-wrap {
    flex: 0 0 45%;
  }
}
.home-contact-section .__agents-btn-wrap {
  margin-top: 40px;
  padding-bottom: 17px;
}
/*  2. Ninja Forms
-------------------------------------------------------------------*/
.nf-before-form-content {
  display: none;
}
.nf-form-content {
  padding: 0;
}
.nf-form-content .nf-field-container {
  margin-bottom: 15px !important;
}
.nf-form-content .field-wrap:before,
.nf-form-content .field-wrap:after {
  border-style: solid;
}
.nf-form-content .field-wrap:before {
  top: 0.2em;
  width: 35px;
  height: 35px;
  border-width: 10px;
  border-color: #d1d1d1;
}
.nf-form-content .field-wrap:after {
  left: 1em;
  top: 1.2em;
  width: 10px;
  height: 10px;
  border-width: 2px;
}
.nf-form-content .nf-field-element:after {
  display: none !important;
}
.nf-form-content .nf-field-element .ninja-forms-field {
  position: relative;
  background: transparent;
  border: none;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding: 0 12px 0 45px;
  font-size: 15px;
  color: #fff;
}
.nf-form-content .nf-field-element .ninja-forms-field::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.nf-form-content .nf-field-element .ninja-forms-field:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.nf-form-content .nf-field-element .ninja-forms-field::-ms-input-placeholder {
  color: #fff;
}
.nf-form-content .nf-field-element .ninja-forms-field::placeholder {
  color: #fff;
}
.nf-form-content .nf-field-element input:not([type="button"]) {
  z-index: 1;
}
.nf-form-content .nf-field-element input:not([type="button"]):focus {
  background: transparent;
  color: #fff;
}
.nf-form-content .nf-field-element textarea {
  height: 150px !important;
  margin-top: 15px;
}
.nf-form-content .nf-field-element input:-webkit-autofill,
.nf-form-content .nf-field-element input:-webkit-autofill:hover,
.nf-form-content .nf-field-element input:-webkit-autofill:focus,
.nf-form-content .nf-field-element input:-webkit-autofill:active {
  transition: color 9999s ease-out, background-color 9999s ease-out;
  transition-delay: 9999s;
}
.nf-form-content .submit-container {
  display: none !important;
}
.nf-form-content .__no-before-after .field-wrap:after,
.nf-form-content .__no-before-after .field-wrap:before {
  content: none;
  display: none;
}
.nf-form-content .pt-submit-btn {
  font-size: 14px;
  min-width: auto;
}
.nf-form-content .pt-submit-btn:before {
  background: url('../img/pattern-dots-white-1.png');
  opacity: 0.2;
}
.nf-form-content .pt-submit-btn .__content {
  padding: 0.8em 0 0.8em;
}
.nf-form-content .pt-submit-btn .__content span:first-child {
  font-size: 19px;
  width: auto;
  height: auto;
}
.nf-form-content .pt-submit-btn .__content span:last-child {
  padding-left: 1.8em;
  padding-right: 1em;
}
.nf-response-msg p {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}
/*  3. Unbranded / Branded Home | Contact section
-------------------------------------------------------------------*/
@media (max-width: 1349px) {
  body:not(.unbranded-home) .home-contact-section .__bg {
    height: 50vh;
  }
}
.unbranded-home .site-content-section .--no-subtitle .section-title {
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  .unbranded-home .site-content-section .--no-subtitle .section-title {
    margin-bottom: 35px;
  }
}
.unbranded-home .site-content-section .__content-wrap {
  justify-content: center;
}
/*==================================================================
▐	6. PAGES
===================================================================*/
/*# sourceMappingURL=main.css.map */