/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/*********************
BREAKPOINTS
*********************/
/*********************
 BOOTSTRAP BREAKPOINTS
 *********************/
/*********************
 BREAKPOINTS: Usage
 *********************/
/*
 @include breakpoint(breakpointname) {
     ==== STYLES ====    
 }
 */
.table {
  display: table; }
  .table-full {
    width: 100%;
    height: 100%;
    min-height: inherit;
    position: relative; }
    .table-full:after {
      content: "";
      display: table; }

.table-row {
  display: table-row; }

.table-cell {
  display: table-cell;
  vertical-align: middle; }

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

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

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

.v-align-top {
  vertical-align: top; }

.v-align-middle {
  vertical-align: middle; }

.v-align-bottom {
  vertical-align: bottom; }

.clearfix {
  overflow: auto; }

.clearfix::after {
  content: "";
  clear: both;
  display: table; }

.float-left {
  float: left; }

.float-right {
  float: right; }

.inline {
  display: inline; }

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

.block {
  display: block; }

ul.inline-block-group {
  list-style: none;
  padding-left: initial; }
  ul.inline-block-group li {
    display: inline-block;
    vertical-align: middle; }

.case-upper {
  text-transform: uppercase; }

.case-lower {
  text-transform: lowercase; }

.case-proper {
  text-transform: capitalize; }

.m-auto {
  margin: auto; }

.img-responsive {
  width: 100%;
  height: auto; }

.center-block {
  display: block;
  margin: 0 auto; }

.bp-rel {
  position: relative; }

.o-hidden {
  overflow: hidden; }

.w100 {
  width: 100%; }

.h100 {
  height: 100%; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.mobile-only {
  display: block; }

.tablet-up {
  display: none; }

.overflow-hidden {
  overflow: hidden;
  position: relative;
  height: 100%; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important; }

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  /* 1 */ }

/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit; }

/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
  visibility: hidden; }

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/* ==========================================================================
 EXAMPLE Media Queries for Responsive Design.
 These examples override the primary ('mobile first') styles.
 Modify as content requires.
 ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }

@media print, (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }

/* ==========================================================================
 Print styles.
 Inlined to avoid the additional HTTP request:
 https://www.phpied.com/delay-loading-your-print-css/
 ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.833vw; }

* {
  outline: none !important;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

b,
strong {
  font-weight: bold; }

a,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: #fff;
  font-weight: 100; }

.main {
  height: 100%;
  position: relative;
  overflow: hidden; }

input.wpcf7-not-valid {
  border: 1px solid #DD3475 !important;
  -webkit-appearance: none; }

.animated .animated-child {
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
  transform: translateY(25px);
  opacity: 0; }
  .animated .animated-child.animated-slide-left {
    opacity: 1;
    -webkit-transform: translateX(100%) translateY(0px);
    -ms-transform: translateX(100%) translateY(0px);
    transform: translateX(100%) translateY(0px); }

.btn__enquire {
  color: black;
  font-size: 1.25em;
  line-height: 1.25em;
  font-family: 'nexa-regular';
  padding: 0.5625em 1.375em;
  border: #BD7B4A .5px solid;
  text-decoration: none; }
  .btn__enquire-dekstop {
    display: block; }
  .btn__enquire-mobile {
    display: none; }
  @media only screen and (max-width: 767px) {
    .btn__enquire {
      position: unset;
      text-align: center;
      font-size: 16px; }
      .btn__enquire-dekstop {
        display: none; }
      .btn__enquire-mobile {
        display: block; } }

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 9; }
  header .container__header,
  header .container__sticky-header {
    position: fixed;
    height: 5.625em;
    width: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 16px; }
    @media only screen and (max-width: 767px) {
      header .container__header,
      header .container__sticky-header {
        height: 50px; } }
  header .container__header {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    -o-transition: all 0.3s ease-in-out 0.3s;
    transition: all 0.3s ease-in-out 0.3s; }
  header .container__sticky-header {
    -webkit-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    transform: translateY(-90px);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    background-color: #fff; }
  header.is-sticky .container__header {
    -webkit-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    transform: translateY(-90px);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
  header.is-sticky .container__sticky-header {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    -o-transition: all 0.3s ease-in-out 0.3s;
    transition: all 0.3s ease-in-out 0.3s; }
  header.is-sticky .burger span {
    background: #BD7B4A; }
  header.is-active .burger span {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    background: #BD7B4A; }
    header.is-active .burger span:nth-child(2) {
      opacity: 0; }
    header.is-active .burger span:nth-child(1) {
      -webkit-transform: rotate(15deg) translate(1px, 8px);
      -ms-transform: rotate(15deg) translate(1px, 8px);
      transform: rotate(15deg) translate(1px, 8px);
      width: 3.875em; }
      @media only screen and (max-width: 767px) {
        header.is-active .burger span:nth-child(1) {
          width: 1.875em; } }
    header.is-active .burger span:nth-child(3) {
      -webkit-transform: rotate(-15deg) translate(1px, -8px);
      -ms-transform: rotate(-15deg) translate(1px, -8px);
      transform: rotate(-15deg) translate(1px, -8px);
      width: 3.875em; }
      @media only screen and (max-width: 767px) {
        header.is-active .burger span:nth-child(3) {
          width: 1.875em; } }
  header.is-active .container__menu {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
    z-index: 1;
    pointer-events: auto; }
  header.hide-header .container__header {
    -webkit-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    transform: translateY(-90px);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
  header.hide-header .container__sticky-header {
    -webkit-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    transform: translateY(-90px);
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    -o-transition: all 0.3s ease-in-out 0.3s;
    transition: all 0.3s ease-in-out 0.3s; }
  header.gold .burger span {
    background: #BD7B4A; }
  header .burger {
    font-size: 16px;
    position: fixed;
    top: 2.1875em;
    left: 1.875em;
    z-index: 6;
    width: 3.75em;
    z-index: 10;
    cursor: pointer; }
    @media only screen and (max-width: 767px) {
      header .burger {
        top: 17px; } }
    header .burger span {
      display: block;
      width: 3.75em;
      height: 0.0625em;
      background: #fff;
      -webkit-transition: all .3s ease-in;
      -o-transition: all .3s ease-in;
      transition: all .3s ease-in; }
      header .burger span:nth-child(2) {
        margin: 0.4375em 0; }
      @media only screen and (max-width: 767px) {
        header .burger span {
          width: 30px; } }
  header .container__menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in;
    -o-transition: opacity 0.5s ease-in;
    transition: opacity 0.5s ease-in;
    pointer-events: none; }
    header .container__menu .menu__header {
      position: relative;
      height: 5.625em;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      font-size: 16px; }
      @media only screen and (max-width: 767px) {
        header .container__menu .menu__header {
          height: 50px; } }
    header .container__menu .wrapper__menu {
      width: 100%;
      height: 100vh;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      position: absolute;
      top: 0;
      z-index: -2; }
      header .container__menu .wrapper__menu ul {
        list-style-type: none;
        text-align: center; }
        header .container__menu .wrapper__menu ul li {
          margin-bottom: 0.9375em; }
          header .container__menu .wrapper__menu ul li:last-child {
            margin-bottom: 0; }
          header .container__menu .wrapper__menu ul li a {
            font-family: 'manier-light';
            color: #BD7B4A;
            font-size: 2.5em;
            line-height: 1;
            text-decoration: none; }
            @media only screen and (max-width: 767px) {
              header .container__menu .wrapper__menu ul li a {
                font-size: 40px; } }
    header .container__menu .menu__footer {
      position: relative;
      background: transparent !important;
      border-top: 1px solid #BD7B4A; }
      header .container__menu .menu__footer .wrapper__logo img {
        width: 100%;
        height: 100%; }
  header .logo-text {
    width: 7.5em;
    height: auto;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      header .logo-text {
        max-width: 60px;
        top: 20px; } }
    header .logo-text img {
      width: 100%;
      max-width: 90px;
      -webkit-transition: width 0.3s ease;
      -o-transition: width 0.3s ease;
      transition: width 0.3s ease; }

.container__footer, header .container__menu .menu__footer {
  position: absolute;
  width: 100%;
  height: 3.75em;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #BD7B4A; }
  @media only screen and (max-width: 767px) {
    .container__footer, header .container__menu .menu__footer {
      height: 60px; } }
  .container__footer .wrapper__logo, header .container__menu .menu__footer .wrapper__logo {
    width: 3.125em;
    height: auto;
    position: absolute;
    top: -1.875em;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%); }
    @media only screen and (max-width: 767px) {
      .container__footer .wrapper__logo, header .container__menu .menu__footer .wrapper__logo {
        width: 30px;
        top: -23px; } }
    .container__footer .wrapper__logo img, header .container__menu .menu__footer .wrapper__logo img {
      width: 100%;
      height: 100%; }
  .container__footer p, header .container__menu .menu__footer p {
    color: #BD7B4A;
    font-size: 1.25em; }
    @media only screen and (max-width: 767px) {
      .container__footer p, header .container__menu .menu__footer p {
        font-size: 12px; } }

.footer--custom {
  position: unset;
  height: 8.75em; }
  @media only screen and (max-width: 767px) {
    .footer--custom {
      height: 100px; } }
  .footer--custom-logo {
    position: unset !important;
    margin-bottom: 1.5em;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important; }
    @media only screen and (max-width: 767px) {
      .footer--custom-logo {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        margin-bottom: 20px; } }

.simple-footer-wrap .footer-contents {
  margin-bottom: 1.75em;
  text-align: center; }
  .simple-footer-wrap .footer-contents a {
    text-transform: uppercase;
    color: #BD7B4A;
    font-size: 1.25em; }
    @media only screen and (max-width: 991px) {
      .simple-footer-wrap .footer-contents a {
        font-size: 16px; } }
    .simple-footer-wrap .footer-contents a:hover {
      color: #000000; }
  .simple-footer-wrap .footer-contents p {
    color: #BD7B4A;
    font-family: "manier-light", serif;
    font-size: 1.25em; }
    @media only screen and (max-width: 991px) {
      .simple-footer-wrap .footer-contents p {
        font-size: 16px; } }

.simple-footer-wrap .footer-notes {
  font-size: 1.25em;
  line-height: 0.75em;
  text-align: center;
  padding: 24px 20px;
  border-top: solid 1px rgba(189, 123, 74, 0.25); }
  .simple-footer-wrap .footer-notes p {
    color: #BD7B4A;
    font-family: "nexa-regular", serif; }

@media (max-width: 991px) {
  .simple-footer-wrap p {
    font-size: 12px;
    line-height: 12px; } }

@font-face {
  font-family: "manier-medium";
  src: url("../fonts/manier/ManierMedium.eot");
  src: url("../fonts/manier/ManierMedium.woff") format("woff"), url("../fonts/manier/ManierMedium.ttf") format("truetype"), url("../fonts/manier/ManierMedium.otf") format("opentype"), url("../fonts/manier/ManierMedium.svg") format("svg"), url("../fonts/manier/ManierMedium.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "manier-light";
  src: url("../fonts/manier/Manier-Light.eot");
  src: url("../fonts/manier/Manier-Light.woff") format("woff"), url("../fonts/manier/Manier-Light.ttf") format("truetype"), url("../fonts/manier/Manier-Light.otf") format("opentype"), url("../fonts/manier/Manier-Light.svg") format("svg"), url("../fonts/manier/Manier-Light.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal; }

.manier_medium, .section__fullscreen .content-layer h5, .section__fullscreen .content-layer h1, .container__landing-page .content__main h5, .container__landing-page .content__main h1 {
  font-family: "manier-medium"; }

@font-face {
  font-family: "nexa-regular";
  src: url("../fonts/nexa/NexaRegular.eot");
  src: url("../fonts/nexa/NexaRegular.woff") format("woff"), url("../fonts/nexa/NexaRegular.ttf") format("truetype"), url("../fonts/nexa/NexaRegular.otf") format("opentype"), url("../fonts/nexa/NexaRegular.svg") format("svg"), url("../fonts/nexa/NexaRegular.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "nexa-light";
  src: url("../fonts/nexa/Nexa-Light.eot");
  src: url("../fonts/nexa/Nexa-Light.woff") format("woff"), url("../fonts/nexa/Nexa-Light.ttf") format("truetype"), url("../fonts/nexa/Nexa-Light.otf") format("opentype"), url("../fonts/nexa/Nexa-Light.svg") format("svg"), url("../fonts/nexa/Nexa-Light.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal; }

.nexa_regular, .container__footer p, header .container__menu .menu__footer p, .footer__landing-page p, .footer__landing-page a, .container__landing-page .footer__landing-page p, .container__landing-page .footer__landing-page a {
  font-family: "nexa-regular"; }

.footer__landing-page {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 11.875em;
  background: #fff; }
  @media only screen and (max-width: 767px) {
    .footer__landing-page {
      height: 115px; } }
  .footer__landing-page p {
    font-size: 0.75em;
    color: black;
    text-align: center;
    line-height: 1.4; }
    @media only screen and (max-width: 767px) {
      .footer__landing-page p {
        font-size: 10px; } }
  .footer__landing-page a {
    font-size: 0.75em;
    color: black;
    text-align: center;
    line-height: 1.4;
    text-decoration: none; }
    .footer__landing-page a:hover {
      text-decoration: underline; }
    .footer__landing-page a.last {
      margin-bottom: 1.875em; }
      @media only screen and (max-width: 767px) {
        .footer__landing-page a.last {
          margin-bottom: 10px; } }
    @media only screen and (max-width: 767px) {
      .footer__landing-page a {
        font-size: 10px; } }
  .footer__landing-page .wrapper__logo-amber {
    max-width: 3.125em;
    height: auto; }
    @media only screen and (max-width: 767px) {
      .footer__landing-page .wrapper__logo-amber {
        max-width: 35px; } }
    .footer__landing-page .wrapper__logo-amber img {
      width: 100%; }

.section__fullscreen {
  width: 100%;
  height: 100vh;
  position: relative; }
  @media only screen and (max-width: 991px) {
    .section__fullscreen.section-banner {
      margin-bottom: 40px; } }
  @media only screen and (max-width: 767px) {
    .section__fullscreen.section-banner {
      height: 100% !important;
      min-height: 211px; } }
  .section__fullscreen.hero-banner .down-arrow {
    width: 3.5em;
    height: 1.875em;
    position: absolute;
    bottom: 1.25em;
    display: none; }
    @media only screen and (max-width: 767px) {
      .section__fullscreen.hero-banner .down-arrow {
        width: 28px;
        height: 15px;
        bottom: 20px; } }
  .section__fullscreen .overlay-layer-white {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255, 255, 255, 0.75); }
  .section__fullscreen .overlay-layer-black {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.35); }
  .section__fullscreen .bg-layer {
    width: 100%;
    height: 100%;
    position: absolute; }
    .section__fullscreen .bg-layer.bg__parallax {
      background-attachment: fixed !important;
      min-height: 100%;
      height: 100%; }
  .section__fullscreen .overlay-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.5); }
  .section__fullscreen .content-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    font-size: 1;
    padding-bottom: 2.5em; }
    @media only screen and (max-width: 767px) {
      .section__fullscreen .content-layer {
        padding-bottom: 20px !important; } }
    .section__fullscreen .content-layer h5 {
      font-size: 2.25em;
      line-height: 0.83; }
      @media only screen and (max-width: 767px) {
        .section__fullscreen .content-layer h5 {
          font-size: 20px;
          line-height: 20px; } }
      .section__fullscreen .content-layer h5.project-subtext {
        color: #ffffff; }
    .section__fullscreen .content-layer h1 {
      line-height: .9;
      font-size: 2.5em;
      margin: 0.350em 0 0.200em 0;
      font-size: 2.25em; }
      @media only screen and (max-width: 767px) {
        .section__fullscreen .content-layer h1 {
          font-size: 20px;
          line-height: 20px;
          margin: 5px 0; } }
      .section__fullscreen .content-layer h1 .project-title {
        font-size: 8.75em; }
    @media (max-width: 767px) {
      .section__fullscreen .content-layer {
        padding-bottom: 40px; } }
  .section__fullscreen .wrapper__text-bottom {
    position: absolute;
    bottom: 7.5em;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .section__fullscreen .wrapper__text-bottom {
        bottom: 45px; } }
  @media only screen and (max-width: 767px) {
    .section__fullscreen .text-bottom {
      font-size: 20px; } }
  .section__fullscreen .text-bottom-subtitle {
    font-family: 'manier-light' !important; }

.fs-link {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1; }

.two-column-grid__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (max-width: 767px) {
    .two-column-grid__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .two-column-grid__container.reverse-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
    @media only screen and (max-width: 767px) {
      .two-column-grid__container.reverse-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
  .two-column-grid__container .image-grid {
    height: 40.8125em; }
    .two-column-grid__container .image-grid h6 {
      text-transform: uppercase; }
  .two-column-grid__container .text-grid {
    height: 29.5em; }
    @media only screen and (max-width: 767px) {
      .two-column-grid__container .text-grid.column__right-column {
        height: 204px !important;
        min-height: unset; } }
    .two-column-grid__container .text-grid .content {
      display: none; }
    .two-column-grid__container .text-grid .text-column-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; }
  .two-column-grid__container .column__left-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
    @media only screen and (max-width: 767px) {
      .two-column-grid__container .column__left-column {
        width: 100%;
        height: 204px; } }
    .two-column-grid__container .column__left-column .text-column-wrapper {
      width: 40.125em; }
      @media only screen and (max-width: 767px) {
        .two-column-grid__container .column__left-column .text-column-wrapper {
          width: 290px; } }
      .two-column-grid__container .column__left-column .text-column-wrapper .pretext {
        margin-bottom: 1.25em; }
      .two-column-grid__container .column__left-column .text-column-wrapper .qoutext {
        margin-bottom: 1.25em; }
      .two-column-grid__container .column__left-column .text-column-wrapper h6 {
        color: #000000;
        font-size: 1.25em;
        line-height: 1.25;
        font-family: "nexa-regular"; }
        @media only screen and (max-width: 767px) {
          .two-column-grid__container .column__left-column .text-column-wrapper h6 {
            font-size: 16px; } }
      .two-column-grid__container .column__left-column .text-column-wrapper h3 {
        color: #BD7B4A;
        font-size: 2.25em;
        line-height: 1;
        font-family: "manier-light"; }
        @media only screen and (max-width: 767px) {
          .two-column-grid__container .column__left-column .text-column-wrapper h3 {
            font-size: 20px; } }
      .two-column-grid__container .column__left-column .text-column-wrapper p {
        color: #000000;
        font-size: 1.25em;
        line-height: 1.2;
        font-family: "nexa-regular"; }
        @media only screen and (max-width: 767px) {
          .two-column-grid__container .column__left-column .text-column-wrapper p {
            font-size: 20px; } }
  .two-column-grid__container .column__right-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .two-column-grid__container .column__right-column {
        height: 100%;
        min-height: 368px;
        padding: 42px 40px;
        width: 100%; } }
    .two-column-grid__container .column__right-column .text-column-wrapper {
      width: 40.125em; }
      @media only screen and (max-width: 767px) {
        .two-column-grid__container .column__right-column .text-column-wrapper {
          width: 290px; } }
      .two-column-grid__container .column__right-column .text-column-wrapper .pretext {
        margin-bottom: 1.25em; }
        @media only screen and (max-width: 767px) {
          .two-column-grid__container .column__right-column .text-column-wrapper .pretext {
            margin-bottom: 10px; } }
      .two-column-grid__container .column__right-column .text-column-wrapper .qoutext {
        margin-bottom: 1.25em; }
      .two-column-grid__container .column__right-column .text-column-wrapper .content__link p {
        color: #BD7B4A;
        font-family: "manier-light";
        font-size: 1.25em;
        line-height: 1.2;
        margin-top: 1.5em; }
        @media only screen and (max-width: 767px) {
          .two-column-grid__container .column__right-column .text-column-wrapper .content__link p {
            font-size: 16px;
            margin-top: 10px; } }
      .two-column-grid__container .column__right-column .text-column-wrapper h6 {
        color: #000000;
        font-size: 1.25em;
        line-height: 1.25;
        font-family: "nexa-regular"; }
        @media only screen and (max-width: 767px) {
          .two-column-grid__container .column__right-column .text-column-wrapper h6 {
            font-size: 16px; } }
      .two-column-grid__container .column__right-column .text-column-wrapper h3 {
        color: #BD7B4A;
        font-size: 2.25em;
        line-height: 1;
        font-family: "manier-light"; }
        @media only screen and (max-width: 767px) {
          .two-column-grid__container .column__right-column .text-column-wrapper h3 {
            font-size: 20px; } }
      .two-column-grid__container .column__right-column .text-column-wrapper p {
        color: #000000;
        font-size: 1.25em;
        line-height: 1.2;
        font-family: "nexa-regular"; }
        @media only screen and (max-width: 767px) {
          .two-column-grid__container .column__right-column .text-column-wrapper p {
            font-size: 20px; } }

.section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #ffecdf; }
  @media only screen and (max-width: 767px) {
    .section__wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }

.section__project-container {
  width: 33.333%;
  height: 28.25em;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .section__project-container {
      width: 100%;
      height: 204px; } }

.section__background {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

.section__overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in; }
  .section__overlay:hover {
    opacity: 0; }

.section__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

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

.section__project-title {
  color: #BD7B4A;
  font-size: 2.5em;
  line-height: 1; }
  @media only screen and (max-width: 767px) {
    .section__project-title {
      font-size: 20px; } }

.section .title--name {
  font-family: "manier-medium"; }

.section .title--name {
  font-family: "manier-medium"; }

.section__centered-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 37.125em;
  width: 100%;
  text-align: center;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (max-width: 767px) {
    .section__centered-text {
      padding: 0 40px; } }
  .section__centered-text .btn__enquire {
    position: unset; }
  .section__centered-text .post-text {
    margin-bottom: 1.25em; }
    @media only screen and (max-width: 767px) {
      .section__centered-text .post-text {
        font-size: 20px; } }
  .section__centered-text h5 {
    font-family: 'manier-light';
    color: #BD7B4A;
    font-size: 2.5em;
    padding: 0 11.500em;
    line-height: 47px; }
    @media only screen and (max-width: 767px) {
      .section__centered-text h5 {
        font-size: 20px;
        padding: 0; } }
  .section__centered-text .text-black {
    color: #000000; }

.section__fullscreen-text {
  width: 100%;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  max-height: 100%; }
  .section__fullscreen-text h5 {
    font-family: 'manier-light';
    color: #BD7B4A;
    font-size: 2.25em;
    line-height: 1.2em;
    padding: 0 9.5em; }
    @media only screen and (max-width: 767px) {
      .section__fullscreen-text h5 {
        font-size: 20px;
        line-height: 20px;
        padding: 0; } }
  .section__fullscreen-text p {
    font-family: 'nexa-regular';
    color: #000000;
    font-size: 1.25em;
    margin-top: 3.800em;
    padding: 0 26.400em; }
    @media only screen and (max-width: 767px) {
      .section__fullscreen-text p {
        font-size: 20px;
        padding: 0;
        margin-top: 20px; } }
  @media only screen and (max-width: 840px) {
    .section__fullscreen-text {
      padding: 40px 42px;
      min-height: auto; }
      .section__fullscreen-text h4 {
        padding: 0 20em; } }
  @media only screen and (max-width: 767px) {
    .section__fullscreen-text {
      padding: 40px 42px;
      min-height: auto; } }

.section__list-text {
  width: 100%;
  min-height: 40.8125em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .section__list-text {
      padding-top: 40px; } }
  .section__list-text p {
    font-family: 'manier-light';
    font-size: 1.25em;
    color: #BD7B4A; }
    @media only screen and (max-width: 767px) {
      .section__list-text p {
        font-size: 15px; } }
  .section__list-text ul {
    list-style-type: none;
    margin-top: 3.3125em; }
    @media only screen and (max-width: 767px) {
      .section__list-text ul {
        margin-top: 20px; } }
    .section__list-text ul li {
      margin-bottom: 0.500em;
      font-family: 'manier-medium';
      font-size: 2.5em;
      color: #BD7B4A; }
      @media only screen and (max-width: 767px) {
        .section__list-text ul li {
          margin-bottom: 15px;
          font-size: 20px; } }

.section__single-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 1.25em 8.875em; }
  @media only screen and (max-width: 757px) {
    .section__single-img {
      padding: 0;
      margin-bottom: 20px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .section__single-img.right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
    @media only screen and (max-width: 757px) {
      .section__single-img.right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
  .section__single-img .img {
    background: center center/cover no-repeat;
    min-width: 59.125em;
    height: 65em; }
    @media only screen and (max-width: 757px) {
      .section__single-img .img {
        width: 100%;
        height: 406px; } }
  .section__single-img .wrapper__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0 8.875em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative; }
  .section__single-img .post-text {
    margin-bottom: 1.25em; }
    @media only screen and (max-width: 767px) {
      .section__single-img .post-text {
        font-size: 20px; } }
    .section__single-img .post-text h5 {
      font-family: 'manier-light';
      font-size: 2.5em;
      color: #BD7B4A; }
      @media only screen and (max-width: 767px) {
        .section__single-img .post-text h5 {
          font-size: 20px; } }
    .section__single-img .post-text p {
      color: #000000;
      font-size: 1.25em;
      line-height: 1.2;
      font-family: "nexa-regular"; }
      @media only screen and (max-width: 767px) {
        .section__single-img .post-text p {
          font-size: 14px;
          line-height: 18px; } }
  .section__single-img .caption {
    position: absolute;
    bottom: 0;
    left: 1.25em;
    text-align: initial; }
    @media only screen and (max-width: 767px) {
      .section__single-img .caption {
        font-size: 16px;
        position: unset;
        margin-bottom: 20px; } }
    .section__single-img .caption p {
      color: #000000;
      font-size: 1.25em;
      line-height: 1.2;
      font-family: "nexa-regular"; }
      @media only screen and (max-width: 767px) {
        .section__single-img .caption p {
          font-size: 12px; } }

.section__img-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 1.25em 8.875em; }
  @media only screen and (max-width: 767px) {
    .section__img-content {
      padding: 0;
      margin-bottom: 20px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 0 21px; } }
  .section__img-content.right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
    .section__img-content.right .wrapper__text {
      padding-right: 8.875em;
      padding-left: 0; }
    @media only screen and (max-width: 767px) {
      .section__img-content.right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .section__img-content.right .wrapper__text {
          padding-left: 8.875em; } }
  .section__img-content .img {
    background: center center/cover no-repeat;
    min-width: 58.5%;
    width: 100%;
    height: 65em; }
    @media only screen and (max-width: 767px) {
      .section__img-content .img {
        width: 100%;
        height: 100%;
        min-height: 365px;
        margin-bottom: 40px; } }
  .section__img-content .wrapper__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0 8.875em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0; }
    @media only screen and (max-width: 767px) {
      .section__img-content .wrapper__text {
        padding-right: 8.875em; } }
  .section__img-content .post-text {
    margin-bottom: 1.25em; }
    @media only screen and (max-width: 767px) {
      .section__img-content .post-text {
        font-size: 20px; } }
    .section__img-content .post-text h5 {
      font-family: 'manier-light';
      font-size: 2.25em;
      line-height: 1.2em;
      color: #BD7B4A; }
      @media only screen and (max-width: 767px) {
        .section__img-content .post-text h5 {
          font-size: 20px; } }
    .section__img-content .post-text p {
      color: #000000;
      font-size: 1.25em;
      line-height: 1.4em;
      font-family: "nexa-light"; }
      @media only screen and (max-width: 767px) {
        .section__img-content .post-text p {
          font-size: 14px;
          line-height: 18px; } }
  .section__img-content .owl-stage-outer::after {
    width: 1px;
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: white; }

.section__project-content {
  padding: 1.25em 20px;
  max-width: 62.1875em;
  margin: 0 auto;
  margin-bottom: 2.5em; }
  @media only screen and (max-width: 991px) {
    .section__project-content {
      max-width: 100%; } }
  @media only screen and (max-width: 767px) {
    .section__project-content {
      padding: 0;
      margin-bottom: 20px;
      max-width: 100%; } }
  .section__project-content .container__project-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2.5em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
    @media only screen and (max-width: 757px) {
      .section__project-content .container__project-content {
        padding: 0;
        margin-bottom: 20px; } }
    .section__project-content .container__project-content .img-project {
      background: center center/cover no-repeat;
      min-width: 67.75em;
      height: 65em;
      margin-bottom: 2.5em; }
      @media only screen and (max-width: 757px) {
        .section__project-content .container__project-content .img-project {
          width: 100%;
          height: 406px;
          margin-bottom: 40px; } }
    .section__project-content .container__project-content .container__text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: baseline;
      -ms-flex-align: baseline;
      align-items: baseline;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      position: relative;
      width: 100%;
      max-width: 57.625em;
      margin: 0 auto;
      font-size: 0.833vw; }
      @media only screen and (max-width: 991px) {
        .section__project-content .container__project-content .container__text {
          max-width: 89%; } }
      @media only screen and (max-width: 767px) {
        .section__project-content .container__project-content .container__text {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          padding: 47px 20px;
          max-width: 100%; } }
      .section__project-content .container__project-content .container__text .detail,
      .section__project-content .container__project-content .container__text .inspection-time {
        width: 100%;
        padding-right: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        @media only screen and (max-width: 1366px) {
          .section__project-content .container__project-content .container__text .detail,
          .section__project-content .container__project-content .container__text .inspection-time {
            max-width: initial; } }
        @media only screen and (max-width: 767px) {
          .section__project-content .container__project-content .container__text .detail,
          .section__project-content .container__project-content .container__text .inspection-time {
            width: 100%;
            -webkit-box-pack: normal;
            -ms-flex-pack: normal;
            justify-content: normal;
            -webkit-box-align: baseline;
            -ms-flex-align: baseline;
            align-items: baseline;
            margin-bottom: 40px;
            max-width: 100%; } }
        .section__project-content .container__project-content .container__text .detail h5,
        .section__project-content .container__project-content .container__text .inspection-time h5 {
          font-size: 1.25em;
          color: black;
          font-family: 'nexa-regular'; }
          @media only screen and (max-width: 767px) {
            .section__project-content .container__project-content .container__text .detail h5,
            .section__project-content .container__project-content .container__text .inspection-time h5 {
              font-size: 16px; } }
        .section__project-content .container__project-content .container__text .detail h6,
        .section__project-content .container__project-content .container__text .inspection-time h6 {
          font-size: 1.25em;
          color: black;
          font-family: 'nexa-light';
          margin-bottom: 0.625em; }
          @media only screen and (max-width: 767px) {
            .section__project-content .container__project-content .container__text .detail h6,
            .section__project-content .container__project-content .container__text .inspection-time h6 {
              font-size: 16px; } }
      .section__project-content .container__project-content .container__text .description {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-width: 40%; }
        .section__project-content .container__project-content .container__text .description strong {
          font-weight: 400 !important;
          font-family: 'nexa-regular'; }
        @media only screen and (max-width: 1366px) {
          .section__project-content .container__project-content .container__text .description {
            width: 100%;
            max-width: initial; } }
        @media only screen and (max-width: 991px) {
          .section__project-content .container__project-content .container__text .description {
            width: 100%;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start; } }
        @media only screen and (max-width: 767px) {
          .section__project-content .container__project-content .container__text .description {
            width: 100%;
            font-size: 16px;
            margin-bottom: 40px; } }
        .section__project-content .container__project-content .container__text .description p {
          font-size: 1.25em;
          color: black;
          font-family: 'nexa-light';
          margin-bottom: 25px;
          line-height: 1.25em; }
      .section__project-content .container__project-content .container__text .inspection-time {
        width: 100%; }
        @media (max-width: 768px) {
          .section__project-content .container__project-content .container__text .inspection-time {
            width: 100%; } }
      .section__project-content .container__project-content .container__text .btn__enquire {
        width: 7.375em;
        height: 1.9375em;
        padding: 0.5625em 0;
        line-height: 1;
        font-size: 1.25em;
        text-align: center;
        min-width: 7.375em; }
        @media only screen and (max-width: 767px) {
          .section__project-content .container__project-content .container__text .btn__enquire {
            width: 118px;
            height: 30px;
            padding: 9px 0;
            font-size: 16px; } }
  @media only screen and (max-width: 767px) {
    .section__project-content h5,
    .section__project-content h6,
    .section__project-content p {
      text-align: left;
      font-size: 16px !important; }
    .section__project-content .btn__enquire-desktop {
      display: none; }
    .section__project-content .hidden-desktop.container__text .detail {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; } }

.section__title {
  margin: 3.75em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .section__title {
      margin: 20px 0; } }
  .section__title h4 {
    font-family: 'manier-medium';
    font-size: 2.5em;
    color: #BD7B4A; }
    @media only screen and (max-width: 767px) {
      .section__title h4 {
        font-size: 20px; } }

.section__contact-form {
  width: 100%;
  height: auto;
  position: relative; }
  .section__contact-form .bg-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
  .section__contact-form h4 {
    font-family: 'manier-medium';
    font-size: 2.25em;
    color: #BD7B4A;
    text-align: center; }
    @media only screen and (max-width: 991px) {
      .section__contact-form h4 {
        font-size: 20px; } }
  .section__contact-form div.contact-title {
    margin-bottom: 0.625em; }
  .section__contact-form .content {
    padding-top: 6.875em; }
    .section__contact-form .content .container__contact-form {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-bottom: 7.5em;
      position: relative; }
      @media only screen and (max-width: 991px) {
        .section__contact-form .content .container__contact-form {
          margin-bottom: 60px; } }
      .section__contact-form .content .container__contact-form .contact-form {
        font-family: 'nexa-regular';
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .section__contact-form .content .container__contact-form .contact-form .form__row-1 {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row; }
          @media only screen and (max-width: 991px) {
            .section__contact-form .content .container__contact-form .contact-form .form__row-1 {
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -ms-flex-direction: column;
              flex-direction: column; } }
          .section__contact-form .content .container__contact-form .contact-form .form__row-1-col-1, .section__contact-form .content .container__contact-form .contact-form .form__row-1-col-2 {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column; }
          .section__contact-form .content .container__contact-form .contact-form .form__row-1-col-1 {
            margin-right: 0.625em; }
        .section__contact-form .content .container__contact-form .contact-form .form__row-2 {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: baseline;
          -ms-flex-align: baseline;
          align-items: baseline;
          width: 100%;
          position: relative;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row; }
          @media only screen and (max-width: 991px) {
            .section__contact-form .content .container__contact-form .contact-form .form__row-2 {
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -ms-flex-direction: column;
              flex-direction: column;
              max-width: 332px; } }
          .section__contact-form .content .container__contact-form .contact-form .form__row-2 .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
            margin: 0 !important; }
            .section__contact-form .content .container__contact-form .contact-form .form__row-2 .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              align-items: center; }
              @media only screen and (max-width: 991px) {
                .section__contact-form .content .container__contact-form .contact-form .form__row-2 .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label {
                  width: 332px;
                  padding: 0 10px;
                  margin-bottom: 10px; } }
          .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer > div:first-child {
            padding-right: 15px; }
          @media (max-width: 991px) {
            .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer {
              font-size: 16px !important; } }
          .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer [name="privacy-statement"] {
            vertical-align: baseline;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: none;
            border: 1px solid #000000;
            border-radius: 40px;
            width: 16px;
            height: 16px; }
            .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer [name="privacy-statement"]:checked {
              background: #BD7B4A; }
          .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer .acceptance-wrapper {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; }
            @media only screen and (max-width: 991px) {
              .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer .acceptance-wrapper {
                width: 332px;
                margin-bottom: 32px; } }
            .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer .acceptance-wrapper span {
              margin-right: 5px; }
            .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer .acceptance-wrapper label {
              font-size: 1.25em;
              font-family: 'nexa-light'; }
              @media only screen and (max-width: 991px) {
                .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer .acceptance-wrapper label {
                  font-size: 12px; } }
          .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer label[for="privacy-statement"] {
            font-size: 1.25em !important; }
            @media (max-width: 991px) {
              .section__contact-form .content .container__contact-form .contact-form .form__row-2.form-footer label[for="privacy-statement"] {
                font-size: 16px !important; } }
        .section__contact-form .content .container__contact-form .contact-form .input-text {
          font-family: 'nexa-regular';
          font-size: 1.25em;
          width: 25em;
          height: 1.875em;
          border: 1px solid rgba(0, 0, 0, 0.5);
          border-radius: 0px !important;
          margin-bottom: 0.625em;
          background: transparent;
          padding-left: 0.4375em;
          -webkit-appearance: none;
          padding-top: 0.0625em; }
          .section__contact-form .content .container__contact-form .contact-form .input-text::-webkit-input-placeholder {
            color: #000000; }
          .section__contact-form .content .container__contact-form .contact-form .input-text:-ms-input-placeholder {
            color: #000000; }
          .section__contact-form .content .container__contact-form .contact-form .input-text::-ms-input-placeholder {
            color: #000000; }
          .section__contact-form .content .container__contact-form .contact-form .input-text::placeholder {
            color: #000000; }
          @media only screen and (max-width: 991px) {
            .section__contact-form .content .container__contact-form .contact-form .input-text {
              width: 332px;
              height: 30px;
              font-size: 16px;
              padding-top: 4px; } }
        .section__contact-form .content .container__contact-form .contact-form textarea {
          min-height: 6.875em;
          padding-top: 0.25em !important; }
          .section__contact-form .content .container__contact-form .contact-form textarea.input-text {
            margin-bottom: 6px; }
        .section__contact-form .content .container__contact-form .contact-form .btn__acceptance ~ span {
          font-size: 0.75em; }
          @media only screen and (max-width: 991px) {
            .section__contact-form .content .container__contact-form .contact-form .btn__acceptance ~ span {
              font-size: 12px;
              margin-left: 21px;
              margin-bottom: 10px; } }
        .section__contact-form .content .container__contact-form .contact-form .ajax-loader {
          position: absolute;
          left: 50%;
          top: 3.125em;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          display: none; }
          @media only screen and (max-width: 991px) {
            .section__contact-form .content .container__contact-form .contact-form .ajax-loader {
              position: unset; } }
      @media only screen and (max-width: 991px) {
        .section__contact-form .content .container__contact-form .wpcf7-response-output,
        .section__contact-form .content .container__contact-form .wpcf7-not-valid-tip {
          font-size: 12px;
          font-family: 'nexa-regular'; } }
      @media only screen and (max-width: 991px) {
        .section__contact-form .content .container__contact-form .wpcf7-response-output {
          margin-left: 40px;
          margin-right: 40px;
          bottom: 0px; } }
      .section__contact-form .content .container__contact-form .post_select-501 {
        position: relative; }
        .section__contact-form .content .container__contact-form .post_select-501::after {
          content: '';
          background: url("../img/drop-down-arrow.png") center center/cover no-repeat;
          display: block;
          position: absolute;
          top: 22%;
          right: 3%;
          width: 1em;
          height: 1em;
          z-index: -1; }
          @media only screen and (max-width: 991px) {
            .section__contact-form .content .container__contact-form .post_select-501::after {
              width: 16px;
              height: 16px; } }
      .section__contact-form .content .container__contact-form .privacy-statement label {
        font-size: 0.875em; }
      .section__contact-form .content .container__contact-form .wpcf7-list-item input {
        font-size: 1em;
        height: 1em !important;
        width: 1em !important; }
    .section__contact-form .content .container__contact-info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-top: 5em; }
      @media only screen and (max-width: 991px) {
        .section__contact-form .content .container__contact-info {
          margin-top: 40px; } }
    .section__contact-form .content .company-detail {
      margin-bottom: 11.25em; }
      @media only screen and (max-width: 991px) {
        .section__contact-form .content .company-detail {
          margin-bottom: 52px; } }
      .section__contact-form .content .company-detail p {
        font-size: 1.25em; }
        @media only screen and (max-width: 991px) {
          .section__contact-form .content .company-detail p {
            font-size: 12px; } }
  .section__contact-form p {
    font-size: 1.25em;
    font-family: 'nexa-light';
    color: #000000;
    text-transform: uppercase; }
    @media only screen and (max-width: 991px) {
      .section__contact-form p {
        font-size: 12px; } }
    .section__contact-form p a {
      font-size: 1em;
      font-family: 'nexa-light'; }
      .section__contact-form p a:hover {
        color: #BD7B4A; }
  .section__contact-form a {
    font-size: 0.75em;
    font-family: 'nexa-regular';
    text-decoration: none;
    color: #000000; }
    @media only screen and (max-width: 991px) {
      .section__contact-form a {
        font-size: 12px; } }
  .section__contact-form .line-separator {
    width: 100%;
    height: 1px;
    background: rgba(190, 125, 75, 0.5); }
  .section__contact-form .btn__submit {
    font-family: 'nexa-regular';
    font-size: 1.25em;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    line-height: 1.25em;
    margin: 0.375em 1.6875em 0.1875em;
    text-align: center;
    cursor: pointer; }
    @media only screen and (max-width: 991px) {
      .section__contact-form .btn__submit {
        font-size: 16px;
        margin-bottom: 40px;
        margin: 9px 135px 5px; } }
    .section__contact-form .btn__submit-wrapper {
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.5);
      background: transparent;
      color: #000000;
      border-radius: 1px;
      cursor: pointer;
      min-width: 9.25em;
      min-height: 2.4375em; }
      @media (max-width: 991px) {
        .section__contact-form .btn__submit-wrapper {
          margin-top: 15px; } }

.email-message-error-container {
  position: absolute;
  bottom: 0;
  display: none; }
  .email-message-error-container p {
    color: red; }

@media only screen and (max-width: 991px) {
  .section__owl {
    margin-bottom: 40px; } }

.section__owl .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  width: 4.375em;
  height: 100vh; }
  .section__owl .owl-nav .owl-prev.disabled {
    cursor: auto !important; }
  .section__owl .owl-nav .owl-prev span {
    display: none; }

.section__owl .owl-nav .owl-next {
  position: absolute;
  top: 0;
  left: 96.3%;
  float: right;
  width: 4.375em;
  height: 100vh; }
  .section__owl .owl-nav .owl-next.disabled {
    cursor: auto !important; }
  .section__owl .owl-nav .owl-next span {
    display: none; }

.section__owl .owl-dots {
  position: absolute;
  bottom: 2.5625em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .section__owl .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid white;
    margin: 0 5px; }
    @media only screen and (max-width: 767px) {
      .section__owl .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 5px; } }
    .section__owl .owl-dots .owl-dot.active {
      background-color: white; }

.section__owl-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; }
  @media only screen and (max-width: 991px) {
    .section__owl-wrapper {
      height: 100%;
      min-height: 406px; } }
  @media only screen and (max-width: 767px) {
    .section__owl-wrapper {
      height: 100%;
      min-height: 203px; } }

.section__owl-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.section .owl--background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1; }

.section .owl--overlay {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2; }

.section .hide--overlay {
  display: none; }

.section .owl--text {
  z-index: 3; }

.section .layer-text__wrapper {
  text-align: center; }
  .section .layer-text__wrapper .text {
    font-family: "manier-medium"; }
    .section .layer-text__wrapper .text__pretext {
      font-size: 2.5em;
      text-transform: uppercase;
      margin-bottom: 4.600em;
      margin-top: 3.175em;
      line-height: 1.2; }
      @media only screen and (max-width: 767px) {
        .section .layer-text__wrapper .text__pretext {
          margin-bottom: 148px;
          margin-top: 40.5px;
          font-size: 20px; } }
    .section .layer-text__wrapper .text__number {
      font-size: 8.75em;
      line-height: 0.85; }
      @media only screen and (max-width: 767px) {
        .section .layer-text__wrapper .text__number {
          font-size: 100px; } }
    .section .layer-text__wrapper .text__title {
      font-size: 5em;
      text-transform: uppercase;
      margin-bottom: 0.212em;
      line-height: 1.2; }
      @media only screen and (max-width: 767px) {
        .section .layer-text__wrapper .text__title {
          font-size: 40px;
          margin-bottom: 30.5px; } }
    .section .layer-text__wrapper .text__content {
      font-size: 1.25em;
      width: 24.500em;
      margin: 0 auto;
      line-height: 1.2;
      font-family: "nexa-regular"; }
      @media only screen and (max-width: 767px) {
        .section .layer-text__wrapper .text__content {
          font-size: 20px;
          width: 290px; } }

.section__404-wrapper {
  width: 100%;
  height: 100vh;
  position: relative; }

.section__404-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.section--background {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  opacity: 0.5; }

.section--overlay {
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 2; }

.section--text-wrapper {
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .section--text-wrapper {
      padding: 0 20px; } }

.section__404-text {
  color: #BD7B4A;
  font-family: "manier-medium"; }

.section .text--logo {
  margin-bottom: 6.25em; }
  @media only screen and (max-width: 767px) {
    .section .text--logo {
      margin-bottom: 50px; } }

.section .text--header {
  font-size: 25em;
  line-height: 1; }
  @media only screen and (max-width: 767px) {
    .section .text--header {
      font-size: 180px; } }

.section .text--content {
  font-size: 1.875em; }
  @media only screen and (max-width: 767px) {
    .section .text--content {
      font-size: 25px;
      text-align: center; } }

.section .text--button {
  margin-top: 3.75em; }
  @media only screen and (max-width: 767px) {
    .section .text--button {
      margin-top: 50px; } }
  .section .text--button a {
    color: black;
    font-size: 1em;
    font-family: 'nexa-regular';
    padding: 0.5625em 1.375em;
    border: #BD7B4A .5px solid;
    text-decoration: none; }
    @media only screen and (max-width: 767px) {
      .section .text--button a {
        font-size: 16px; } }

.parallax__container {
  clip: rect(0, auto, auto, 0);
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100; }
  .parallax__container .parallax {
    /* can be put in a seperate class for better control */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* --------------------------- */
    position: fixed;
    width: 100%;
    top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; }

.section__two-col-carousel {
  width: 100%; }
  .section__two-col-carousel.reverse .container__column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .section__two-col-carousel .container__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%; }
    @media only screen and (max-width: 767px) {
      .section__two-col-carousel .container__column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important; } }
  .section__two-col-carousel .column {
    width: 50%;
    height: 100%; }
    @media only screen and (max-width: 767px) {
      .section__two-col-carousel .column {
        width: 100%;
        height: 406px; } }
    .section__two-col-carousel .column .content-layer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      height: 100%; }
    .section__two-col-carousel .column .content-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center;
      padding: 0 9.375em; }
      .section__two-col-carousel .column .content-wrapper .number {
        font-family: 'manier-medium';
        color: #BD7B4A;
        font-size: 8.75em; }
        @media only screen and (max-width: 767px) {
          .section__two-col-carousel .column .content-wrapper .number {
            font-size: 80px; } }
      .section__two-col-carousel .column .content-wrapper .title {
        font-family: 'manier-medium';
        color: #BD7B4A;
        font-size: 5em; }
        @media only screen and (max-width: 767px) {
          .section__two-col-carousel .column .content-wrapper .title {
            font-size: 60px; } }
      .section__two-col-carousel .column .content-wrapper .description {
        font-family: 'nexa-regular';
        color: #000000;
        font-size: 1.25em; }
        @media only screen and (max-width: 767px) {
          .section__two-col-carousel .column .content-wrapper .description {
            font-size: 20px; } }
    .section__two-col-carousel .column .owl-stage-outer,
    .section__two-col-carousel .column .owl-stage,
    .section__two-col-carousel .column .owl-item {
      height: 100%; }
    .section__two-col-carousel .column .owl-nav {
      display: none; }
    .section__two-col-carousel .column .item {
      width: 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      z-index: 1;
      display: block;
      position: absolute; }
    .section__two-col-carousel .column .owl-item:after {
      content: "";
      display: block;
      padding-bottom: 100%; }
    .section__two-col-carousel .column .column-carousel {
      width: 100%;
      height: 100%;
      opacity: 1; }
    .section__two-col-carousel .column .owl-dots {
      position: absolute;
      bottom: 2.5625em;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
      .section__two-col-carousel .column .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 1px solid white;
        margin: 0 0.3125em; }
        @media only screen and (max-width: 767px) {
          .section__two-col-carousel .column .owl-dots .owl-dot {
            width: 10px;
            height: 10px;
            margin: 0 5px; } }
        .section__two-col-carousel .column .owl-dots .owl-dot.active {
          background-color: white; }
    .section__two-col-carousel .column .single-img {
      width: 100%;
      height: 100%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
   *  Owl Carousel - Animate Plugin
   */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
   * 	Owl Carousel - Auto Height Plugin
   */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
   * 	Owl Carousel - Lazy Load Plugin
   */
.owl-carousel .owl-item {
  /**
              This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
              calculation of the height of the owl-item that breaks page layouts
           */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

/*
   * 	Owl Carousel - Video Plugin
   */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.property-details-section {
  font-family: "manier-medium"; }
  .property-details-section .description-text {
    font-family: 'manier-light';
    font-size: 2.25em; }
    @media only screen and (max-width: 767px) {
      .property-details-section .description-text {
        font-size: 20px; } }
  .property-details-section .prop-meta.sold {
    background-color: #000000;
    padding: 0 20px; }
    .property-details-section .prop-meta.sold .info-bar, .property-details-section .prop-meta.sold .status-bar {
      border-bottom: none; }
      @media (max-width: 991px) {
        .property-details-section .prop-meta.sold .info-bar, .property-details-section .prop-meta.sold .status-bar {
          border-bottom: 1px solid #BD7B4A; } }
  .property-details-section .prop-details {
    text-align: center;
    padding: 141px 80px;
    line-height: 1; }
    @media (max-width: 1280px) {
      .property-details-section .prop-details {
        padding: 90px 80px; } }
    @media only screen and (max-width: 767px) {
      .property-details-section .prop-details {
        padding: 40px !important; } }
    .property-details-section .prop-details.desc {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-family: "manier-light";
      color: #BD7B4A; }
    .property-details-section .prop-details .info-wrap {
      font-family: "nexa-light", 'Arial', sans-serif;
      text-transform: uppercase;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      max-width: 435px;
      margin: 0 auto;
      margin-bottom: 10px; }
      .property-details-section .prop-details .info-wrap .day-name {
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          .property-details-section .prop-details .info-wrap .day-name {
            margin-right: 15px; } }
      .property-details-section .prop-details .info-wrap .day-name,
      .property-details-section .prop-details .info-wrap .time {
        font-size: 1.25em; }
      @media (max-width: 991px) {
        .property-details-section .prop-details .info-wrap {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row;
          text-align: center; }
          .property-details-section .prop-details .info-wrap .date-month-wrap {
            font-size: 90px; } }
    .property-details-section .prop-details .date-month-wrap {
      font-size: 5.625em;
      line-height: 1em;
      font-family: "manier-medium", "Times New Roman", serif;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
      .property-details-section .prop-details .date-month-wrap span:first-child {
        margin-right: 40px; }
      @media (max-width: 1366px) {
        .property-details-section .prop-details .date-month-wrap {
          font-size: 100px; } }
      @media (max-width: 991px) {
        .property-details-section .prop-details .date-month-wrap {
          font-size: 90px; }
          .property-details-section .prop-details .date-month-wrap span:first-child {
            margin-right: 30px; } }
      @media (max-width: 768px) {
        .property-details-section .prop-details .date-month-wrap {
          font-size: 75px; }
          .property-details-section .prop-details .date-month-wrap span:first-child {
            margin-right: 20px; } }
    .property-details-section .prop-details .static-text-wrap p,
    .property-details-section .prop-details .sold-info p {
      font-family: 'nexa-light', 'Arial', sans-serif;
      text-transform: uppercase;
      font-size: 1.25em;
      line-height: 1;
      margin-bottom: 20px; }
    .property-details-section .prop-details .static-text-wrap h2,
    .property-details-section .prop-details .sold-info h2 {
      font-size: 90px;
      line-height: 0.9em;
      text-transform: capitalize; }
    @media (max-width: 1680px) {
      .property-details-section .prop-details .static-text-wrap h2,
      .property-details-section .prop-details .sold-info h2 {
        font-size: 85px; } }
    @media (max-width: 1480px) {
      .property-details-section .prop-details .static-text-wrap h2,
      .property-details-section .prop-details .sold-info h2 {
        font-size: 80px; } }
    @media (max-width: 1366px) {
      .property-details-section .prop-details .static-text-wrap h2,
      .property-details-section .prop-details .sold-info h2 {
        font-size: 75px; } }
    @media (max-width: 1080px) {
      .property-details-section .prop-details .static-text-wrap h2,
      .property-details-section .prop-details .sold-info h2 {
        font-size: 65px; }
      .property-details-section .prop-details .static-text-wrap p,
      .property-details-section .prop-details .sold-info p {
        font-size: 30px; } }
    @media (max-width: 991px) {
      .property-details-section .prop-details {
        padding: 35px 35px 45px 35px;
        font-size: 1.875em; } }
    @media (max-width: 768px) {
      .property-details-section .prop-details {
        font-size: 20px; }
        .property-details-section .prop-details .static-text-wrap h2 {
          font-size: 40px; } }
  @media (max-width: 991px) {
    .property-details-section .prop-sold .prop-details {
      padding: 60px 35px; } }
  .property-details-section [class^="column_"] {
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    .property-details-section [class^="column_"].column__right-column {
      background: #BD7B4A;
      color: #ffffff;
      padding: 0 25px;
      min-height: auto; }
      .property-details-section [class^="column_"].column__right-column .prop-details {
        padding-left: 60px;
        padding-right: 60px;
        height: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
      .property-details-section [class^="column_"].column__right-column.prop-sold {
        background: #000000; }
        .property-details-section [class^="column_"].column__right-column.prop-sold .status-bar {
          border-color: #BD7B4A;
          display: none; }
        .property-details-section [class^="column_"].column__right-column.prop-sold .prop-details {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -ms-flex-item-align: center;
          align-self: center;
          height: 100%; }
        .property-details-section [class^="column_"].column__right-column.prop-sold .info-wrap {
          width: 100%;
          max-width: 100%; }
          .property-details-section [class^="column_"].column__right-column.prop-sold .info-wrap span {
            display: block; }
          .property-details-section [class^="column_"].column__right-column.prop-sold .info-wrap h2 {
            color: #BD7B4A;
            text-transform: uppercase;
            text-align: center; }
          .property-details-section [class^="column_"].column__right-column.prop-sold .info-wrap .day-name {
            margin-right: 25px; }
    @media (max-width: 991px) {
      .property-details-section [class^="column_"] {
        width: 100%; } }
  @media (max-width: 991px) {
    .property-details-section {
      -ms-flex-flow: wrap;
      flex-flow: wrap; } }
  .property-details-section .info-bar, .property-details-section .status-bar {
    padding: 10px 0;
    background: #000000;
    color: #BD7B4A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly; }
    .property-details-section .info-bar img, .property-details-section .status-bar img {
      position: relative;
      top: -4px;
      display: inline-block;
      vertical-align: middle; }
    .property-details-section .info-bar span, .property-details-section .status-bar span {
      border-right: 1px solid #BD7B4A;
      display: inline-block;
      width: 100%; }
      .property-details-section .info-bar span.iconized, .property-details-section .status-bar span.iconized {
        min-width: 20%;
        font-size: 2.25em; }
        @media (max-width: 768px) {
          .property-details-section .info-bar span.iconized, .property-details-section .status-bar span.iconized {
            font-size: 30px; }
            .property-details-section .info-bar span.iconized img, .property-details-section .status-bar span.iconized img {
              width: 30px; } }
      .property-details-section .info-bar span:last-child, .property-details-section .status-bar span:last-child {
        border-right: none; }
  .property-details-section .status-bar {
    padding: 10px 0.625em;
    background: transparent;
    border-bottom: 1px solid #000000;
    color: #ffffff;
    font-size: 2.25em; }
    .property-details-section .status-bar.mobile {
      font-size: 30px;
      background-color: #BD7B4A;
      display: none;
      border-bottom: none;
      padding-bottom: 0; }
      .property-details-section .status-bar.mobile hr {
        border-top: 1px solid #000000;
        margin: 10px 0 0px; }
      @media (max-width: 991px) {
        .property-details-section .status-bar.mobile {
          display: block; } }
    @media (max-width: 991px) {
      .property-details-section .status-bar.desktop {
        display: none; } }
    .property-details-section .status-bar.prop-sold {
      display: none; }

@media (max-width: 991px) {
  .hidden-mobile {
    display: none !important; } }

@media (min-width: 991px) {
  .hidden-desktop {
    display: none !important; } }

.property-carousel-wrap {
  padding: 68px 0 40px;
  text-align: center;
  overflow: hidden;
  position: relative; }
  @media (max-width: 991px) {
    .property-carousel-wrap {
      padding: 50px 0; } }
  .property-carousel-wrap .property-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative; }
    .property-carousel-wrap .property-slide a {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      height: 100%; }
  .property-carousel-wrap .title-ticker {
    text-align: center;
    font-family: 'nexa-light', "Arial", sans-serif;
    font-size: 1.25em;
    line-height: 1.25em;
    text-transform: uppercase;
    margin-top: 15px; }
    @media (max-width: 991px) {
      .property-carousel-wrap .title-ticker {
        font-size: 3em; } }
  .property-carousel-wrap .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap; }
  .property-carousel-wrap .owl-nav {
    position: absolute;
    top: 38%;
    width: 100%;
    font-size: 120px;
    pointer-events: none;
    z-index: 0; }
    .property-carousel-wrap .owl-nav button {
      color: transparent !important;
      position: relative;
      pointer-events: all;
      display: inline-block;
      padding-left: 40px !important;
      padding-right: 40px !important; }
      .property-carousel-wrap .owl-nav button.disabled {
        opacity: 0.15; }
      .property-carousel-wrap .owl-nav button.owl-next {
        left: 28%;
        cursor: pointer !important;
        background: url("../img/chevron-right.svg") no-repeat center center;
        background-position: -20px; }
      .property-carousel-wrap .owl-nav button.owl-prev {
        right: 28%;
        cursor: pointer !important;
        background: url("../img/chevron-left.svg") no-repeat center center;
        background-position: 20px; }
    @media (max-width: 1280px) {
      .property-carousel-wrap .owl-nav {
        top: 32%; } }
    @media (max-width: 991px) {
      .property-carousel-wrap .owl-nav {
        top: 30%; }
        .property-carousel-wrap .owl-nav button {
          -webkit-filter: brightness(100) grayscale(100);
          filter: brightness(100) grayscale(100); }
          .property-carousel-wrap .owl-nav button.owl-next {
            left: 40%; }
          .property-carousel-wrap .owl-nav button.owl-prev {
            right: 40%; } }
  .property-carousel-wrap .owl-dots {
    position: absolute;
    bottom: 1.75em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
    .property-carousel-wrap .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1px solid white;
      margin: 0 0.3125em; }
      .property-carousel-wrap .owl-dots .owl-dot.active {
        background-color: white; }
      @media (max-width: 767px) {
        .property-carousel-wrap .owl-dots .owl-dot {
          margin: 0 5px; } }
    @media (max-width: 767px) {
      .property-carousel-wrap .owl-dots {
        bottom: 20px; } }
  .property-carousel-wrap h3 {
    color: #BD7B4A;
    font-size: 2.25em;
    line-height: 1;
    font-family: "manier-medium";
    margin-bottom: 68px; }
    @media only screen and (max-width: 767px) {
      .property-carousel-wrap h3 {
        font-size: 20px; } }
  .property-carousel-wrap .visibility-hidden {
    visibility: hidden; }
  .property-carousel-wrap .prop-carousel.owl-grab .owl-nav {
    opacity: 0 !important;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s; }

.section-synchronized-carousel {
  height: 48vw; }
  @media (max-width: 767px) {
    .section-synchronized-carousel {
      min-height: 600px;
      height: auto; } }
  .section-synchronized-carousel .column {
    overflow: hidden;
    position: relative;
    background: #000000; }
    .section-synchronized-carousel .column img {
      visibility: hidden; }
  @media (max-width: 767px) {
    .section-synchronized-carousel .container__column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
      height: auto; } }
  .section-synchronized-carousel .sync-text-carousel-wrap {
    font-size: 1.25em;
    line-height: 1.5em;
    font-family: "nexa-regular", 'Arial', sans-serif; }
    .section-synchronized-carousel .sync-text-carousel-wrap .content-wrapper {
      height: 100%; }
    .section-synchronized-carousel .sync-text-carousel-wrap h3 {
      color: #BD7B4A;
      font-size: 2.5em;
      line-height: 1em;
      margin-bottom: 20px;
      font-family: "manier-light", serif; }
    @media (max-width: 991px) {
      .section-synchronized-carousel .sync-text-carousel-wrap {
        font-size: 2.5em; }
        .section-synchronized-carousel .sync-text-carousel-wrap .content-wrapper {
          padding: 20px 30px; } }
    @media (max-width: 767px) {
      .section-synchronized-carousel .sync-text-carousel-wrap {
        height: 21.875em; }
        .section-synchronized-carousel .sync-text-carousel-wrap h3 {
          font-size: 20px;
          line-height: 20px;
          margin-bottom: 12px; }
        .section-synchronized-carousel .sync-text-carousel-wrap p {
          font-size: 14px;
          line-height: 20px; }
        .section-synchronized-carousel .sync-text-carousel-wrap .owl-dots {
          bottom: 20px; }
        .section-synchronized-carousel .sync-text-carousel-wrap .content-wrapper {
          padding: 20px 30px 40px 30px; } }
  .section-synchronized-carousel .owl-carousel {
    height: 100%; }
  .section-synchronized-carousel .sync-image-carousel-wrap .owl-dots {
    display: none; }

.single-post .section-synchronized-carousel .owl-dots {
  display: block; }

.single-post .section-synchronized-carousel .sync-text-carousel-wrap .owl-dots {
  display: none; }

@media only screen and (max-width: 991px) {
  .section-text-content-with-image-carousel {
    margin-bottom: 40px; } }

.section-text-content-with-image-carousel div.img img {
  visibility: hidden;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

@media only screen and (max-width: 767px) {
  .section-text-content-with-image-carousel .item.img {
    width: 100%;
    height: 100%;
    min-height: 365px; } }

.google-map-section div.img {
  max-width: 57%;
  min-width: 57%;
  margin: 0 auto;
  position: relative;
  background-repeat: no-repeat !important;
  background-size: cover !important; }
  @media (max-width: 991px) {
    .google-map-section div.img {
      max-width: 100%; } }
  @media (max-width: 768px) {
    .google-map-section div.img {
      max-width: 100%; } }
  .google-map-section div.img img {
    visibility: hidden; }

.google-map-section .anchor-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.container__landing-page {
  width: 100%;
  height: 100vh; }
  .container__landing-page .wrapper__logo-amber-text {
    position: absolute;
    top: 1.875em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 10.9375em;
    height: auto; }
    @media only screen and (max-width: 767px) {
      .container__landing-page .wrapper__logo-amber-text {
        max-width: 120px;
        top: 15px; } }
    .container__landing-page .wrapper__logo-amber-text img {
      width: 100%; }
  .container__landing-page .content__main {
    width: 100%;
    height: calc(100% - 11.875em);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .container__landing-page .content__main {
        height: calc(100% - 115px); } }
    .container__landing-page .content__main h5 {
      font-size: 2.5em;
      line-height: 0.83; }
      @media only screen and (max-width: 767px) {
        .container__landing-page .content__main h5 {
          font-size: 15px; } }
    .container__landing-page .content__main h1 {
      line-height: .9;
      font-size: 6.25em;
      margin: 0.350em 0 0.200em 0; }
      @media only screen and (max-width: 767px) {
        .container__landing-page .content__main h1 {
          font-size: 40px;
          padding: 0px 47px;
          margin: 15px 0 10px 0; } }
  .container__landing-page .footer__landing-page {
    position: absolute;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 11.875em;
    background: #fff; }
    @media only screen and (max-width: 767px) {
      .container__landing-page .footer__landing-page {
        height: 115px; } }
    .container__landing-page .footer__landing-page p {
      font-size: 0.75em;
      color: black;
      text-align: center;
      line-height: 1.4; }
      @media only screen and (max-width: 767px) {
        .container__landing-page .footer__landing-page p {
          font-size: 10px; } }
    .container__landing-page .footer__landing-page a {
      font-size: 0.75em;
      color: black;
      text-align: center;
      line-height: 1.4;
      text-decoration: none; }
      .container__landing-page .footer__landing-page a:hover {
        text-decoration: underline; }
      .container__landing-page .footer__landing-page a.last {
        margin-bottom: 1.875em; }
        @media only screen and (max-width: 767px) {
          .container__landing-page .footer__landing-page a.last {
            margin-bottom: 10px; } }
      @media only screen and (max-width: 767px) {
        .container__landing-page .footer__landing-page a {
          font-size: 10px; } }
    .container__landing-page .footer__landing-page .wrapper__logo-amber {
      max-width: 3.125em;
      height: auto; }
      @media only screen and (max-width: 767px) {
        .container__landing-page .footer__landing-page .wrapper__logo-amber {
          max-width: 35px; } }
      .container__landing-page .footer__landing-page .wrapper__logo-amber img {
        width: 100%; }

@media only screen and (max-width: 767px) {
  .br__mobile {
    display: none; } }
