*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Manrope Light', sans-serif;
  color: #000;
  background-color: #FFF;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}
.container.component-container {
  width: 100%;
}
.container .map {
  padding: 0 0 30px 0;
}
.container .map h1 {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
  margin-bottom: 45px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s, background-color 0.2s;
}
button {
  cursor: pointer;
  border: none;
  transition: background-color 0.3s, opacity 0.3s, box-shadow 0.3s;
}
.header-font {
  font-family: 'AceSans', sans-serif;
}
.text-gold {
  color: #DDC196;
}
.bg-gold {
  background-color: #DDC196;
}
.text-sm {
  font-size: 0.875rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.uppercase {
  text-transform: uppercase;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 91px;
}
header .container {
  padding: 24.5px 0;
  display: flex;
  column-gap: 50px;
  width: 100%;
}
header .container .mobile-menu-icon {
  display: none;
}
.header-font {
  font-family: 'AceSans', sans-serif;
}
.text-gold {
  color: #DDC196;
}
.bg-gold {
  background-color: #DDC196;
}
.border-gold {
  border-color: #DDC196;
}
.max-w-1300 {
  max-width: 1300px;
}
.btn-default {
  display: inline-block;
  width: 174px;
  height: 37px;
  padding: 10px 40px;
  border-radius: 56px;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  font-size: 17px;
  box-shadow: 0 10px 15px -3px #0000001A, 0 4px 6px -4px #0000001A;
  background-color: #DDC196;
  color: #000;
  text-align: center;
}
.btn-default:hover {
  color: #DDC196;
  background-color: #000;
  cursor: pointer;
}
.header-logo-image {
  display: inline-block;
  height: 34px;
  margin-top: 8px;
  width: 100px;
}
.menu {
  margin: 0 auto;
}
.menu .nav {
  display: flex;
  gap: 40px;
  font-weight: 400;
  height: 42px;
}
.menu .nav div a,
.menu .nav div span {
  line-height: 130%;
  font-size: 17px;
  text-transform: uppercase;
  padding-top: 10px;
  display: inline-block;
}
.menu .nav div a:hover {
  cursor: pointer;
  color: #A1855A;
}
.menu .nav div.active {
  border-bottom: 2px solid #A1855A;
}
.menu .nav div.active a,
.menu .nav div.active span {
  color: #A1855A;
}
.top-menu {
  width: 100%;
}
.top-menu .menu .deeper.parent {
  position: relative;
}
.top-menu .menu .deeper.parent.opened .nav-child {
  display: flex;
  top: 100%;
  opacity: 1;
}
.top-menu .menu .deeper.parent:hover {
  cursor: pointer;
}
.top-menu .menu .deeper.parent:hover .nav-child {
  display: flex;
  top: 100%;
  opacity: 1;
}
.top-menu .menu .nav-child {
  position: absolute;
  flex-direction: column;
  display: none;
  opacity: 0;
  top: 100%;
  z-index: 1000;
  width: 120px;
  height: 126px;
  gap: 10px;
  padding: 20px 10px;
  border: 1px solid #DDC196;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #FFF;
  transition-property: top, opacity;
  transition-duration: 200ms;
  transition-timing-function: ease-in;
}
.top-menu .menu .nav-child > div {
  width: 100%;
  height: 38px;
  border-radius: 19px;
  padding: 8px 16px;
  background: #F7F6F2;
}
.top-menu .menu .nav-child > div:hover {
  background-color: #000;
  cursor: pointer;
}
.top-menu .menu .nav-child > div:hover a {
  color: #DDC196;
}
.top-menu .menu .nav-child > div.active a,
.top-menu .menu .nav-child > div.active span {
  color: #DDC196;
  text-decoration: none;
}
.top-menu .menu .nav-child > div a,
.top-menu .menu .nav-child > div span {
  color: #000;
  font-family: 'Manrope Light', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 130%;
  text-transform: capitalize;
  padding-top: 0;
}
.top-menu .menu .nav-child > div.active {
  border-bottom: none;
}
.top-menu .subscription-form-container {
  display: none;
}
.header-extra {
  margin-right: -50px;
}
.header-extra .header-buttons {
  height: 37px;
  margin: 2.5px 0;
  display: flex;
  gap: 20px;
}
.header-extra .header-buttons button {
  width: 174px;
  height: 37px;
  padding: 10px 40px;
  border-radius: 56px;
  font-family: 'Manrope Light', sans-serif;
}
.header-extra .header-buttons button:hover {
  cursor: pointer;
}
.header-extra .header-buttons button.btn-signin {
  color: #000;
  background-color: #DDC196;
}
.header-extra .header-buttons button.btn-whatsapp {
  color: #FFF;
  background-color: #A1855A;
}
.header-extra .header-buttons button.btn-whatsapp:hover {
  background-color: #000;
  color: #A1855A;
  cursor: pointer;
}
.hero-area {
  margin-top: 30px;
}
.hero-area h1,
.hero-area h2 {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 78px;
  line-height: 130%;
}
.hero-area h1.mobile {
  display: none;
}
.hero-area .hero-img {
  position: relative;
  border-radius: 114px;
  background-size: cover;
}
.hero-area .hero-img h2 {
  position: absolute;
  display: inline-block;
  width: 60%;
  left: 40%;
  top: 0;
  background-color: #FFF;
  border-radius: 0 0 0 54px;
  text-transform: uppercase;
  padding: 0 0 20px 60px;
  overflow: visible;
}
.hero-area .hero-img h2:before {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 70px;
  height: 70px;
  position: absolute;
  left: -70px;
  top: 0;
}
.hero-area .hero-img h2:after {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 114px;
  height: 114px;
  position: absolute;
  right: 0;
  bottom: -114px;
}
.hero-area .hero-img .bottom-area {
  position: absolute;
  display: inline-block;
  width: 52%;
  left: 0;
  bottom: 0;
  background-color: #FFF;
  border-radius: 0 94px 0 0;
  text-transform: uppercase;
}
.hero-area .hero-img .bottom-area:before,
.hero-area .hero-img .bottom-area:after {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 114px;
  height: 114px;
  position: absolute;
  transform: rotate(180deg);
}
.hero-area .hero-img .bottom-area:before {
  left: 0;
  top: -114px;
}
.hero-area .hero-img .bottom-area:after {
  width: 70px;
  height: 70px;
  right: -70px;
  bottom: 0;
}
.hero-area .hero-img .bottom-area p {
  text-transform: uppercase;
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  margin: 20px 0;
}
.hero-area .hero-img .bottom-area a {
  display: inline-block;
  font-family: 'Manrope Light', sans-serif;
  width: 95%;
  height: 87px;
  padding: 22.5px 40px;
  text-transform: uppercase;
  font-size: 32px;
  text-align: center;
}
.exclusive-projects {
  margin-top: 100px;
}
.exclusive-projects .headline {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 36px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #A1855A;
  text-align: justify;
}
.exclusive-projects .headline:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 0;
}
.exclusive-projects .projects-container {
  display: flex;
  gap: 20px;
}
.exclusive-projects .projects-container .project {
  flex: 0 calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.exclusive-projects .projects-container .project .project-image {
  width: 100%;
  height: 540px;
  background-position: center center;
  background-size: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  border-radius: 24px;
  transition: background-size 0.5s ease;
}
.exclusive-projects .projects-container .project .project-image:hover {
  background-size: 115%;
}
.exclusive-projects .projects-container .project .project-data {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.exclusive-projects .projects-container .project .project-data .name {
  font-family: 'Manrope Light', sans-serif;
  font-size: 48px;
  line-height: 130%;
  text-transform: uppercase;
  padding-bottom: 20px;
  border-bottom: 1px solid #DDC196;
}
.exclusive-projects .projects-container .project .project-data .name:hover {
  color: #DDC196;
}
.exclusive-projects .projects-container .project .project-data .details {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.exclusive-projects .projects-container .project .project-data .details .detail {
  width: 30%;
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
}
.exclusive-projects .projects-container .project .project-data .description {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
  margin-top: 40px;
  margin-bottom: 20px;
}
.exclusive-projects .projects-container .project .project-data .description p + p {
  margin-top: 10px;
}
.exclusive-projects .projects-container .project .project-data .btn-default {
  width: 100%;
  margin-top: auto;
  height: 62px;
  padding: 20px;
}
.info-section {
  margin-top: 100px;
  display: flex;
  gap: 20px;
}
.info-section .info-area {
  flex: 66.6%;
}
.info-section .info-area h2 {
  text-transform: uppercase;
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
}
.info-section .info-area .info-text {
  font-size: 17px;
  margin-top: 40px;
  font-family: 'Manrope Light', sans-serif;
}
.info-section .info-area .info-text p + p {
  margin-top: 20px;
}
.info-section .info-area .info-text b,
.info-section .info-area .info-text strong {
  font-family: 'Manrope', sans-serif;
}
.info-section .info-area .info-image.mobile-only {
  display: none;
}
.info-section .info-area .features {
  margin-top: 56px;
  display: flex;
  gap: 20px;
}
.info-section .info-area .features .feature {
  flex: 0 33.3%;
  border: 1px solid #DDC196;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}
.info-section .info-area .features .feature .feature-header {
  font-family: 'Manrope Light', sans-serif;
  font-weight: 600;
  font-size: 64px;
  text-align: center;
  width: 100%;
  color: #DDC196;
}
.info-section .info-area .features .feature .feature-text {
  font-family: 'Manrope Light', sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  line-height: 100%;
  margin-top: 10px;
}
.info-section .info-area .learn-more-btn {
  width: 100%;
  margin-top: 40px;
  height: 62px;
  padding: 20px;
  text-align: center;
  font-size: 17px;
}
.info-section .info-image {
  flex: 0 33.3%;
  border-radius: 24px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
footer {
  margin-top: 100px;
  padding: 40px 20px;
  background-color: #F7F6F2;
}
footer .footer-container {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
footer .footer-container .footer-menu-block {
  display: flex;
  width: 100%;
}
footer .footer-container .footer-menu-block .footer-logo {
  width: 35%;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footer-container .footer-menu-block .footer-logo .footer-logo-image {
  width: 200px;
}
footer .footer-container .footer-menu-block .footer-logo .footer-slogan {
  font-family: 'Manrope Light', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
}
footer .footer-container .footer-menu-block .footer-menu {
  margin-right: 30px;
  width: calc(65% - 50px);
}
footer .footer-container .footer-menu-block .footer-menu .header-logo-wrap,
footer .footer-container .footer-menu-block .footer-menu .header-extra,
footer .footer-container .footer-menu-block .footer-menu .mobile-menu-icon {
  display: none;
}
footer .footer-container .footer-menu-block .footer-menu .menu .nav {
  gap: 20px;
  height: auto;
}
footer .footer-container .footer-menu-block .footer-menu .menu .nav > div {
  width: 40%;
}
footer .footer-container .footer-menu-block .footer-menu .menu .nav div.active {
  border-bottom: none;
}
footer .footer-container .footer-menu-block .footer-menu .menu .nav div.active a {
  color: #000;
}
footer .footer-container .footer-menu-block .footer-menu .menu .nav a,
footer .footer-container .footer-menu-block .footer-menu .menu .nav span {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  text-transform: uppercase;
  padding-top: 0;
}
footer .footer-container .footer-menu-block .footer-menu .menu .nav a:hover {
  text-decoration: underline;
  cursor: pointer;
}
footer .footer-container .footer-menu-block .footer-menu .menu .nav .nav-child {
  margin-top: 20px;
}
footer .footer-container .footer-menu-block .footer-menu .menu .nav .nav-child > div + div {
  margin-top: 10px;
}
footer .footer-container .footer-menu-block .footer-menu .menu .nav .nav-child a {
  text-transform: capitalize;
  font-family: 'Manrope Light', sans-serif;
}
footer .footer-container .footer-menu-block .footer-menu .subscription-form-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  align-items: center;
  gap: 20px;
}
footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .form-header {
  text-transform: uppercase;
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
}
footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .success-message {
  opacity: 0;
  display: none;
  transition: all 200ms ease-in-out;
  height: 54px;
  align-items: center;
}
footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .subscription-form {
  display: flex;
  gap: 20px;
}
footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .subscription-form input {
  height: 54px;
  border-radius: 200px;
  background-color: #FFF;
  box-shadow: 0 1px 2px 0 #022C2214;
  border: 1px solid #808080;
  width: 220px;
  padding: 10px 15px;
  font-size: 17px;
}
footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .subscription-form input:focus,
footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .subscription-form input:active {
  border-color: #DDC196;
  outline: none;
}
footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .subscription-form input.validation-error {
  border: 1px solid #FF0000;
}
footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .subscription-form .submit-button {
  height: 54px;
  padding: 10px 14px;
  width: auto;
}
footer .footer-container .footer-menu-block .footer-social {
  width: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footer-container .footer-menu-block .footer-social a {
  text-align: center;
}
footer .footer-container .footer-menu-block .footer-social a:hover {
  color: #DDC196;
}
footer .footer-container .footer-menu-block .footer-social a i {
  font-size: 20px;
}
footer .footer-container .footer-bottom {
  border-top: 1px solid #DDC196;
  display: flex;
  justify-content: space-between;
}
footer .footer-container .footer-bottom > div {
  margin: 30px 0 10px 0;
}
footer .footer-container .footer-bottom div {
  font-family: 'Manrope Light', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
}
footer .footer-container .footer-bottom div a + a {
  margin-left: 20px;
}
.breadcrumbs i {
  margin-right: 10px;
}
.breadcrumbs a {
  text-decoration: none;
  font-family: 'Manrope Light', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 130%;
  color: #000;
}
.breadcrumbs a:hover {
  cursor: pointer;
  color: #DDC196;
}
.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.pagination ul {
  list-style-type: none;
  display: flex;
  margin: 0 auto;
}
.pagination ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  height: 40px;
  min-width: 40px;
}
.pagination ul li.pagination-prev,
.pagination ul li.pagination-next {
  padding: 0 20px;
}
.pagination ul li a,
.pagination ul li span {
  color: #000;
  opacity: 50%;
}
.pagination ul li:not(.active):hover {
  cursor: pointer;
  opacity: 100%;
  background-color: #808080;
}
.pagination ul li:not(.active):hover a,
.pagination ul li:not(.active):hover span {
  color: #FFF;
  opacity: 100%;
}
.pagination ul li.active {
  background-color: #DDC196;
}
.pagination ul li.active a,
.pagination ul li.active span {
  opacity: 100%;
}
@font-face {
  font-family: 'Manrope ExtraLight';
  src: url('/assets/fonts/Manrope-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope Light';
  src: url('/assets/fonts/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope Regular';
  src: url('/assets/fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope SemiBold';
  src: url('/assets/fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope Bold';
  src: url('/assets/fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope ExtraBold';
  src: url('/assets/fonts/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'AceSans';
  src: url('/assets/fonts/AceSans.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.contact-form-section {
  margin-top: 100px;
}
.contact-form-section .container {
  width: 100%;
}
.contact-form-section .container .heading {
  display: flex;
  justify-content: space-between;
}
.contact-form-section .container .heading h1 {
  display: inline-block;
  flex: 0 70%;
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
}
.contact-form-section .container .heading .intro-text {
  display: inline-block;
  flex: 0 30%;
  font-family: 'Manrope Light', sans-serif;
  font-size: 24px;
  line-height: 130%;
}
.contact-form-section .container .content-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.contact-form-section .container .content-wrapper .contact-details-panel {
  flex: 0 24%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-section .container .content-wrapper .contact-details-panel .contact-card {
  background-color: #F7F6F2;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.contact-form-section .container .content-wrapper .contact-details-panel .contact-card .top-line {
  display: flex;
  gap: 10px;
}
.contact-form-section .container .content-wrapper .contact-details-panel .contact-card .top-line .icon {
  background-color: #DDC196;
  border-radius: 13px;
  width: 40px;
  height: 40px;
  text-align: center;
}
.contact-form-section .container .content-wrapper .contact-details-panel .contact-card .top-line .icon i {
  color: #FFF;
  font-size: 20px;
  padding: 10px 0;
}
.contact-form-section .container .content-wrapper .contact-details-panel .contact-card .top-line p {
  font-size: 24px;
  line-height: 100%;
  font-family: 'Manrope Light', sans-serif;
  padding: 8px 0;
}
.contact-form-section .container .content-wrapper .contact-details-panel .contact-card .bottom-line {
  font-size: 17px;
  line-height: 100%;
  font-family: 'Manrope Light', sans-serif;
}
.contact-form-section .container .content-wrapper .contact-form {
  flex: 0 76%;
  background-color: #F7F6F2;
  padding: 63px 40px;
  border-radius: 24px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.contact-form-section .container .content-wrapper .contact-form .form-row {
  display: flex;
  gap: 20px;
}
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group {
  flex: 0 50%;
}
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group.flex-100 {
  flex: 0 100%;
}
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group input,
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group textarea {
  width: 100%;
  padding: 20px;
  height: 60px;
  background-color: #FFF;
  font-size: 17px;
  line-height: 100%;
  font-family: 'Manrope Light', sans-serif;
  border-radius: 24px;
  border: none;
}
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group input:active,
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group textarea:active,
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group input:focus,
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group textarea:focus {
  border: 1px solid #DDC196;
  outline: none;
}
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group input.validation-error,
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group textarea.validation-error {
  border: 1px solid #FF0000;
}
.contact-form-section .container .content-wrapper .contact-form .form-row .form-field-group textarea {
  height: 157px;
}
.contact-form-section .container .content-wrapper .contact-form .submit-button {
  width: 100%;
  height: 62px;
  padding: 20px 40px;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: #00000096;
  backdrop-filter: blur(7.7px);
  z-index: 1000;
}
.modal-overlay.active {
  display: flex;
}
.modal-overlay .success-modal-content {
  width: 90%;
  max-width: 1300px;
  background-color: white;
  padding: 32px;
  border-radius: 24px;
  position: relative;
  text-align: center;
}
@media (max-width: 1299.9px) {
  .modal-overlay .success-modal-content .success-modal-content {
    max-width: 90%;
  }
}
.modal-overlay .success-modal-content .modal-close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  line-height: 100%;
  background-color: #E5E5E5;
  border-radius: 50%;
  cursor: pointer;
}
.modal-overlay .success-modal-content .modal-close-btn i {
  color: #000;
  font-size: 22px;
  margin-top: 9px;
}
.modal-overlay .success-modal-content .success-body {
  padding: 32px 200px;
}
.modal-overlay .success-modal-content .success-body .success-icon-wrapper {
  margin: 0 auto 60px;
  width: 106px;
  height: 106px;
  background-color: #DDC196;
  border-radius: 50%;
}
.modal-overlay .success-modal-content .success-body .success-icon-wrapper .success-icon {
  width: 46px;
  display: block;
  margin: 0 auto;
  padding-top: 30px;
}
.modal-overlay .success-modal-content .success-body .success-message {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: #000;
}
.contact-form-module .form-container {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #A1855A;
  background-color: #F7F6F2;
  padding: 40px 20px;
  gap: 20px;
}
.contact-form-module .form-container h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #000;
  margin-bottom: 40px;
}
.contact-form-module .form-container .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group p {
  font-family: 'Manrope Light', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #A1855A;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group p.text-bold {
  font-family: 'Manrope', sans-serif;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group label {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
  color: #4A5565;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group input,
.contact-form-module .form-container .contact-form .form-row .form-field-group textarea {
  width: 100%;
  padding: 20px;
  height: 60px;
  background-color: #FFF;
  font-size: 17px;
  line-height: 100%;
  font-family: 'Manrope Light', sans-serif;
  border-radius: 24px;
  border: none;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group input:active,
.contact-form-module .form-container .contact-form .form-row .form-field-group textarea:active,
.contact-form-module .form-container .contact-form .form-row .form-field-group input:focus,
.contact-form-module .form-container .contact-form .form-row .form-field-group textarea:focus {
  border: 1px solid #DDC196;
  outline: none;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group input.validation-error,
.contact-form-module .form-container .contact-form .form-row .form-field-group textarea.validation-error {
  border: 1px solid #FF0000;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group textarea {
  height: 157px;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group input[type="text"]::placeholder,
.contact-form-module .form-container .contact-form .form-row .form-field-group textarea::placeholder {
  color: #808080;
  opacity: 1;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group input[type="text"]:-moz-placeholder,
.contact-form-module .form-container .contact-form .form-row .form-field-group textarea:-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.contact-form-module .form-container .contact-form .form-row .form-field-group input[type="text"]:-ms-input-placeholder,
.contact-form-module .form-container .contact-form .form-row .form-field-group textarea:-ms-input-placeholder {
  color: #808080;
}
.contact-form-module .form-container .contact-form .submit-button {
  margin-top: 40px;
  width: 100%;
  height: 42px;
  border-radius: 56px;
  padding: 10px 40px;
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
}
.contact-form-module .form-container .contact-form .submit-button:hover {
  cursor: pointer;
  background-color: #000;
  color: #DDC196;
}
.contact-modal-overlay .contact-form-module {
  max-height: 90%;
  overflow-y: scroll;
  border-radius: 16px;
  position: relative;
}
.contact-modal-overlay .contact-form-module .modal-close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
}
.contact-modal-overlay .contact-form-module .modal-close-btn:hover {
  cursor: pointer;
}
.contact-modal-overlay .contact-form-module .form-container h3 {
  margin-bottom: 0;
}
.contact-modal-overlay .contact-form-module .form-container .contact-form {
  gap: 10px;
}
.contact-modal-overlay .contact-form-module .form-container .contact-form .form-row .form-field-group input,
.contact-modal-overlay .contact-form-module .form-container .contact-form .form-row .form-field-group textarea {
  padding: 15px;
  height: 50px;
}
.contact-modal-overlay .contact-form-module .form-container .contact-form .form-row .form-field-group textarea {
  height: 70px;
}
.contact-modal-overlay .contact-form-module .form-container .contact-form .submit-button {
  margin-top: 0;
}
.properties-container {
  margin-top: 13px;
}
.properties-container .headline {
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
}
.properties-container .headline h2 {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
  text-transform: uppercase;
  width: calc(66% - 10px);
}
.properties-container .headline p {
  font-family: 'Manrope Light', sans-serif;
  font-size: 24px;
  line-height: 130%;
  width: calc(33% - 10px);
}
.properties-container .main-section {
  margin-top: 30px;
}
.properties-container .main-section .headline {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.properties-container .main-section .headline .headline-texts h1 {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
  text-transform: uppercase;
}
.properties-container .main-section .headline .headline-texts .type-switcher {
  color: #A1855A;
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
}
.properties-container .main-section .headline .headline-texts .type-switcher:hover {
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
}
.properties-container .main-section .headline .headline-texts .type-switcher a {
  display: flex;
  align-items: center;
}
.properties-container .main-section .headline .headline-texts .type-switcher i {
  color: #000;
  transform: rotate(-45deg);
  margin-left: 5px;
  font-size: 13px;
}
.properties-container .main-section .headline .right-buttons {
  display: flex;
  font-family: 'Manrope Light', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  height: 32px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.properties-container .main-section .headline .right-buttons i {
  margin-left: 10px;
  margin-top: 7px;
}
.properties-container .main-section .headline .right-buttons i + i {
  margin-left: 20px;
}
.properties-container .main-section .headline .right-buttons i:hover {
  cursor: pointer;
  color: #DDC196;
}
.properties-container .main-section .headline .right-buttons .filter-settings.active {
  color: #DDC196;
}
.properties-container .main-section .headline .right-buttons .filter-settings:hover {
  cursor: pointer;
  color: #DDC196;
}
.properties-container .main-section .headline .right-buttons .filter-form {
  width: 550px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 99;
  background: #FFF;
  border: 1px solid #A1855A;
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.properties-container .main-section .headline .right-buttons .filter-form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.properties-container .main-section .headline .right-buttons .filter-form .filter-header {
  height: 28px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}
.properties-container .main-section .headline .right-buttons .filter-form .filter-header .labels {
  width: 80%;
  display: flex;
  justify-content: space-between;
}
.properties-container .main-section .headline .right-buttons .filter-form .filter-header .labels span {
  font-family: 'Manrope Light', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  color: #000;
}
.properties-container .main-section .headline .right-buttons .filter-form .filter-header .labels span.filter-reset {
  color: #DDC196;
}
.properties-container .main-section .headline .right-buttons .filter-form .filter-header .labels span.filter-reset:hover {
  cursor: pointer;
  color: #A1855A;
}
.properties-container .main-section .headline .right-buttons .filter-form .filter-header .cross {
  display: flex;
}
.properties-container .main-section .headline .right-buttons .filter-form .filter-header .cross .fa-close {
  margin: 0;
  font-size: 20px;
  color: #DDC196;
}
.properties-container .main-section .headline .right-buttons .filter-form .filter-header .cross .fa-close:hover {
  cursor: pointer;
  color: #A1855A;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container {
  width: 100%;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .header,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .header {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 100%;
  vertical-align: middle;
  color: #808080;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .value-display-area,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area {
  display: flex;
  margin: 20px 0 10px 0;
  font-family: 'Manrope Light', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
  color: #808080;
  height: 29px;
  gap: 10px;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .value-display-area .selection,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area .selection {
  width: 58px;
  height: 29px;
  border-radius: 16px;
  padding: 6px 0;
  text-align: center;
  background-color: #F7F6F2;
  color: #000;
  font-size: 17px;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .value-display-area .selection:hover,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area .selection:hover,
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .value-display-area .selection.active,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area .selection.active {
  background-color: #DDC196;
  cursor: pointer;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .range-container,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container {
  position: relative;
  padding: 0;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .range-container .range-track,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .range-track {
  position: relative;
  height: 6px;
  width: 100%;
  background-color: #F7F6F2;
  border-radius: 9999px;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .range-container .highlight-range,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .highlight-range {
  position: absolute;
  height: 6px;
  background-color: #DDC196;
  border-radius: 9999px;
  top: 50%;
  transform: translateY(-50%);
  transition: box-shadow 0.3s ease;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .range-container .range-handle,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .range-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #DDC196;
  border: 1px solid #A1855A;
  cursor: grab;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  z-index: 10;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .range-container .range-handle:hover,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .range-handle:hover {
  background-color: #A1855A;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .range-container .range-handle.active,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .range-handle.active {
  cursor: grabbing;
  background-color: #A1855A;
}
.properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .range-container .static-labels,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .static-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area {
  height: auto;
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
  justify-content: space-between;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area .selection {
  width: auto;
  height: 53px;
  border-radius: 100px;
  padding: 10px 20px;
  text-align: center;
  max-width: 30%;
  display: flex;
  align-items: center;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area .selection:hover,
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area .selection.active {
  background-color: #DDC196;
  cursor: pointer;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container {
  position: relative;
  padding: 0;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .range-track {
  position: relative;
  height: 6px;
  width: 100%;
  background-color: #F7F6F2;
  border-radius: 9999px;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .highlight-range {
  position: absolute;
  height: 6px;
  background-color: #DDC196;
  border-radius: 9999px;
  top: 50%;
  transform: translateY(-50%);
  transition: box-shadow 0.3s ease;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .range-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #DDC196;
  border: 1px solid #A1855A;
  cursor: grab;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  z-index: 10;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .range-handle:hover {
  background-color: #A1855A;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .range-handle.active {
  cursor: grabbing;
  background-color: #A1855A;
}
.properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .range-container .static-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  /* mt-4 */
  font-size: 0.875rem;
  /* text-sm */
  color: #6b7280;
  /* text-gray-500 */
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container {
  width: 100%;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .header {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 100%;
  vertical-align: middle;
  color: #808080;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .value-display-area {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 10px 0;
  font-family: 'Manrope Light', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  vertical-align: middle;
  color: #808080;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .value-display-area .price-val {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .value-display-area .price-val.text-right {
  text-align: right;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .value-display-area .price-val span {
  display: block;
  width: 100%;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .value-display-area .price-val span.val {
  color: #DDC196;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .range-container {
  position: relative;
  padding: 0;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .range-container .range-track {
  position: relative;
  height: 6px;
  width: 100%;
  background-color: #F7F6F2;
  border-radius: 9999px;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .range-container .highlight-range {
  position: absolute;
  height: 6px;
  background-color: #DDC196;
  border-radius: 9999px;
  top: 50%;
  transform: translateY(-50%);
  transition: box-shadow 0.3s ease;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .range-container .range-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #DDC196;
  border: 1px solid #A1855A;
  cursor: grab;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  z-index: 10;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .range-container .range-handle:hover {
  background-color: #A1855A;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .range-container .range-handle.active {
  cursor: grabbing;
  background-color: #A1855A;
}
.properties-container .main-section .headline .right-buttons .filter-form .price-selector-container .range-container .static-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  /* mt-4 */
  font-size: 0.875rem;
  /* text-sm */
  color: #6b7280;
  /* text-gray-500 */
}
.properties-container .main-section .properties-container-inner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 40px;
  margin-top: 40px;
  align-items: stretch;
}
.properties-container .main-section .properties-container-inner .property {
  transition: all 0.2s;
}
.properties-container .main-section .properties-container-inner .property.col-3 {
  flex: 0 calc(33.3% - 13.3px);
}
.properties-container .main-section .properties-container-inner .property.col-2 {
  flex: 0 calc(50% - 10px);
}
.properties-container .main-section .properties-container-inner .property .property-image {
  height: 288px;
  width: 100%;
  position: relative;
  border-radius: 24px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.properties-container .main-section .properties-container-inner .property .property-image:hover {
  cursor: pointer;
}
.properties-container .main-section .properties-container-inner .property .property-image .white-corner {
  width: 22%;
  height: 22%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FFF;
  border-radius: 0 0 0 24px;
}
.properties-container .main-section .properties-container-inner .property .property-image .white-corner:before {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -24px;
  top: 0;
}
.properties-container .main-section .properties-container-inner .property .property-image .white-corner:after {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  bottom: -24px;
}
.properties-container .main-section .properties-container-inner .property .property-description {
  position: relative;
  z-index: 10;
  margin-top: -10px;
  border-radius: 24px;
  padding: 40px 20px;
  border: 1px solid #DDC196;
  background-color: #FFF;
  height: calc(100% - 278px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.properties-container .main-section .properties-container-inner .property .property-description .top-section h3 {
  font-family: 'Manrope Light', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #000;
}
.properties-container .main-section .properties-container-inner .property .property-description .top-section h3:hover {
  color: #DDC196;
  cursor: pointer;
}
.properties-container .main-section .properties-container-inner .property .property-description .top-section .location {
  margin-top: 10px;
  font-family: 'Manrope Light', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #000;
  position: relative;
}
.properties-container .main-section .properties-container-inner .property .property-description .top-section .location img {
  position: absolute;
  width: 20px;
  height: 20px;
}
.properties-container .main-section .properties-container-inner .property .property-description .top-section .location span {
  margin-left: 25px;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications {
  margin-top: 20px;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .numbers {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #DDC196;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .numbers div {
  font-family: 'Manrope Light', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  position: relative;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .numbers div img {
  width: 20px;
  height: 20px;
  position: absolute;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .numbers div span {
  margin-left: 25px;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .details {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .details .price {
  font-family: 'Manrope Light', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .details .price .smaller {
  font-size: 20px;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .details .property-link a:hover img.default {
  display: none;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .details .property-link a:hover img.hover {
  display: inline;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .details .property-link img {
  width: 20px;
  height: 20px;
  margin-top: 11px;
}
.properties-container .main-section .properties-container-inner .property .property-description .specifications .details .property-link img.hover {
  display: none;
}
.properties-container .main-section .gallery {
  position: relative;
  display: flex;
}
.properties-container .main-section .gallery .slick-arrow {
  font-size: 25px;
  padding: 0 10px;
  color: #808080;
  background: none;
}
.properties-container .main-section .gallery .slick-arrow:hover {
  color: #000;
  cursor: pointer;
}
.properties-container .main-section .gallery .slick-list {
  transform: translate3d(0, 0, 0);
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}
.properties-container .main-section .gallery .slick-list .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.properties-container .main-section .gallery .slick-list .slick-track .slick-slide {
  display: flex;
  justify-content: center;
}
.properties-container .main-section .gallery img {
  height: 100%;
  max-width: 100%;
  border-radius: 24px;
}
.properties-container .main-section .property-info-panel {
  margin-top: 54px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.properties-container .main-section .property-info-panel .property-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: calc(66.6% - 10px);
}
.properties-container .main-section .property-info-panel .property-card .header-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-texts h1 {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  text-transform: uppercase;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-texts .location {
  margin-top: 10px;
  margin-bottom: 15px;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-texts .location img {
  width: 17px;
  height: 17px;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-texts .location span {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 100%;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-icons {
  display: flex;
  gap: 10px;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-icons .icon {
  position: relative;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-icons .icon i {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 25px;
  font-size: 25px;
  padding: 12px 13px;
  color: #000;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-icons .icon i:hover {
  cursor: pointer;
  border: 1px solid #DDC196;
  color: #DDC196;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-icons .icon i.fa-envelope-o {
  padding: 11px 12px;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-icons .icon i.fa-whatsapp {
  padding: 11px 13px;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-icons .icon i.fa-share-alt {
  position: relative;
}
.properties-container .main-section .property-info-panel .property-card .header-section .header-icons .icon .copy-tooltip {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}
.properties-container .main-section .property-info-panel .property-card .price {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
}
.properties-container .main-section .property-info-panel .property-card .price .smaller {
  font-size: 20px;
}
.properties-container .main-section .property-info-panel .property-card .specifications {
  display: flex;
  gap: 20px;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail {
  width: calc(25% - 15px);
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line {
  display: flex;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line i {
  font-size: 17px;
  color: #4A5565;
  margin-right: 10px;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line i.fa-bed {
  margin-top: 3px;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line i.fa-arrows-v {
  transform: rotate(45deg);
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line i.fa-info {
  width: 18px;
  height: 18px;
  padding-left: 6px;
  padding-top: 2px;
  font-size: 12px;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line i.fa-info:hover {
  color: #DDC196;
  cursor: pointer;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line span {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
  color: #4A5565;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line .extra-info {
  position: relative;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line .extra-info .fa-info {
  border: 1px solid #4A5565;
  border-radius: 50%;
  margin-left: 10px;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line .extra-info .popup {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  padding: 20px;
  border: 1px solid #DDC196;
  border-radius: 24px;
  background-color: #FFF;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 250px;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line .extra-info .popup div {
  display: flex;
  justify-content: space-between;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line .extra-info .popup div span {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
  color: #4A5565;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line .extra-info .popup div span.bold {
  color: #000;
  font-family: 'Manrope', sans-serif;
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .top-line .extra-info:hover .popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.properties-container .main-section .property-info-panel .property-card .specifications .detail .bottom-line {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 130%;
  color: #000;
}
.properties-container .main-section .property-info-panel .property-card .description h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 16px;
}
.properties-container .main-section .property-info-panel .property-card .description .description-content {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 180%;
  color: #4A5565;
}
.properties-container .main-section .property-info-panel .property-card .description .description-content p + p {
  margin-top: 10px;
}
.properties-container .main-section .property-info-panel .property-card .amenities h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 16px;
}
.properties-container .main-section .property-info-panel .property-card .amenities .amenities-list {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 180%;
  color: #4A5565;
  display: flex;
  gap: 20px;
}
.properties-container .main-section .property-info-panel .property-card .amenities .amenities-list ul {
  width: calc(33% - 14px);
  padding-left: 20px;
}
.properties-container .main-section .property-info-panel .contact-form-module {
  width: calc(33.3% - 10px);
}
.properties-container .view-all-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.properties-container .view-all-btn a {
  width: calc(33.3% - 10px);
  height: 62px;
  padding-top: 20px;
}
.featured-properties {
  margin-top: 100px;
}
.teams-container .hero-area {
  border-radius: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.teams-container .hero-area h1 {
  display: inline-block;
  font-size: 64px;
  background-color: #FFF;
  padding: 0 50px 15px 0;
  border-radius: 0 0 24px 0;
  position: relative;
}
.teams-container .hero-area h1:before {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  bottom: -24px;
  transform: rotate(-90deg);
}
.teams-container .hero-area h1:after {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: -24px;
  top: 0;
  transform: rotate(-90deg);
}
.teams-container .hero-area .bottom-area {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
  padding: 20px;
  width: 50%;
  background-color: #FFF;
  position: relative;
  margin-left: 50%;
  border-radius: 24px 0 0 0;
}
.teams-container .hero-area .bottom-area b,
.teams-container .hero-area .bottom-area strong {
  font-family: 'Manrope', sans-serif;
}
.teams-container .hero-area .bottom-area p + p {
  margin-top: 20px;
}
.teams-container .hero-area .bottom-area:before {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -24px;
  bottom: 0;
  transform: rotate(90deg);
}
.teams-container .hero-area .bottom-area:after {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: -24px;
  transform: rotate(90deg);
}
.teams-container .chasing-better-section {
  margin: 60px 0;
  display: flex;
  gap: 20px;
  padding: 40px 0;
}
.teams-container .chasing-better-section .text-area {
  flex: 0 100%;
}
.teams-container .chasing-better-section .text-area h2 {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.teams-container .chasing-better-section .text-area .chasing-text {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
}
.teams-container .chasing-better-section .text-area .chasing-text b,
.teams-container .chasing-better-section .text-area .chasing-text strong {
  font-family: 'Manrope', sans-serif;
}
.teams-container .chasing-better-section .text-area .chasing-text p + p {
  margin-top: 20px;
}
.teams-container .chasing-better-section .info-image {
  flex: 0 100%;
}
.teams-container .chasing-better-section .info-image img {
  max-width: 100%;
  max-height: 100%;
}
.teams-container .team-section h2 {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.teams-container .team-section .members-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.teams-container .team-section .members-container .member {
  width: calc(50% - 10px);
  display: flex;
  border-radius: 24px;
  border: 1px solid #DDC196;
  background-color: #FBFBF9;
  padding: 40px 20px;
  gap: 40px;
  flex-direction: column;
  justify-content: space-between;
}
.teams-container .team-section .members-container .member .member-description h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.teams-container .team-section .members-container .member .member-description .member-info {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
}
.teams-container .team-section .members-container .member .member-contacts {
  display: flex;
  gap: 20px;
}
.teams-container .team-section .members-container .member .member-contacts .contact {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background-color: #F7F6F2;
  padding: 40px;
  gap: 20px;
}
.teams-container .team-section .members-container .member .member-contacts .contact .contact-label {
  display: flex;
  align-items: center;
}
.teams-container .team-section .members-container .member .member-contacts .contact .contact-label .fa {
  color: #FFF;
  background-color: #DDC196;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 20px;
}
.teams-container .team-section .members-container .member .member-contacts .contact .contact-label .fa.fa-phone {
  padding: 10px 12px;
}
.teams-container .team-section .members-container .member .member-contacts .contact .contact-label .fa.fa-email {
  padding: 9px 10px;
}
.teams-container .team-section .members-container .member .member-contacts .contact .contact-label span {
  font-family: 'Manrope Light', sans-serif;
  font-size: 24px;
  line-height: 100%;
  margin-left: 10px;
}
.teams-container .team-section .members-container .member .member-contacts .contact .contact-details a {
  text-decoration: underline;
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 100%;
  color: #4A5565;
}
.teams-container .team-section .members-container .member .member-contacts .contact .contact-details a:hover {
  color: #000;
}
.blog-container .headline {
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
}
.blog-container .headline h2 {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
  text-transform: uppercase;
  width: calc(66% - 10px);
}
.blog-container .headline p {
  font-family: 'Manrope Light', sans-serif;
  font-size: 24px;
  line-height: 130%;
  width: calc(33% - 10px);
}
.blog-container .main-section .headline {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.blog-container .main-section .headline h1 {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
  text-transform: uppercase;
}
.blog-container .main-section .blog-container-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}
.blog-container .main-section .blog-container-inner .blog-post {
  transition: all 0.2s;
}
.blog-container .main-section .blog-container-inner .blog-post.col-3 {
  flex: 0 calc(33.3% - 13.3px);
}
.blog-container .main-section .blog-container-inner .blog-post.col-2 {
  flex: 0 calc(50% - 10px);
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-image {
  height: 288px;
  width: 100%;
  position: relative;
  border-radius: 24px 24px 24px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description {
  position: relative;
  z-index: 10;
  border-radius: 0 0 24px 24px;
  padding: 20px;
  border-left-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-image: linear-gradient(to bottom, #DDC196 0%, #DDC196 calc(100% - 24px), transparent calc(100% - 24px), transparent 100%) 1;
  border-top: none;
  border-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: calc(100% - 288px);
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description:before {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: -1px;
  top: -24px;
  transform: rotate(90deg);
  border-top: 1px solid #DDC196;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description:after {
  content: '';
  border-image: linear-gradient(to right, transparent 0%, transparent 24px, #DDC196 24px, #DDC196 calc(100% - 24px), transparent calc(100% - 24px), transparent 100%) 1;
  border-bottom-style: solid;
  border-width: 1px;
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .white-corner {
  width: 50%;
  height: 38px;
  position: absolute;
  top: -38px;
  left: -1px;
  background-color: #FFF;
  border-left: 1px solid #DDC196;
  border-radius: 0 14px 0 0;
  padding: 16px 0 0 20px;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .white-corner i {
  color: #DDC196;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .white-corner span {
  font-family: 'Manrope Light', sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: #808080;
  margin-left: 10px;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .white-corner:before {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -1px;
  top: -24px;
  transform: rotate(180deg);
  border-right: 1px solid #DDC196;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .white-corner:after {
  content: '';
  background-image: url(/templates/findr/assets/img/cutout-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: -24px;
  bottom: 0;
  transform: rotate(180deg);
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .post-title h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 130%;
  color: #000;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .post-title:hover h3 {
  cursor: pointer;
  color: #DDC196;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .intro-text {
  font-family: 'Manrope Light', sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: #000;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .blog-post-link {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: #000;
  margin-top: auto;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .blog-post-link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .blog-post-link a:hover {
  color: #DDC196;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .blog-post-link a:hover img.default {
  display: none;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .blog-post-link a:hover img.hover {
  display: inline;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .blog-post-link a img {
  width: 20px;
  height: 20px;
  margin-top: 11px;
}
.blog-container .main-section .blog-container-inner .blog-post .blog-post-description .blog-post-link a img.hover {
  display: none;
}
.blog-container .main-section .blog-headline {
  font-family: 'AceSans', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  width: 80%;
}
.blog-container .main-section .blog-post-contents {
  margin-top: 25px;
  margin-bottom: 60px;
}
.blog-container .main-section .blog-post-contents .main-image {
  display: flex;
  border-radius: 74px;
  height: 400px;
  background-size: cover;
  background-position: center center;
}
.blog-container .main-section .blog-post-contents .text {
  display: flex;
  position: relative;
  background-color: #FFF;
}
.blog-container .main-section .blog-post-contents .text .col {
  background-color: #FFF;
  padding-top: 20px;
  position: relative;
}
.blog-container .main-section .blog-post-contents .text .col.width-100 {
  width: 100%;
}
.blog-container .main-section .blog-post-contents .text .col.width-60 {
  width: 60%;
  padding-right: 20px;
}
.blog-container .main-section .blog-post-contents .text .col.width-40 {
  width: 40%;
}
.blog-container .main-section .blog-post-contents .text .col h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 130%;
  margin: 40px 0 10px;
}
.blog-container .main-section .blog-post-contents .text .col h2:first-child {
  margin-top: 0;
}
.blog-container .main-section .blog-post-contents .text .col h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 130%;
  margin: 20px 0 10px;
}
.blog-container .main-section .blog-post-contents .text .col h3:first-child {
  margin-top: 0;
}
.blog-container .main-section .blog-post-contents .text .col ul,
.blog-container .main-section .blog-post-contents .text .col ol {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
  padding-left: 20px;
  margin-top: 20px;
}
.blog-container .main-section .blog-post-contents .text .col ul:first-child,
.blog-container .main-section .blog-post-contents .text .col ol:first-child {
  margin-top: 0;
}
.blog-container .main-section .blog-post-contents .text .col p {
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
  margin-top: 20px;
}
.blog-container .main-section .blog-post-contents .text .col p:first-child {
  margin-top: 0;
}
.blog-container .view-all-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.blog-container .view-all-btn a {
  width: calc(33.3% - 10px);
  height: 62px;
  padding-top: 20px;
}
.blog-container .related-posts {
  padding: 60px 0;
}
.blog-container .related-posts h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 15px;
}
.blog-container .related-posts .posts-list {
  display: flex;
  gap: 20px;
}
.blog-container .related-posts .posts-list .related-post {
  width: calc(33% - 14px);
  font-family: 'Manrope Light', sans-serif;
  font-size: 17px;
  line-height: 130%;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.blog-container .related-posts .posts-list .related-post .title {
  color: #000;
  text-decoration: underline;
}
.blog-container .related-posts .posts-list .related-post .title:hover {
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}
.blog-container .related-posts .posts-list .related-post .date {
  color: #808080;
}
.blog-container .related-posts .posts-list .related-post .category {
  color: #808080;
  margin-top: auto;
}
.real-estate-updates {
  margin-top: 100px;
}
@media (max-width: 1299.9px) {
  .container {
    max-width: 100%;
  }
  body > .container {
    margin-left: 20px;
    margin-right: 20px;
  }
  .header-extra {
    margin-right: 0;
  }
  .menu .nav {
    gap: 18px;
  }
  .hero-area {
    margin-top: 0;
  }
  .hero-area h1,
  .hero-area h2 {
    font-size: 58px;
  }
  .hero-area .hero-img h2 {
    border-radius: 0 0 0 34px;
  }
  .hero-area .hero-img .bottom-area {
    border-radius: 0 54px 0 0;
  }
  .exclusive-projects .headline {
    font-size: 47px;
    margin-bottom: 24px;
  }
  .exclusive-projects .projects-container .project .project-image {
    height: 400px;
  }
  .exclusive-projects .projects-container .project .project-data .name {
    font-size: 40px;
  }
  .properties-container .headline {
    flex-direction: column;
    gap: 20px;
  }
  .properties-container .headline h2 {
    width: 100%;
    font-size: 50px;
  }
  .properties-container .headline p {
    width: 70%;
    font-size: 20px;
  }
  .info-section .info-area {
    width: 60%;
  }
  .info-section .info-area h2 {
    font-size: 50px;
  }
  .info-section .info-area .features {
    flex-wrap: wrap;
  }
  .info-section .info-area .features .feature {
    flex: 0 calc(50% - 10px);
  }
  .info-section .info-area .features .feature:last-child {
    flex: 0 100%;
  }
  .info-section .info-image {
    width: 40%;
  }
  .real-estate-updates .headline {
    flex-direction: column;
    gap: 20px;
  }
  .real-estate-updates .headline h2 {
    width: 100%;
    font-size: 50px;
  }
  .real-estate-updates .headline p {
    width: 70%;
    font-size: 20px;
  }
  .real-estate-updates .blog-container .main-section .blog-container-inner .blog-post .blog-post-description .white-corner {
    width: 70%;
  }
  .contact-form-section .container .heading {
    flex-direction: column;
    gap: 20px;
  }
  .contact-form-section .container .heading h1 {
    width: 100%;
    font-size: 50px;
  }
  .contact-form-section .container .heading p {
    width: 70%;
    font-size: 20px;
  }
  footer .footer-container .footer-menu-block .footer-logo {
    width: 40%;
  }
  footer .footer-container .footer-menu-block .footer-menu {
    width: calc(60% - 50px);
  }
  .teams-container .chasing-better-section .text-area {
    flex: 0 calc(60% - 10px);
  }
  .teams-container .chasing-better-section .info-image {
    flex: 0 calc(40% - 10px);
  }
  .teams-container .team-section .members-container .member .member-contacts .contact {
    padding: 20px;
  }
}
@media (max-width: 959.9px) {
  header {
    height: auto;
  }
  header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .menu {
    margin: 0;
  }
  .header-extra {
    flex: 0 100%;
    justify-items: flex-end;
  }
  .header-extra .header-buttons {
    margin-top: 20px;
  }
  .header-extra .header-buttons button.btn-whatsapp {
    width: 250px;
  }
  .hero-area {
    margin-top: 0;
  }
  .hero-area h1,
  .hero-area h2 {
    font-size: 48px;
  }
  .hero-area .hero-img {
    border-radius: 54px;
  }
  .hero-area .hero-img h2:before {
    width: 40px;
    height: 40px;
    left: -40px;
  }
  .hero-area .hero-img h2:after {
    width: 54px;
    height: 54px;
    bottom: -54px;
  }
  .hero-area .hero-img .bottom-area {
    width: 45%;
  }
  .hero-area .hero-img .bottom-area:before {
    width: 40px;
    height: 40px;
    top: -40px;
  }
  .hero-area .hero-img .bottom-area a {
    height: 52px;
    font-size: 24px;
    padding: 10px;
  }
  .exclusive-projects .headline {
    font-size: 48px;
    letter-spacing: 15px;
  }
  .exclusive-projects .projects-container .project .project-data .btn-default {
    height: 42px;
    padding: 10px 20px;
  }
  .properties-container .main-section .headline .headline-texts h1 {
    font-size: 40px;
  }
  .properties-container .main-section .headline .right-buttons {
    position: static;
    align-self: flex-end;
  }
  .properties-container .main-section .properties-container-inner .property .property-description .specifications .details .price {
    font-size: 25px;
  }
  .properties-container .main-section .properties-container-inner .property .property-description .specifications .details .price .smaller {
    font-size: 17px;
  }
  .properties-container .main-section .property-info-panel .property-card {
    width: calc(60% - 10px);
  }
  .properties-container .main-section .property-info-panel .property-card .header-section .header-texts h1 {
    font-size: 40px;
  }
  .properties-container .main-section .property-info-panel .contact-form-module {
    width: calc(40% - 10px);
  }
  .properties-container .view-all-btn a {
    height: 42px;
    padding: 10px 20px;
  }
  .blog-container .main-section .headline h1 {
    font-size: 48px;
  }
  .blog-container .main-section .blog-container-inner.blog-page .blog-post.col-3,
  .blog-container .main-section .blog-container-inner.blog-page .blog-post.col-2 {
    flex: 0 calc(50% - 10px);
  }
  .blog-container .view-all-btn a {
    height: 42px;
    padding: 10px 20px;
  }
  .contact-form-section .container .content-wrapper .contact-details-panel {
    flex: 0 34%;
  }
  .contact-form-section .container .content-wrapper .contact-form {
    flex: 0 66%;
  }
  .teams-container .hero-area h1 {
    font-size: 40px;
  }
  .teams-container .hero-area .bottom-area {
    margin-top: 20px;
  }
  .teams-container .chasing-better-section .text-area {
    flex: 0 calc(55% - 10px);
  }
  .teams-container .chasing-better-section .info-image {
    flex: 0 calc(45% - 10px);
  }
  .teams-container .team-section .members-container .member .member-contacts {
    flex-direction: column;
  }
  .teams-container .team-section .members-container .member .member-contacts .contact {
    width: 100%;
  }
}
@media (max-width: 767.9px) {
  .container .map h1 {
    font-size: 48px;
  }
  header .container {
    flex-direction: column;
    gap: 20px;
  }
  header .container .header-logo-wrap {
    text-align: center;
  }
  .menu .nav {
    gap: 12px;
  }
  .header-extra .header-buttons {
    margin-top: 0;
  }
  .hero-area {
    margin-top: 0;
  }
  .hero-area h1,
  .hero-area h2 {
    font-size: 32px;
  }
  .hero-area .hero-img {
    border-radius: 34px;
  }
  .hero-area .hero-img h2 {
    width: 45%;
    left: 55%;
    padding: 0 0 20px 20px;
  }
  .hero-area .hero-img h2:after {
    width: 34px;
    height: 34px;
    bottom: -34px;
  }
  .hero-area .hero-img .bottom-area {
    width: 50%;
  }
  .hero-area .hero-img .bottom-area:after {
    width: 44px;
    height: 44px;
    right: -44px;
  }
  .hero-area .hero-img .bottom-area p {
    font-size: 20px;
  }
  .hero-area .hero-img .bottom-area a {
    height: 42px;
    font-size: 16px;
    padding: 7px;
  }
  .exclusive-projects .headline {
    font-size: 45px;
    letter-spacing: 0;
    text-align: center;
  }
  .exclusive-projects .headline:after {
    display: none;
  }
  .exclusive-projects .projects-container {
    flex-direction: column;
  }
  .exclusive-projects .projects-container .project {
    flex: 0 100%;
  }
  .exclusive-projects .projects-container .project .project-image {
    height: 400px;
  }
  .properties-container .headline h2 {
    font-size: 40px;
  }
  .properties-container .main-section .properties-container-inner .property.col-3,
  .properties-container .main-section .properties-container-inner .property.col-2 {
    flex: 0 100%;
  }
  .properties-container .main-section .property-info-panel .property-card {
    width: calc(60% - 10px);
  }
  .properties-container .main-section .property-info-panel .property-card .header-section .header-texts h1 {
    font-size: 40px;
  }
  .properties-container .main-section .property-info-panel .contact-form-module {
    width: calc(40% - 10px);
  }
  .properties-container .view-all-btn a {
    width: 100%;
  }
  .info-section .info-area h2 {
    font-size: 40px;
  }
  .info-section .info-area .info-image.mobile-only {
    display: block;
    height: 350px;
    width: 100%;
    margin-top: 20px;
  }
  .info-section .info-area .features {
    margin-top: 20px;
  }
  .info-section .info-area .features .feature {
    flex: 0 100%;
  }
  .info-section .info-area .learn-more-btn {
    height: 42px;
    padding: 10px 20px;
  }
  .info-section .info-image:not(.mobile-only) {
    display: none;
  }
  .real-estate-updates {
    margin-top: 80px;
  }
  .real-estate-updates .headline h2 {
    font-size: 40px;
  }
  .real-estate-updates .blog-container .main-section .blog-container-inner .blog-post:last-child {
    display: none;
  }
  .real-estate-updates .blog-container .main-section .blog-container-inner .blog-post.col-3,
  .real-estate-updates .blog-container .main-section .blog-container-inner .blog-post.col-2 {
    flex: 0 calc(50% - 10px);
  }
  .real-estate-updates .view-all-btn a {
    width: 100%;
  }
  .blog-container .main-section .blog-headline {
    width: 100%;
    font-size: 40px;
  }
  .blog-container .main-section .blog-post-contents .main-image {
    height: 350px;
  }
  .blog-container .main-section .blog-post-contents .text .col.width-60,
  .blog-container .main-section .blog-post-contents .text .col.width-40 {
    width: 50%;
  }
  .blog-container .main-section .blog-container-inner.blog-page .blog-post.col-3,
  .blog-container .main-section .blog-container-inner.blog-page .blog-post.col-2 {
    flex: 0 100%;
  }
  .contact-form-section {
    margin-top: 80px;
  }
  .contact-form-section.forms-page {
    margin-top: 20px;
  }
  .contact-form-section .container .heading h1 {
    font-size: 40px;
  }
  .contact-form-section .container .content-wrapper {
    flex-direction: column;
  }
  .contact-form-section .container .content-wrapper .contact-details-panel {
    flex: 0 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-form-section .container .content-wrapper .contact-details-panel .contact-card {
    flex: 0 calc(50% - 10px);
  }
  .contact-form-section .container .content-wrapper .contact-details-panel .contact-card:last-child {
    flex: 0 100%;
  }
  .contact-form-section .container .content-wrapper .contact-form {
    flex: 0 100%;
  }
  footer {
    margin-top: 80px;
  }
  footer .footer-container {
    margin-top: 0;
  }
  footer .footer-container .footer-menu-block {
    flex-direction: column;
    gap: 30px;
  }
  footer .footer-container .footer-menu-block .footer-logo,
  footer .footer-container .footer-menu-block .footer-menu {
    width: 100%;
    max-width: 440px;
    margin-right: 0;
  }
  footer .footer-container .footer-menu-block .footer-social {
    width: 100%;
    max-width: 440px;
    flex-direction: row;
    justify-content: center;
  }
  footer .footer-container .footer-bottom {
    flex-direction: column;
  }
  footer .footer-container .footer-bottom div + div {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .teams-container .hero-area h1 {
    font-size: 32px;
  }
  .teams-container .hero-area .bottom-area {
    margin-top: 40px;
    width: 70%;
    margin-left: 30%;
  }
  .teams-container .chasing-better-section {
    flex-direction: column;
  }
  .teams-container .chasing-better-section .text-area {
    flex: 0 100%;
  }
  .teams-container .chasing-better-section .text-area h2 {
    font-size: 32px;
  }
  .teams-container .chasing-better-section .info-image {
    flex: 0 100%;
  }
  .teams-container .team-section h2 {
    font-size: 32px;
  }
  .teams-container .team-section .members-container {
    flex-direction: column;
  }
  .teams-container .team-section .members-container .member {
    width: 100%;
  }
}
@media (max-width: 590px) {
  .properties-container .main-section .headline .right-buttons .filter-form {
    width: 100%;
  }
  .properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area,
  .properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .value-display-area {
    justify-content: space-around;
  }
  .properties-container .main-section .headline .right-buttons .filter-form .amenities-selector-container .value-display-area .selection,
  .properties-container .main-section .headline .right-buttons .filter-form .rooms-selector-container .value-display-area .selection {
    width: auto;
    max-width: none;
    font-size: 15px;
    padding: 5px 10px;
  }
  .properties-container .main-section .property-info-panel {
    flex-direction: column;
  }
  .properties-container .main-section .property-info-panel .property-card {
    width: 100%;
  }
  .properties-container .main-section .property-info-panel .contact-form-module {
    width: 100%;
  }
}
@media (max-width: 479.9px) {
  .header-extra {
    justify-items: center;
  }
  .menu .nav {
    flex-wrap: wrap;
    justify-content: space-evenly;
    height: auto;
  }
  .hero-area h1,
  .hero-area h2 {
    font-size: 32px;
  }
  .hero-area .hero-img {
    border-radius: 24px;
  }
  .hero-area .hero-img h2:before {
    width: 25px;
    height: 25px;
    left: -25px;
  }
  .hero-area .hero-img .bottom-area {
    width: 50%;
    border-radius: 0 24px 0 0;
  }
  .hero-area .hero-img .bottom-area:before {
    width: 25px;
    height: 25px;
    top: -25px;
  }
  .hero-area .hero-img .bottom-area p {
    font-size: 20px;
    margin: 5px;
  }
  .hero-area .hero-img .bottom-area a {
    height: 35px;
  }
  .exclusive-projects .headline {
    font-size: 36px;
  }
  .exclusive-projects .projects-container .project .project-image {
    height: 250px;
  }
  .properties-container .headline h2 {
    font-size: 32px;
  }
  .properties-container .headline p {
    width: 100%;
    font-size: 17px;
  }
  .properties-container .main-section .properties-container-inner .property.col-3,
  .properties-container .main-section .properties-container-inner .property.col-2 {
    flex: 0 100%;
  }
  .properties-container .main-section .property-info-panel .property-card .header-section .header-texts h1 {
    font-size: 32px;
  }
  .properties-container .main-section .property-info-panel .property-card .specifications {
    flex-wrap: wrap;
  }
  .properties-container .main-section .property-info-panel .property-card .specifications .detail {
    width: calc(50% - 10px);
  }
  .properties-container .main-section .property-info-panel .contact-form-module {
    width: 100%;
  }
  .info-section .info-area h2 {
    font-size: 32px;
  }
  .real-estate-updates .headline h2 {
    font-size: 32px;
  }
  .real-estate-updates .headline p {
    width: 100%;
    font-size: 17px;
  }
  .real-estate-updates .blog-container .main-section .blog-container-inner .blog-post.col-3,
  .real-estate-updates .blog-container .main-section .blog-container-inner .blog-post.col-2 {
    flex: 0 100%;
  }
  .real-estate-updates .blog-container .main-section .blog-container-inner .blog-post:last-child {
    display: block;
  }
  .blog-container .main-section .blog-post-contents .text {
    flex-direction: column;
  }
  .blog-container .main-section .blog-post-contents .text .col.width-60,
  .blog-container .main-section .blog-post-contents .text .col.width-40 {
    width: 100%;
  }
  .contact-form-section .container .heading h1 {
    font-size: 32px;
  }
  .contact-form-section .container .heading p {
    width: 100%;
    font-size: 17px;
  }
  .contact-form-section .container .content-wrapper .contact-details-panel .contact-card {
    flex: 0 100%;
  }
  .contact-form-section .container .content-wrapper .contact-form {
    flex: 0 100%;
    padding: 30px 20px;
  }
  footer .footer-container .footer-menu-block .footer-menu .menu .nav {
    gap: 0;
    justify-content: space-between;
  }
  footer .footer-container .footer-menu-block .footer-menu .menu .nav > div {
    width: auto;
  }
  footer .footer-container .footer-menu-block .footer-logo .footer-slogan {
    font-size: 22px;
  }
  footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .form-header,
  footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .success-message {
    margin: 0 auto;
  }
  footer .footer-container .footer-menu-block .footer-menu .subscription-form-container .subscription-form input {
    width: 195px;
  }
}
@media (max-width: 399.9px) {
  .hero-area h1.desktop,
  .hero-area h2.desktop {
    display: none;
  }
  .hero-area h1.mobile,
  .hero-area h2.mobile {
    display: inline-block;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
