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; */
}

p:not(.pojo-a11y-toolbar-title) {
  font-size: var(--font-size-default);
}

.slick-slide {
  outline: none !important;
}

a,
a:focus,
a:visited,
a:hover,
button {
  outline: 0 !important;
  text-decoration: none !important;
}

#main-wrapper {
  position: relative;
  overflow: hidden;
  counter-reset: section;
}

.background-cover {
  background-color: #cccccc;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gsite-title {
  position: relative;
  font-family: var(--font-family-title);
  font-size: var(--font-size-title);
  font-weight: 500;
  color: var(--font-color-title);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gsite-title small {
  display: block;
  position: relative;
  font-family: var(--font-family-default);
  font-size: 1.563vw !important;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.28em;
  margin-bottom: 0.188vw;
}


.gsite-title div {
  padding-left: 3.625vw;
}

.gsite-title.is-title-white {
  color: #ffffff;
}

.gsite-title.is-title-white small {
  color: #5c7ea3;
}

.gsite-title.is-title-white img {
    filter: brightness(0) invert(1);
    max-width: 31.250vw;
}

.gsite-button,
a.gsite-button {
  display: inline-block;
  position: relative;
  width: auto;
  max-width: 100%;
  font-size: 0.938vw;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
}

.gsite-button::after,
a.gsite-button::after {
  content: '';
  display: block;
  width: 3.063vw;
  height: 0.188vw;
  background: var(--primary-color);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.gsite-button div, .gsite-button span,
a.gsite-button div,
a.gsite-button span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.5vw;
}

.gsite-button.is-button-white,
a.gsite-button.is-button-white {
  color: #ffffff;
}

.gsite-button.is-button-white::after,
a.gsite-button.is-button-white::after {
  background: #ffffff;
}

.gsite-button:hover::after,
a.gsite-button:hover::after {
  width: 100%;
}

.gsite-bg {
  position: absolute;
}

.gsite-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gsite-circle {
  position: absolute;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0.5) rotate(90deg);
          transform: scale(0.5) rotate(90deg);
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

.gsite-circle canvas {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #ebebeb;
  border-radius: 50%;
}

.gsite-circle.no-animate, .gsite-circle.has-animated {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0);
          transform: scale(1) rotate(0);
}

.gsite-box {
  position: absolute;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

.gsite-box canvas {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #ebebeb;
}

.gsite-box.no-animate, .gsite-box.has-animated {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gsite-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}

.gsite-lines {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
    display: none;
}

.gsite-lines span {
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  background: #f2f2f2;
}

.gsite-lines span:nth-child(1) {
  left: 6.87%;
}

.gsite-lines span:nth-child(2) {
  left: 35.62%;
}

.gsite-lines span:nth-child(3) {
  right: 35.62%;
}

.gsite-lines span:nth-child(4) {
  right: 6.87%;
}

.form-input {
  position: relative;
}

.form-input input:not([type="submit"]),
.form-input select,
.form-input textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  width: 100%;
  padding: 0;
  outline: none;
  background: none;
}

.form-input textarea {
  resize: none;
}

.form-button {
  position: relative;
}

.form-button input[type="submit"],
.form-button button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  width: 100%;
  padding: 0;
  outline: none;
  background: none;
}

.filter-white {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.parallax-scroll {
  background-attachment: fixed !important;
}

.name-Safari .parallax-scroll,
.is-mobile .parallax-scroll {
  background-attachment: scroll !important;
}

.image-with-spacer {
  position: relative;
}

.image-with-spacer canvas {
  display: block;
  width: 100%;
  background: #cccccc;
}

.image-with-spacer img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-with-spacer img.lazyload, .image-with-spacer img.lazyloading {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  top: 12%;
  left: 12%;
  width: auto;
  font-size: 0.75vw;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
    font-size: 11px;
    margin: 0;
}

.site-navi .sub-menu.show-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.aios-mobile-header-wrapper {
  z-index: 1026 !important;
}

.lazyload,
.lazyloading {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.admin-bar .fixed-header {
  top: 2vw;
}

/* Header : START */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 2.188vw 0;
  font-size: 0;
  z-index: 1020;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.ip-container .header {
  background: var(--primary-color);
}

.header::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../../images/header-bg.jpg) var(--primary-color) no-repeat center center/cover;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header.is-sticky {
  padding: 1vw 0;
  background: var(--primary-color);
}

.header.is-sticky::before {
  opacity: 1;
}

.header.is-sticky .header-logo a img {
  width: 15.125vw;
}

.header.is-sticky .site-navi .sub-menu li a {
  background: var(--primary-color);
  color: #ffffff;
}

.header.is-sticky .site-navi .sub-menu li:hover > a {
  background: var(--secondary-color);
}

.header.is-sticky .site-navi > li > .sub-menu::before {
  background: var(--primary-color);
}

.header-container {
  position: relative;
  width: 100vw;
  max-width: 100%;
  padding: 0 3.75vw;
  margin: 0 auto;
}

.header-logo a img {
  width: 17.188vw;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.navigation {
  margin: 0 0 0 auto;
}

.site-navi li {
  display: block;
  position: relative;
}

.site-navi li a {
  display: block;
  position: relative;
  font-size: 1vw;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.site-navi > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.625vw;
}

.site-navi > li:first-child {
  margin-left: 0;
}

.site-navi > li:last-child {
  margin-right: 0;
}

.site-navi > li:hover > a {
  opacity: 0.8;
}

.site-navi .sub-menu {
  position: absolute;
  width: 100%;
  min-width: 15.313vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-1.25vw);
          transform: translateY(-1.25vw);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.site-navi .sub-menu .sub-menu {
  top: 0;
  margin-left: 100%;
}

.site-navi .sub-menu li a {
  padding: 1vw 0.875vw 0.75vw;
  font-size: 0.875vw;
}

.site-navi .sub-menu li:hover > a {
  background: var(--primary-color);
}

.site-navi > li > .sub-menu {
  left: -0.875vw;
  padding-top: 0.5vw;
}

.site-navi > li > .sub-menu::before {
  content: '';
  display: block;
  position: absolute;
  width: 0.125vw;
  height: calc( 100% + 1.75vw);
  bottom: 0;
  left: -0.125vw;
  background: #ffffff;
}

.site-navi li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header-menu {
  margin-left: 3.125vw;
}

.header-menu button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  padding: 0;
  width: 1.438vw;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-menu button span {
  display: block;
  width: 100%;
  height: 0.125vw;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 0.375vw;
  background: #ffffff;
}

.header-menu button span:last-child {
  width: 0.75vw;
  margin-bottom: 0;
}

.header-menu button:hover {
  opacity: 0.8;
}

/* Header : END */
/* Off Canvas : START */
.is-off-canvas-active {
  overflow: hidden;
}

.is-off-canvas-active .off-canvas {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.is-off-canvas-active .off-canvas-inner {
  pointer-events: auto;
}

.off-canvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 1020;
  overflow: auto;
  font-size: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.off-canvas-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  padding: 0;
  border: 0;
  font-size: 1.375vw;
  color: #ffffff;
  display: block;
  position: absolute;
  top: 2.813vw;
  right: 3.75vw;
  z-index: 5;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.off-canvas-close i{
  font-weight: 800;
}

.off-canvas-close:hover {
  color: var(--secondary-color);
}

.off-canvas-inner {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 0 0 0 5.625vw;
  margin: 0 auto 0 0;
  overflow: auto;
  background: rgba(255, 255, 255, 0.9);
  z-index: 3;
}

.off-canvas-accent {
  display: block;
  position: absolute;
  width: 5.625vw;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary-color);
  z-index: 2;
}

.off-canvas-left {
  position: relative;
  width: calc( 57.62% + 2.813vw);
  padding: 4.25vw 5.313vw 4.25vw 4.375vw;
}

.off-canvas-left .gsite-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.off-canvas-left .gsite-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 0.9;
}

.off-canvas-left .gsite-bg canvas {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.side-navi li {
  display: block;
  position: relative;
}

.side-navi li a {
  display: block;
  position: relative;
  font-family: var(--font-family-title);
  font-size: 45px;
  font-weight: 500;
  color: #909090;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.side-navi > li {
  margin-bottom: 1.25vw;
}

.side-navi > li:hover > a {
  color: var(--primary-color);
}

.side-navi .sub-menu {
  position: absolute;
  top: 0.875vw;
  left: 30.75vw;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.side-navi .sub-menu li {
  margin-bottom: 0.938vw;
}

.side-navi .sub-menu li a {
  font-size: 1.5vw;
  font-weight: 500;
  color: #646464;
}

.side-navi .sub-menu li a::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0.125vw;
  background: var(--primary-color);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.side-navi .sub-menu li:hover > a {
  padding-left: 3.625vw;
  color: var(--primary-color);
}

.side-navi .sub-menu li:hover > a::before {
  width: 3.125vw;
}

.side-navi li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.off-canvas-info {
  position: relative;
  /*margin-top: 3.125vw;*/
  margin-top: 4.2vw;
}

.off-canvas-info.top {
  display: none;
}

.off-canvas-contact {
  position: relative;
  font-size: 0.975vw;
  color: var(--font-color-default);
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.off-canvas-contact a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.off-canvas-contact a:hover {
  color: var(--primary-color);
}

.off-canvas-address {
  position: relative;
  font-size: 0.875vw;
  color: var(--font-color-default);
  line-height: 1.7;
  letter-spacing: 0.1em;
  max-width: 14.375vw;
}

.off-canvas-address a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.off-canvas-address a:hover {
  color: var(--primary-color);
}

.off-canvas-smis a {
  font-size: 1.25vw;
  color: var(--primary-color);
  margin-right: 1.563vw;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.off-canvas-smis a:last-child {
  margin-right: 0;
}

.off-canvas-smis a:hover {
  color: var(--secondary-color);
}

.off-canvas-right {
  position: relative;
  width: calc( 36.75% + 2.813vw);
}

.off-canvas-right .gsite-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Off Canvas : END */
/* Popup : START */
.aiosp-wrap .aiosp-container.aiosp-ref-\#connect-popup .aios-popup-body {
  padding: 0;
  width: 61.563vw;
  max-width: 100%;
  background: none;
}

.aiosp-wrap .aiosp-container.aiosp-ref-\#connect-popup .aios-popup-body .aiosp-close {
  width: auto;
  height: auto;
  right: 0.313vw;
  top: 0;
  line-height: 1;
  opacity: 1;
  font-size: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.aiosp-wrap .aiosp-container.aiosp-ref-\#connect-popup .aios-popup-body .aiosp-close:hover {
  opacity: 0.7;
}

.aiosp-wrap .aiosp-container.aiosp-ref-\#connect-popup .aios-popup-body .aiosp-close::before {
  content: "\b0242";
  display: block;
  font-family: 'agentimage';
  font-size: 1.375vw;
  color: #ffffff;
}

.connect-popup {
  padding: 2vw 0 0;
  font-size: 0;
}

.connect-popup-main {
  background: #ffffff;
  position: relative;
}

.connect-popup-main .gsite-circle {
  width: 108.35%;
  left: 24%;
  z-index: 0;
}

.connect-popup-main .gsite-circle canvas{
  border: none;
}

.connect-popup-main .gsite-box {
  width: 100%;
  left: 0;
  top: 18.6%;
  z-index: 0;
}

.connect-popup-left {
  position: relative;
  width: 66.5%;
  padding: 1.25vw 0 0;
  z-index: 4;
}

.connect-popup-left p {
  font-size: 1.1vw;
  color: var(--font-color-default);
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 34.375vw;
  padding: 0 0.938vw;
  margin: 0 auto;
}

.connect-popup-title {
  background: url(../../images/home/popup-title-bg.jpg) no-repeat center center/cover;
  padding: 1.563vw 0.625vw 1.25vw;
  margin: 0 -2vw 1.75vw;
}

.connect-popup-title .gsite-title {
  font-size: 3.5vw;
}

.connect-popup-form {
  position: relative;
  max-width: 30.625vw;
  padding: 0 0.938vw;
  margin: 0.625vw auto 0;
}

.connect-popup-form .form-input {
  margin-bottom: 0.625vw;
}

.connect-popup-form .form-input input {
  height: 3.875vw;
  border-bottom: 1px solid #111111;
  font-family: var(--font-family-default);
  font-size: 0.75vw;
  color: #000000;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.connect-popup-form .form-button {
  max-width: 3.875vw;
  margin: 2vw auto 0;
}

.connect-popup-form .wpcf7-form-control-wrap {
  display: block;
}

.connect-popup-form .wpcf7 form .wpcf7-response-output {
  font-size: 0.75vw;
  position: absolute;
  width: calc( 100% - 1.875vw);
  margin: 0.313vw auto 0;
}

.connect-popup-form .wpcf7-spinner
.connect-popup-form .ajax-loader {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: 0 auto !important;
}

.connect-popup-right {
  width: 33.50%;
}

/* Popup : END */
/* Footer : START */
.footer {
  position: relative;
  font-size: 0;
}

.footer .gsite-circle {
  width: 80%;
  left: -15.93%;
  top: 46%;
}

.footer .gsite-box {
  width: 84.62%;
  left: 42.31%;
  bottom: -16%;
}

.footer-form {
  position: relative;
  width: 63.12%;
  padding-top: 6.25vw;
  padding-left: 3.75vw;
  z-index: 2;
}

.footer-form-title {
  background: url(../../images/contact-title-bg.jpg) no-repeat center center/cover;
  padding: 3.625vw 0.625vw 3.5vw 1.875vw;
  margin-left: -3.75vw;
  margin-right: 5.938vw;
  position: relative;
  z-index: 2;
}

.footer-form-main {
  background: #ffffff;
  -webkit-box-shadow: 6px 23px 59px 0px rgba(0, 35, 73, 0.1);
          box-shadow: 6px 23px 59px 0px rgba(0, 35, 73, 0.1);
  margin-top: -3.75vw;
  padding: 8.438vw 5vw 4.688vw;
}

.footer-form-main .wpcf7 {
  position: relative;
}

.footer-form-main .form-fields {
  margin: 0 -0.25vw;
}

.footer-form-main .form-input {
  display: inline-block;
  padding: 0 0.25vw;
  margin-bottom: 0.75vw;
}

.footer-form-main .form-input input,
.footer-form-main .form-input textarea {
  font-family: var(--font-family-default);
  font-size: 0.75vw;
  color: #333333;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  height: 3.625vw;
  padding: 0 1.25vw;
  border: 1px solid #b5b5b5;
}

.footer-form-main .form-input textarea {
  padding-top: 1.563vw;
  height: 7.375vw;
}

.footer-form-main .form-lg {
  width: 100%;
}

.footer-form-main .form-sm {
  width: 50%;
}

.footer-form-main .form-button {
  width: 10.063vw;
  margin: 1.375vw auto 0;
}

.footer-form-main .wpcf7-form-control-wrap {
  display: block;
}

.footer-form-main .wpcf7 form .wpcf7-response-output {
  font-size: 0.75vw;
  position: absolute;
  width: 100%;
  margin: 0.313vw 0 0;
}

.footer-form-main .wpcf7-spinner,
.footer-form-main .ajax-loader {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: 0 auto !important;
}

.footer-agent {
  width: 36.88%;
}

.footer-agent .image-with-spacer {
  margin-left: -12.188vw;
}

.footer-top-2 {
  position: relative;
  padding: 0 6.667vw;
}
  .footer-top-2 .di-flex {
    position: relative;
    padding: 0 5.455vw;
  }
  .footer-top-2 .di-flex > .gsite-bg {
    width: calc( 100% - 5.152vw );
    height: calc( 100% - 10.303vw );
    top: 0;
    left: 0;
    background: var(--primary-color);
  }
  .footer-top-2 .footer-form {
    width: calc( 100% + 12.121vw );
    margin-right: -12.121vw;
    margin-top: 5.758vw;
    padding: 6.788vw 16.667vw 6.667vw;
	  background-color: #000000;
  }
  .footer-top-2 .footer-form .gsite-bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary-color);
  }
  .footer-top-2 .footer-form .gsite-bg canvas {
    background-position: right top;
  }
  .footer-top-2 .footer-form-title {
    background: none;
    padding: 0;
    margin: 0;
    max-width: 47.576vw;
  }
  .footer-top-2 .footer-form-title .gsite-title small {
    color: #ffffff;
  }
  .footer-top-2 .footer-form-main {
    max-width: 47.576vw;
    padding: 0;
    margin-top: 4.848vw;
  }
  .footer-top-2 .footer-form-main .form-input input,
  .footer-top-2 .footer-form-main .form-input textarea {
    border-color: #ffffff;
    color: #ffffff;
  }
  .footer-top-2 .footer-form-main .form-button .gsite-button {
    color: #ffffff;
  }
  .footer-top-2 .footer-form-main .form-button .gsite-button::after {
    background: #ffffff;
  }
  .footer-top-2 .footer-form-main .wpcf7 form .wpcf7-response-output {
    color: #ffffff !important;
  }

.footer-bottom {
  padding: 6.875vw 0 4.375vw;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-logo::before, .footer-logo::after {
  content: '';
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 0.063vw;
  margin-bottom: 0;
  background: #ebebeb;
}

.footer-logo a {
  display: block;
  margin: 0 3.438vw;
}

.footer-logo a img {
  width: 312px;
  width: 27.5vw;
}

.footer-info {
  padding: 0 8.125vw;
  margin-top: 6.125vw;
}

.footer-info .heading-title {
  font-family: var(--font-family-title);
  font-size: 1.375vw;
  /* font-weight: 700; */
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2.5vw;
}

.footer-contact {
 /*  width: 33.33%; */
  text-align: center;
}

.footer-info .di-flex > div {
	width: calc(100% / 3);
}

.footer-contact a {
  display: inline-block;
  /*font-size: var(--font-size-default);*/
  font-size: 0.938vw;
  color: var(--font-color-default);
  line-height: 2.1;
  letter-spacing: 0.1em;
  max-width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-contact a:hover {
  color: var(--secondary-color);
}

.footer-smis {
  width: 33.33%;
}

.footer-smis a {
  font-size: 1.25vw;
  color: var(--font-color-default);
  margin: 0 0.938vw;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-smis a:hover {
  color: var(--secondary-color);
}

.footer-address {
  width: 33.33%;
  text-align: center;
}

.footer-address a {
  display: inline-block;
  /*font-size: var(--font-size-default);*/
  font-size: 0.938vw;
  color: var(--font-color-default);
  line-height: 2.1;
  letter-spacing: 0.1em;
  max-width: 15.625vw;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-address a:hover {
  color: var(--secondary-color);
}

.footer-brokerage {
  text-align: center;
  margin-top: 3.75vw;
}

.footer-brokerage a {
  display: inline-block;
  font-size: 3.75vw;
  color: var(--primary-color);
}

.footernav {
  text-align: center;
  margin-top: 2.25vw;
}

.footernav li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.875vw;
}

.footernav li a {
  font-size: 1vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footernav li a:hover {
  color: var(--primary-color);
}

.footer-disclaimer {
  font-size: 0.813vw;
  /*color: #7d7d7d;*/
  color: #767676;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  width: 73.125vw;
  max-width: 100%;
  padding: 0 0.938vw;
  margin: 1.25vw auto 1.125vw;
}

.copyright {
  font-size: 0.813vw;
  /*color: #7d7d7d;*/
  color: #767676;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  width: 73.125vw;
  max-width: 100%;
  padding: 0 0.938vw;
  margin: 0 auto;
}

.copyright a {
  display: inline-block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.copyright a[href="https://www.agentimage.com"] {
  font-weight: 700;
  text-decoration: underline !important;
}

.copyright a.footer-accessibility {
  /* font-size: 0.75vw; */
  font-weight: 500;
/*  color: var(--primary-color);*/
  letter-spacing: 0.02em;
  text-decoration: underline !important;
  /* text-transform: uppercase; */
  margin-left: 0.625vw;
}

.copyright a:hover {
  color: var(--primary-color);
}

.footer-realtors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.875vw;
}

.footer-realtors i {
  font-size: 2.375vw;
  color: #7d7d7d;
}

.footer-realtors i.ai-font-eho {
  font-size: 1.875vw;
  margin-left: 0.625vw;
}

.footer-realtors i.ai-font-agentimage-logo {
  font-size: 2.188vw;
}

.footer-realtors div {
  position: relative;
  margin-left: 1.875vw;
}

.footer-realtors div span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.563vw;
  color: #7d7d7d;
  text-transform: uppercase;
}

span.backtotop-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    bottom: calc(4.375vw - 5px);
    right: 30px;

     -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

span.backtotop-trigger:hover{
  color: #fff;
  background: var(--primary-color);
}

span.backtotop-trigger em {
    /*color: var(--primary-color);*/
    font-size: 17px;
    font-weight: 700;
}

#main-wrapper .header::before {
	opacity: 0;
}

body .header .header-logo a img {
	width: 21.125vw;
}

.mob-only {
    display: none !important;
}

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;
}

.buyers-sellers-button a {
    margin: 0 15px;
}
/* Footer : END */

.gsite-pagination li.active a {
    pointer-events: none;
}

.ip-community-details-properties-title .gsite-title span{
      padding-left: 3.625vw;
}

.footer-realtors div a {
    display: block;
    position: relative;
}

/* toc */
.ip-comm-toc {
    margin-left: 13.636vw;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 15px;
}
.postid-372 .ip-comm-toc {
  position: relative;
  z-index: 2;
}
.ip-comm-toc ul li {
    /* font-size: 18px; */
    /* letter-spacing: 0.1em; */
    font-size: 1.152vw;
    /* margin-bottom: 1.697vw; */
    padding: 7px 0;
}
.ip-comm-toc > ul > li {
    margin-top: 10px;
}
.ip-comm-toc > ul > li {
    font-weight: 500;
    font-size: 1.5vw;
    padding-left: 35px;
}
.ip-comm-toc > ul > li ul {
    padding-left: 20px;
    padding-top: 10px;
}
.ip-comm-toc > ul > li ul li {
    font-weight: 500;
}

.ip-comm-toc h2 {
    line-height: normal;
    margin-left: 0;
}
.ip-comm-toc ul li a:hover {
    color: #00234a;
    opacity: 0.5;
}

#ihf-board-disclaimers img[src="//www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E"] {
  display: none;
}

#altEmail_container, .altEmail_container {
  position: absolute !important;
  overflow: hidden !important;
  display: inline !important;
  height: 1px !important;
  width: 1px !important;
  z-index: -1000 !important;
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
  .ip-comm-toc {
        margin-left: auto;
    
  }
  .ip-comm-toc > ul > li {
    font-size: 22px;
  }
  .ip-custom-wrap.ip-community-details h2 {
      font-size: 30px;
  }
  .ip-comm-toc ul li {
    font-size: 19px;
  }
   #pojo-a11y-toolbar {
         display:none;
    }

  #main-wrapper {
    padding-top: 78px;
  }
  .gsite-title small {
    font-size: 14px !important;
  }
  .gsite-title div {
    padding-left: 25px;
    font-size: 30px;
  }

  .ip-community-details-properties-title .gsite-title span{
    padding-left: 25px;
    font-size: 30px;
    display: block;
  }
  .gsite-button,
  a.gsite-button {
    font-size: 14px;
  }
  .gsite-button::after,
  a.gsite-button::after {
    width: 30px;
    height: 3px;
  }
  .gsite-button div, .gsite-button span,
  a.gsite-button div,
  a.gsite-button span {
    height: 28px;
  }
  .gsite-circle,
  .gsite-box,
  .gsite-line {
    display: none;
  }
  .use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 12px;
  }
  /* Header : START */
  .header {
    background: transparent;
    padding: 20px 0;
  }
  .header.active{
    background: url(images/mobile-header-bg.jpg) var(--primary-color) no-repeat center center/cover;
    padding: 8px 0;
  }
  .header-container {
    padding: 0 25px;
  }
  body .header .header-logo a img {
    width: 250px;
  }

  body .header.active .header-logo a img{
    width: 200px;
  }
  .header-contact {
    margin-right: 15px;
    margin-left: auto;
    display: none;
  }
  .header-contact a {
    font-size: 12px;
    color: #ffffff;
  }
  .header-menu button {
    width: 25px;
  }
  .header-menu button span {
    height: 2px;
    margin-bottom: 6px;
  }
  .header-menu button span:last-child {
    /*width: 100%;*/
    width: 40%;
  }
  /* Header : END */
  /* Off Canvas : START */
  .off-canvas {
    z-index: 99999;
  }
  .off-canvas-close {
    font-size: 20px;
    right: 20px;
    top: 32px;
    color: var(--primary-color);
  }
  .off-canvas-inner {
    padding: 0;
  }
  .off-canvas-accent {
    display: none;
  }
  .off-canvas-left {
    width: 100%;
    padding: 28px 22px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    background: url(../../images/mobile-canvas-bg.jpg) no-repeat center center/cover;
  }
  .off-canvas-left::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    background: url(../../images/mobile-canvas-bg-2.jpg) no-repeat center center/cover;
  }
  .off-canvas-left .navigation {
    margin: 0;
    height: calc( 100vh - 210px );
    overflow: hidden;
  }
  .off-canvas-left .navigation .simplebar-track {
    width: 3px;
    background: #c7c7c7;
  }
  .off-canvas-left .navigation .simplebar-track.horizontal {
    display: none;
  }
  .off-canvas-left .navigation .simplebar-scrollbar {
    right: 0px;
    width: 3px;
    background: var(--primary-color);
  }
  .off-canvas-info {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .off-canvas-info.top {
    display: block;
  }
  .off-canvas-info.top .off-canvas-smis {
    display: none;
  }
  .off-canvas-info.bottom {
    margin-top: 50px;
    margin-bottom: 0;
  }
  .off-canvas-info.bottom .off-canvas-contact {
    display: none;
  }
  .off-canvas-contact {
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--primary-color);
  }
  .off-canvas-contact a {
    margin-right: 28px;
  }
  .off-canvas-contact a i.ai-font-envelope-f {
    font-size: 18px;
  }
  .side-navi li a {
    font-size: 35px;
    letter-spacing: 0.09em;
  }
  .side-navi > li {
    margin-bottom: 18px;
  }
  .side-navi .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    margin: 12px 0 3px;
    display: none;
  }
  .side-navi li:hover > .sub-menu {
    display: block;
  }
  .side-navi .sub-menu li {
    margin-bottom: 12px;
  }
  .side-navi .sub-menu li a {
    font-family: var(--font-family-default);
    font-size: 15px;
  }
  .side-navi .sub-menu li a::before {
    height: 2px;
  }
  .side-navi .sub-menu li:hover > a {
    padding-left: 38px;
    font-weight: 700;
  }
  .side-navi .sub-menu li:hover > a::before {
    width: 30px;
  }
  .off-canvas-smis a {
    font-size: 18px;
    margin-right: 25px;
  }
  /* Off Canvas : END */
  /* Popup : START */
  .aiosp-wrap .aiosp-container.aiosp-ref-\#connect-popup .aios-popup-body {
    width: 320px;
    max-width: 90%;
    padding: 0 25px;
  }
  
  .aiosp-wrap .aiosp-container.aiosp-ref-\#connect-popup .aios-popup-body .aiosp-close {
    right: 5px;
  }
  
  .aiosp-wrap .aiosp-container.aiosp-ref-\#connect-popup .aios-popup-body .aiosp-close::before {
    font-size: 22px;
  }
  
  .connect-popup {
    padding: 32px 0 0;
  }
  
  .connect-popup-main .gsite-circle {
    width: 108.35%;
    left: 24%;
    z-index: 0;
  }
  .connect-popup-main .gsite-box {
    /* width: 123.27%;
    left: -5.57%;
    top: 4.6%;
    z-index: 0; */
  }
  
  .connect-popup-left {
    width: 100%;
    padding: 15px 0 35px;
  }
  .connect-popup-left p {
    max-width: 550px;
    padding: 0 15px;
    font-size: 15px;
  }
  
  .connect-popup-title {
    padding: 24px 0 22px;
    margin: 0 -25px 18px;
  }
  .connect-popup-title .gsite-title,
  .connect-popup-title .gsite-title div {
    font-size: 24px;
  }
  .connect-popup-title .gsite-title div {
    padding-left: 18px;
  }
  
  .connect-popup-form {
    max-width: 490px;
    padding: 0 25px;
    margin: 8px auto 0;
  }
  .connect-popup-form .wpcf7 {
    position: relative;
  }
  .connect-popup-form .form-input {
    margin-bottom: 6px;
  }
  .connect-popup-form .form-input input {
    height: 48px;
    font-size: 13px;
  }
  .connect-popup-form .form-button {
    max-width: 62px;
    margin: 22px auto 0;
  }
  .connect-popup-form .wpcf7 form .wpcf7-response-output {
    font-size: 10px;
    width: 100%;
    margin: 2px auto 0;
  }
  .connect-popup-right {
    width: 100%;
  }
    .connect-popup-right .image-with-spacer img {
      object-position: center top;
    }
  /* Popup : END */
  /* Footer : START */
  .footer-top {
    position: relative;
    padding: 25px 20px 0;
  }
  .footer-top::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 72%;
    top: 0;
    left: 0;
    background: url(../../images/connect-bg.jpg) no-repeat center center/cover;
  }
  .footer-form {
    width: 100%;
    padding: 25px 20px 50px;
    background: var(--primary-color);
  }
  .footer-form-title {
    margin-left: 0;
    margin-right: 0;
    background: none;
  }
  .footer-form-main {
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: 20px;
    padding: 0;
    background: none;
  }
  .footer-form-main .form-input {
    width: 100%;
    margin-bottom: 10px;
  }
  .footer-form-main .form-input input,
  .footer-form-main .form-input textarea {
    font-size: 13px;
    padding: 0 20px;
    height: 50px;
    color: #ffffff;
    border-color: #ffffff;

  }
  .footer-form-main .form-input textarea {
    height: 150px;
    padding-top: 15px;
  }
  .footer-form-main .form-button {
    width: 150px;
    margin: 20px auto 0;
    /*-webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);*/
  }
  .footer-form-main .wpcf7 form .wpcf7-response-output {
    font-size: 12px;
    color: #ffffff;
    margin: 10px 0 0;
  }
  .footer-agent {
    display: none;
  }
  .footer-top-2 {
    padding: 0;
  }
  .footer-top-2::before {
    display: none;
  }
    .footer-top-2 .di-flex {
      padding: 0;
    }
    .footer-top-2 .di-flex > .gsite-bg {
      width: 100%;
      height: auto;
      display: block;
      position: relative;
      order: 2;
      /*margin-top: -30px;*/
      margin-top: 27px;
      /*height: calc( 100% - 170px );
      display: none;*/
    }
    .footer-top-2 .footer-form {
      width: 100%;
      margin-right: 0;
      margin-top: 40px;
      padding: 0;
      background: transparent;
      order: 1;
    }

    .footer-top-2 .footer-form-main .form-input input, .footer-top-2 .footer-form-main .form-input textarea {
        border-color: #ffffff;
        color: #ffffff;
        border-color: #b5b5b5;
        color: #333;
    }

    .footer-top-2 .footer-form-main .form-button .gsite-button{
      color: var(--primary-color);
    }

    .footer-top-2 .footer-form-main .form-button .gsite-button::after{
      background: var(--primary-color);
    }

    .footer-top-2 .footer-form-title {
        width: 100%;
        max-width: unset;
        background: url(../../images/footer-mobile-contact-bg.jpg);
        padding: 35px 0;
    }

    .footer-top-2 .footer-form .gsite-bg{
      display: none;
    }

    .footer-top-2 .footer-form-main {
        max-width: calc(100% - 50px);
        margin: 0 auto;
        background: #fff;
        box-shadow: -21px 12px 59px 0px rgb(0 35 73 / 10%);
        padding: 35px 20px 50px;
    }

    .footer-top-2 .footer-form-main .wpcf7 form .wpcf7-response-output {
      color: #000 !important;
  }

    .footer-info .di-flex {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-smis .di-flex {
        display: flex;
        flex-direction: row !important;
    }

    .footer-info .di-flex > div{
      width: 100%;
    }

  .footer-bottom {
    padding: 50px 0 16px;
  }
  .footer-logo a img {
    width: 250px;
  }
  .footer-info {
    padding: 0 15px;
    margin-top: 50px;
  }
  .footer-info .heading-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .footer-contact,
  .footer-smis,
  .footer-address {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-contact a {
    max-width: 100%;
  }
  .footer-smis a {
    font-size: 18px;
    margin: 0 10px;
  }
  .footer-address a {
    max-width: 250px;
  }
  .footer-contact a,
  .footer-address a {
    font-size: 13px;
  }
  .footer-brokerage {
    margin-top: 10px;
  }
  .footer-brokerage a {
    margin: 40px 0;
    font-size: 40px;
  }
  .footernav {
    /*display: none;*/
  }

  .footernav li {
      display: block;
      margin: 0 10px;
  }

  .footernav li a {
      font-size: 13px;
      line-height: 2.3;
  }
  .footer-disclaimer {
    font-size: 10px;
    line-height: 2;
    width: 100%;
    padding: 0 20px;
    margin: 20px auto;
  }
  .copyright {
    font-size: 10px;
    line-height: 2;
    width: 100%;
    padding: 0 20px;
  }
  .copyright a.footer-accessibility {
    font-size: 10px;
    margin-left: 10px;
  }
  .footer-realtors {
    margin-top: 20px;
    padding-right: 35px;
  }
  .footer-realtors i {
    font-size: 22px;
  }
  .footer-realtors i.ai-font-eho {
    font-size: 20px;
    margin-left: 10px;
  }
  .footer-realtors i.ai-font-agentimage-logo {
    font-size: 22px;
  }
  .footer-realtors div span {
    font-size: 6px;
  }

  span.backtotop-trigger{
    width: 35px;
    height: 35px;
  }
  /* Footer : END */
	.gsite-title.is-title-white img {
	width: 100%;
	max-width: unset !important;
	padding: 10px;
}
	
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
