@font-face {
  font-family: "Gotham-Bold";
  src: url("../fonts/Gotham-Bold.otf");
}
@font-face {
  font-family: "Questrial-Regular";
  src: url("../fonts/Questrial-Regular.ttf");
}
body {
  overflow-x: hidden;
}
@media all and (min-width: 992px) {
  body {
    padding-top: 100px;
  }
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

h1, h2, h3, h4, h5, h6, p.serif {
  font-family: "Gotham-Bold";
  line-height: 1.3;
}

p, a {
  line-height: 1.7;
  font-size: 18px;
  font-family: "Questrial-Regular";
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 45px;
}
@media all and (max-width: 992px) {
  h2 {
    font-size: 35px;
  }
}
@media all and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 30px;
}
@media all and (max-width: 992px) {
  h3 {
    font-size: 25px;
  }
}
@media all and (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

input[type=text],
input,
input[type=search],
input[type=email],
input[type=tel],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 17px;
  font-family: "Questrial-Regular";
}

input[type=radio] {
  -webkit-appearance: radio;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

.section-padding {
  padding: 5%;
}
@media all and (max-width: 992px) {
  .section-padding {
    padding: 10%;
  }
}

.header {
  position: fixed;
  width: 100%;
  padding: 20px 5%;
  z-index: 999;
  top: 0;
  left: 0;
  background: #5d6349;
}
.header img.logo-img {
  max-width: 100%;
  width: 150px;
  transition: width ease 0.3s;
}
.header.darkHeader {
  min-height: auto;
}
.header.darkHeader img.logo-img {
  width: 100px;
}
.header.darkHeader nav.nav {
  top: 29%;
}
@media all and (max-width: 992px) {
  .header.darkHeader nav.nav {
    top: 0;
  }
}
.header nav.nav {
  position: absolute;
  right: 5%;
  top: 27%;
}
.header nav.nav ul {
  padding: 0;
}
.header nav.nav ul li {
  list-style: none;
  display: inline-block;
}
.header nav.nav ul li a {
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Open Sans";
  letter-spacing: 2px;
  padding: 10px 20px;
  display: block;
}
.header nav.nav ul li a:hover {
  color: #000000;
  text-decoration: none;
}
.header nav.nav ul li.register {
  margin-left: 20px;
}
.header nav.nav ul li.register a {
  font-size: 18px;
  color: #ffffff;
  background-color: #5d6349;
  padding: 10px 30px;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  margin-top: 4px;
  transition: all 0.2s ease 0.1s;
}
.header nav.nav ul li.register a:hover:before {
  background-color: #9aa26d;
}
.header nav.nav ul li.register a:hover:after {
  background-color: #ffffff;
}
.header nav.nav ul li.register a:before {
  content: "";
  background-color: #ffffff;
  position: absolute;
  height: 50%;
  z-index: -1;
  top: -4px;
  left: -4px;
  width: 105%;
  transition: all 0.2s ease 0.1s;
}
.header nav.nav ul li.register a:after {
  position: absolute;
  transition: all 0.2s ease 0.1s;
  content: "";
  background-color: #9aa26d;
  height: 50%;
  z-index: -1;
  bottom: -4px;
  left: -4px;
  width: 105%;
}
@media all and (max-width: 992px) {
  .header nav.nav ul li.register {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media all and (max-width: 992px) {
  .header nav.nav ul li {
    display: block;
    text-align: center;
  }
}
@media all and (max-width: 992px) {
  .header nav.nav ul {
    width: 100%;
  }
}
@media all and (max-width: 1600px) {
  .header nav.nav {
    right: 2%;
  }
}
@media all and (max-width: 992px) {
  .header nav.nav {
    background-color: #5d6349;
    padding: 5%;
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(120%);
    opacity: 0;
    transition: all 1s ease 0.3s;
  }
  .header nav.nav.show {
    transform: translateX(0);
    opacity: 1;
  }
}
@media all and (max-width: 1600px) {
  .header {
    padding: 20px 3%;
  }
}
@media all and (min-width: 992px) {
  .header {
    min-height: 120px;
  }
  .header img.logo-img {
    position: absolute;
  }
  .header.darkHeader {
    min-height: auto;
  }
  .header.darkHeader img.logo-img {
    width: 100px;
    position: relative;
  }
}
@media all and (max-width: 500px) {
  .header img.logo-img {
    width: 100px;
  }
  .header.darkHeader img.logo-img {
    display: none;
  }
  .header.darkHeader div#burger {
    display: none;
  }
  .header.darkHeader .btn-mobile {
    position: relative;
    visibility: visible;
    opacity: 1;
    z-index: 1;
    top: 0px;
  }
  .header.darkHeader .btn-mobile .btn {
    padding: 10px 40px;
    font-size: 18px;
  }
}

.btn-mobile {
  position: absolute;
  top: 35px;
  left: 40%;
  text-align: center;
  display: none;
}
.btn-mobile .btn {
  background-color: #5d6349;
  color: #ffffff;
}
.btn-mobile .btn:before {
  background-color: #ffffff;
}
.btn-mobile .btn:hover::after {
  background-color: #ffffff;
}
@media all and (max-width: 992px) {
  .btn-mobile {
    display: block;
  }
}
@media all and (max-width: 500px) {
  .btn-mobile {
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .btn-mobile .btn {
    padding: 10px 20px;
  }
}
@media all and (max-width: 400px) {
  .btn-mobile {
    visibility: hidden;
    opacity: 0;
    z-index: -9;
  }
  .btn-mobile .btn {
    padding: 0;
    font-size: 0;
  }
}

div#burger {
  height: 50px;
  width: 50px;
  border: 1px solid #ffffff;
  padding: 8px;
  display: none;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  right: 5%;
  top: 35px;
  z-index: 99999;
  cursor: pointer;
}
div#burger span {
  height: 5px;
  width: 100%;
  background-color: #ffffff;
  display: block;
  margin-bottom: 5px;
  transition: all 1s ease 0.1s;
  z-index: 99999;
}
div#burger span:last-child {
  margin-bottom: 0;
}
div#burger span:first-child {
  top: 2px;
}
div#burger.text-white {
  border: 1px solid #ffffff;
}
div#burger.text-white span {
  background-color: #ffffff;
}
div#burger.open span {
  opacity: 0;
  visibility: hidden;
  position: relative;
}
div#burger.open span:first-child {
  top: 10px;
  opacity: 1;
  visibility: visible;
  transform: rotate(45deg);
}
div#burger.open span:last-child {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
  transform: rotate(315deg);
  top: -10px;
}
@media all and (max-width: 992px) {
  div#burger {
    display: flex;
  }
}

a.btn {
  font-size: 18px;
  color: #5d6349;
  background-color: #ffffff;
  padding: 10px 30px;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  margin-top: 4px;
  transition: all 0.2s ease 0.1s;
}
a.btn.white {
  color: #ffffff;
  background-color: #5d6349;
}
a.btn.white:before {
  background-color: #ffffff;
}
a.btn.white:hover {
  color: #ffffff;
}
a.btn.white:hover:before {
  background-color: #9aa26d;
}
a.btn.white:hover:after {
  background-color: #ffffff;
}
a.btn:hover {
  color: #9aa26d;
}
a.btn:hover:before {
  background-color: #9aa26d;
}
a.btn:hover:after {
  background-color: #5d6349;
}
a.btn:before {
  content: "";
  background-color: #5d6349;
  position: absolute;
  height: 50%;
  z-index: -1;
  top: -4px;
  left: -4px;
  width: 105%;
  transition: all 0.2s ease 0.1s;
}
a.btn:after {
  position: absolute;
  transition: all 0.2s ease 0.1s;
  content: "";
  background-color: #9aa26d;
  height: 50%;
  z-index: -1;
  bottom: -4px;
  left: -4px;
  width: 105%;
}
@media all and (max-width: 992px) {
  a.btn::before {
    width: 106%;
    left: -5px;
  }
  a.btn::after {
    width: 106%;
    left: -5px;
  }
}

.footer {
  background-color: #ebebeb;
  padding: 2% 5%;
}
.footer .content {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.footer .content img {
  width: 500px;
  max-width: 100%;
}
.footer .content p {
  margin: 0;
}
.footer .content p.last {
  width: 500px;
  margin: 0 auto;
  max-width: 100%;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}
.footer .content p a {
  color: #000;
}

.page-template-template-thankyou nav {
  display: none;
}

#field_1_6 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#field_1_6::before {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  content: "Are you a broker?";
}
@media only screen and (max-width: 1400px) {
  #field_1_6::before {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  #field_1_6::before {
    font-size: 1.6rem;
  }
}
#field_1_6 legend {
  display: none !important;
}
#field_1_6 .ginput_container_radio .gfield_radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#field_1_6 .ginput_container_radio .gfield_radio input {
  display: none;
}
#field_1_6 .ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  margin-left: 15px;
  position: relative;
}
#field_1_6 .ginput_container_radio .gfield_radio .gchoice label {
  cursor: pointer;
  padding-right: 23px;
}

.custom-check {
  height: 17px;
  width: 17px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  pointer-events: none;
}
.custom-check .custom-check-inner {
  height: 11px;
  width: 11px;
  background-color: white;
  border-radius: 50%;
}

.gform_wrapper.gravity-theme .gfield-choice-input + label {
  max-width: unset !important;
}

.gfield-choice-input:checked + label + .custom-check {
  border: 1px solid white;
}

div#gform_1_validation_container {
  display: none;
}

.instruction.validation_message {
  display: none;
}

/*
  SASS file for Wrappers Only
*/
.main-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.med-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.sm-wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 50px 20px;
}

.xs-wrap {
  max-width: 750px;
  margin: 0 auto;
  padding: 50px 20px;
}

.footer-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}

.fullwidth-section {
  max-width: 1920px;
  margin: 0 auto;
}

/*
    SASS File for Gravity Forms CSS Override
*/
.gform_wrapper .gform_body .gform_fields .gfield input, .gform_wrapper .gform_body .gform_fields .gfield textarea, .gform_wrapper .gform_body .gform_fields .gfield select {
  border: 1px solid gray;
  font-size: 17px !important;
  padding: 10px !important;
}
.gform_wrapper .gform_body .gform_fields .gfield input:focus, .gform_wrapper .gform_body .gform_fields .gfield textarea:focus, .gform_wrapper .gform_body .gform_fields .gfield select:focus {
  outline: none;
}
.gform_wrapper .gform_footer {
  text-align: center;
}
.gform_wrapper .gform_footer .gform_button {
  padding: 10px 40px !important;
}

section.thank-you {
  text-align: center;
}
section.thank-you h1 {
  margin-bottom: 30px;
}
section.thank-you h5 {
  color: black;
  margin-bottom: 30px;
}

.select2-results__options, .select2-selection--single .select2-selection__rendered {
  font-size: 17px;
}

.select2-selection--single .select2-selection__rendered {
  padding: 10px !important;
}

.select2 {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  right: 15px !important;
  height: 100% !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5d6349;
  color: #fff;
}

.select2-container--default .select2-selection--single {
  border-radius: 0 !important;
}

.select2-selection .select2-selection__rendered {
  color: #7a7a7a !important;
}

.select2-search__field[type=search] {
  display: none;
}

.slide-in-bottom {
  -webkit-animation: slide-in-bottom cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
  animation: slide-in-bottom cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.fade-in {
  -webkit-animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
  animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.slide-in-top {
  -webkit-animation: slide-in-top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.animate-half {
  animation-delay: 0.5s;
}

.animate-first {
  animation-delay: 1s;
}

.animate-first-half {
  animation-delay: 1.5s;
}

.animate-second {
  animation-delay: 2s;
}

.animate-second-half {
  animation-delay: 2.5s;
}

.animate-third {
  animation-delay: 3s;
}

.animate-third-half {
  animation-delay: 3.5s;
}

.animate-fourth {
  animation-delay: 4s;
}

.animate-fourth-half {
  animation-delay: 4.5s;
}

.animate-fifth {
  animation-delay: 5s;
}

.animate-fifth-half {
  animation-delay: 5.5s;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-5-13 11:49:36
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
/*
    SASS File for Banners Only
*/
section.banner-general.banner-container {
  height: 450px;
  transition: 0.3s;
}
section.banner-general.banner-container .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
section.banner-general.banner-container .overlay .text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 35%;
}
section.banner-general.banner-container .overlay .text-container .title {
  color: white;
}

.homeBanner {
  position: relative;
  height: 80vh;
}
.homeBanner .background {
  position: absolute;
  height: 90%;
  background-color: #5d6349;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.homeBanner .background .svg-bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media all and (max-width: 767px) {
  .homeBanner .background {
    height: 100%;
  }
}
.homeBanner .bannerContent {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.homeBanner .bannerContent .img-box {
  width: 80%;
  position: relative;
  left: 20%;
  height: 100%;
  bottom: 0;
}
.homeBanner .bannerContent .img-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.homeBanner .bannerContent .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeBanner .bannerContent .img-box .register-form {
  width: 100%;
  height: 100%;
  z-index: 999;
  position: absolute;
  background-color: #000000;
  color: #ffffff;
  transition: all 1s ease 0.1s;
  transform: translateX(120%);
}
.homeBanner .bannerContent .img-box .register-form.show {
  transform: translateX(0);
  top: 0;
}
.homeBanner .bannerContent .img-box .register-form #close {
  cursor: pointer;
  position: absolute;
  height: 40px;
  width: 40px;
  top: 40px;
  right: 20px;
  margin: 0;
  z-index: 99999;
}
.homeBanner .bannerContent .img-box .register-form #close span {
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  display: block;
  position: absolute;
}
.homeBanner .bannerContent .img-box .register-form #close span:first-child {
  transform: rotate(45deg);
}
.homeBanner .bannerContent .img-box .register-form #close span:last-child {
  transform: rotate(-45deg);
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .head {
  width: 40%;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .head h2 {
  color: #ffffff;
  text-transform: capitalize;
  font-family: "Gotham-Bold";
}
@media all and (max-width: 992px) {
  .homeBanner .bannerContent .img-box .register-form .two-col-sec .head {
    width: 100%;
  }
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form {
  width: 60%;
  align-items: center;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form #gform_ajax_spinner_1 {
  display: none;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div {
  width: 100%;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div.gform_validation_error input[type=text], .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div.gform_validation_error input[type=email], .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div.gform_validation_error input[type=tel], .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div.gform_validation_error select, .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div.gform_validation_error .select2 {
  margin-bottom: 10px;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .gform_heading {
  display: none;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=text], .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=email], .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=tel], .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  font-family: "Questrial-Regular";
  margin-bottom: 50px;
  font-size: 20px;
  color: #ffffff;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=text]::placeholder, .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=email]::placeholder, .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=tel]::placeholder, .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div select::placeholder {
  color: #ffffff;
  font-family: "Questrial-Regular";
  font-size: 20px;
  letter-spacing: 2px;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .select2 {
  margin-bottom: 50px;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .select2 .select2-selection {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .select2 .select2-selection .select2-selection__rendered {
  font-size: 20px !important;
  color: #ffffff !important;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .select2 .select2-selection .select2-selection__arrow b {
  border-color: #ffffff transparent transparent transparent !important;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div textarea {
  height: 60px;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div #field_2_6 legend {
  display: inline-block !important;
  width: auto !important;
  font-size: 20px;
  font-family: "Questrial-Regular";
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div #field_2_6 .ginput_container_radio {
  display: inline-block;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div #field_2_6 .ginput_container_radio .gfield_radio {
  font-size: 20px;
  font-family: "Questrial-Regular";
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .gform_footer {
  text-align: right;
  background-color: #000000;
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 20px 0;
  float: right;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .gform_footer:hover:before {
  background-color: #9aa26d;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .gform_footer:hover:after {
  background-color: #ffffff;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .gform_footer:before {
  content: "";
  background-color: #ffffff;
  position: absolute;
  height: 50%;
  z-index: -1;
  top: -4px;
  left: -4px;
  width: 105%;
  transition: all 0.2s ease 0.1s;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .gform_footer:after {
  position: absolute;
  transition: all 0.2s ease 0.1s;
  content: "";
  background-color: #9aa26d;
  height: 50%;
  z-index: -1;
  bottom: -4px;
  left: -4px;
  width: 105%;
}
.homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .gform_footer input[type=submit] {
  font-size: 18px;
  color: #ffffff;
  background-color: #000000;
  padding: 10px 30px;
  margin: 0;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease 0.1s;
  border: none;
}
@media all and (max-width: 992px) {
  .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .gform_footer input[type=submit]::before {
    width: 106%;
    left: -5px;
  }
  .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .gform_footer input[type=submit]::after {
    width: 106%;
    left: -5px;
  }
}
@media all and (max-width: 1400px) {
  .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=text], .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=email], .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=tel], .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .select2, .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div select {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=text]::placeholder, .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=email]::placeholder, .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div input[type=tel]::placeholder, .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div .select2::placeholder, .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div select::placeholder {
    font-size: 18px;
  }
  .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div textarea {
    height: 90px;
  }
  .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div #field_2_6 legend {
    font-size: 18px;
  }
  .homeBanner .bannerContent .img-box .register-form .two-col-sec .form > div #field_2_6 .ginput_container_radio .gfield_radio {
    font-size: 18px;
  }
}
@media all and (max-width: 992px) {
  .homeBanner .bannerContent .img-box .register-form .two-col-sec .form {
    width: 100%;
    left: 0;
  }
}
@media all and (max-width: 992px) {
  .homeBanner .bannerContent .img-box .register-form .two-col-sec {
    flex-direction: column;
  }
}
@media all and (max-width: 992px) {
  .homeBanner .bannerContent .img-box {
    width: 100%;
    position: relative;
    height: 100%;
    left: 0;
  }
  .homeBanner .bannerContent .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
}
@media all and (max-width: 767px) {
  .homeBanner .bannerContent .img-box img {
    position: relative;
    width: 100%;
  }
  .homeBanner .bannerContent .img-box .register-form {
    position: relative;
    background-color: #000000;
    top: 0;
    left: 0;
    z-index: 99;
    transform: translateX(0) translateY(0);
  }
  .homeBanner .bannerContent .img-box .register-form #close {
    display: none;
  }
}
.homeBanner .bannerContent .banner-text {
  position: absolute;
  top: 40%;
  width: 28%;
  left: 10%;
  z-index: 9;
}
.homeBanner .bannerContent .banner-text h1 {
  font-size: 60px;
  color: #ffffff;
}
.homeBanner .bannerContent .banner-text p {
  color: #ffffff;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media all and (max-width: 1600px) {
  .homeBanner .bannerContent .banner-text {
    width: 40%;
  }
}
@media all and (max-width: 1200px) {
  .homeBanner .bannerContent .banner-text {
    width: 50%;
  }
}
@media all and (max-width: 992px) {
  .homeBanner .bannerContent .banner-text {
    width: 70%;
  }
  .homeBanner .bannerContent .banner-text h1 {
    font-size: 50px;
    color: #ffffff;
  }
}
@media all and (max-width: 767px) {
  .homeBanner .bannerContent .banner-text {
    position: absolute;
    padding: 10%;
    left: 0;
    top: 0;
    width: 100%;
  }
  .homeBanner .bannerContent .banner-text h1 {
    font-size: 40px;
    color: #ffffff;
  }
}
@media all and (max-width: 500px) {
  .homeBanner .bannerContent .banner-text {
    position: relative;
    padding: 10%;
    left: 0;
    top: 0;
    width: 100%;
  }
  .homeBanner .bannerContent .banner-text h1 {
    font-size: 35px;
  }
}
@media all and (max-width: 992px) {
  .homeBanner {
    padding-top: 150px;
    height: 800px;
  }
}
@media all and (max-width: 767px) {
  .homeBanner {
    height: auto;
  }
}

.aboutUs .heading {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.aboutUs .heading .head {
  width: 70%;
  padding-right: 20px;
}
.aboutUs .heading .head h2 {
  color: #5d6349;
}
.aboutUs .heading .img-box {
  width: 30%;
}
@media all and (max-width: 767px) {
  .aboutUs .heading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .aboutUs .heading .head {
    width: 100%;
    padding-bottom: 20px;
  }
  .aboutUs .heading .img-box {
    width: 100%;
  }
}
.aboutUs .aboutText {
  display: grid;
  grid-template-columns: 80% 20%;
  padding: 5% 0;
}
.aboutUs .aboutText .contentAbout p {
  padding: 0px 30px 30px 30%;
}
.aboutUs .aboutText .btn-box {
  text-align: center;
}
@media all and (max-width: 767px) {
  .aboutUs .aboutText {
    grid-template-columns: auto;
  }
  .aboutUs .aboutText .contentAbout p {
    padding: 0 0 20px;
  }
}

.nature {
  position: relative;
}
.nature .fullwidth-section {
  position: relative;
}
.nature .fullwidth-section .heading-box {
  position: absolute;
  background-color: #9aa26d;
  width: 35%;
  left: 0;
  top: 0;
  overflow: hidden;
}
.nature .fullwidth-section .heading-box h2 {
  color: #ffffff;
}
.nature .fullwidth-section .heading-box p {
  color: #ffffff;
}
.nature .fullwidth-section .heading-box .svg-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
}
.nature .fullwidth-section .heading-box .svg-left img {
  width: 130px;
  max-width: 100%;
}
@media all and (max-width: 1300px) {
  .nature .fullwidth-section .heading-box {
    width: 50%;
  }
}
@media all and (max-width: 992px) {
  .nature .fullwidth-section .heading-box {
    width: 100%;
    position: relative;
  }
}
@media all and (max-width: 992px) {
  .nature .fullwidth-section {
    padding: 0 10%;
  }
}
.nature .natureContent {
  padding: 0 5% 5%;
}
.nature .natureContent .text {
  display: grid;
  grid-template-columns: 60% 40%;
  padding: 5% 0;
}
.nature .natureContent .text .first {
  display: grid;
  grid-template-columns: 10% 90%;
}
.nature .natureContent .text .first .txt {
  padding: 0 10%;
}
.nature .natureContent .text .second h5 {
  color: #5d6349;
  text-transform: uppercase;
}
.nature .natureContent .text .second .list {
  display: grid;
  grid-template-columns: auto auto;
}
.nature .natureContent .text .second .list p {
  padding-right: 10px;
}
@media all and (max-width: 992px) {
  .nature .natureContent .text {
    grid-template-columns: auto;
  }
  .nature .natureContent .text .first {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 500px) {
  .nature .natureContent .text {
    grid-template-columns: auto;
  }
  .nature .natureContent .text .first {
    grid-template-columns: auto;
  }
  .nature .natureContent .text .first .img {
    max-width: 100px;
    margin: 20px auto;
  }
  .nature .natureContent .text .first .img img {
    width: 100%;
  }
  .nature .natureContent .text .first .txt {
    padding: 0;
    margin-top: 20px;
  }
  .nature .natureContent .text .second .list {
    grid-template-columns: auto;
  }
}
@media all and (max-width: 992px) {
  .nature .natureContent {
    padding: 0 10% 10%;
  }
}

.amenities {
  position: relative;
  background-color: #5d6349;
  margin-bottom: 6%;
}
.amenities .two-col {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  justify-content: center;
}
.amenities .two-col .first-col {
  padding: 10%;
}
.amenities .two-col .first-col h2 {
  color: #ffffff;
  margin-bottom: 20px;
}
.amenities .two-col .first-col p {
  color: #ffffff;
  line-height: 2;
}
.amenities .two-col .second-col {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 20px;
  position: relative;
}
.amenities .two-col .second-col .row-grid {
  display: grid;
  position: relative;
  grid-row-gap: 20px;
  min-height: 50vh;
}
.amenities .two-col .second-col .row-grid:first-child {
  grid-template-rows: 35% 60%;
  top: 15%;
}
.amenities .two-col .second-col .row-grid:last-child {
  bottom: 15%;
  grid-template-rows: 60% 35%;
}
.amenities .two-col .second-col .row-grid .img-box {
  height: 100%;
  position: relative;
}
.amenities .two-col .second-col .row-grid .img-box:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
}
.amenities .two-col .second-col .row-grid .img-box .desc {
  position: absolute;
  font-family: "Gotham-Bold";
  bottom: 10px;
  left: 10px;
  text-transform: uppercase;
  color: #ffffff;
  width: 60%;
  z-index: 9;
}
.amenities .two-col .second-col .row-grid .img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media all and (max-width: 1200px) {
  .amenities .two-col .second-col .row-grid .img-box .desc {
    width: 95%;
  }
}
@media all and (max-width: 992px) {
  .amenities .two-col {
    grid-template-columns: auto;
  }
  .amenities .two-col .second-col {
    padding: 0 10% 10%;
  }
  .amenities .two-col .second-col .row-grid:first-child {
    grid-template-rows: auto auto;
    top: 0;
  }
  .amenities .two-col .second-col .row-grid:last-child {
    bottom: 0;
    grid-template-rows: auto auto;
  }
}
@media all and (max-width: 767px) {
  .amenities .two-col .second-col {
    grid-template-columns: auto;
  }
  .amenities .two-col .second-col .row-grid:first-child {
    margin-bottom: 20px;
  }
  .amenities .two-col .second-col .row-grid .img-box {
    grid-template-rows: auto;
  }
  .amenities .two-col .second-col .row-grid .img-box img {
    position: unset;
  }
}
@media all and (max-width: 992px) {
  .amenities {
    margin-bottom: 0;
  }
}

.location {
  position: relative;
}
.location .content {
  padding: 0 5% 10px;
  position: relative;
  z-index: 9;
}
.location .content #map {
  min-height: 700px;
}
.location .content h2 {
  color: #5d6349;
  position: absolute;
  transform: rotate(90deg);
  top: 10%;
  right: -10%;
}
.location .content h3 {
  margin: 20px 0;
  color: #ffffff;
}
.location .content .background {
  background-color: #9aa26d;
  position: absolute;
  width: 60%;
  height: 300px;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media all and (max-width: 1200px) {
  .location .content .background {
    width: 70%;
  }
}
@media all and (max-width: 992px) {
  .location .content {
    padding: 0;
    position: unset;
  }
  .location .content .background {
    width: 100%;
  }
  .location .content #map {
    min-height: 500px;
  }
  .location .content h2 {
    position: unset;
    transform: rotate(0deg);
    color: #ffffff;
    margin-top: 10px;
  }
}

.royalpark {
  background-color: #5d6349;
  position: relative;
  padding: 10%;
}
.royalpark .top {
  position: absolute;
  left: 0;
  top: 5%;
  border-top: 15px solid #9aa26d;
  border-bottom: 15px solid #9aa26d;
  width: 200px;
  height: 60px;
  display: block;
  z-index: 1;
}
.royalpark .bottom {
  z-index: 1;
  position: absolute;
  display: block;
  right: 0;
  bottom: 5%;
  border-top: 15px solid #9aa26d;
  border-bottom: 15px solid #9aa26d;
  width: 200px;
  height: 60px;
}
.royalpark .content {
  width: 800px;
  position: relative;
  z-index: 9;
  max-width: 100%;
  margin: 0 auto;
}
.royalpark .content img {
  width: 300px;
  max-width: 100%;
  margin-bottom: 30px;
}
.royalpark .content p {
  color: #ffffff;
}
@media all and (max-width: 992px) {
  .royalpark {
    padding: 20% 10%;
  }
}

/*# sourceMappingURL=main.css.map */
