/*
Theme Name: Sarasota Theme
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/
/*

TABLE OF CONTENTS

1. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/
/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/
:root {
  /** Font default */
  --font-family-default: "Poppins", sans-serif;
  --font-family-title: "Playfair Display", serif;
  --font-size-default: 14px;
  --font-size-title: 18px;
  --font-color-default: #000;
  --font-color-title: #000;
  /** Use for input, button, and any other element */
  --primary: #000;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/
/* Sub Menu */
.nav li {
  display: inline-block;
  position: relative;
}
.nav li a {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  display: block;
  text-transform: uppercase;
}
.header-fix .nav li a {
  color: #fff;
}
.nav li:hover > .sub-menu,
.nav li:focus-within > .sub-menu {
  transform: translateY(0);
  pointer-events: all;
  opacity: 1;
}
.nav > li {
  margin: 0;
  padding: 0px 20px;
  box-sizing: border-box;
  position: relative;
}
.header-fix .nav > li {
  padding: 0 17px;
}
.nav > li > a {
  position: relative;
  letter-spacing: 0.15em;
}
.header-fix .nav > li > a {
  letter-spacing: normal;
}
.nav > li > a:after {
  clear: both;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 0;
  height: 3px;
  background: #fff;
  top: -11px;
  opacity: 0;
  transform: translateX(-50%);
}
.nav > li > .sub-menu {
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
}
.nav > li:hover > a::after,
.nav > li:focus-within > a::after {
  width: 98%;
  opacity: 1;
}
.nav > li:hover > .sub-menu,
.nav > li:focus-within > .sub-menu {
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  opacity: 1;
}
.nav .sub-menu {
  display: block;
  list-style: none outside none;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  padding: 15px 0 0;
  position: absolute;
  width: 100%;
  width: 170px;
  transform: translateY(-10px);
}
.header-fix .nav .sub-menu {
  padding-top: 38px;
}
.nav .sub-menu li {
  display: block;
  margin-bottom: 1px;
}
.nav .sub-menu li:hover > a,
.nav .sub-menu li:focus-within > a {
  background: rgba(73, 132, 184, 0.85);
}
.nav .sub-menu a {
  color: #fff;
  font-weight: 600;
  display: block;
  padding: 12px 10px 10px;
  text-align: center;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.75);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.header-fix .nav .sub-menu a {
  color: #fff;
}
.nav .sub-menu .sub-menu {
  margin-left: 100%;
  padding-top: 0;
  padding-left: 1px;
  top: 0;
}

/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/
/* Global */
body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  background: #fff;
  color: var(--font-color-default);
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}
body.home .container {
  max-width: 1440px;
}
body.active_menu {
  overflow: hidden;
}

.ease, .footer-smi a, .cf7 .cf7-btn-wrap .hp_cf7_, .nav li a, .nav > li > a:after, .nav .sub-menu, .nav .sub-menu a {
  transition: all 300ms ease-in-out;
}

.outer {
  overflow: hidden;
  position: relative;
}

.slick-slide, .slick-slide * {
  outline: none !important;
}

.c-slick-nav button {
  background: none;
  margin: 0;
  padding: 0;
  border: none;
  outline: 0;
  display: flex;
  align-items: center;
}
.c-slick-nav button.prev .divider {
  margin-left: -15px;
}
.c-slick-nav button.prev .text {
  margin-left: 8px;
}
.c-slick-nav button.next .divider {
  margin-right: -15px;
}
.c-slick-nav button.next .text {
  margin-right: 8px;
}
.c-slick-nav button:hover .circle {
  background: #4984b8;
  border-color: #4984b8;
}
.c-slick-nav button:hover i {
  color: #fff;
}
.c-slick-nav .circle {
  width: 52px;
  height: 51px;
  border: 2px solid #d2d2d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.c-slick-nav .circle i {
  color: #4984b8;
}
.c-slick-nav .divider {
  width: 25px;
  height: 1px;
  background: #adadad;
  position: relative;
  z-index: 1;
}
.c-slick-nav .text {
  font-size: 16x;
  font-weight: 500;
  color: #4b4b4b;
  text-transform: uppercase;
}
.c-slick-nav .site-btn {
  margin-left: 40px;
  margin-right: 40px;
}

.d-flex {
  display: flex;
}

.mob-logo {
  overflow: hidden;
  background: #000;
  padding-top: 52px;
  text-align: center;
  display: none;
}
.mob-logo img {
  max-height: 75px;
  margin: 10px auto 10px;
}

.site-heading {
  font-family: var(--font-family-title);
  font-size: calc(35px + 1.823vw);
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.accent-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.accent-wrap .text {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.8em;
  text-transform: uppercase;
  color: #ebaa48;
}

.accent {
  flex: 1;
  position: relative;
  margin-left: 35px;
}
.accent .dot {
  width: 15px;
  height: 15px;
  border: thin solid #d6d6d6;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
}
.accent .dot::before {
  clear: both;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #ebaa48;
  border-radius: 50%;
}
.accent .dot::after {
  clear: both;
}
.accent .line {
  height: 1px;
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
  background: #d6d6d6;
  width: 77em;
  left: 15px;
}
.accent.to-left {
  margin-left: 0;
  margin-right: 20px;
}
.accent.to-left .dot {
  float: right;
}
.accent.to-left .line {
  left: auto;
  right: 15px;
}

.site-btn {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  display: inline-block;
  min-width: 200px;
  border: thin solid #fff;
  position: relative;
  line-height: 53px;
  text-align: center;
  text-decoration: none;
}
.site-btn:hover, .site-btn:focus, .site-btn:active {
  color: #fff;
  border-color: #4984b8;
  background-color: #4984b8;
}
.site-btn::after {
  content: "";
  width: 60px;
  height: 5px;
  background: #4984b8;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
}
.site-btn-dark {
  border-color: #c1c1c1;
  color: #000;
}
.site-btn-dark:hover, .site-btn-dark:focus, .site-btn-dark:active {
  color: #fff;
  border-color: #4984b8 !important;
  background-color: #4984b8 !important;
}

.fx-smi {
  right: 20px;
  position: fixed;
  z-index: 10;
/*  top: 20vh;*/
    top: 15vh;
}
.fx-smi .d-flex {
  flex-direction: column;
  align-items: center;
}
.fx-smi a {
/*
  width: 39px;
  height: 39px;
  font-size: 25px;
*/
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
/*  margin-bottom: 20px;*/
    margin-bottom: 10px;
  transition: 0.3s;
    width: 30px;
    height: 30px;
    font-size: 15px;
}
.fx-smi a:hover {
  color: #fff;
  background: #4984b8;
}
.fx-smi a:hover i {
  color: #fff;
}
.fx-smi .follow-us {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #f7f3e7;
  letter-spacing: 0.15em;
  text-transform: uppercase;
/*  font-size: 12px;*/
    font-size: 10px;
}
.fx-smi .follow-us::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 58px;
  width: 1px;
  background: #fff;
  margin-bottom: 30px;
}
.fx-smi.scrolled a {
  color: #000;
}
.fx-smi.scrolled .follow-us {
  color: #000;
}
.fx-smi.scrolled .follow-us::before {
  background: #000;
}

.header {
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  padding-top: 45px;
}
.header .container {
  max-width: 1398px !important;
}
.header .d-flex {
  justify-content: flex-end;
}
.header .right-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .burger-menu-wrap {
  min-width: 29px;
  margin-left: 50px;
}
.header .menu-btn {
  margin: 0;
  padding: 0;
  outline: 0;
  background: transparent;
  position: relative;
  border: 0;
  opacity: 1;
}
.header .menu-btn .bar {
  display: block;
  height: 2px;
  width: 29px;
  margin-bottom: 7px;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
}
.header .menu-btn .bar:nth-child(2) {
  width: 18px;
}
.header .menu-btn .bar:last-child {
  margin-bottom: 0;
}
.header .menu-btn:hover {
  opacity: 0.85;
}
.header .menu-btn:hover .bar:nth-child(2) {
  width: 100%;
}

.header-fix {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 15;
  height: 90px;
  padding-top: 0;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}
.header-fix.sticky {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header-fix .d-flex {
  height: 90px;
  align-items: center;
  justify-content: space-between;
}

.menu-block-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: transparent;
  display: none;
}
body.active_menu .menu-block-overlay {
  background: rgba(0, 0, 0, 0.33);
  display: block;
}

.menu-slide {
  width: 50%;
  max-width: 721px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow-y: auto;
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
body.active_menu .menu-slide {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.menu-slide-content {
  position: relative;
  z-index: 3;
  padding: 45px 85px;
}

.menu-slide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}

.menu-slide-logo img {
  display: block;
  margin: 0;
}

.menu-slide-close-wrap button {
  font-size: 30px;
  color: #fff;
  width: 45px;
  height: 45px;
  background: transparent;
  outline: 0;
  border: none;
}
.menu-slide-close-wrap button:hover {
  opacity: 0.85;
}

.menu-slide-nav .slide-nav {
  max-width: 480px;
  columns: 2;
}
.menu-slide-nav .slide-nav a {
  color: #fff;
}
.menu-slide-nav .slide-nav a:hover {
  color: #4984b8;
}
.menu-slide-nav .slide-nav > li {
  margin-bottom: 25px;
}
.menu-slide-nav .slide-nav > li > a {
  font-family: var(--font-family-title);
  font-size: 26px;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 8px;
  transition: 0.3s;
}
.menu-slide-nav .slide-nav .sub-menu li {
  margin: 10px 0;
  padding: 0 12px;
}
.menu-slide-nav .slide-nav .sub-menu a {
  font-weight: 300;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-slide-ci {
  margin-top: 25px;
}
.menu-slide-ci .menu-slide-ci-wrap {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-wrap: wrap;
}
.menu-slide-ci .menu-slide-ci-wrap > div {
  width: 50%;
}
.menu-slide-ci .menu-slide-ci-wrap > div:nth-child(2) {
  padding-left: 5px;
}
.menu-slide-ci .menu-slide-ci-wrap .contact-wrap {
  margin-bottom: 10px;
}
.menu-slide-ci .menu-slide-ci-wrap .contact-wrap span {
  margin-right: 5px;
}
.menu-slide-ci .menu-slide-ci-wrap .email-wrap a {
  align-items: center;
}
.menu-slide-ci a, .menu-slide-ci p {
  display: flex;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.2;
  font-weight: 300;
  transition: 0.3s;
}
.menu-slide-ci a:last-child, .menu-slide-ci p:last-child {
  margin-bottom: 0;
}
.menu-slide-ci a span:not(.text), .menu-slide-ci p span:not(.text) {
  font-weight: bold;
}
.menu-slide-ci a i, .menu-slide-ci p i {
  color: #fff;
  font-size: 14px;
  margin-right: 15px;
}
.menu-slide-ci a i.ai-envelope-f, .menu-slide-ci p i.ai-envelope-f {
  font-size: 11px;
}
.menu-slide-ci a i.ai-font-location-c, .menu-slide-ci p i.ai-font-location-c {
  font-size: 20px;
}
.menu-slide-ci a:hover {
  color: #4984b8;
}
.menu-slide-ci a:hover i {
  color: #fff;
}

#hp-slide {
  position: relative;
}

.hp-slide {
  position: relative;
  z-index: 1;
}
.hp-slide::before, .hp-slide::after {
  clear: both;
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hp-slide::before {
  background: url("./images/slide-top-gradient.png") top left repeat-x;
}
.hp-slide::after {
  background: url("./images/slide-bottom-gradient.png") bottom left repeat-x;
  z-index: 2;
}
.hp-slide .cycloneslider {
  z-index: 1;
}

.hp-tagline {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding-bottom: 150px;
}
.hp-tagline img {
  margin: 0 0 35px;
  max-width: 100%;
  height: auto;
}
.hp-tagline p {
  text-transform: uppercase;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.3em;
  margin-bottom: 35px;
}
.hp-tagline .site-btn {
  min-width: 225px;
}

#hp-about {
  padding-top: 85px;
  padding-bottom: 60px;
  margin-bottom: 20px;
  z-index: 3;
}
#hp-about .about-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1;
}
#hp-about .about-bg canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 100% calc(100% - 60px);
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 2;
  opacity: 0.5;
}
#hp-about .about-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#hp-about .about-bg::after {
  z-index: 3;
  background: url("./images/about-bg-white-overlay.png") left top repeat-x;
}
#hp-about .container {
  z-index: 3;
  position: relative;
}
#hp-about .about-img {
  position: relative;
  margin-left: 60px;
}
#hp-about .about-img::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: calc(100% - 147px);
  left: -60px;
  bottom: -60px;
  background: rgb(9, 33, 59);
  background: linear-gradient(48deg, rgb(9, 33, 59) 0%, rgb(41, 113, 174) 100%);
}
#hp-about .about-img img {
  display: block;
  margin: 0;
  position: relative;
  z-index: 2;
}
#hp-about .about-content {
  max-width: 820px;
  background: #fff;
  padding: 15px 70px 3px 90px;
  position: relative;
  height: 100%;
}
#hp-about .about-content .site-heading {
  color: #000;
  margin-bottom: 45px;
}
#hp-about .about-content p {
  margin-bottom: 35px;
}
#hp-about .about-content p:last-child {
  margin-bottom: 0;
}
#hp-about .about-content p.top-text {
  font-family: var(--font-family-title);
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 25px;
}
#hp-about .about-content p:not(.top-text) {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
}
#hp-about .about-content .site-btn-wrap {
  padding: 34px 25px 34px 90px;
  background: #fff;
  position: absolute;
  width: 65%;
  bottom: 2px;
  left: 0;
  transform: translateY(100%);
}
#hp-about .about-content .site-btn {
  width: 220px;
  line-height: 50px;
}
#hp-about .site-btn {
  color: #000;
  border-color: #000;
}
#hp-about .site-btn:hover {
  color: #fff;
  border-color: #23aadc;
}
#hp-about .title {
  max-width: 800px;
  margin: 0 auto 35px;
}

#hp-team {
  padding: 68px 0 0;
  margin-bottom: 120px;
}
#hp-team .team-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1;
}
#hp-team .team-bg canvas, #hp-team .team-bg::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#hp-team .team-bg canvas {
  width: 100%;
  height: 100%;
  z-index: 2;
  background-position: center top;
  background-size: 100% 544px;
  background-repeat: no-repeat;
  opacity: 0.24;
  filter: grayscale(1);
}
#hp-team .team-bg::after {
  content: "";
  z-index: 3;
  background: url("./images/team-bg-overlay.png") left top repeat-x;
}
#hp-team .container {
  position: relative;
  z-index: 3;
}
#hp-team .slick-slide {
  margin: 0 15px;
}
#hp-team .team-slider:not(.slick-initialized) > div:nth-child(n+2) {
  display: none;
}
#hp-team .site-heading-wrap {
  max-width: 315px;
}
#hp-team .top {
  margin-bottom: 70px;
  position: relative;
  z-index: 3;
}
#hp-team .top .d-flex {
  align-items: center;
  max-width: 1350px;
  justify-content: space-between;
}
#hp-team .top .right-text {
  max-width: 818px;
  text-align: right;
}
#hp-team p.top-text {
  color: #454545;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0;
}
#hp-team .team-wrap {
  margin: 0 -15px;
}
#hp-team .team-item {
  position: relative;
}
#hp-team .team-item:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}
#hp-team .team-thumbnail {
  overflow: hidden;
  position: relative;
}
#hp-team .team-thumbnail canvas {
  position: relative;
  z-index: 1;
  width: 100%;
}
#hp-team .team-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  object-fit: cover;
  z-index: 2;
  filter: grayscale(1);
  transform: scale(1);
}
#hp-team .team-detail {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 50px;
}
#hp-team .team-detail::before {
  content: "";
  display: block;
  width: 2px;
  height: 53px;
  background: #4984b8;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
#hp-team .team-detail p {
  font-family: var(--font-family-title);
  font-size: 26px;
  margin-bottom: 10px;
}
#hp-team .team-detail span {
  display: inline-block;
  font-weight: 300;
  color: #878787;
  text-transform: uppercase;
}
#hp-team .team-nav {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  position: relative;
  z-index: 3;
}
#hp-team .team-nav .site-btn {
  min-width: 180px;
}

#hp-listing {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 1042px;
  padding-top: 70px;
  display: none;
}
#hp-listing .site-heading-wrap {
  max-width: 555px;
}
#hp-listing .site-heading {
  color: #fff;
}
#hp-listing .top {
  margin-bottom: 45px;
}
#hp-listing .top .d-flex {
  align-items: center;
  max-width: 1350px;
  justify-content: space-between;
}
#hp-listing .top .right-text {
  text-align: right;
}
#hp-listing .listing-slider:not(.slick-initialized) > div:nth-child(n+2) {
  display: none;
}
#hp-listing .listing-list {
  margin: 0 -7px;
  font-size: 0;
}
#hp-listing p.top-text {
  font-size: 16px;
  color: #454545;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0;
}
#hp-listing .listing-item {
  margin: 0 7px 14px;
  display: inline-block;
  width: calc(33.33% - 14px);
  position: relative;
  overflow: hidden;
}
#hp-listing .listing-item:hover .listing-img img {
  filter: grayscale(1);
  transform: scale(1.05);
}
#hp-listing .listing-item:hover .listing-detail {
  padding-bottom: 80px;
}
#hp-listing .listing-item:hover .listing-detail::before {
  opacity: 1;
}
#hp-listing .listing-item:hover .listing-detail .view-more {
  opacity: 1;
  transform: translateY(0);
}
#hp-listing .listing-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#hp-listing .listing-img canvas {
  position: relative;
  z-index: 1;
  width: 100%;
}
#hp-listing .listing-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  object-fit: cover;
  z-index: 2;
  filter: grayscale(0);
  transform: scale(1);
}
#hp-listing .listing-detail {
  background: url("./images/fl-gradient-bg.png") bottom left repeat-x;
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  justify-content: space-between;
  padding: 0 25px 40px 30px;
  transition: 0.3s;
}
#hp-listing .listing-detail::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 5px solid #ebaa48;
  transition: 0.3s;
  opacity: 0;
}
#hp-listing .listing-detail::after {
  content: "";
  color: #000;
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  max-width: 110px;
  left: 50%;
  height: 5px;
  background: #ebaa48;
  transform: translateX(-50%);
}
#hp-listing .listing-detail > div {
  position: relative;
  z-index: 3;
}
#hp-listing .listing-detail .price {
  font-family: var(--font-family-title);
  font-size: 30px;
  color: #fff;
  margin-bottom: 9px;
  display: block;
}
#hp-listing .listing-detail .address {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}
#hp-listing .listing-detail .address strong {
  font-weight: 600;
  display: block;
}
#hp-listing .listing-detail .right span {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  display: flex;
  align-items: center;
  line-height: 20px;
}
#hp-listing .listing-detail .right i {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  position: relative;
  top: -1px;
}
#hp-listing .listing-detail .right i.ico-bed {
  background: url("./images/icon-bed.png") center no-repeat;
}
#hp-listing .listing-detail .right i.ico-bath {
  background: url("./images/icon-bath.png") center no-repeat;
}
#hp-listing .listing-detail .right i.ico-sqm {
  background: url("./images/icon-sqm.png") center no-repeat;
}
#hp-listing .listing-detail .view-more {
  background-color: #ebaa48;
  color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.2;
  font-weight: 600;
  line-height: 50px;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.3s;
}
#hp-listing .listing-nav {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  background: #fff;
  padding-top: 40px;
}
#hp-listing .listing-nav .site-btn {
  min-width: 180px;
}

#hp-communities {
  padding-top: 155px;
}
#hp-communities .fc-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1;
}
#hp-communities .fc-bg canvas, #hp-communities .fc-bg::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#hp-communities .fc-bg canvas {
  width: 100%;
  height: 100%;
  z-index: 2;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: grayscale(1);
}
#hp-communities .fc-bg::after {
  content: "";
  z-index: 3;
  background-image: url("./images/fc-bg-overlay-top.png"), url("./images/fc-bg-overlay-bottom.png");
  background-position: left top, left bottom;
  background-repeat: repeat-x, repeat-x;
}
#hp-communities .fc-bg .white-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 4;
}
#hp-communities .container {
  position: relative;
  z-index: 3;
}
#hp-communities .top {
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}
#hp-communities .top .d-flex {
  align-items: center;
}
#hp-communities .top .comm-title {
  padding-left: 70px;
}
#hp-communities .top .site-btn {
  min-width: 250px;
  margin-top: 45px;
}
#hp-communities .comm-wrap {
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}
#hp-communities .comm-item {
  margin: 0 8px 16px;
  width: calc(33.33% - 16px);
  position: relative;
  display: block;
}
#hp-communities .comm-item.featured {
  width: 100%;
  margin: 0;
}
#hp-communities .comm-item:hover .comm-img img {
  transform: scale(1.05);
  filter: grayscale(1);
}
#hp-communities .comm-item:hover .comm-detail::before {
  opacity: 1;
}
#hp-communities .comm-item:hover .comm-detail .comm-detail-wrap {
  bottom: 35px;
}
#hp-communities .comm-item:hover .comm-detail .explore-more {
  max-height: 100px;
  opacity: 1;
}
#hp-communities .comm-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#hp-communities .comm-img canvas {
  position: relative;
  z-index: 1;
  width: 100%;
}
#hp-communities .comm-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  object-fit: cover;
  z-index: 2;
  filter: grayscale(0);
  transform: scale(1);
}
#hp-communities .comm-detail {
  background: url("./images/fc-gradient-bg.png") bottom left repeat-x;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px;
}
#hp-communities .comm-detail::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 5px solid #ebaa48;
  transition: 0.3s;
  opacity: 0;
}
#hp-communities .comm-detail .comm-detail-wrap {
  position: absolute;
  bottom: 40px;
  padding-left: 25px;
}
#hp-communities .comm-detail .comm-detail-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: -5px;
  width: 5px;
  background: #ebaa48;
  height: 78px;
}
#hp-communities .comm-detail span:not(.explore-more) {
  font-family: var(--font-family-title);
  font-size: 36px;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
#hp-communities .comm-detail .explore-more {
  display: block;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  width: 190px;
  line-height: 55px;
  text-align: center;
  background: #3f7aae;
  max-height: 0;
  opacity: 0;
}

#hp-mentorship {
  padding-top: 120px;
}
#hp-mentorship .mentorship-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1;
}
#hp-mentorship .mentorship-bg canvas, #hp-mentorship .mentorship-bg::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#hp-mentorship .mentorship-bg canvas {
  width: 100%;
  height: 100%;
  z-index: 2;
  background-position: center calc(100% - 60px);
  background-repeat: no-repeat;
  background-size: cover;
}
#hp-mentorship .mentorship-bg::after {
  content: "";
  z-index: 3;
  background: url("./images/mentorship-overlay.png") left top repeat-x;
}
#hp-mentorship .container {
  max-width: 1410px;
  position: relative;
  z-index: 2;
}
#hp-mentorship .col-md-7 {
  background: #fff;
}
#hp-mentorship .text-content {
  padding: 50px 50px 15px 50px;
}
#hp-mentorship .site-heading-wrap {
  margin-bottom: 30px;
  max-width: 672px;
}
#hp-mentorship .site-heading {
  padding-right: 15px;
}
#hp-mentorship p.top-text {
  font-family: var(--font-family-title);
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 25px;
}
#hp-mentorship p:not(.top-text) {
  color: #454545;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 50px;
}
#hp-mentorship p.top-bot {
    margin-bottom: 15px;
}
#hp-mentorship .list {
  margin: 0 0 60px;
  padding: 0;
  list-style-type: none;
}
#hp-mentorship .list li {
  display: flex;
  font-weight: 300;
  line-height: 1.3;
  color: #454545;
  margin-top: 20px;
}
#hp-mentorship .list li:first-child {
  margin-top: 0;
}
#hp-mentorship .list li::before {
  content: "";
  display: block;
  background: url("./images/icon-check.png") center no-repeat;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-right: 20px;
}
#hp-mentorship .site-btn {
  display: block;
  width: 450px;
}
#hp-mentorship .img-content {
  max-width: 642px;
  position: relative;
  float: right;
  padding-bottom: 70px;
  margin-right: -15px;
}
#hp-mentorship .img-content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: rgb(9, 33, 59);
  background: linear-gradient(48deg, rgb(9, 33, 59) 0%, rgb(41, 113, 174) 100%);
}
#hp-mentorship .img-content canvas {
  position: relative;
  z-index: 1;
  width: 100%;
}
#hp-mentorship .img-content img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  top: 60px;
  right: 60px;
}

#news-ig {
  margin-top: 130px;
}

#hp-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 754px;
  margin: auto;
}
#hp-news .site-heading-wrap {
  margin-bottom: 50px;
}
#hp-news .news {
  width: 100%;
  max-width: 754px;
}
#hp-news .news-wrap {
  margin: 0 -20px;
  overflow: hidden;
}
#hp-news .slick-slide {
  margin: 0 20px;
}
#hp-news .news-slider:not(.slick-initialized) > div:nth-child(n+2) {
  display: none;
}
#hp-news .news-item {
  position: relative;
  text-align: center;
  color: #000;
  display: block;
}
#hp-news .news-item:hover .news-img img {
  opacity: 0.85;
}
#hp-news .news-img {
  position: relative;
  margin-bottom: 30px;
}
#hp-news .news-img canvas {
  position: relative;
  width: 100%;
  z-index: 1;
}
#hp-news .news-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hp-news .news-detail {
  position: relative;
  z-index: 2;
}
#hp-news .news-detail::before {
  content: "";
  display: block;
  width: 2px;
  height: 53px;
  background: #4984b8;
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
}
#hp-news .news-detail h2 {
  font-family: var(--font-family-title);
  font-size: 20px;
  margin-bottom: 30px;
}
#hp-news .news-detail p {
  font-size: 13px;
  font-weight: 300;
  color: #454545;
  line-height: 1.8;
  margin-bottom: 40px;
}
#hp-news .news-detail .site-btn {
  max-width: 185px;
}

#hp-ig {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 588px;
  margin-left: auto;
}
#hp-ig .site-heading-wrap {
  margin-bottom: 50px;
}
#hp-ig .ig-summary {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 25px;
}
#hp-ig .ig-summary span {
  font-weight: 100;
  font-size: 15px;
}
#hp-ig .ig-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  width: 100%;
}
#hp-ig .ig-item {
  width: calc(33.33% - 10px);
  position: relative;
  overflow: hidden;
  margin: 5px;
  color: #fff;
}
#hp-ig .ig-item:hover .ig-detail {
  opacity: 1;
}
#hp-ig .ig-item canvas {
  position: relative;
  width: 100%;
  z-index: 1;
}
#hp-ig .ig-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  object-fit: cover;
  top: 0;
  left: 0;
}
#hp-ig .ig-detail {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 3;
  background: rgba(73, 132, 184, 0.8);
  opacity: 0;
}
#hp-ig .ig-detail span {
  font-size: 18px;
  font-weight: 300;
  margin: 4px 0;
  color: #fff;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hp-ig .ig-detail span i {
  font-size: 32px;
  margin-right: 10px;
}
#hp-ig .site-btn-wrap {
  width: 100%;
  margin-top: 25px;
  text-align: center;
}
#hp-ig .site-btn {
  width: 100%;
  max-width: 313px;
  display: inline-block;
}

#hp-testimonial {
  margin-top: 130px;
  height: 800px;
  padding: 60px 0;
}
#hp-testimonial::before, #hp-testimonial::after {
  content: "";
  clear: both;
  display: block;
  width: 48%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
}
#hp-testimonial::before {
  left: 0;
  background: url("./images/testimonial-bg-left.jpg") left top no-repeat;
  background-size: 100% calc(100% - 150px);
}
#hp-testimonial::after {
  right: 0;
  background: url("./images/testimonial-bg-right.jpg") right top no-repeat;
  background-size: 100%;
}
#hp-testimonial .container {
  width: 100%;
  max-width: 1290px;
  position: relative;
  z-index: 2;
}
#hp-testimonial .site-heading-wrap {
  margin-bottom: 50px;
  display: inline-block;
}
#hp-testimonial .slick-track {
  display: flex !important;
}
#hp-testimonial .slick-slide {
  margin: 0 45px;
  padding-bottom: 7px;
  position: relative;
  height: inherit !important;
}
#hp-testimonial .testimonial-slide:not(.slick-initialized) > div:nth-child(n+2) {
  display: none;
}
#hp-testimonial .testimonials {
  background: #fff;
  padding: 75px 75px 60px;
  text-align: center;
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.15);
}
#hp-testimonial .testimonial-wrap {
  margin: 0 -45px;
  overflow: hidden;
}
#hp-testimonial .testimonial-slide p {
  color: #454545;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
}
#hp-testimonial .testimonial-slide span {
  font-family: var(--font-family-title);
  font-size: 19px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#hp-testimonial .testimonial-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
#hp-testimonial .testimonial-nav .site-btn {
  width: 284px;
}

#ftr-cf7 {
  padding-top: 115px;
  padding-bottom: 15px;
}
#ftr-cf7 .cf7-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1;
}
#ftr-cf7 .cf7-bg canvas, #ftr-cf7 .cf7-bg::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#ftr-cf7 .cf7-bg canvas {
  width: 100%;
  height: 100%;
  z-index: 2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  filter: grayscale(1);
}
#ftr-cf7 .cf7-bg::after {
  content: "";
  z-index: 3;
  background-image: url("./images/cf7-overlay-bg-top.png"), url("./images/cf7-overlay-bg-bottom.png");
  background-position: left top, left bottom;
  background-repeat: repeat-x, repeat-x;
}
#ftr-cf7 .container {
  width: 100%;
  max-width: 1010px;
  position: relative;
  z-index: 2;
}

.cf7 {
  padding-bottom: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}
.cf7 .site-heading-wrap {
  margin-bottom: 30px;
}
.cf7 p {
  color: #454545;
  margin-bottom: 40px;
}
.cf7 .form-wrap-inner,
.cf7 div.wpcf7-response-output {
  margin: 0 auto;
}
.cf7 .form-wrap {
  max-width: 630px;
  margin: auto;
  position: relative;
}
.cf7 .form-wrap-inner {
  width: 100%;
}
.cf7 .form-row {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cf7 .form-row > div {
  margin-bottom: 5px;
  width: calc(50% - 11px);
}
.cf7 .form-row-full > div {
  width: 100%;
}
.cf7 .form-row:first-child {
  margin-bottom: 0;
}
.cf7 label {
  display: block;
}
.cf7 label > span {
  display: block;
}
.cf7 .input_txt {
  font-family: var(--font-family-default);
  font-weight: 400;
  font-size: 14px;
  background: transparent;
  text-transform: uppercase;
  display: block;
  height: 75px;
  line-height: 75px;
  color: #454545 !important;
  outline: none !important;
  width: 100%;
  border: none;
  border-bottom: thin solid #7f7f7f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cf7 .input_txt.wpcf7-textarea {
  height: 100px;
  max-height: 100px;
  line-height: 1.5;
  padding-top: 15px;
}
.cf7 .cf7-btn-wrap {
  max-width: 204px;
  margin: 20px auto 0;
  position: relative;
  text-align: center;
}
.cf7 .cf7-btn-wrap .hp_cf7_ {
  background: #fff;
}
.cf7 .cf7-btn-wrap .ajax-loader {
  position: absolute;
  top: 14px;
  right: -70px;
}
.cf7 .cf7-btn-wrap:hover::before {
  opacity: 0.8;
}
.cf7 .cf7-btn-wrap:hover::after {
  width: calc(100% + 20px);
}
.cf7 span.wpcf7-not-valid-tip {
  font: 400 11px var(--font-family-default);
  position: absolute;
  left: 0;
  top: -4px;
  background: #fff;
  padding: 0.3em 0.5em;
  z-index: 2;
  border: thin solid red;
}
.cf7 .your-message span.wpcf7-not-valid-tip {
  top: -14px;
}
.cf7 div.wpcf7-response-output {
  font: 400 11px var(--font-family-default);
  position: absolute;
  width: calc(100% - 50px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #000;
  border-width: 1px;
  padding: 4px 3px;
  background: #fff;
}

#footer {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px;
}
#footer .container {
  max-width: 1171px;
}
#footer .row.top {
  margin-bottom: 50px;
}
#footer .row.top h2 {
  font-family: var(--font-family-title);
  font-size: 26px;
  text-transform: capitalize;
  font-weight: normal;
  margin: 0 0 30px;
}
#footer .row.top .right-panel {
  display: flex;
}
#footer .row.top .right-panel > div {
  width: 50%;
}

.footer-wrap {
  background: rgba(255, 255, 255, 0.95);
  padding: 65px 0 40px;
}

.footer-logos {
  margin-bottom: 70px;
  text-align: center;
}
.footer-logos img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.footer-smi .d-flex {
  align-items: center;
  justify-content: center;
}
.footer-smi a {
  width: 41px;
  height: 41px;
  border: thin solid #224387;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #224387;
  margin: 0 9px;
}
.footer-smi a:hover {
  color: #fff;
  background: #224387;
}

.footer-contact {
  margin-left: 50px;
}
.footer-contact .footer-contact-wrap > div {
  margin-bottom: 25px;
}
.footer-contact .footer-contact-wrap .contact-wrap span {
  margin-right: 5px;
}
.footer-contact .footer-contact-wrap .email-wrap a {
  align-items: center;
}
.footer-contact strong {
  text-transform: uppercase;
  color: #4984b8;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 15px;
}
.footer-contact a, .footer-contact p {
  display: flex;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #000;
  line-height: 1.2;
  font-weight: 300;
  transition: 0.3s;
}
.footer-contact a:last-child, .footer-contact p:last-child {
  margin-bottom: 0;
}
.footer-contact a span:not(.text), .footer-contact p span:not(.text) {
  font-weight: bold;
}
.footer-contact a i, .footer-contact p i {
  color: #002060;
  font-size: 14px;
  margin-right: 15px;
}
.footer-contact a i.ai-envelope-f, .footer-contact p i.ai-envelope-f {
  font-size: 11px;
}
.footer-contact a i.ai-font-location-c, .footer-contact p i.ai-font-location-c {
  font-size: 20px;
}
.footer-contact a:hover {
  color: #4984b8;
}
.footer-contact a:hover i {
  color: #002060;
}

.footer-menu {
  padding-left: 60px;
}
.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer-menu li {
  display: block;
  margin: 0 0 20px;
  padding: 0;
}
.footer-menu li:last-child {
  margin-bottom: 0;
}
.footer-menu li ul {
  display: none;
}
.footer-menu a {
  display: inline-block;
  font-weight: 300;
  color: #1c1c1c;
  text-transform: uppercase;
  transition: 0.3s;
}
.footer-menu a:hover {
  color: #4984b8;
}

.footer-disclaimer {
  font-size: 13px;
  color: #454545;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  font-weight: 300;
}
.footer-disclaimer a {
  transition: 0.3s;
}
.footer-disclaimer a:hover {
  color: #4984b8;
}

.footer-copyright {
  border-top: thin solid rgba(82, 82, 82, 0.2);
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: #111;
  line-height: 1.3;
  margin-bottom: 20px;
  padding-top: 30px;
}
.footer-copyright .text-dark {
  color: #111;
}
.footer-copyright span, .footer-copyright a:not(.text-dark) {
  color: #4984b8;
  font-weight: 400;
}
.footer-copyright a {
  transition: color 0.3s;
}
.footer-copyright a:hover {
  color: #012161 !important;
}

.mls-icon-wrap {
  text-align: center;
  font-size: 0;
}
.mls-icon-wrap i {
  color: #000;
  vertical-align: middle;
  font-size: 38px;
  display: inline-block;
}
.mls-icon-wrap i.ai-eho {
  margin-right: 10px;
  font-size: 31px;
}

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
  position: relative;
  width: 100%;
}

.ip-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.ip-banner canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 250px;
  background-color: var(--dark);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ip-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ip-banner h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.ip-banner h1 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}



.post-page-contact-us .aios-cu-main .aios-cu-smi{
  margin-left: 0 !important;
}

.post-page-contact-us .aios-cu-smi a{
  margin: 0 10px !important;
}



/* Adjust minimum height of page area */
#content-sidebar, #content-full {
  min-height: 500px;
  margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
  width: 67.08%;
}

#content-full #content {
  width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
  width: 30.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
  padding-left: 15px;
  padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
  margin-left: -15px;
  margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4, aside h4,
#content p, aside p,
#content blockquote, aside blockquote,
#content ul, aside ul,
#content fieldset, aside fieldset,
#content form, aside form,
#content ol, aside ol,
#content dl, aside dl,
#content dir, aside dir,
#content menu, aside menu {
  line-height: 1.7;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
  font-family: var(--font-family-title);
  font-weight: normal;
  font-size: 32px;
  color: #000;
  margin-top: 0;
  text-transform: uppercase;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
  font-family: var(--font-family-title);
  font-weight: normal;
  font-size: 28px;
  color: #000;
  font-weight: 600;
}

/* contact us */
.cu-ai-contact-wrap .aidefcf-cl2 span:first-child {
  float: none;
  width: 100%;
}

.cu-ai-contact-wrap .aidefcf-cl2 label {
  float: right;
  width: 48.7%;
  position: relative;
}

.cu-ai-contact-wrap .aidefcf-cl2 label:first-child {
  float: left;
  width: 48.7%;
}

/* code sniffer support */
#HTMLCS-settings-use-standard-select {
  color: #000;
}

body.error404 .wpcf7-response-output {
  text-align: center;
}

body #pojo-a11y-toolbar {
    bottom:0 !important;
    top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}
button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}


/*keyframes | Custom animations*/
.animated.cu-fadeInUp {
  -webkit-animation-name: cu-fadeInUp;
  animation-name: cu-fadeInUp;
}

.animated.cu-fadeInRight {
  -webkit-animation-name: cu-fadeInRight;
  animation-name: cu-fadeInRight;
}

.animated.cu-fadeInLeft {
  -webkit-animation-name: cu-fadeInLeft;
  animation-name: cu-fadeInLeft;
}

.animated.cu-fadeInDown {
  -webkit-animation-name: cu-fadeInDown;
  animation-name: cu-fadeInDown;
}

@-webkit-keyframes cu-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes cu-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes cu-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes cu-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes cu-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes cu-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes cu-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes cu-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.post-page-resources #inner-page-wrapper h2 {
    font-size: 50px;
    font-family: 'Charm', cursive;
    line-height: 1;
    margin: 0 !important;
    letter-spacing: 1px;
}

.post-page-resources .entry.entry-content p.p6 {
    font-family: 'Charm', cursive;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.post-page-communities #content .aios-communities-maven .aios-communities-maven-lists {
    justify-content: center;
}

.post-page-meet-the-team #agents-results .agents-pagination .page-numbers:hover {
    border: solid 1px #c1b283;
}

.post-page-meet-the-team #agents-results .agents-pagination .page-numbers.current {
  background: #fff;
}

.post-page-meet-the-team #agents-results .agents-pagination .page-numbers {
    border: solid 1px #c1b283;
    background: #c1b283;
}

.post-page-meet-the-team #agents-results .agents-pagination .page-numbers:hover {
    color: #c1b283;
}

.post-page-hometown-heroes #content .entry{
    margin: 0 auto;
    text-align: center;
}

.post-page-hometown-heroes #content .entry p img{
  margin: 0 50px;
}

.post-page-investment-division .entry.entry-content a,
.post-page-virtual-home-buying-options .entry.entry-content a,
.post-page-covid-19 .entry.entry-content a,
.post-page-commercial-properties .entry.entry-content a,
.post-page-educational-videos .entry.entry-content a,
.post-page-preferred-vendors .entry.entry-content a,
.post-page-welcome-to-florida .entry.entry-content a,
.post-page-financing .entry.entry-content a {
  color: #224387;
  transition: all 250ms ease;
}
.post-page-preferred-vendors .entry.entry-content a:hover,
.post-page-financing .entry.entry-content a:hover {
  color: #000;
}
/*NEW CSS UPD 11-22-2022*/
/*
#listings-results .listings-grid .listings-col:hover .listings-footer{
        background: #4984b8 !important;
}
*/

.post-page-search .entry-content .mt-10 a.btn {
  text-align: initial;
  white-space: initial;
}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

.ip-financing {
    max-width: 350px;
    margin: 0 auto 60px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 15px;
}

.ip-financing-line {
    border: 1px solid #999;
}

.ip-financing-line {
    border: 1px solid #999;
    margin-top: 10px;
}


.footer-smi .d-flex:nth-child(2) img {
  /* margin: 40px 1em; */
  margin: 20px auto;
  max-width: 400px;
  width: 100%;
}

.post-page-new-construction a.view-nco {
  color: #23527c;
  transition: 0.3s;

}
.post-page-new-construction a.view-nco:hover {
  color: #000;
}

.footer-menu img {
  margin-top: 25px;
}

.post-page-blogs .entry.entry-content article {
    border-bottom: 1px dotted #000;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.post-page-blogs .entry.entry-content article:last-child {
    border: none;
}

.post-page-blogs #content .archive-thumbnail img {
  width: 90%;
}

#hp-testimonial .testimonial-slide span,
.ai-minimalist-testimonials-lists .ai-minimalist-testimonials-list a h3,
.aiosp-wrap div[class*=ai-minimalist-testimonials-results-popup-] h3 {
  display: none;
}
.post-page-about #inner-page-wrapper #breadcrumbs {
  padding: 0;
}
.post-page-about #inner-page-wrapper #agents-results .agent-top {
  margin: 0 auto;
}
.post-page-financing #content .ip-financing img {
  height: 150px;
  object-fit: cover;
  object-position: top;
}

#hp-about, #hp-communities, #hp-mentorship, #ftr-cf7, #footer{
  display: none;
}

#hp-team, #news-ig, #hp-testimonial{
  opacity: 0;
}

/*9-21-2023*/
body.single-aios-agents .wpcf7 form .wpcf7-response-output{
    text-align: center;
}
body.post-page-educational-videos #main-wrapper{
    overflow-x: hidden;
}
body.post-page-meet-the-team #content #agents-results .agents-button{
    border: 2px solid #4984b8;
    color: #4984b8;
}
body.post-page-meet-the-team #content #agents-results .agents-button:hover {
    border-color: #4984b8;
    background: #4984b8;
    color: #fff;
}
/*9-21-2023*/