@charset "UTF-8";
/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css?family=Playfair+Display|Poppins:300,400,600,800&display=swap&subset=latin-ext");

/* BODY */
* {
  outline: none !important;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background-color: #1f2124;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

/* HTML ELEMENT */
img {
  max-width: 100%;
}

/* CUSTOM CLASSES */
.overflow {
  overflow: hidden;
}

/* LINKS */
a {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  color: #26282b;
}

a:hover {
  text-decoration: underline;
}

/* CUSTOM CONTAINER */
.container {
  max-width: 1280px;
}

/* FORM ELEMENTS */
input[type="text"] {
  width: 100%;
  height: 54px;
  float: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

input[type="email"] {
  width: 100%;
  height: 54px;
  float: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

textarea {
  width: 100%;
  height: 100px;
  float: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  resize: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #ebcfa7;
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* ODOMETER */
.odometer {
  line-height: 1;
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-car {
  padding: 0;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
  padding: 0;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
  left: 0;
}

/* ACCORDION */
.accordion {
  width: 100%;
  float: left;
  background: none;
  padding: 0;
}

.accordion .card {
  background: none;
  border-radius: 0;
  margin-top: -1px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion .card .card-header {
  background: none;
  padding: 0;
  border-bottom: none;
}

.accordion .card .card-header a {
  width: 100%;
  float: left;
  font-weight: 500;
  padding: 20px 25px;
  color: #fff;
  font-weight: 600;
}

.accordion .card .card-header a:before {
  content: "+";
  float: left;
  text-align: center;
  margin-right: 8px;
  color: #fff;
  font-weight: 600;
}

.accordion .card .card-header a:hover {
  color: #ebcfa7;
  text-decoration: none;
}

.accordion .card .card-body {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
}

.accordion .card [aria-expanded="true"] {
  color: #ebcfa7 !important;
}

.accordion .card [aria-expanded="true"]:before {
  content: "-" !important;
  color: #ebcfa7 !important;
}

/* HAMBURGER */
.hamburger {
  position: relative;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 30px;
  background: #fff;
  opacity: 1;
  position: absolute;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  width: 10px;
  top: 19px;
}

.hamburger span:nth-child(4) {
  width: 6px;
  top: 19px;
  left: 15px;
}

.hamburger.open {
  margin: 0;
}

.hamburger.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: 20px;
}

.hamburger.open span:nth-child(3) {
  width: 30px;
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.hamburger.open span:nth-child(4) {
  opacity: 0;
  left: 20px;
}

.hamburger:hover span:nth-child(4) {
  width: 20px;
  left: 10px;
}

/* PRELOADER */
.preloader {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 12;
  background: #ebcfa7;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 0.95s;
  overflow: hidden;
}

.preloader * {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader .layer {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background: #333;
  transition-delay: 0.30s;
}

.preloader .inner {
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 2;
}

.preloader .inner figure {
  display: block;
  margin-bottom: 10px;
  transition-delay: 0.10s;
}

.preloader .inner figure img {
  height: 60px;
}

.preloader .inner p {
  font-weight: 600;
  color: #fff;
  font-size: 13px;
  display: block;
}

/* TRANSITION OVERLAY */
.transition-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  background: #ebcfa7;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  overflow: hidden;
}

.transition-overlay .layer {
  width: 100%;
  height: 100vh;
  position: absolute;
  right: -100%;
  top: 0;
  background: #333;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 0.60s;
}

.transition-overlay.active {
  left: 0;
}

.transition-overlay.active .layer {
  right: 0;
}

/* PAGE LOADED */
.page-loaded .preloader {
  right: -100%;
}

.page-loaded .preloader .inner figure {
  opacity: 0;
  transform: scale(1.5);
}

.page-loaded .preloader .inner p {
  transform: translateY(20px);
  opacity: 0;
}

.page-loaded .preloader .layer {
  left: -100%;
}

.page-loaded .navbar .container .upper-side {
  transform: translateY(0);
}

.page-loaded .navbar .container .menu {
  opacity: 1;
}

.page-loaded .slider .slider-container {
  transform: scale(1);
  opacity: 1;
}

/* SIDE NAVIGATION - Full Screen Form Overlay */
.side-navigation {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: #26282b;
  z-index: 10;
  color: #fff;
  font-size: 14px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.side-navigation.active {
  opacity: 1;
  visibility: visible;
}

body.form-open {
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Close Button */
.side-navigation .close-form {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.side-navigation .close-form:hover {
  border-color: #ebcfa7;
  color: #ebcfa7;
}

/* Form Header */
.side-navigation .form-header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
  max-width: 900px;
}

.side-navigation .form-header figure {
  display: block;
  margin-bottom: 20px;
}

.side-navigation .form-header figure img {
  height: 40px;
}

.side-navigation .form-header h2 {
  font-family: "Playfair Display", serif;
  color: #ebcfa7;
  font-size: 36px;
  margin-bottom: 15px;
}

.side-navigation .form-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

/* Intake Form */
.side-navigation .intake-form {
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
}

.side-navigation .intake-form .form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.side-navigation .intake-form .form-row.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.side-navigation .intake-form .form-row.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.side-navigation .intake-form .form-group.full-width {
  grid-column: 1 / -1;
}

.side-navigation .intake-form .form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 500;
}

.side-navigation .intake-form .form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.side-navigation .intake-form .form-group input,
.side-navigation .intake-form .form-group select,
.side-navigation .intake-form .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 15px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  height: auto;
  float: none;
}

.side-navigation .intake-form .form-group input:focus,
.side-navigation .intake-form .form-group select:focus,
.side-navigation .intake-form .form-group textarea:focus {
  border-color: #ebcfa7;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.side-navigation .intake-form .form-group input::placeholder,
.side-navigation .intake-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.side-navigation .intake-form .form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.side-navigation .intake-form .form-group select option {
  background: #26282b;
  color: #fff;
}

.side-navigation .intake-form .form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.side-navigation .intake-form .form-group.checkbox-group {
  margin-top: 10px;
}

.side-navigation .intake-form .form-group.checkbox-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.side-navigation .intake-form .form-group.checkbox-group .checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 12px;
  margin-top: 3px;
  cursor: pointer;
}

.side-navigation .intake-form .form-group.checkbox-group .checkbox-label span {
  line-height: 1.5;
}

/* Step indicators (mobile) */
.side-navigation .intake-form .step-indicators {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.side-navigation .intake-form .step-indicators .step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.side-navigation .intake-form .step-indicators .step-dot.active {
  background: #ebcfa7;
}

.side-navigation .intake-form .step-indicators .step-dot.completed {
  background: #9f8054;
}

/* Form steps */
.side-navigation .intake-form .form-step {
  display: block;
}

/* Form Navigation */
.side-navigation .intake-form .form-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.side-navigation .intake-form .form-navigation .btn-prev,
.side-navigation .intake-form .form-navigation .btn-next {
  display: none;
  height: 50px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.side-navigation .intake-form .form-navigation .btn-prev:hover,
.side-navigation .intake-form .form-navigation .btn-next:hover {
  border-color: #ebcfa7;
  color: #ebcfa7;
}

.side-navigation .intake-form .form-navigation .btn-submit {
  height: 54px;
  padding: 0 40px;
  border: none;
  background: #9f8054;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.side-navigation .intake-form .form-navigation .btn-submit i {
  margin-left: 10px;
}

.side-navigation .intake-form .form-navigation .btn-submit:hover {
  background: #ebcfa7;
  color: #26282b;
}

/* Form Footer */
.side-navigation .form-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.side-navigation .form-footer h6 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}

.side-navigation .form-footer p {
  margin: 0;
}

.side-navigation .form-footer p a {
  color: rgba(255, 255, 255, 0.7);
}

.side-navigation .form-footer p a:hover {
  color: #ebcfa7;
}

/* Success Message */
.side-navigation .form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  max-width: 500px;
}

.side-navigation .form-success .success-icon {
  font-size: 80px;
  color: #ebcfa7;
  margin-bottom: 30px;
}

.side-navigation .form-success .success-icon i {
  display: block;
}

.side-navigation .form-success h2 {
  font-family: "Playfair Display", serif;
  color: #ebcfa7;
  font-size: 36px;
  margin-bottom: 20px;
}

.side-navigation .form-success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.side-navigation .form-success .btn-close-success {
  height: 54px;
  padding: 0 40px;
  border: none;
  background: #9f8054;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.side-navigation .form-success .btn-close-success:hover {
  background: #ebcfa7;
  color: #26282b;
}

/* When showing success, hide form elements */
.side-navigation.form-submitted .form-header,
.side-navigation.form-submitted .intake-form,
.side-navigation.form-submitted .form-footer {
  display: none;
}

.side-navigation.form-submitted .form-success {
  display: block;
}

/* Mobile-only and Desktop-only utilities */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}

.navbar .container {
  flex-direction: column;
}

.navbar .container .upper-side {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  align-items: center;
  transform: translateY(-80px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 1.20s;
}

.navbar .container .upper-side .logo {
  margin-left: 0;
}

.navbar .container .upper-side .logo img {
  height: 48px;
}

.navbar .container .upper-side .phone-email {
  margin-right: 0;
  margin-left: auto;
  margin-top: 5px;
  text-align: right;
  color: #fff;
}

.navbar .container .upper-side .phone-email img {
  float: right;
  height: 34px;
  margin-left: 15px;
}

.navbar .container .upper-side .phone-email h4 {
  margin-bottom: -5px;
  margin-top: 3px;
  font-size: 17px;
  font-weight: 600;
  display: -webkit-box;
  line-height: 1;
}

.navbar .container .upper-side .phone-email small {
  line-height: 1;
}

.navbar .container .upper-side .phone-email small a {
  opacity: 0.5;
  color: #fff;
}

.navbar .container .upper-side .phone-email small a:hover {
  text-decoration: none;
  color: #ebcfa7;
  opacity: 1;
}

.navbar .container .upper-side .language {
  margin-right: 40px;
  margin-left: 60px;
  padding: 10px 0;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar .container .upper-side .language a {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-weight: 600;
}

.navbar .container .upper-side .language a:hover {
  color: #ebcfa7;
  text-decoration: none;
}

.navbar .container .upper-side .hamburger {
  width: 30px;
  height: 21px;
  margin-right: 0;
  margin-left: auto;
}

.navbar .container .menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 1.40s;
  opacity: 0;
}

.navbar .container .menu ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0;
  margin-top: -1px;
}

.navbar .container .menu ul li {
  margin: 0;
  margin-left: 40px;
  padding: 0;
  list-style: none;
  position: relative;
}

.navbar .container .menu ul li:hover ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .container .menu ul li ul {
  min-width: 220px;
  position: absolute;
  left: -35px;
  top: 120%;
  background: #26282b;
  margin: 0;
  padding: 25px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navbar .container .menu ul li ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #26282b transparent;
  position: absolute;
  left: 35px;
  top: -10px;
}

.navbar .container .menu ul li ul li {
  margin: 0;
  padding: 0 35px;
  white-space: nowrap;
}

.navbar .container .menu ul li ul li a {
  padding: 8px 0;
}

.navbar .container .menu ul li ul li a:hover {
  border-color: transparent;
}

.navbar .container .menu ul li a {
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 25px 0;
  border-top: 1px solid transparent;
}

.navbar .container .menu ul li a:hover {
  text-decoration: none;
  color: #ebcfa7;
  border-top: 1px solid #ebcfa7;
}

/* SLIDER */
.slider {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
  background: #26282b;
  overflow: hidden;
}

.slider .slider-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transform: scale(1.3);
  transition-delay: 1.25s;
  opacity: 0;
}

.slider .slider-container .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  background-size: auto 120%;
}

.slider .slider-container .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(38, 40, 43);
  background: -moz-linear-gradient(161deg, rgba(38, 40, 43, 1) 0%, rgba(38, 40, 43, 1) 49%, rgba(159, 128, 84, 1) 100%);
  background: -webkit-linear-gradient(161deg, rgba(38, 40, 43, 1) 0%, rgba(38, 40, 43, 1) 49%, rgba(159, 128, 84, 1) 100%);
  background: linear-gradient(161deg, rgba(38, 40, 43, 1) 0%, rgba(38, 40, 43, 1) 49%, rgba(159, 128, 84, 1) 100%);
  opacity: 0.65;
}

.slider .slider-container .swiper-slide .container {
  position: relative;
  z-index: 9;
  padding-left: 100px;
}

.slider .slider-container .swiper-slide .container h1 {
  font-size: 5vw;
  color: #fff;
  font-family: "Playfair Display", serif;
  color: #ebcfa7;
  margin-bottom: 20px;
}

.slider .slider-container .swiper-slide .container h1 span {
  display: inline-block;
  position: relative;
}

.slider .slider-container .swiper-slide .container h1 span:before {
  content: "";
  width: 247px;
  height: 70px;
  position: absolute;
  left: 0;
  top: 40px;
  background: url(../images/title-mark.png) center no-repeat;
  background-size: contain;
  z-index: -1;
}

.slider .slider-container .swiper-slide .container h2 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}

.slider .slider-container .swiper-slide .container a {
  height: 60px;
  line-height: 56px;
  float: left;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  border: 2px solid #ebcfa7;
  padding: 0 40px;
  box-shadow: 0 0 20px rgba(235, 207, 167, 0.4);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.slider .slider-container .swiper-slide .container a i {
  margin-left: 10px;
}

.slider .slider-container .swiper-slide .container a:hover {
  text-decoration: none;
  background: #9f8054;
  border-color: #9f8054;
}

.slider .slider-container .swiper-slide .container figure {
  float: left;
  margin-left: 40px;
  margin-bottom: 0;
}

.slider .slider-container .swiper-slide .container figure img {
  height: 60px;
}

.slider .slider-container .inner-elements {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.slider .slider-container .inner-elements .container {
  position: relative;
  height: 100vh;
}

.slider .slider-container .inner-elements .container .social-media {
  width: 20px;
  position: absolute;
  left: 15px;
  top: calc(50% + 60px);
  transform: translateY(-50%);
  z-index: 4;
  text-align: center;
}

.slider .slider-container .inner-elements .container .social-media h6 {
  width: 120px;
  color: #fff;
  transform: rotate(90deg);
  transform-origin: left;
  margin-left: 9px;
  font-weight: 600;
  margin-bottom: 120px;
  font-size: 14px;
}

.slider .slider-container .inner-elements .container .social-media ul {
  margin: 0;
  padding: 0;
}

.slider .slider-container .inner-elements .container .social-media ul:before {
  content: "";
  width: 1px;
  height: 42px;
  background: #fff;
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 10px;
}

.slider .slider-container .inner-elements .container .social-media ul li {
  margin: 0;
  padding: 3px 0;
  list-style: none;
}

.slider .slider-container .inner-elements .container .social-media ul li a {
  color: #fff;
  font-size: 12px;
}

.slider .slider-container .inner-elements .container .social-media ul li a:hover {
  color: #ebcfa7;
}

.slider .slider-container .inner-elements .container .pagination {
  width: auto;
  position: absolute;
  left: auto;
  right: 15px;
  bottom: 20px;
  z-index: 4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 50px;
}

.slider .slider-container .inner-elements .container .pagination .swiper-pagination-current {
  font-size: 40px;
  font-weight: 800;
  margin-right: 5px;
}

.slider .slider-container .inner-elements .container .pagination .swiper-pagination-total {
  font-size: 20px;
  margin-left: 5px;
}

.slider .slider-container .inner-elements .container .button-prev {
  width: 40px;
  position: absolute;
  right: 10px;
  top: calc(50% + 60px);
  z-index: 4;
  transform: rotate(90deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform-origin: bottom;
  margin-top: -60px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.slider .slider-container .inner-elements .container .button-prev:hover {
  color: #ebcfa7;
}

.slider .slider-container .inner-elements .container .button-prev:after {
  content: "";
  width: 42px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: calc(-100% - 20px);
  top: 5px;
}

.slider .slider-container .inner-elements .container .button-next {
  width: 40px;
  position: absolute;
  right: 10px;
  top: calc(50% + 60px);
  z-index: 4;
  transform: rotate(90deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform-origin: bottom;
  margin-top: 60px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.slider .slider-container .inner-elements .container .button-next:hover {
  color: #ebcfa7;
}

/* INTRO */
.intro {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.intro figure {
  display: inline-block;
  margin-bottom: 0;
  margin-top: -20px;
  background: #ebcfa7;
  position: relative;
}

.intro figure .pattern-bg {
  width: 120%;
  height: 100%;
  position: absolute;
  left: 5%;
  top: -5%;
  background: url(../images/side-pattern-bg.png);
  background-size: contain;
}

.intro figure .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(85px, -65px);
}

.intro figure .holder img {
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  width: 525px;
}

.intro .content-box {
  display: block;
  padding-left: 10%;
}

.intro .content-box b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.intro .content-box h4 {
  display: block;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.intro .content-box h4 span {
  color: #9f8054;
}

.intro .content-box h3 {
  font-weight: 600;
  margin-bottom: 30px;
}

.intro .content-box p {
  display: block;
  padding-right: 40%;
  margin-bottom: 30px;
}

.intro .content-box a {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
}

.intro .content-box a img {
  height: 46px;
  margin-right: 15px;
}

.intro .content-box a:hover {
  color: #9f8054;
  text-decoration: none;
}

/* BENEFITS */
.benefits {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
  background: #f9f9f9;
  text-align: center;
}

.benefits .col {
  border-right: 1px solid #444;
  padding-top: 20px;
  padding-bottom: 20px;
}

.benefits .col:nth-child(odd) {
  margin-top: 50px;
}


.benefits .col:last-child {
  border-right: none;
}

.benefits b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.benefits h4 {
  display: block;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.benefits h4 span {
  color: #9f8054;
}

.benefits h3 {
  font-weight: 600;
  margin-bottom: 50px;
}

.benefits figure {
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.benefits figure:after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  top: 0;
  background: #ebcfa7;
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  margin-left: -35px;
}

.benefits figure img {
  height: 70px;
  position: relative;
  z-index: 2;
}

.benefits h6 {
  font-weight: 600;
  font-size: 14px;
}

.benefits .odometer {
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
}

.benefits .extra {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  transform: translateY(10px);
}

/* RECENT GALLERY */
.recent-gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}

.recent-gallery b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.recent-gallery h4 {
  display: block;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.recent-gallery h4 span {
  color: #9f8054;
}

.recent-gallery h3 {
  font-weight: 600;
  padding-right: 40%;
  margin-bottom: 30px;
}

.recent-gallery .link {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-bottom: 10px;
}

.recent-gallery .link i {
  margin-left: 10px;
}

.recent-gallery .link:hover {
  text-decoration: none;
}

.recent-gallery .link:hover:before {
  width: 100%;
}

.recent-gallery .link:before {
  content: "";
  width: 60px;
  height: 2px;
  background: #26282b;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.recent-gallery figure {
  display: block !important;
  margin: 0;
  position: relative;
}

.recent-gallery .col-md-4:nth-child(1) {
  margin-top: 100px;
}

.recent-gallery .col-md-4:nth-child(2) {
  margin-top: 0;
}

.recent-gallery .col-md-4:nth-child(3) {
  margin-top: 80px;
}

/* PROPERTY CALCULATOR */
.property-calculator {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 150px;
  margin-top: 100px;
  position: relative;
}

.property-calculator figure {
  display: inline-block;
  margin-bottom: 0;
  margin-top: -20px;
  background: #ebcfa7;
  position: relative;
}

.property-calculator figure:before {
  content: "";
  width: 50vw;
  height: 100%;
  background: #ebcfa7;
  position: absolute;
  left: -50vw;
  top: 0;
}

.property-calculator figure .pattern-bg {
  width: 120%;
  height: 100%;
  position: absolute;
  left: 5%;
  top: -5%;
  background: url(../images/side-pattern-bg.png);
  background-size: contain;
}

.property-calculator figure .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(85px, -35px);
}

.property-calculator figure .holder img {
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  width: 525px;
}

.property-calculator .content-box {
  display: block;
  padding-left: 10%;
}

.property-calculator .content-box b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.property-calculator .content-box h4 {
  display: block;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.property-calculator .content-box h4 span {
  color: #9f8054;
}

.property-calculator .content-box h3 {
  font-weight: 600;
  margin-bottom: 30px;
}

.property-calculator .content-box ul {
  display: block;
  margin-bottom: 60px;
  padding: 0;
}

.property-calculator .content-box ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.property-calculator .content-box ul li:nth-child(1) {
  margin-right: 30px;
}

.property-calculator .content-box ul li img {
  height: 35px;
}

.property-calculator .content-box p {
  display: block;
  padding-right: 40%;
  margin-bottom: 30px;
}

.property-calculator .content-box a {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
}

.property-calculator .content-box a img {
  height: 46px;
  margin-right: 10px;
}

.property-calculator .content-box a:hover {
  color: #9f8054;
  text-decoration: none;
}

/* GET CONSULTATION */
.get-consultation {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 150px;
  margin-bottom: 100px;
  background-size: auto 120%;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #e5e4df;
}

.get-consultation .content-box {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 80px 50px;
  margin-bottom: -100px;
  color: #fff;
  background: #9f8054;
  position: relative;
  overflow: hidden;
}

.get-consultation .content-box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 200px 100vh 0;
  border-color: transparent #ebcfa7 transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.15;
}

.get-consultation b {
  width: 100%;
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.get-consultation h4 {
  display: block;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.get-consultation h4 span {
  color: #ebcfa7;
}

.get-consultation h3 {
  font-weight: 600;
  margin-bottom: 30px;
}

.get-consultation p {
  display: block;
  padding-right: 20%;
  margin-bottom: 40px;
}

.get-consultation a {
  height: 60px;
  line-height: 60px;
  float: left;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  background: #26282b;
  padding: 0 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.get-consultation a i {
  margin-left: 10px;
}

.get-consultation a:hover {
  text-decoration: none;
  background: #fff;
  color: #9f8054;
}

/* PROPERTY CUSTOMIZATION */
.property-customization {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 150px;
  background: #26282b;
  color: #fff;
  position: relative;
  text-align: center;
}

.property-customization .row {
  justify-content: center;
}

.property-customization b {
  width: 100%;
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.property-customization h4 {
  display: block;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.property-customization h4 span {
  color: #ebcfa7;
}

.property-customization h3 {
  font-weight: 600;
  margin-bottom: 30px;
}

.property-customization figure {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 10px;
  margin: 15px 0;
}

.property-customization figure img {
  height: 40px;
  float: left;
  margin-right: 15px;
}

.property-customization figure figcaption {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* FAQ */
.faq {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
  background: #26282b;
  color: #fff;
}

.faq .sidebox {
  width: calc(100% - 70px);
  float: left;
  margin-left: 70px;
  padding: 40px 30px;
  text-align: center;
  background: #9f8054;
  color: #fff;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0;
}

.faq .sidebox i {
  font-size: 100px;
  margin-bottom: 20px;
  display: inline-block;
}

.faq .sidebox h3 {
  display: block;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

.faq .sidebox p {
  color: #fff;
}

/* SALES OFFICES */
.sales-offices {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 135px 0;
}

.sales-offices .office-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  margin: 15px 0;
  border: 1px solid #eee;
}

.sales-offices .office-box h5 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  font-size: 26px;
}

.sales-offices .office-box address {
  margin-bottom: 25px;
}

.sales-offices .office-box a {
  height: 44px;
  line-height: 44px;
  display: inline-block;
  padding: 0 20px;
  background: #26282b;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.sales-offices .office-box a i {
  margin-right: 7px;
}

.sales-offices .office-box a:hover {
  text-decoration: none;
}

/* CERTIFICATES */
.certificates {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}

.certificates b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.certificates h4 {
  display: block;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.certificates h4 span {
  color: #9f8054;
}

.certificates small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0.5;
}

.certificates small:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #26282b;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 4px;
  opacity: 0.5;
}

.certificates figure {
  display: block;
  margin: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.certificates figure img {
  width: 100%;
}

/* FOOTER BAR */
.footer-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -80px;
}

.footer-bar .inner {
  background: #9f8054;
  padding: 60px 30px;
  color: #fff;
}

.footer-bar .inner figure {
  margin-bottom: 20px;
  float: left;
  margin-right: 30px;
}

.footer-bar .inner figure img {
  height: 70px;
}

.footer-bar .inner h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-bar .inner p {
  font-size: 16px;
  margin: 0;
}

.footer-bar .inner strong {
  font-weight: 600;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 180px;
  padding-bottom: 30px;
  background: #26282b;
}

.footer p {
  color: #fff;
}

.footer .logo {
  height: 41px;
  margin-bottom: 15px;
}

.footer .logo img {
  height: 48px;
}

.footer .footer-menu {
  display: block;
  margin: 0;
}

.footer .footer-menu li {
  width: 100%;
  float: left;
  margin: 0;
  padding: 4px 0;
  list-style: none;
}

.footer .footer-menu li a {
  float: left;
  color: #fff;
}

.footer .footer-menu li a:hover {
  color: #ebcfa7;
}

.footer .contact-box {
  float: right;
  color: #fff;
  text-align: right;
}

.footer .contact-box h5 {
  margin-bottom: 10px;
  font-size: 19px;
  font-family: "Playfair Display", serif;
}

.footer .contact-box h3 {
  font-weight: 600;
  margin: 0;
}

.footer .contact-box p {
  margin-bottom: 10px;
}

.footer .contact-box p a {
  color: #fff;
  opacity: 0.5;
}

.footer .contact-box ul {
  float: right;
  margin: 0;
  margin-top: 20px;
  padding: 0;
}

.footer .contact-box ul li {
  float: left;
  margin-left: 5px;
  padding: 0;
  list-style: none;
}

.footer .contact-box ul li a {
  width: 40px;
  height: 40px;
  float: left;
  text-align: center;
  line-height: 42px;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.footer .contact-box ul li a:hover {
  color: #26282b;
  background: #ebcfa7;
}

.footer .col-12 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 80px;
  color: #fff;
  font-size: 13px;
}

.footer .col-12 .copyright {
  float: left;
}

.footer .col-12 .copyright a {
  color: #fff;
}

.footer .col-12 .creation {
  float: right;
}

.footer .col-12 .creation a {
  color: #fff;
}

/* RESPONSIVE MEDIUM FIXES */
@media only screen and (max-width: 1199px), only screen and (max-device-width: 1199px) {
  .intro figure .holder {
    transform: translate(65px, -65px);
  }
  .intro figure .holder img {
    width: 450px;
  }
  .property-calculator figure .holder {
    transform: translate(65px, -65px);
  }
  .property-calculator figure .holder img {
    width: 450px;
  }
  .footer-bar .inner p {
    font-size: 15px;
  }
  .footer-bar .inner p br {
    display: none;
  }
}

/* RESPONSIVE TABLET FIXES */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  /* Side navigation form adjustments */
  .side-navigation {
    padding: 40px;
  }
  .side-navigation .intake-form .form-row.two-col,
  .side-navigation .intake-form .form-row.three-col {
    grid-template-columns: 1fr;
  }
  .navbar .container .menu {
    display: none;
  }
  .intro figure {
    width: 100%;
    margin-bottom: 80px;
  }
  .intro figure .pattern-bg {
    width: 100%;
    left: 0;
  }
  .intro figure .holder {
    transform: translate(0, -45px);
    padding: 0 15%;
  }
  .intro figure .holder img {
    width: 100%;
  }
  .intro .content-box {
    padding-left: 0;
  }
  .faq .sidebox {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
  }
  .recent-gallery {
    padding: 80px 0;
  }
  .recent-gallery h3 {
    padding-right: 0;
  }
  .recent-gallery .col-md-4 {
    margin-top: 0 !important;
  }
  .recent-gallery figure {
    margin-top: 80px;
  }
  .benefits {
    padding: 80px 0;
  }
  .property-calculator {
    padding-bottom: 80px;
    margin-top: 0;
  }
  .property-calculator .col-lg-6:nth-child(1) {
    order: 2;
  }
  .property-calculator .col-lg-6:nth-child(2) {
    order: 1;
  }
  .property-calculator figure {
    width: 100%;
  }
  .property-calculator figure:before {
    display: none;
  }
  .property-calculator figure .pattern-bg {
    width: 100%;
    left: 0;
  }
  .property-calculator figure .holder {
    transform: translate(0, -45px);
    padding: 0 15%;
  }
  .property-calculator figure .holder img {
    width: 100%;
  }
  .property-calculator .content-box {
    padding-left: 0;
    margin-bottom: 150px;
  }
  .property-customization {
    padding-bottom: 80px;
  }
  .certificates {
    padding: 80px 0;
  }
  .sales-offices {
    padding: 80px 0;
  }
  .faq {
    padding: 80px 0;
  }
  .footer-bar .inner {
    padding: 30px;
  }
  .footer-bar .inner .col-lg-4 {
    margin: 20px 0;
  }
  .footer-bar .inner figure {
    width: 70px;
    margin-right: 0;
  }
  .footer-bar .inner figure img {
    height: 50px;
  }
  .footer {
    padding-top: 150px;
  }
  .footer .footer-menu {
    padding: 0;
  }
  .footer .contact-box {
    float: left;
    text-align: left;
    margin-top: 80px;
  }
  .footer .contact-box ul {
    float: left;
  }
}

/* RESPONSIVE MOBILE FIXES */
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  /* Mobile utilities */
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none !important;
  }
  /* Side navigation - Mobile multi-step wizard */
  .side-navigation {
    width: 100%;
    padding: 30px 25px;
    justify-content: flex-start;
    padding-top: 80px;
    overflow-y: auto;
    box-sizing: border-box;
  }
  .side-navigation .form-header h2 {
    font-size: 28px;
  }
  .side-navigation .form-header p {
    font-size: 14px;
  }
  .side-navigation .intake-form .step-indicators {
    display: flex;
  }
  .side-navigation .intake-form .form-row.two-col,
  .side-navigation .intake-form .form-row.three-col {
    grid-template-columns: 1fr;
  }
  .side-navigation .intake-form .form-step {
    display: none;
  }
  .side-navigation .intake-form .form-step.active {
    display: block;
  }
  .side-navigation .intake-form .form-navigation {
    flex-direction: column;
    align-items: stretch;
  }
  .side-navigation .intake-form .form-navigation .btn-prev,
  .side-navigation .intake-form .form-navigation .btn-next {
    display: block;
    width: 100%;
  }
  .side-navigation .intake-form .form-navigation .btn-prev {
    display: none;
  }
  .side-navigation .intake-form .form-navigation .btn-next {
    display: block;
    background: #9f8054;
    border: none;
  }
  .side-navigation .intake-form .form-navigation .btn-next:hover {
    background: #ebcfa7;
    color: #26282b;
  }
  .side-navigation .intake-form .form-navigation .btn-submit {
    display: none;
    width: 100%;
  }
  .side-navigation .form-footer {
    margin-top: 30px;
    padding-top: 20px;
  }
  .navbar .container .upper-side .phone-email {
    display: none;
  }
  .navbar .container .upper-side .language {
    display: none;
  }
  .navbar .container .upper-side .hamburger {
    margin-left: auto;
  }
  .slider .slider-container .inner-elements .container .social-media {
    display: none;
  }
  .slider .slider-container .swiper-slide .container {
    padding-left: 15px;
    padding-right: 40px;
  }
  .slider .slider-container .swiper-slide .container figure {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  .benefits .col {
    width: 50%;
    flex-basis: auto;
    border-right: none;
  }
  .benefits .col:nth-child(odd) {
    margin-top: 0;
  }
  .certificates figure {
    margin: 15px 0;
  }
  .footer .col-12 .creation {
    float: left;
    margin-top: 5px;
  }
}
