/* ==========================================================================
   General
/* ========================================================================== */
html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 118px 0 0;
  color: #2C2929;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #7BA4BC;
  text-decoration: none;
}

h1, h2, h3, h4 {
  color: #2c546e;
  font-family: "Italiana", serif;
}

h1 {
  font-weight: 600;
}

h2 {
  font-weight: 500;
}

h3 {
  font-weight: 400;
}

img,
iframe {
  max-width: 100%;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.btn {
  display: inline-block;
  border: 1px solid #2c546e;
  padding: 20px 50px;
  font-weight: 500;
  color: #2c546e;
  border-radius: 0;
  max-width: 310px;
  width: 100%;
  text-align: center;
}
.btn:hover {
  color: #fff;
  background: #2c546e;
}

.btn-blue {
  display: inline-block;
  border: 1px solid #2c546e;
  padding: 20px 50px;
  font-weight: 500;
  color: #2c546e;
  border-radius: 0;
  max-width: 310px;
  width: 100%;
  text-align: center;
}
.btn-blue:hover {
  color: #fff;
  background: #2c546e;
}
.btn-blue {
  color: #fff;
  background: #2c546e;
  border: 1px solid transparent;
  border-radius: 8px;
}
.btn-blue:hover {
  color: #2c546e;
  background: transparent;
  border: 1px solid #2c546e;
}

.btn-rounded {
  border-radius: 50px;
}

.blue {
  color: #2c546e;
}

.gold {
  color: #2c546e;
}

/* ==========================================================================
   Header
/* ========================================================================== */
#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: #2c546e;
  z-index: 999;
  transition: 0.3s ease-in-out;
}

#fixed-header.scrolled {
  box-shadow: 0 4px 11px 0 rgba(66, 66, 66, 0.25);
}

#header-wrapper {
  position: relative;
  height: 100%;
  padding: 20px;
}

#logo-wrapper {
  padding-right: 30px;
}
#header-contact {
  text-align: right;
}
#header-contact #header-phone {
  font-weight: 500;
}
#header-contact a {
  color: #fff;
}
#header-contact a:hover {
  color: #7BA4BC;
}

.social {
  margin-left: 20px;
}
.social a {
  color: #2c546e;
  font-size: 14px;
  margin-left: 5px;
}
.social a i {
  font-size: 16px;
}
.social a:hover {
  color: #2c546e;
}

.font-secondary {
  font-family: "Italiana", serif;
}

/* ==========================================================================
   Navigation
/* ========================================================================== */
#menu-wrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #F2EEE8;
  z-index: 9999;
}
#menu-wrapper #menu-close {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  border: 2px solid #7BA4BC;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#menu-wrapper #menu-close i {
  color: #2c546e;
  font-size: 26px;
}
#menu-wrapper #menu-container {
  width: 100%;
  max-width: 400px;
}
#menu-wrapper #menu-container #menu-logo {
  max-width: 200px;
  margin-bottom: 40px;
}
#menu-wrapper #menu-container .social {
  margin: 40px 0 0;
}
#menu-wrapper #menu-container .social a {
  margin: 0 5px 0 0;
}

.nav-container {
  align-items: center;
  width: 100%;
}

.main-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu li {
  position: relative;
  margin-right: 30px;
}
.main-menu li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  white-space: nowrap;
}
.main-menu li a:hover {
  color: #7BA4BC;
}
.main-menu li a i {
  font-size: 10px;
  margin-left: 8px;
}
.main-menu li ul {
  display: none;
  position: absolute;
  left: -10px;
  top: 100%;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
}
.main-menu li ul li {
  margin: 0;
}
.main-menu li ul li a {
  font-size: 12px;
  line-height: 24px;
}

#nav-mobile-icon {
  display: none;
  width: 40px;
  height: 40px;
  background: rgb(73.5714285714, 139.5454545455, 182.4285714286);
  font-size: 26px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

#nav-mobile-bg {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#nav-mobile-wrapper {
  position: fixed;
  top: 0;
  left: -320px;
  width: 100%;
  height: 100%;
  max-width: 320px;
  background: #2c546e;
  padding: 30px 30px;
  z-index: 1000;
}
#nav-mobile-wrapper #nav-mobile-close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}
#nav-mobile-wrapper #nav-mobile-close i {
  font-size: 20px;
}
#nav-mobile-wrapper #nav-logo {
  margin: 0 auto 20px;
  max-width: 200px;
}
#nav-mobile-wrapper .nav-container {
  display: block;
}
#nav-mobile-wrapper ul.main-menu {
  display: block;
}
#nav-mobile-wrapper ul.main-menu li {
  display: block;
}
#nav-mobile-wrapper ul.main-menu li a {
  color: #fff;
}
#nav-mobile-wrapper ul.main-menu li ul {
  position: relative;
}
#nav-mobile-wrapper ul.main-menu li ul li a {
  padding-left: 20px;
}

/* ==========================================================================
   Layout
/* ========================================================================== */
#main {
  position: relative;
  padding: 100px 0;
}
#main:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 50%;
  height: 100%;
  background: url("../img/main.jpg") center/cover;
  z-index: 0;
}

.parallax {
  position: relative;
  padding-top: 40%;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.parallax:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 84, 110, 0.6);
}

/* ==========================================================================
   Content
/* ========================================================================== */
.aligncenter {
  display: block;
  margin: 0 auto;
}

#page-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  background: url("../img/main.jpg") center/cover;
}
#page-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 84, 110, 0.5);
  z-index: 0;
}
#page-header h1.page-title {
  color: #fff;
  position: relative;
  font-weight: 700;
  font-size: 50px;
  font-family: "Italiana", serif;
  text-transform: uppercase;
}

/* QS */
#idx_quick_search_mls {
  display: flex;
  column-gap: 10px;
}
#idx_quick_search_mls #idx_quick_search_mls_input {
  flex: 1;
}
#idx_quick_search_mls #idx_quick_search_mls_submit {
  width: auto !important;
}

#idx_quick_search_advanced {
  display: flex;
  flex-wrap: wrap;
}
#idx_quick_search_advanced .idx_quick_search_col {
  flex: 1 0 33%;
  padding-right: 10px;
}
#idx_quick_search_advanced .idx_quick_search_col h3 {
  font-size: 18px;
}
#idx_quick_search_advanced #idx_quick_search_submit {
  flex-basis: 100%;
}

/*#idx_quick_search_mls_input {
	display: inline-block;
	width:100%;
	font-size:13px !important;
	color:#000;
}

#idx_quick_search_mls_input::-webkit-input-placeholder {
	color:#555;
}
*/
.agent {
  float: left;
  width: 18%;
  height: 15%;
  padding: 2px;
  border: 1px solid #ccc;
  margin: 0 2% 20px 0;
}

.agent-photo a {
  display: block;
  padding-top: 100%;
  text-indent: 150%;
  white-space: nowrap;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

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

.agent-name a {
  display: block;
  padding: 5px 0;
  font-weight: bold;
  color: #333;
}

.agent-name a:hover {
  text-decoration: none;
}

.agent-left {
  float: left;
  width: 20%;
}

.agent-right {
  float: right;
  width: 76%;
}

#idx_detail_mainpic {
  width: 60%;
}

#idx_detail_agentinfo {
  width: 40%;
}

/* ==========================================================================
   Forms
/* ========================================================================== */
form input[type=text],
form input[type=email],
form input[type=tel],
form textarea,
form select {
  display: inline-block;
  width: 100%;
  padding: 4px 8px;
  color: #2C2929 !important;
  margin-bottom: 15px !important;
  height: 60px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.4) !important;
  background-color: transparent !important;
}
form textarea {
  display: block;
  height: 100px !important;
  padding: 6px 10px;
  font-size: 14px;
}
form input[type=submit],
form input[type=reset],
form button[type=submit] {
  margin: 0 !important;
  border-radius: 30px !important;
  border: 0 !important;
  padding: 10px 30px !important;
  min-width: 150px;
  background: #2c546e !important;
  color: #2c546e !important;
  text-transform: uppercase;
}
form button {
  padding: 10px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  border: 0 !important;
  box-shadow: none !important;
}

.frm_style_formidable-style.with_frm_style .form-field {
  margin: 0 !important;
}

.with_frm_style .vertical_radio .frm_checkbox {
  float: left;
  width: 50%;
  margin-bottom: 10px;
}

.form-dark form input[type=text],
.form-dark form input[type=email],
.form-dark form input[type=tel],
.form-dark form textarea,
.form-dark form select {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  background-color: transparent !important;
}
.form-dark form input[type=submit],
.form-dark form input[type=reset],
.form-dark form button[type=submit] {
  padding: 20px 50px !important;
  min-width: 310px;
  background: #2c546e !important;
  color: #2c546e !important;
}
.form-dark form button {
  padding: 15px 40px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  border: 0 !important;
  box-shadow: none !important;
}
.form-dark form ::placeholder {
  opacity: 0.6;
  color: #fff !important;
}

#idx_searchmls form p {
  font-size: 20px;
}
#idx_searchmls form select[name=dom] {
  margin-top: 10px;
}

/* ==========================================================================
   Footer
/* ========================================================================== */
#footer-wrapper {
  position: relative;
  padding: 40px 0 40px 0;
  font-size: 14px;
  background: #2c546e;
  color: #fff;
}
#footer-wrapper a {
  color: #F2EEE8;
}
#footer-wrapper a:hover {
  color: #2c546e;
}
#footer-wrapper .footer-sep {
  margin: 30px 0;
}
#footer-wrapper .footer-license-card {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}
#footer-wrapper .footer-license-card h6 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
}
#footer-wrapper .footer-contact-block {
  word-break: break-word;
}
#footer-wrapper .footer-contact-block h6 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.1;
}
#footer-wrapper .footer-license-label {
  margin: 0 0 8px;
  color: #F2EEE8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
#footer-wrapper .footer-contact-list {
  margin: 0 0 18px;
}
#footer-wrapper .footer-contact-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 10px 0;
}
#footer-wrapper .footer-contact-item span {
  min-width: 100px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#footer-wrapper .footer-contact-item a,
#footer-wrapper .footer-contact-item p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}
#footer-wrapper .footer-license-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer-wrapper .footer-license-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
#footer-wrapper .footer-license-list span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.08em;
}
#footer-wrapper .footer-license-list strong {
  color: #fff;
  font-weight: 700;
}
#footer-wrapper .footer-license-list-inline {
  max-width: 420px;
}
#footer-wrapper .footer-license-list-inline li:first-child {
  border-top: 0;
  padding-top: 0;
}

#base {
  color: #b2b2b2;
  font-size: 10px;
  padding-top: 20px;
}
#base a {
  color: #b2b2b2;
}
#base a:hover {
  color: #F2EEE8;
}

/* ==========================================================================
   Responsive
/* ========================================================================== */
@media (max-width: 1600px) {
  .main-menu li {
    margin-right: 20px;
  }
  .main-menu li a {
    font-size: 12px;
  }
  #header-contact {
    font-size: 12px;
  }
}
@media (max-width: 1400px) {
  .nav-container {
    display: none;
  }
  #nav-mobile-icon {
    display: flex;
  }
}
@media (max-width: 992px) {
  #footer-wrapper .footer-contact-block {
    max-width: none;
    margin-bottom: 24px;
  }
  #footer-wrapper .footer-contact-item {
    flex-direction: column;
    gap: 6px;
  }
  #footer-wrapper .footer-contact-item span {
    min-width: 0;
  }
  #footer-wrapper .footer-license-card {
    max-width: none;
    margin: 24px 0 0;
  }
}
@media (max-width: 767px) {
  #main::before {
    left: 0;
    width: 100%;
    z-index: -1;
  }
  #main::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
  }
  #page-header {
    height: 400px;
  }
  .header-links, #header-contact {
    display: none;
  }
}
@media (max-width: 576px) {
  #logo-wrapper {
    padding: 0;
  }
  #page-header {
    height: 300px;
  }
  #page-header h1.page-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  body {
    padding: 80px 0 0;
  }
  #logo-wrapper {
    max-width: 200px;
  }
}

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