/*
Theme Name: Terri Kelley Group
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: "Poppins", sans-serif;
  --font-size-default: 15px;
  --font-size-title: 18px;
  --font-color-default: #000000;
  --font-color-title: #6c757d;

  /** Use for input, button, and any other element */
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
}

/*******************************************************
*
* 2. Navigation
*
*******************************************************/

/*#region Sub Menu */
#nav .sub-menu {
  position: absolute;
  width: 100%;
  min-width: 150px;
  text-align: center;
  font-weight: 600;
  opacity: 0;
  font-size: 12px;
  letter-spacing: 0.05em;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#nav li:hover>.sub-menu,
#nav li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

#nav li:nth-child(2) .sub-menu {
  min-width: 210px;
}

#nav li:nth-child(5) .sub-menu {
  min-width: 176px;
}

#nav>li>.sub-menu {
  left: 50%;
  transform: translate(-50%, 20px);
  padding-top: 18px;
}

#nav .sub-menu .sub-menu #fnav .sub-menu .sub-menu {
  top: 0;
  margin-left: 100%;
}

#nav li {
  position: relative;
  display: inline-block;
}

#nav .sub-menu a {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  display: block;
  text-align: center;
  padding: 12px 0;
  margin: 1px 6px 0;
}

#nav .sub-menu a:hover {
  background: rgb(45, 122, 187);
  background: linear-gradient(90deg,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%);
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

#nav .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
  text-align: left;
}

#nav li:hover>.sub-menu {
  display: block;
}

#nav .sub-menu li {
  position: relative;
  width: 100%;
  background: transparent;
}

#nav .sub-menu .sub-menu>li:first-child:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #ffffff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: -1;
  opacity: 0;
}

#nav .sub-menu li:hover .sub-menu>li:first-child:before {
  opacity: 1;
}

/*#endregion Sub Menu */

/*******************************************************
*
* 3. Custom CSS
*
*******************************************************/

/*#region Global */

body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  background: #ffffff;
  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.is-open {
  overflow: hidden;
}

a,
a:hover,
a:visited,
a:focus,
input,
input:focus,
textarea,
textarea:focus,
select:focus,
select {
  outline: none !important;
  text-decoration: none !important;
}

.slick-slide {
  outline: none !important;
}

#main-wrapper {
  overflow: hidden;
}

.font-zero {
  font-size: 0;
}

section {
  min-height: 122px;
  position: relative;
}

.canvas-wrapper {
  position: relative;
}

canvas {
  display: block;
  width: 100%;
}

.canvas-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* site title */
.site-title {
  display: inline-block;
}

.site-title h3 {
  color: #56c5ea;
  font-weight: 900;
  font-size: 65px;
}

.site-title h2 {
  color: #2596be;
  font-size: 75px;
  text-transform: uppercase;
  font-weight: 300;
}

/* site btn */
.site-btn-primary {
  font-size: 15px;
  border: solid 1px #001323;
  border-bottom: none;
  letter-spacing: 0.15em;
  position: relative;
  width: 100%;
  max-width: 192px;
  min-height: 50px;
  z-index: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #072841;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.site-btn-primary:hover {
  border: 1px solid transparent;
  border-image: linear-gradient(to right,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%) 1;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.site-btn-primary::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background: rgb(45, 122, 187);
  background: linear-gradient(90deg,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%);
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.site-btn-primary:hover::before {
  height: 100%;
}

/* Site title primary */

/* Pojo */

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;
}

.ip-banner .entry-title {
  display: none;
}

/* Contact Form Validation */
.contact-form div.wpcf7-response-output {
  font-size: 14px;
  text-align: center;
  position: absolute;
  font-family: "Poppins", sans-serif;
  bottom: -42px;
  margin: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
}

.contact-form span.wpcf7-not-valid-tip {
  font-size: 15px;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form div.wpcf7 .ajax-loader {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -19px;
}

.contact-form .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  width: 180px;
}

.wpcf7-spinner {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}



/*#endregion Global */

/*******************************************************
*
* 4. IP Styles
*
*******************************************************/

/*#region Ip */
.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);
  /*background: #fff;
  opacity: 0.30;*/
}

.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;
}

/* 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: 77.08%;
}

#content-full #content {
  width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
  width: 20.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 {
  color: #072841
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
  color: #072841
}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
/*#endregion Ip */

/*#region Header */

header.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1010;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 24px 7%;
}

/* header Grid */

.header-container {
  display: grid;
  grid-template-columns: repeat(100, 1fr);
  align-items: center;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-left {
  grid-column: 8/21;
}

.navigation {
  align-items: center;
}

.header-logo-right {
  /* grid-column: 86/-8; */
}

.header-logo-right.header-logo img {
  max-width: 115px;
}

.header-logo img {
  max-width: 100%;
}

.header .navigation #nav {
  font-size: 12px;
  letter-spacing: 0.050em;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  /* gap: 54px; */
  justify-content: flex-end;
}

.header .navigation #nav>li>a:hover {
  color: #fff;
}

#nav>li {
  padding: 10px 0;
}

#nav>li:not(:last-child) {
    /*margin-right: 35px;*/
    margin-right: 25px;
}

#nav>li::before {
  content: "";
  position: absolute;
  background: #e9f1ef;
  width: 100%;
  max-width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#nav>li:hover::before {
  opacity: 1;
  max-width: 100%;
}

#nav>li::after {
  content: "";
  position: absolute;
  background: #e9f1ef;
  width: 100%;
  max-width: 0;
  height: 2px;
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#nav>li:hover::after {
  opacity: 1;
  max-width: 100%;
}

/* Header Contact */
.header-contact {
  position: relative;
  display: flex;
  justify-content: flex-end;
  color: #ffffff;
  gap: 32px;
  margin-left: 50px;
}

.header-contact a:hover {
  color: #84ddff;
}

.header-contact::before {
  content: "";
  position: absolute;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 100vw;
  max-height: 30px;
  z-index: 1;
}

.navigation {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-left: auto;
  margin-right: 50px;
}

/* Fixed header */
.header.show-fixed {
  pointer-events: all;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1010;
  opacity: 1;
  background: rgb(45, 122, 187);
  background: linear-gradient(90deg,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%);
  margin-top: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 6px 7%;
}

.header.show-fixed #nav .sub-menu {
  padding-top: 46px;
}

/*#endregion Header */

/*#region Slideshow Region */
.region-slideshow-container {
  position: relative;
}

.slide-content {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  text-align: center;
  max-width: 710px;
  margin: 0 auto;
}

.slide-content h2 {
  font-weight: 300;
  font-size: 65px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 26px;
}

.slide-content .slide-smi {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 58px;
}

.slide-content .slide-cta {
  justify-content: space-between;
  display: flex;
}

.slide-content .slide-cta .site-btn-primary {
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0.3em;
  max-width: 340px;
  min-height: 78px;
  border: 1px solid #ffffff;
  border-bottom: none;
}

.slide-content .slide-cta .site-btn-primary:hover {
  border: 1px solid transparent;
  border-image: linear-gradient(to right,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%) 1;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide-content .slide-smi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 28px;
  color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide-content .slide-smi a:hover {
  background: rgb(45, 122, 187);
  background: linear-gradient(90deg,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%);
  border: 1px solid transparent;
}

.cycloneslider-slide-image::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  pointer-events: none;
}

.cycloneslider-slide-image::after {
  content: "";
  position: absolute;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.39539565826330536) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.5970763305322129) 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  pointer-events: none;
}

/*#endregion Slideshow Region */

/*#region Quick Search Region */

.hp-quick-search {
  background: #072841;
  font-size: 0;
  z-index: 5;
}

.region-quick-search-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 0 24px;
}

.quick-search-form .site-title h3 {
  font-size: 30px;
}

.quick-search-form .site-title h2 {
  color: #ffffff;
  font-size: 40px;
}

.quick-search-form select,
.quick-search-form input {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #ffffff;
  height: 40px;
  background: transparent;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
}

.quick-search-form select,
.quick-search-form input {
  border: 0;
  border-bottom: 1px solid #d0cece;
}

.hp-quick-search .quick-search-form select {
  background: transparent url(images/arrow-down.png) no-repeat scroll right 12px center;
}

.quick-search-form select option {
  color: #ffffff;
  background: #000;
}

.eighth-qs-item input {
  border-bottom: none;
}

.eighth-qs-item .site-btn-primary,
.qs-advanced .site-btn-primary {
  font-size: 13px;
  letter-spacing: 00.05em;
  color: #ffffff;
  min-height: 40px;
  border: 1px solid #ffffff;
  border-bottom: none;
}

.eighth-qs-item .site-btn-primary:hover,
.qs-advanced .site-btn-primary:hover {
  border: 1px solid transparent;
  border-image: linear-gradient(to right,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%) 1;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hp-quick-search p {
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.07em;
  color: #fff;
  text-align: right;
  margin: 0 auto;
}

/*#endregion Quick Search Region */

/* New Construction */


.nc-container {
  font-size: 0;
  display: block;
  position: relative;
  padding: 50px 0;
}

.nc-container .custom-container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.nc-main .site-title-wrapper {
  justify-content: center;
  margin-bottom: 50px;
}

.nc-main {
  display: block;
  position: relative;
}

.nc-item {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% / 3);
  padding: 0 30px;
}

.nc-slide {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
}

.nc-slide:not(.slick-initialized) .nc-item:nth-child(n+3) ~ div {
  display: none;
}

.nc-item a {
  display: block;
  position: relative;
}

.nc-img, .nc-img canvas {
  display: block;
  position: relative;

}

.nc-img canvas {width: 100%;height: 100%;}

.nc-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.nc-img {
  background-color: #56c5ea;
  overflow: hidden;
}

.nc-item a:hover .nc-img img {
  opacity: .5;
}


.nc-slide-holder {
  display: block;
  position: relative;
  margin: 0 -30px;
}

.nc-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc(100% + 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.nc-arrows button {
  display: inline-block;
  vertical-align: middle;
  border: none;
  background-color: transparent;
  font-size: 25px;
  line-height: 1;
  color: #2d7abb;
  font-weight: 700;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  pointer-events: auto;
}

.nc-arrows button:hover {
  opacity: .75;
}

.nc-slide:not(.slick-initialized) + .nc-arrows {
  display: none;
}

section.hp-new-construction{
  min-height: 0;
}

/* End of New Construction */

/*#region Map Region */
.region-maps-container {
  position: relative;
}

/* map content */
.maps-content {
  display: inline-block;
  position: absolute;
  top: calc(50% - -30px);
  left: 10%;
  transform: translateY(-50%);
  z-index: 5;
}

.maps-content .site-title-wrapper {
  margin-bottom: 60px;
}

.maps-selector {
  display: flex;
}

.maps-list:nth-child(1) {
  flex: 7;
}

.maps-list:nth-child(2) {
  flex: 4.5;
}

.maps-list .maps-btn:not(:last-child) {
  margin-bottom: 20px;
}

.maps-list:nth-child(1) .maps-btn {
  max-width: 170px;
}

.maps-list:nth-child(2) .maps-btn {
  max-width: 132px;
}

.maps-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  min-height: 42px;
  padding-left: 32px;
  font-size: 20px;
  color: #232323;
  letter-spacing: 0.05em;
  border: none;
  background: linear-gradient(to right, #ffffff 70px, #232323 70px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.maps-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 70px;
  background: rgb(9, 33, 59);
  background: linear-gradient(45deg,
      rgba(9, 33, 59, 1) 24%,
      rgba(34, 94, 146, 1) 77%,
      rgba(41, 112, 173, 1) 100%);
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.maps-btn:hover {
  background: unset;
  color: #ffffff;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.maps-btn.active {
  color: #ffffff;
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.maps-btn.active::before {
  background: #56c5ea;
  max-width: 100%;
}

.maps-btn:hover::before {
  background: #56c5ea;
  max-width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* map */
.map-inner {
  position: relative;
  width: 1600px;
}

.map-inner img {
  margin: 0 auto;
  display: block;
}

img.img-responsive.map-trans {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.map-hover-item {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.325s ease-in-out;
  -moz-transition: all 0.325s ease-in-out;
  -ms-transition: all 0.325s ease-in-out;
  transition: all 0.325s ease-in-out;
  transform: translateZ(0) !important;
}

.map-hover-item.active {
  opacity: 1;
}

.map-hover-item.map-hover-1 {
  top: 340px;
  left: 888px;
}

.map-hover-item.map-hover-2 {
  top: 467px;
  left: 858px;
}

.map-hover-item.map-hover-3 {
  top: 555px;
  left: 949px;
}

.map-hover-item.map-hover-4 {
  top: 490px;
  left: 1048px;
}

.map-hover-item.map-hover-5 {
  top: 361px;
  left: 1008px;
}

.map-hover-item.map-hover-6 {
  top: 193px;
  left: 988px;
}

.map-hover-item.map-hover-7 {
  top: 58px;
  left: 1079px;
}

.map-det-font {
  position: absolute;
  opacity: 1;
  color: #ffffff;
  letter-spacing: 0.07em;
  font-weight: 500;
  -webkit-transition: all 0.325s ease-in-out;
  -moz-transition: all 0.325s ease-in-out;
  -ms-transition: all 0.325s ease-in-out;
  transition: all 0.325s ease-in-out;
  transform: translateZ(0) !important;
}

.map-det-1 {
  top: 435px;
  right: 580px;
}

.map-det-2 {
  top: 512px;
  right: 588px;
}

.map-det-3 {
  top: 644px;
  right: 526px;
}

.map-det-4 {
  top: 532px;
  right: 408px;
}

.map-det-5 {
  top: 424px;
  right: 445px;
}

.map-det-6 {
  top: 297px;
  right: 484px;
}

.map-det-7 {
  top: 114px;
  right: 374px;
}

.map-det-8,
.map-det-9,
.map-det-10 {
  color: #1f2020;
}

.map-det-8 {
  top: 162px;
  right: 518px;
}

.map-det-9 {
  top: 274px;
  right: 319px;
}

.map-det-10 {
  top: 620px;
  right: 318px;
}

.map-details>div.active {
  color: #fff;
}

/*#endregion Map Region */

/*#region Welcome Region */
.hp-welcome {
  margin-bottom: 54px;
}

.hp-welcome .welcome-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hp-welcome .welcome-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 14%,
      rgba(255, 255, 255, 0) 70%,
      rgba(255, 255, 255, 0) 100%);
}

.hp-welcome .welcome-bg canvas {
  width: 100%;
  height: 100%;
}

.welcome-primary-section a {
  display: block;
  position: relative;
  height: 100%;
}

.welcome-primary-section a img {
  height: 100%;
}

.welcome-primary-section a .agent-img {
  position: relative;
}

.welcome-primary-section a .agent-img::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: rgba(37, 150, 190, 0.4);
}

.welcome-primary-section a:hover .agent-img::before {
  opacity: 1;
}

.welcome-primary-section a::after {
  content: "";
  position: absolute;
  background: url(images/play-btn.png) no-repeat;
  width: 170px;
  height: 170px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.welcome-primary-section a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(9, 33, 59);
  background: linear-gradient(45deg,
      rgba(9, 33, 59, 1) 24%,
      rgba(34, 94, 146, 1) 77%,
      rgba(41, 112, 173, 1) 100%);
  top: 54px;
  left: -54px;
  z-index: -1;
}

.welcome-secondary-section {
  position: relative;
}

.welcome-secondary-section .site-title {
  margin-bottom: 26px;
}

.welcome-secondary-section .welcome-item {
  position: relative;
  padding: 0 48px;
  min-height: 656px;
  background: #ffffff;
}

.hp-welcome .welcome-secondary-section p:nth-of-type(1) {
  color: #072841;
  font-size: 17px;
  letter-spacing: 0.032em;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hp-welcome .welcome-secondary-section p:nth-of-type(2),
.hp-welcome .welcome-secondary-section p:nth-of-type(3) {
  color: #000000;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 20px;
}

.hp-welcome .welcome-secondary-section p:nth-of-type(3) {
  margin-bottom: 44px;
}

.welcome-secondary-section .welcome-btn {
  font-size: 42px;
  border: solid 1px #072841;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 382px;
  min-height: 90px;
  font-weight: 300;
  z-index: 1;
  text-transform: lowercase;
  background: #072841;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 10px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.welcome-secondary-section .welcome-btn span {
  font-weight: 800;
  color: #56c5ea;
}

.welcome-secondary-section .welcome-btn:hover span {
  color: #072841;
}

.welcome-secondary-section .welcome-btn:hover {
  border: 1px solid #56c5ea;
  background: #56c5ea;
}

/*#endregion Welcome Region */

/*#region Properties Region */

.hp-properties {
  padding: 80px 0 80px;
}

.hp-properties .properties-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hp-properties .properties-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 10%,
      rgba(255, 255, 255, 0) 70%,
      rgba(255, 255, 255, 1) 90%);
}

.hp-properties .properties-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgb(255, 255, 255, .4);
}

.hp-properties .properties-bg canvas {
  width: 100%;
  height: 100%;
}

.region-properties-container>.site-btn-primary {
  max-width: 260px;
  margin: 0 auto;
}

.hp-properties .site-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.hp-properties .site-title-wrapper .site-title h3 {
  text-align: left;
}

.hp-properties .properties-slick {
  margin-bottom: 76px;
}

.hp-properties .properties-slick .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  border: 3px solid #267b9e;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 68px;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
}

.hp-properties .properties-slick .slick-next {
  right: calc(17% - 114px);
}

.hp-properties .properties-slick .slick-prev {
  left: calc(17% - 114px);
}

.hp-properties .slick-list {
  padding: 0 17%;
  margin: 0 -16px;
}

.hp-properties .slick-slide {
  margin: 0 16px;
}

.hp-properties .slick-slide>div:not(:last-child) {
  margin-bottom: 0px;
}

.hp-properties .properties-item {
  position: relative;
  display: block !important;
}

.hp-properties .properties-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  border: 6px solid transparent;
  border-image: linear-gradient(to top,
      rgba(45, 122, 187, 1) 0%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 100%) 1;
}

.slick-slide.slick-current.slick-active .properties-item:hover::before {
  opacity: 1;
}

.hp-properties .properties-item::after {
  content: "";
  position: absolute;
  background: rgb(11, 31, 49);
  background: linear-gradient(180deg,
      rgba(11, 31, 49, 0) 0%,
      rgba(11, 31, 49, 0) 53%,
      rgba(11, 31, 49, 0.8911939775910365) 95%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hp-properties .properties-item {
  border: 4px solid transparent;
  border-bottom: none;
  border-top: none;
  border-image: linear-gradient(to top,
      rgba(45, 122, 187, 1) 0%,
      rgba(37, 150, 190, 1) 18%,
      rgba(37, 150, 190, 1) 85%,
      rgba(45, 122, 187, 1) 100%) 1;
}

.slick-slide.slick-current.slick-active .properties-item {
  border: none;
}

.hp-properties .properties-img img {
  filter: grayscale(1);
}

.hp-properties .properties-img::before {
  content: "";
  position: absolute;
  background: rgba(11, 31, 49, 0.75);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slick-slide.slick-current.slick-active .properties-img img {
  filter: none;
}

.slick-slide.slick-current.slick-active .properties-img::before {
  opacity: 0;
}

.slick-slide.slick-current.slick-active:hover .properties-img::before {
  opacity: 1;
}

.hp-properties .properties-content.content-primary {
  display: flex;
  justify-content: space-between;
  opacity: 1;
  max-width: 914px;
  padding: 0 15px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  width: 100%;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
}

.slick-slide.slick-current.slick-active:hover .properties-content.content-primary {
  opacity: 0;
}

.slick-slide .properties-content.content-primary {
  opacity: 0;
}

.slick-slide.slick-current.slick-active .properties-content.content-primary {
  opacity: 1;
}

.hp-properties .properties-content.content-primary .fp-content-left {
  flex: 8.54;
}

.hp-properties .properties-content.content-primary .fp-content-right {
  flex: 1.46;
  text-align: end;
}

.hp-properties .properties-content h4 {
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hp-properties .properties-content h3 {
  font-size: 40px;
  font-weight: 600;
  color: #ffff;
  margin-bottom: 12px;
}

.hp-properties .properties-content p {
  text-transform: uppercase;
  color: #ffff;
  letter-spacing: 0.03em;
}

.hp-properties .properties-content .fp-location p {
  font-size: 18px;
  margin-bottom: 16px;
}

.hp-properties .properties-content .bbs {
  display: flex;
  gap: 38px;
  align-items: center;
}

.hp-properties .properties-content .bbs > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-properties .properties-content .bbs p {
  font-size: 15px;
  width: 100%;
}

.hp-properties .properties-content .site-btn-primary {
  color: #ffffff;
  border: 1px solid #ffffff;
  border-bottom: none;
}

.hp-properties .properties-content .site-btn-primary:hover {
  border: 1px solid transparent;
  border-image: linear-gradient(to right,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%) 1;
}

.hp-properties .properties-content.content-secondary .site-btn-primary {
  border: 1px solid transparent;
  border-image: linear-gradient(to right,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%) 1;
}

.hp-properties .properties-content.content-secondary .site-btn-primary::before {
  height: 100%;
  width: 100%;
  border: 1px solid transparent;
  border-image: linear-gradient(to right,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%) 1;
}

.hp-properties .properties-content.content-secondary {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hp-properties .properties-content.content-secondary .bbs {
  justify-content: center;
  margin-bottom: 32px;
}

.hp-properties .properties-item:hover .properties-content.content-secondary {
  opacity: 1;
}

.hp-properties .properties-content.content-secondary h3 {
  font-size: 60px;
}

.hp-properties .properties-content.content-secondary h4 {
  font-size: 45px;
}

.hp-properties .properties-content.content-secondary .fp-location p {
  font-size: 25px;
  margin-bottom: 40px;
}


.hp-properties .properties-content.content-secondary .bbs p {
  font-size: 22px;
}

.hp-properties .properties-content.content-secondary .site-btn-primary {
  margin: 0 auto;
}

.hp-properties .site-title-wrapper {
  justify-content: center;
}

/*#endregion Properties Region */

/*#region Social Region */
.hp-social {
  padding: 60px 24px;
}

.hp-social .social-wrapper {
  max-width: 1290px;
  margin: 0 auto;
}

.social-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  cursor: pointer;
}

.hp-social .social-img::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hp-social .social-item:hover .social-img::before {
  opacity: 1;
}

.social-image::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: rgba(37, 150, 190, 0.78);
}

.social-image:hover::before {
  opacity: 1;
}

.hp-social .social-image .social-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  position: absolute;
  font-size: 23px;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;

}

.hp-social .social-image:hover .social-content {
  opacity: 1;
}

.hp-social .social-image .social-content span {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 10px;
  font-size: 18px;
}

.social-gallery-holder {
  padding-left: 41px;
  position: relative;
  min-height: 340px;
}

.social-gallery-image-container {
  gap: 9px !important;
}

.social-text p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 34px;
  text-align: right;
}

.site-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-btn {
  padding-left: 41px;
}

.social-side {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  gap: 14px;
}

.social-side span {
  font-size: 35px;
  color: #0066bf;
}

.social-side .social-side-btn {
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #010101;
}

.social-side .social-side-btn:hover {
  color: #56c5ea;
}

.social-side .social-line {
  display: block;
  background: #787878;
  height: 104px;
  width: 2px;
}

.social-tertiary-section .social-line {
  height: 94px;
}

.social-primary-section .site-btn-primary {
  max-width: 257px;
  margin: 56px auto 0;
}

.social-secondary-section .site-btn-primary {
  margin: 56px auto 0;
  max-width: 289px;
}

.social-tertiary-section .site-btn-primary {
  margin: 56px auto 0;
  max-width: 324px;
}

.region-social-container {
  padding-top: 76px;
}

.social-gallery-image-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1250px;
  grid-row-gap: 0px;
  grid-column-gap: 0px;
  margin: 0 auto;
}

.social-gallery-image-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1250px;
  grid-row-gap: 0px;
  grid-column-gap: 0px;
  margin: 0 auto;
}

.social-gallery-image-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1250px;
  grid-row-gap: 0px;
  grid-column-gap: 0px;
  margin: 0 auto;
}

/*#endregion Social Region */

/*#region Videos Region */
.hp-videos {
  padding: 90px 48px 80px;
}

.hp-videos .videos-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hp-videos .videos-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 24%,
      rgba(255, 255, 255, 1) 92%);
}

.hp-videos .videos-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgb(255, 255, 255, 0.6);
}

.hp-videos .videos-bg canvas {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}

.hp-videos .site-title h2 {
  font-size: 51.83px;
}

.hp-videos .site-title-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 54px;
}

.hp-videos .site-title-wrapper .yt-name {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: -18px;
}

.hp-videos .site-title-wrapper .yt-name h3 {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hp-videos .site-title-wrapper .site-btn-primary {
  max-width: 170px;
}

.region-videos-container {
  max-width: 1290px;
  margin: 0 auto;
}

.hp-videos .videos-slick {
  margin-bottom: 36px;
}

.hp-videos .videos-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 6px solid transparent;
  border-image: linear-gradient(to top,
      rgba(45, 122, 187, 1) 0%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 100%) 1;
}

.hp-videos .videos-item {
  position: relative;
  display: block !important;
}

.hp-videos .videos-slick .videos-img::before {
  content: "";
  position: absolute;
  background: rgba(11, 31, 49, 0.65);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hp-videos .videos-item:hover .videos-img::before {
  opacity: 1;
}

.hp-videos .videos-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.videos-slick-body .slick-list {
  margin: 0 -20px;
}

.videos-slick-body .slick-slide {
  margin: 0 20px;
}

.hp-videos .videos-slick-body .videos-item::before {
  border: 6px solid #cccccc;
}

.videos-slick-body .videos-img::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.videos-slick-body .videos-img img {
  filter: grayscale(1);
}

.videos-slick-body .videos-content img {
  max-width: 100px;
}

.videos-slick-body .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #6298c6;
  font-size: 20px;
  font-weight: 800;
}

.slick-arrow:hover {
  opacity: .7;
}

.videos-slick-body .slick-prev {
  left: -34px;
}

.videos-slick-body .slick-next {
  right: -34px;
}

.videos-slick-body .btn-playing {
  font-size: 17px;
  border: none;
  letter-spacing: 0.025em;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 50px;
  font-weight: 700;
  background: rgb(45, 122, 187);
  background: linear-gradient(90deg,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%);
  z-index: 5;
  opacity: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.videos-slick-body .slick-slide.slick-current.slick-active .videos-content {
  opacity: 0;
}

.videos-slick-body .slick-slide.slick-current.slick-active .videos-img img {
  filter: none;
}

.videos-slick-body .slick-slide.slick-current.slick-active.videos-item::before {
  border-image: linear-gradient(to top,
      rgba(45, 122, 187, 1) 0%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 100%) 1;
}

.videos-slick-body .slick-slide.slick-current.slick-active .btn-playing {
  opacity: 1;
}

/*#endregion Videos Region */

/*#region Work Region */
.region-work-container .work-item h3 {
  font-size: 70px;
  color: #2596be;
  font-weight: 400;
  font-style: normal;
}

.region-work-container .work-item h3 i {
  font-style: normal;
}

.region-work-container .work-item span {
  font-size: 30px;
  color: #2596be;
  font-style: normal;
  text-transform: uppercase;
}

.region-work-container .work-item p {
  font-size: 28px;
  color: #072841;
  font-weight: 700;
}

.work-content {
  display: flex;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}

.work-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 248px;
  height: 217px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
}

section.hp-work .site-title {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
  display: block;
}

section.hp-work .site-title h2 {
  font-size: 70px;
}

.work-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.46;
}

.work-bg canvas {
  width: 100%;
  height: 100%;
}

.work-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 16%,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0) 100%);
}

.region-work-container {
  padding: 73px 0 124px;
}

/*#endregion Work Region */

/*#region Testimonial Region */

.testimonials-primary-section {
  margin-top: 26px;
  margin-bottom: -120px;
  z-index: 2;
  padding: 70px 0 58px;
  background: #ffffff;
  box-shadow: 0px 0px 50px -20px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 50px -20px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 50px -20px rgba(0, 0, 0, 0.75);
}

.hp-testimonials .testimonials-slick {
  max-width: 1250px;
  margin: 0 auto;
}

.hp-testimonials .slick-list {
  margin: 0 -0px;
}

.hp-testimonials .slick-slide {
  margin: 0 0px;
}

.hp-testimonials .slick-slide>div:not(:last-child) {
  margin-bottom: 0px;
}

.hp-testimonials .testimonials-item {
  position: relative;
  display: block !important;
}

.hp-testimonials .testimonials-content {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hp-testimonials .testimonials-content h3 {
  font-size: 26px;
  letter-spacing: 0.025em;
  font-weight: 700;
  color: #56c5ea;
  padding: 27px 0 48px;
}

.hp-testimonials .testimonials-content p {
  font-size: 22px;
  color: #072841;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
  max-width: 614px;
  line-height: 32px;
}

.testimonials-content h2 {
  font-size: 17px;
  color: #072841;
  line-height: 30px;
  text-align: center;
  max-width: 634px;
}

.testimonials-secondary-section .testimonials-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -60px;
  right: -65px;
  background: rgb(9, 33, 59);
  background: linear-gradient(45deg, rgba(9, 33, 59, 1) 24%, rgba(34, 94, 146, 1) 77%, rgba(41, 112, 173, 1) 100%);
}

.testimonials-secondary-section {
  padding-right: 65px;
}

.testimonials-secondary-section {
  margin-bottom: -60px;
}

.testi-btn .site-btn-primary {
  max-width: 257px;
}

.testi-btn {
  width: 375px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.testi-title h3 {
  position: relative;
}

.testi-title h3::before {
  position: absolute;
  content: "";
  width: 103px;
  height: 79px;
  top: -15px;
  right: 0;
  background: url(images/testi-qoute-title.png);
}

.testi-title {
  padding-bottom: 35px;
}

.testi-btn span {
  cursor: pointer;
}

/*#endregion Testimonial Region */

/*#region Contact Region */
.hp-contact {
  margin-top: 203px;
  padding: 67px 0 58px;
}

.hp-contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background: rgb(46, 120, 187);
  background: linear-gradient(83deg,
      rgba(46, 120, 187, 1) 0%,
      rgba(37, 150, 190, 1) 46%,
      rgba(46, 120, 187, 1) 100%);
}

.hp-contact {
  margin-top: 203px;
  padding: 67px 0 58px;
}

.hp-contact .site-title h2 {
  color: #ffffff;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-bg canvas {
  width: 100%;
  height: 100%;
}

.contact-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgb(0, 0, 0, 0.62);
}

.contact-form .form-md input,
.contact-form .form-lg textarea,
.contact-form .form-lg input {
  border: 0;
  border-bottom: solid 1px #ffffff;
  color: #fff;
}

.contact-form {
  position: relative;
  width: 100%;
  max-width: 1073px;
  margin: 0 auto;
  font-size: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 55px 141px 64px;
  z-index: 2;
}

.contact-form .form-md {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 34px;
  width: 50%;
}

.contact-form .form-md input,
.contact-form .form-lg input {
  width: 100%;
  min-height: 63px;
  text-transform: uppercase;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.contact-form .form-lg textarea {
  width: 100%;
  max-height: 82px;
  background: transparent;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  resize: none;
}

.contact-form .form-lg {
  position: relative;
  margin-bottom: 48px;
	text-align: center;
}

.contact-form .form-lg.fname {
  margin-bottom: 10px;
}

.contact-form .pad-left,
.contact-form .middle-pad-left {
  padding-right: 5px;
}

.contact-form .pad-right,
.contact-form .middle-pad-right {
  padding-left: 5px;
}

.form-btn-wrapper input {
  font-size: 15px;
  border: solid 1px #fff;
  border-bottom: solid 4px rgb(45, 122, 187);
  letter-spacing: 0.15em;
  position: relative;
  width: 100%;
  max-width: 192px;
  min-height: 50px;
  z-index: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: none;
  margin: 0 auto;
}

.form-btn-wrapper input:hover {
  border: none;
  background: rgb(45, 122, 187);
  background: linear-gradient(90deg,
      rgba(45, 122, 187, 1) 12%,
      rgba(40, 162, 205, 1) 50%,
      rgba(45, 122, 187, 1) 88%);
}

.contact-form .site-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 402px;
  justify-content: center;
  margin: 0 auto;
}

/*#endregion Contact Region */

/*#region Footer Region */
.footer a:hover {
  color: #56c5ea;
}

.footer-top h2 {
  font-size: 35px;
  color: #56c5ea;
  font-weight: 800;
}

.footer-logo img {
  margin: 0 auto;
}

.footer-logo img.exp {
  /*filter: invert(1) brightness(5);*/
}

.footer-logo img:not(:last-child) {
  margin-bottom: 20px;
}

.footer-contact span {
  font-size: 13px;
  color: #55c5ea;
}

.footernav {
  column-count: 2;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 32px;
  font-weight: 500;
}

.footernav a {
  color: #fff;
}

.footer-top p {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
}

.footer-contact a,
.footer-location p,
.footer-contact em.ai-mobile-phone {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

.footer-location p {
  text-transform: capitalize;
}

.footer-location,
.footer-email,
.footer-phone {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-location {
  align-items: flex-start;
}

.footer-phone span {
  font-size: 12px;
}

.footer-email span {
  font-size: 11px;
}

.footer-location span {
  font-size: 16px;
}

.footer-contact h2 {
  padding-bottom: 18px;
}

.footer-nav-holder h2 {
  padding-bottom: 9px;
}

.footer-email-holder,
.footer-phone-holder {
  padding-bottom: 21px;
}

.footer-smi a {
  font-size: 19px;
  color: #fff;
}

.footer-smi {
  display: flex;
  max-width: 110px;
  justify-content: space-between;
  padding-top: 14px;
}

footer.footer {
  position: relative;
  padding: 72px 0 53px;
  background: #072841;
}

.footer-text p {
  padding: 43px 49px 26px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 24px;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  margin: 0 49px;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 49px;
  font-size: 13px;
  padding-top: 15px;
  border-top: 1px solid #dadada;
  color: #fff;
}

.footer-copyright p a:last-child,
.footer-copyright .sitename {
  color: #56c5ea;
  font-weight: 700;
}

.footer-copyright a:hover {
  color: #18456e !important;
}

.footer-copyright .mls {
  font-size: 28px;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.11;
}

.footer-bg img {
  width: 100%;
  height: 100%;
}

.footer-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 16%,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0) 100%);
}

body.post-page-contact-us .hentry h1.entry-title {
    display: none;
}

.page-id-79 .aiosp-content.aios-popup-body,
.page-id-86 .aiosp-content.aios-popup-body {
    width: 60%;
    padding-top: 50px;
}

.page-id-79 .aiosp-content.aios-popup-body input.wpcf7-form-control,
.page-id-79 .aiosp-content.aios-popup-body textarea,
.page-id-86 .aiosp-content.aios-popup-body input.wpcf7-form-control,
.page-id-86 .aiosp-content.aios-popup-body textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    background: transparent;
    display: block;
    width: 100%;
    height: 29px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.26px;
    color: #7f7f7f;
    margin-top: 35px;
    padding: 0 9px;
    border-bottom: 1px solid #bebebe;
}

.page-id-79 .aiosp-content.aios-popup-body textarea,
.page-id-86 .aiosp-content.aios-popup-body textarea {
    height: unset;
}

.page-id-79 .aiosp-content.aios-popup-body .aios-contact-submit,
.page-id-86 .aiosp-content.aios-popup-body .aios-contact-submit {
    width: 250px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #000;
    margin: 10px auto;
}

.page-id-79 .aiosp-content.aios-popup-body form.wpcf7-form,
.page-id-86 .aiosp-content.aios-popup-body form.wpcf7-form {
    display: flex;
    flex-direction: column;
}

.page-id-79 .aiosp-content.aios-popup-body div#download-brochure span,
.page-id-86 .aiosp-content.aios-popup-body div#download-brochure span {
    font-size: 20px;
    color: #000;
    /* text-transform: uppercase; */
    text-align: center !important;
    width: 100%;
    /*     border: 1px solid #fff; */
    max-width: 313px;
    /* margin: 31px auto; */
    /* padding: 105px; */
    text-align: center;
}

.page-id-79 .aiosp-content.aios-popup-body div#download-brochure p,
.page-id-86 .aiosp-content.aios-popup-body div#download-brochure p {
  text-align: center;
}

:is(.page-id-79, .page-id-86) .aiosp-content.aios-popup-body div#download-brochure span .wpcf7-not-valid-tip {
  position: absolute;
  right: 0;
  left: auto;
  top: 60%;
  transform: translateY(-50%);
  font-size: 11px;
  width: auto;
}

.page-id-79 a.aios-content-popup,
.page-id-86 a.aios-content-popup {
    display: flex;
    flex-direction: column;
}

.page-id-79 a.aios-content-popup span,
.page-id-86 a.aios-content-popup span {
    margin: auto;
    width: 300px;
    text-align: center;
    padding: 10px;
    border: 1px solid #000;
    margin: 10px auto;
}

.aios-about-wrap .aios-about-title strong,
h1.entry-title,
h1.agent-entry-title,
#content .entry-title,
#content .archive-title,
#agents-results .agents-name a,
#aios-testimonials .aios-testimonials-lists h3,
#content h3,
.aidefcf-subtitle span{
    color: #072841 !important;
}
#agents-results .agents-name a:hover {
  color: #2b88c1 !important;
}

#agents-results .agents-contact,
#agents-single .agents-right .agents-description-line,
#agents-single .agents-img{
  background: #072841 !important;
}

#agents-results .agents-button,
#agents-single .agents-button,
.page-id-79 a.aios-content-popup span,
.page-id-86 a.aios-content-popup span{
  border-color: #072841 !important;
}

#agents-results .agent-top {
  display: none;
}

.page-id-35 h1.entry-title,
body h1.agent-entry-title {
    color: #072841 !important;
    font-size: 24px;
    text-transform: none;
    line-height: 1.7;
    font-weight: bolder;
}

.page-id-35 #inner-page-wrapper #breadcrumbs,
.single-aios-agents #inner-page-wrapper #breadcrumbs {
  padding: 0;
  margin: 1.12em 0;
  line-height: 1.7;
}

#agents-single .agents-left {
  padding-bottom: 30px;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
  color: #56c5ea;
}

.single-aios-agents .aiosp-wrap .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  top: 13px;
  left: auto;
  right: 0;
  width: auto;
  font-size: 10px;
}


#inner-page-wrapper {
  background: url(images/ip-bg-global.jpg) no-repeat center / cover;
}

.page-id-220 #main-wrapper main {
  background: url(images/ip-bg-global.jpg) no-repeat center / cover;
}

.page-id-35 #inner-page-wrapper {
  background: url(images/ip-bg-global.jpg) no-repeat bottom / contain;
}


#inner-page-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0);
  z-index: 0;
}

#inner-page-wrapper .container {
  position: relative;
  z-index: 100;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

#download-brochure h2 {
  font-size: 26px;
  text-align: center;
  margin: 0 0 20px;
}

/* About */
.aios-welcome .aios-welcome-right .aios-welcome-agent::before {
  content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(9, 33, 59);
    background: linear-gradient(45deg, rgba(9, 33, 59, 1) 24%, rgba(34, 94, 146, 1) 77%, rgba(41, 112, 173, 1) 100%);
    top: 54px;
    left: -54px;
    z-index: -1;
}

body .aios-welcome .aios-welcome-right {
  padding: 0 0 60px 60px;
  margin-left: 15px;
}

/* Meet the team */
body #agents-results .agents-col .agents-name {
  align-items: flex-start;
}

body #agents-results .agents-col:nth-child(even) .agents-name {
  align-items: flex-end;
}

#agents-results .agents-col:nth-child(1) .agents-main .agents-description,
#agents-results .agents-col:nth-child(1) .agents-main .agents-button {
  /*display: none;*/
}

/* Contact */
body .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form {
  border-color: rgb(45, 122, 187);
}

body .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-smi a:hover {
  color: rgb(45, 122, 187);
}

body .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form span.wpcf7-not-valid-tip {
  position: absolute;
  top: 13px;
  left: auto;
  right: 0;
  width: auto;
  font-size: 10px;
}

/* custom home valuation */
.custom-home-valuation .wpcf7-form-control {
  font-size: 14px !important;
  font-family: var(--font-family-default) !important;
  height: 80px !important;
}

.custom-home-valuation textarea.wpcf7-form-control {
  height: 256px !important;
}

.custom-home-valuation input[type="submit"] {
  background: rgb(45, 122, 187) !important;
  height: 90px;
}

.custom-home-valuation .aidefcf-title span {
  color: rgb(45, 122, 187);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.community-wrap a.site-button.button-primary {
    margin: 30px auto 0;
    display: block;
    max-width: 350px;
}

.post-page-meet-terri-kelley .aios-welcome .aios-welcome-text .aios-title-a {
  font-weight: 400;
  color: #072841;
  font-size: 50px
}

.post-page-contact-us .aios-cu-img {
    position: relative;
    padding-left: 30px;
}

.post-page-contact-us .aios-cu-img::before {
    content: "";
    position: absolute;
    width: 95%;
    height: 100%;
    background: rgb(9, 33, 59);
    background: linear-gradient(45deg, rgba(9, 33, 59, 1) 24%, rgba(34, 94, 146, 1) 77%, rgba(41, 112, 173, 1) 100%);
    top: 45px;
    left: -15px;
    z-index: -1;
    pointer-events: none;
}

.post-page-join-our-team .cu-fields.upload-cv input {
    font-size: 15px;
    height: 50px;
    padding-top: 20px;
}

.post-page-join-our-team .aios-cu-main form em {
    font-size: 12px;
    display: block;
    width: 100%;
}

.post-page-join-our-team .cu-fields-title {
    font-size: 15px;
    width: 100%;
    display: block;
}

.post-page-join-our-team .cu-fields.cu-textarea textarea {
  padding-top: 0 !important;
  height: 50px !important;
}

.post-page-join-our-team  .cu-fields.upload-cv p {
    margin: 0 !important;
}

.post-page-join-our-team  .use-floating-validation-tip .wpcf7-not-valid-tip {
    left: 0 !important;
    width: auto !important;
}

.post-page-buying-guide .ip-banner::before {
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.buying-guide-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.buying-guide-item-wrap {
  padding: 15px;
  width: 50%;
}

.buying-guide-item {
  position: relative;
  background: #fff;
  border: 1px solid #000;
  transition: all 0.3s ease;
}

.buying-guide-item ul {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px 40px !important;
  line-height: 1 !important;
  text-align: left;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  color: #fff;
}

.buying-guide-item ul p {
  display: none;
}

.buying-guide-item h3,
.buying-guide-item h2 {
  transition: all 0.3s ease;
}

.buying-guide-item:hover ul {
  opacity: 1;
  visibility: visible;

}

.buying-guide-item:hover h2,
.buying-guide-item:hover h3 {
  opacity: 0;
  visibility: hidden;
}

.buying-guide-item:hover {
  border-color: #56c5ea;
  background: #56c5ea;
}

.buying-guide-flex p {
  display: none;
}

/* Join our team */
.aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form select {
  font-size: 15px;
    width: 100%;
    font-weight: 300;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    height: 50px;
    color: inherit;
    font-family: inherit;
    padding: 0 0;
    border-radius: 0;
    resize: none;
    border: none;
    border-bottom: solid 1px #a5a5a5;
}

.aios-cu-wrap.aios-jot-wrap .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form {
  margin-left: auto;
  margin-right: auto;
}

/*#endregion Footer Region */

.single-aios-concierge em.ai-mobile-phone:not(:first-child) {
    margin-left: 20px;
}

/* IDX */
.post-page-aios-custom-idx-broker-results-page #IDX-registration .IDX-btn,
.post-page-aios-custom-idx-broker-results-page #IDX-registration .IDX-signupLoginToggle {
  background: #2d7abb !important;
}

.post-page-aios-custom-idx-broker-results-page .ui-dialog[aria-labelledby="ui-dialog-title-IDX-registration"] .ui-dialog-titlebar-close {
  color: #2d7abb !important;
}

/* Listings */
#listings-results .listings-grid .listings-col:hover .listings-footer,
#listings-results .listings-sort ul.ihf-sort-values li.active a,
#listings-results .listings-sort ul.ihf-sort-values li a:hover {
    background: #2d7abb !important;
}

#listings-results .listings-sort .sort-dropdown button:hover,
#listings-results .listings-sort .sort-view i.active,
#listings-results .listings-sort .sort-view i:hover {
  color: #2d7abb !important;
}

#listings-results .listings-sort .sort-dropdown button:hover:after {
    border-top-color: #2d7abb !important;
}

body #listings-details .listings-box,
body #listings-results .listings-grid .listings-col:hover .listings-footer,
body #listings-results .listings-table .listings-table-body .listings-table-label,
body #listings-results .listings-sort .listings-filter-tab a:hover,
body #listings-results .listings-sort .listings-filter-tab a.active {
    background: #2d7abb;
}

body #listings-details .listings-number span,
body #listings-details .listings-description h2,
body #listings-details .listings-accordion h2,
body #listings-details .listings-form h2 span,
body #listings-details .listings-form [type=submit],
body #listings-results .listings-pagination ul li a,
body #listings-results .listings-sort .sort-dropdown button:hover,
body #listings-results .listings-sort .sort-view i.active,
body #listings-results .listings-sort .sort-view i:hover,
body #listings-results .listings-list .listings-price,
body #listings-results .listings-table .listings-table-body .listings-price,
body #listings-details .listings-cta > li > a,
body #listings-details .listings-cta.white > li > a,
body #listings-details .listings-smi ul > li > a:hover,
body #listings-details .listings-accordion-title.active,
body #listings-details .listings-accordion-title:hover,
body #listings-details .listings-form button[type=submit],
body #listings-results .listings-sort .sort-dropdown > a:hover,
body #listings-results .listings-sort .sort-dropdown button:hover,
body #listings-results .listings-pagination ul li span.ellipse {
    color: #2d7abb;
}

body #listings-details .listings-cta > li > a.button-legacy.active,
body #listings-details .listings-cta > li > a.button-legacy:hover,
body #listings-details .listings-link-navigation-main,
body #ihf-main-container.ihf-modal-container .modal input[type=submit],
body #ihf-main-container.ihf-modal-container .modal button[type=submit],
body #ihf-main-container.ihf-modal-container .modal button#ihf-alert-popup-optout,
body #listings-results .listings-pagination ul li.active a,
body #listings-results .listings-pagination ul li a.active,
body #listings-results .listings-pagination ul li a:hover,
body #listings-results .listings-list .listings-link:hover,
body #listings-details .listings-cta > li > a.active,
body #listings-details .listings-cta > li > a:hover,
body #listings-results .listings-pagination ul li.active span {
    background: #2d7abb !important;
    border-color: #2d7abb !important;
}

body #listings-details .listings-cta.white > li > a.active,
body #listings-details .listings-cta.white > li > a:hover {
  background: #2d7abb;
  border-color: #fff;
}





.single-aios-communities #content-full .entry-title {
    width: 100%;
}

/* Search */
.page-id-507 #content ul {
  margin: 0;
}

/* Listings */
/* Listings */
body #listings-details .listings-slideshow:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgba(14, 14, 14, 0)), to(rgba(14, 14, 14, 1)));
  background: linear-gradient(to top, rgba(14, 14, 14, 0) 35%, rgba(14, 14, 14, 1) 100%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 10;
}

body #listings-details .listings-slideshow-text span {
  text-shadow: 0px 1px 3px rgb(0 0 0 / 90%);
}

.ui-dialog[aria-labelledby="ui-dialog-title-IDX-registration"] #IDX-registration .IDX-btn {
  background: #56c5ea !important;
}

.ui-dialog[aria-labelledby="ui-dialog-title-IDX-registration"] #IDX-registration .IDX-btn:hover {
  color: #fff !important;
  background: #18456e !important;
}

/* Testiomionials */
.ai-modern-testimonials-results-pagination ul li a,
.ai-modern-testimonials-results-pagination ul li span {
  color: #000 !important;
}

/* Areas */

.ai-communities-minimalist-wrap .container {
  padding: 0 6.25%;
  width: 100%;
}

.ai-communities-minimalist-wrap .container #breadcrumbs,
.ai-communities-minimalist-wrap .container .entry-title {
  padding-left: 1.56%;
  padding-right: 1.56%;
}

.ai-communities-minimalist-search .container .row {
  margin: 0;
  padding-left: 1.56%;
  padding-right: 1.56%;
}

.ai-communities-minimalist-search .ai-communities-minimalist-search-form {
  padding-left: 0;
}

.ai-communities-minimalist-search .ai-communities-minimalist-sort {
  padding-right: 0;
}

/* Communities */
.single-aios-communities #inner-page-wrapper #content > .container {
  position: relative;
  width: 100%;
  padding: 0 100px;
}

/* Listing */
.post-page-aios-custom-idx-broker-results-page-2 #content-full .entry-title {
  width: 100%;
}

#listings-details .listings-form textarea {
  padding-right: 35px !important;
}

/* About */
.page-id-220 #breadcrumbs,
.page-id-220 #content .entry-title  {
  width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Indiccators */
.ai-communities-minimalist-pagination .page-numbers.current,
.ai-modern-testimonials-results-pagination ul li span.current {
  text-decoration: underline;
}

.page-id-36 #inner-page-wrapper {
  padding-bottom: 50px;
}

.page-id-4472 #content .archive-subtitle {
  font-size: 15px;
}

.page-id-4472 canvas {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#tidio-chat-iframe{
  inset: auto 0px 95px auto!important;
}

#loom-companion-mv3{
  display: none;
}

body.page-id-16421 #inner-page-wrapper {
    margin-bottom: 0;
    padding-bottom: 30px;
}

#content img.wp-image-16967 {
  width: 100%;
}

h2.has-accent-line:after {
    content: '';
    display: block;
    background: #072841;
    height: 20px;
    margin: 20px 0 30px;
}

body.page-id-16421 .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form {
    margin-top: 0;
    padding-top: 19px;
}

body.home .wpcf7-form-control .captcha-image{
    background: #fff;
}
body.home .cf7ic_instructions {
    color: #000000;
    font-size: 12px;
}
.captcha-form {
	margin: 0 auto;
}
.captcha-form .cf7ic_instructions {
	font-size: initial;
}
.captcha-form .captcha-image .cf7ic_instructions span {
	color: red !important;
}

.cal-wrap {
	border-top: 1px solid #ccc;
	margin-bottom: 20px;
}
.cal-wrap a div {
	padding: 20px;
	min-height: 290px;
}
.cal-wrap a:hover div {
	background: rgba(26,26,26,0.1);
}
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #555555;
  border-right: 0;
}
.cal-wrap h3 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.cal-wrap h3 span {
	padding: 10px;
	border-radius: 50%;
}
.cal-green {
	background-color: rgb(23, 232, 133);
}
.cal-orange {
	background-color: rgb(255, 79, 0);
}
.cal-blue {
	background-color: rgb(0, 153, 255);
}
.cal-yellow {
	background-color: rgb(248, 228, 54);
}
.cal-violet {
	background-color: rgb(130, 71, 245);
}

#ai-minimalist-communities-wrap h3.h3-strong {
    color: #000 !important;
    text-align: unset;
    font-size: 15px;
    padding: 0;
    margin: 0;
    line-height: 25.5px;
    letter-spacing: normal;
}

/*
section.hp-quick-search,
section.hp-maps,
section.hp-welcome,
section.hp-social,
section.hp-contact,
section.hp-properties,
section.hp-videos,
section.hp-work.done-calculation,
footer.footer {
    display: none;
}*/


/*for blog category*/
.category-blog #content .entry::after {
	display: none;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

.img-wrapper canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.img-wrapper img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
	max-width: 100% !important;
}

.blog-wrap {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.category-blog #content .post {
	width: 33.33%;
	margin-bottom: 0;
	padding: 4px;
}
.category-blog #content .archive-thumbnail {
	float: none;
	width: 100%;
}

.category-blog #content .archive-content.archive-has-thumbnail {
	float: none;
	width: 100%;
}

.category-blog.category .post {
	border-bottom: none ;
}

.category-blog  #content .archive-subtitle {
	font-weight: normal;
	text-align: center;
}

.category-blog .entry .archive-thumbnail img {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.category-blog .entry:hover .archive-thumbnail img {
	transform: scale(1.1);
}

body .ui-dialog[aria-labelledby="ui-dialog-title-IDX-registration"]{
  top: 178.889px !important;

}






.hp-videos .site-title-wrapper .yt-name img {
    border-radius: 50%;
}

.post-page-aios-custom-idx-broker-details-page article > p#breadcrumbs {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.post-page-aios-custom-idx-broker-details-page .listings-main p#breadcrumbs {
    position: relative;
    visibility: visible;
    opacity: 1;
}

.post-page-aios-custom-idx-broker-details-page p#breadcrumbs{

    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}


.aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form .cu-fields.cu-full {
	display: block;
  margin-bottom: 12px;
  width: 100%;
  position: relative;
  padding: 0 5px;
}

.select2-drop-mask, .select2-drop {
  z-index: 1000 !important;
}

#content ul.sitemap-list li.page-item-388,
#content ul.sitemap-list li.page-item-389,
#content ul.sitemap-list li.page-item-507,
#content ul.sitemap-list li.page-item-48937 {
  display: none;
}