:root {
  /** Font default */
  --font-family-default: "Jost", sans-serif;
  --font-family-title: "Jost", sans-serif;
  --font-size-default: 16px;
  --font-size-title: 18px;
  --font-color-default: #3c3c3c;
  --font-color-title: #6c757d;
  /** Use for input, button, and any other element */
  --success: #28a745;
  --primary: #cfb579;
  --primary-accent: #000000;
  --primary-background: #ffffff;
  --primary-text-color: #000000;
  --secondary: #000000;
  --secondary-background: #000000;
  --secondary-text-color: #ffffff;
  --secondary-text-color-accent: #888888;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
  --transition: all 0.4s ease-in-out;
}
/* BLOG Start */
 #content .archive-list {
	position: relative;
	display: flex;
	flex-flow: row wrap;
  }
  #content .archive-list:before,
  #content .archive-list:after {
	display: none;
  }
  #content .archive-list > article {
	float: none;
  }
  #content .archive-list .post {
	border-bottom: none;
  }
  #content .archive-list .archive-thumbnail,
  #content .archive-list .archive-content {
	width: 100%;
  }
  #content .archive-list .archive-thumbnail a {
	display: block;
	outline: none;
  }
  #content .archive-list .archive-thumbnail canvas {
	display: block;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
  }
  #content .archive-list .article-long .archive-thumbnail {
	width: 60%;
  }
  #content .archive-list .article-long .archive-has-thumbnail {
	width: 37%;
	margin-left: 3%;
  }
  #content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
	margin-top: 0;
	font-size: 32px;
  }
  #content .archive-list .article-long p {
	font-size: 22px;
  }
  #content .archive-more {
	font-style: normal;
	text-decoration: none;
	width: 190px !important;
  }
  article.col-md-12.article-long {
    margin-bottom: 3%;
}
  /** End of Archive Default Layout (Archive Page) */
 /* BLOG End */
.object-fit-cover {
  object-fit: cover;
}

.object-position-center {
  object-position: center;
}

.object-position-left {
  object-position: left;
}

.object-position-top {
  object-position: top;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.inline-table {
  display: inline-table;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.content-center {
  align-content: center;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-stretch {
  justify-items: stretch;
}

.flex-wrap-wrap {
  flex-wrap: wrap;
}

.flex-wrap-nowrap {
  flex-wrap: nowrap;
}

.flex-width-auto {
  flex-basis: 0;
  flex-grow: 1;
}

.flex-grow-1 {
  flex-grow: 1;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.mt-15 {
  margin-top: max(0.938vw, 15px);
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.h-100 {
  height: 100%;
}

.h-auto {
  height: auto;
}

.m-center {
  margin: 0 auto;
}

.overflow-hidden {
  overflow: hidden;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

@keyframes MoveScaleUpInitial {
  to {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleUpEnd {
  from {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/* Global */
body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  background: var(--primary-background);
  color: var(--primary-text-color);
  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 a {
  color: inherit;
  text-decoration: none;
}

/* Defaults */
.default__container {
  padding: 0 max(14.375vw, 150px);
}

.offCanvasAccent {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--secondary-background);
  top: 0;
  left: 0;
}
.offCanvasAccent__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  filter: grayscale(1);
  opacity: 0.1;
}
.offCanvasAccent--secondary {
  background: var(--primary);
}
.offCanvasAccent--noFixed .offCanvasAccent__bg {
  background-attachment: initial;
}

.defaultBttn a, .defaultBttn button {
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
  padding: 0 max(2.938vw, 30px);
  position: relative;
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--primary-text-color);
  font-weight: 500;
  font-size: max(0.938vw, 15px);
  letter-spacing: 0.1em;
  transition: var(--transition);
  color: var(--primary-text-color);
  text-transform: uppercase;
  height: max(3.25vw, 52px);
  line-height: max(3.25vw, 52px);
}
.defaultBttn a span, .defaultBttn button span {
  display: block;
  position: relative;
  z-index: 10;
  font-weight: 500;
}
.defaultBttn a::before, .defaultBttn button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--primary);
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}
.defaultBttn a::after, .defaultBttn button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--primary);
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  opacity: 0;
}
.defaultBttn a:hover, .defaultBttn button:hover {
  border-color: var(--primary);
  color: var(--secondary-text-color);
}
.defaultBttn a:hover span, .defaultBttn button:hover span {
  animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}
.defaultBttn a:hover::before, .defaultBttn button:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.defaultBttn a:hover::after, .defaultBttn button:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
  opacity: 1;
}
.defaultBttn--white a,
.defaultBttn--white button {
  color: var(--secondary-text-color);
  border-color: var(--secondary-text-color);
}
.defaultBttn--right {
  margin-left: auto;
}

.alternativeBttn a,
.alternativeBttn button,
.alternativeBttn .button-wrap {
  background: transparent;
  border: none;
  display: flex;
  align-self: center;
  justify-content: flex-start;
  color: var(--primary-text-color);
  letter-spacing: 0.1em;
  font-size: max(0.938vw, 15px);
  text-transform: uppercase;
  padding: max(1.125vw, 18px) max(1.875vw, 30px) max(1.125vw, 18px) 0;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
  font-weight: 500;
}
.alternativeBttn a i,
.alternativeBttn button i,
.alternativeBttn .button-wrap i {
  display: block;
  padding: 0 max(0.938vw, 15px);
  font-size: max(0.75vw, 12px);
}
.alternativeBttn a::after,
.alternativeBttn button::after,
.alternativeBttn .button-wrap::after {
  display: block;
  content: "";
  position: absolute;
  width: 27%;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
.alternativeBttn:hover a,
.alternativeBttn:hover button,
.alternativeBttn:hover .button-wrap {
  color: var(--primary);
}
.alternativeBttn:hover a::after,
.alternativeBttn:hover button::after,
.alternativeBttn:hover .button-wrap::after {
  background: var(--primary);
  width: 100%;
}
.alternativeBttn--white a,
.alternativeBttn--white button,
.alternativeBttn--white .button-wrap {
  color: var(--secondary-text-color);
}
.alternativeBttn--white a::after,
.alternativeBttn--white button::after,
.alternativeBttn--white .button-wrap::after {
  background: var(--secondary-text-color);
}
.alternativeBttn--white:hover a,
.alternativeBttn--white:hover button,
.alternativeBttn--white:hover .button-wrap {
  color: var(--secondary);
}
.alternativeBttn--white:hover a::after,
.alternativeBttn--white:hover button::after,
.alternativeBttn--white:hover .button-wrap::after {
  background: var(--secondary);
}
.alternativeBttn--reverse:hover a,
.alternativeBttn--reverse:hover button,
.alternativeBttn--reverse:hover .button-wrap {
  color: var(--primary);
}
.alternativeBttn--reverse:hover a::after,
.alternativeBttn--reverse:hover button::after,
.alternativeBttn--reverse:hover .button-wrap::after {
  background: var(--primary);
}

.defaultTitle h2 {
  text-transform: uppercase;
  color: var(--primary-text-color);
  line-height: 1;
  letter-spacing: 0.025em;
  font-size: max(3.125vw, 43px);
  font-weight: 500;
}
.defaultTitle h2 span {
  display: block;
  line-height: 1;
  letter-spacing: 0.2em;
  font-size: max(1.375vw, 22px);
  margin-bottom: 0.875vw;
  font-weight: 400;
}
.defaultTitle--white h2 {
  color: var(--secondary-text-color);
}

.paginationSet {
  margin: max(2.5vw, 40px) 0 0;
}
.paginationSet__button {
  border: 1px solid var(--primary-text-color);
  height: max(3.25vw, 52px);
  width: max(3.25vw, 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 max(0.563vw, 9px);
  transition: var(--transition);
  background: transparent;
}
.paginationSet__button i {
  color: var(--primary-text-color);
  opacity: 0.75;
  font-size: max(1.438vw, 23px);
  font-style: normal;
  transition: var(--transition);
}
.paginationSet__button:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.paginationSet__button:hover i {
  color: var(--secondary-text-color);
}
.paginationSet__prev i {
  transform: rotate(180deg);
}
.paginationSet--white .paginationSet__button {
  border-color: var(--secondary-text-color);
  color: var(--secondary-text-color);
}
.paginationSet--white .paginationSet__button i {
  color: var(--secondary-text-color);
}
.paginationSet--white .paginationSet__button:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.paginationSet--white .paginationSet__button:hover i {
  color: var(--secondary-text-color);
}

/* Defaults */
/* Header */
.header {
  z-index: 9999;
  padding: max(1.875vw, 15px) 0;
  top: 0;
  left: 0;
  transition: var(--transition);
}
.header__container {
  padding: 0 max(3.125vw, 50px);
}
.header__logo {
  width: 20vw;
  max-width: max(20vw, 320px);
}
.header__logo > div.textwidget {
  display: flex;
  align-items: center;
}
.header__logo a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: max(3.188vw, 32px);
}
.header__logo a i {
  font-size: max(3.188vw, 32px);
}
.header__logo a img {
  width: 100%;
  display: block;
  transition: var(--transition);
}
.header__logo a img.logo-vertical {
  max-width: 120px;
}
.header__logo-broker {
  display: flex;
  align-items: center;
  margin-left: min(max(0.938vw, 10px), 15px);
  padding: min(max(0.938vw, 10px), 15px);
  padding-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: min(max(1.563vw, 18px), 25px);
  color: #fff;
}
.header__logo-broker i {
  display: block;
  font-size: inherit !important;
}
.header__navigation {
  position: relative;
}
.header__navigation ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__navigation ul li {
  padding: 0 1.156vw;
  position: relative;
}
.header__navigation ul li a {
  color: var(--secondary-text-color);
  text-transform: uppercase;
  font-size: max(1.063vw, 14px);
  text-decoration: none;
  position: relative;
  display: block;
  letter-spacing: 0.025em;
  font-weight: 500;
  padding: max(0.625vw, 10px) 0;
}
.header__navigation ul li a::after {
  display: block;
  content: "";
  width: 0;
  height: 3px;
  background: var(--secondary-text-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
.header__navigation ul li .sub-menu {
  list-style: none outside none;
  margin: 0;
  padding: max(0.625vw, 10px) 0 0;
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translate(0, 10px);
  -ms-transform: translate(0, 10px);
  transform: translate(0, 10px);
  -webkit-transition: opacity 0.3s, visibility, 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility, 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s, visibility, 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility, 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility, 0.3s, -webkit-transform 0.3s;
  min-width: max(12.5vw, 200px);
}
.header__navigation ul li .sub-menu li {
  display: block;
  padding: 0;
  transition: var(--transition);
  margin: max(0.069vw, 1px) 0;
  position: relative;
  z-index: 1;
}
.header__navigation ul li .sub-menu li a {
  color: var(--secondary-text-color);
  letter-spacing: 0.025em;
  font-size: max(1vw, 14px);
  padding: max(1vw, 16px) 0;
  transition: var(--transition);
  background: var(--secondary);
  font-weight: 400;
}
.header__navigation ul li .sub-menu li:last-child a {
  border-bottom: 0;
}
.header__navigation ul li .sub-menu li:hover > a {
  text-decoration: none;
  color: var(--secondary-text-color);
  background: var(--primary);
}
.header__navigation ul li .sub-menu a::after {
  display: none !important;
}
.header__navigation ul li .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
  padding: 0 0 0 1%;
}
.header__navigation ul li .sub-menu .sub-menu li:first-child {
  margin-top: 0;
}
.header__navigation ul li:hover a::after {
  width: 100%;
}
.header__navigation ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header__navigation ul > li > .sub-menu {
  left: 50%;
  display: block;
  -webkit-transform: translate(-50%, 30px);
  -ms-transform: translate(-50%, 30px);
  transform: translate(-50%, 30px);
}
.header__navigation ul > li:hover > .sub-menu {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header__navigation ul .menu-item-children-to-right .sub-menu .sub-menu {
  margin-left: auto !important;
  left: auto !important;
  right: 100%;
  transform: none;
}
.header__icons .header__icon {
  margin: 0 1.25vw;
}
.header__icons .header__icon:first-child {
  margin-left: 0;
}
.header__icons .header__icon a {
  width: max(1.938vw, 31px);
  height: max(1.938vw, 31px);
  border: 1px solid var(--secondary-text-color);
  border-radius: 50%;
  color: var(--secondary-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}
.header__icons .header__icon a span {
  font-size: 0;
}
.header__icons .header__icon a i {
  font-size: max(1.125vw, 14px);
}
.header__icons .header__icon a i.ai-font-phone {
  font-size: max(0.938vw, 11px);
}
.header__icons .header__icon a i.ai-font-envelope-f {
  font-size: max(0.688vw, 10px);
}
.header__icons .header__icon a:hover {
  border-color: var(--primary);
  background: var(--primary);
}
.header__icons .header__expandedMenu {
  width: 28px;
  margin-left: 1.25vw;
  cursor: pointer;
  display: flex;
  flex-flow: column;
}
.header__icons .header__expandedMenu span {
  background: var(--secondary-text-color);
  width: 100%;
  height: 3px;
  display: block;
  margin: 3px 0;
  transition: var(--transition);
}
.header__icons .header__expandedMenu:hover span {
  background: var(--primary);
}
.header--float {
  background: var(--secondary-background);
  padding: 0.68vw 0;
}
.header--float .header__logo a img.logo-vertical {
  max-width: 70px;
}
.header--float .header__icons .header__icon a {
  border-color: var(--secondary-text-color);
  background: var(--secondary);
}
.header--float .header__icons .header__icon a:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
}
.header--float .header__expandedMenu:hover span {
  background: var(--primary);
}

/* Header*/
/* Expanded Menu */
.expandedMenu {
  z-index: 9999;
  top: 0;
  right: -100%;
  visibility: hidden;
  transition: var(--transition);
}
.expandedMenu.opened {
  visibility: visible;
  right: 0;
}
.expandedMenu__close {
  z-index: 30;
  cursor: pointer;
  right: max(2.813vw, 30px);
  top: max(2.813vw, 30px);
  color: var(--secondary-text-color);
  font-size: max(1.5vw, 24px);
  transition: var(--transition);
}
.expandedMenu__close:hover {
  color: var(--primary);
}
.expandedMenu__container {
  padding: 0 max(14.375vw, 150px);
  z-index: 20;
}
.expandedMenu__left {
  width: 30.438vw;
}
.expandedMenu__left::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  opacity: 0.5;
  position: absolute;
}
.expandedMenu__left .expandedMenu__wrap {
  z-index: 10;
}
.expandedMenu__logo a {
  color: var(--secondary-text-color);
  font-size: max(3.188vw, 30px);
  text-align: center;
  text-decoration: none;
  display: block;
}
.expandedMenu__logo img {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: max(20vw, 300px);
}
.expandedMenu__logo img.logo-vertical {
  max-width: 150px;
}
.expandedMenu__contactInfo {
  text-align: center;
  padding: max(0.875vw, 14px) 0 0;
}
.expandedMenu__contactInfo--cInfo {
  font-weight: 500;
  color: var(--secondary-text-color);
  letter-spacing: 0.025em;
  font-size: max(1.063vw, 14px);
  padding: max(0.625vw, 10px) 0;
}
.expandedMenu__contactInfo--cInfo a {
  color: var(--secondary-text-color);
  text-decoration: none;
  transition: var(--transition);
}
.expandedMenu__contactInfo--cInfo a:hover {
  color: var(--secondary-text-color-accent);
}
.expandedMenu__contactInfo--cInfo i {
  margin-right: max(0.375vw, 10px);
  display: inline-block;
  font-size: max(1.125vw, 14px);
  font-style: normal;
}
.expandedMenu__contactInfo--cInfo i.ai-font-envelope-filled-a {
  font-size: max(0.813vw, 11px);
}
.expandedMenu__right {
  width: 44.75vw;
  padding: max(9vw, 100px) 0 2vw max(3.844vw, 30px);
  overflow-x: hidden;
}
.expandedMenu__right .expandedMenu__wrap > div {
  display: flex;
}
.expandedMenu__right .simplebar-scrollbar::before {
  background: var(--primary) !important;
}
.expandedMenu__nav {
  padding: 0 max(2.344vw, 24px);
}
.expandedMenu__nav li a {
  color: var(--secondary-text-color);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-size: max(1.563vw, 18px);
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.expandedMenu__nav li a:hover {
  color: var(--primary);
}
.expandedMenu__nav li ul {
  padding: 0 0 0 max(1vw, 16px);
}
.expandedMenu__nav li ul li a {
  line-height: 2.4;
  font-size: max(1.063vw, 14px);
  letter-spacing: 0.025em;
  font-weight: 300;
}

/* Expanded Menu */
/* Contact Us */
.contactUs {
  overflow: hidden;
  padding: max(6.125vw, 98px) 0 max(8.438vw, 135px);
}
.contactUs__container {
  padding: 0 max(24.688vw, 200px);
}
.contactUs__heading p {
  color: var(--secondary-text-color);
  line-height: 1.7;
  letter-spacing: 0.025em;
  font-size: max(0.938vw, 15px);
  text-align: center;
  padding: max(1.875vw, 30px) 0;
}
.contactUs__form form {
  position: relative;
  display: block;
}
.contactUs__form form .wpcf7-response-output {
  color: var(--secondary-text-color);
  text-align: center;
  font-size: max(0.938vw, 15px);
  padding: max(0.938vw, 15px) 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 10px 0 0;
}
.contactUs__row {
  display: flex;
  margin: 0 max(-0.938vw, -15px);
}
.contactUs__col {
  padding: max(1vw, 16px) max(0.938vw, 15px);
}
.contactUs__col label {
  display: none;
}
.contactUs__col input,
.contactUs__col textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--secondary-text-color);
  height: max(3.313vw, 53px);
  border-bottom: 1px solid var(--secondary-text-color-accent);
  outline: none;
}
.contactUs__col textarea {
  height: max(5.313vw, 85px);
  resize: none;
}
.contactUs__col .wpcf7-not-valid-tip {
  position: absolute;
  left: inherit;
  right: 0;
  font-size: 14px;
  top: 50%;
  transform: translate(0, -50%);
  width: auto;
}
.contactUs__button {
  text-align: center;
  margin-top: max(1.813vw, 29px);
}
.contactUs__button .defaultBttn {
  display: inline-block;
}

/* Footer */
.footer {
  padding: max(5vw, 80px) max(14.375vw, 150px);
}
.footer__logo {
  text-align: center;
}
.footer__logo > div.textwidget {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
}
.footer__logo-broker {
  display: block;
  margin-top: max(0.938vw, 10px);
  padding-top: max(0.938vw, 10px);
  border-top: 1px solid rgba(101, 101, 101, 0.502);
  font-size: min(max(1.875vw, 20px), 30px);
}
.footer__logo-broker i {
  display: block;
  font-size: inherit !important;
}
.footer__logo a {
  color: var(--secondary-text-color);
  font-size: max(3.75vw, 30px);
  text-align: center;
  text-decoration: none;
  display: block;
}
.footer__logo img {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: max(26vw, 350px);
}
.footer__logo img.logo-vertical {
  max-width: 150px;
}
.footer__contactInfo {
  padding: max(4.688vw, 75px) 0;
}
.footer__contactInfo ul li {
  text-align: center;
  color: var(--secondary-text-color);
  font-weight: 500;
  letter-spacing: 0.025em;
  font-size: max(1.063vw, 12px);
  padding: 1vw max(3.625vw, 30px);
  line-height: 1.4;
}
.footer__contactInfo ul li i {
  display: block;
  color: var(--primary);
  font-size: max(1.125vw, 18px);
  height: max(1.875vw, 30px);
}
.footer__contactInfo ul li i.ai-font-envelope-f {
  font-size: max(0.813vw, 13px);
}
.footer__contactInfo ul li i.ai-font-location-c {
  font-size: max(1.313vw, 21px);
}
.footer__contactInfo ul li a {
  color: var(--secondary-text-color);
  transition: var(--transition);
}
.footer__contactInfo ul li a:hover {
  color: var(--primary);
  text-decoration: none;
}
.footer__navigation {
  border-top: 1px solid rgba(101, 101, 101, 0.502);
  padding: max(4.375vw, 70px) 0;
}
.footer__navigation > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.footer__nav {
  padding: 0 max(3.125vw, 30px);
}
.footer__nav li a {
  font-weight: 500;
  color: var(--secondary-text-color);
  line-height: 2.9;
  letter-spacing: 0.025em;
  font-size: max(1.063vw, 15px);
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.footer__nav li a:hover {
  color: var(--primary);
}
.footer__nav li ul li a {
  font-weight: 300;
  color: var(--secondary-text-color-accent);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: max(0.813vw, 12px);
}
.footer__nav:nth-child(2) {
  display: flex;
}
.footer__nav:nth-child(2) li {
  padding: 0 max(3.125vw, 30px);
}
.footer__nav:nth-child(2) li:first-child {
  padding-left: 0;
}
.footer__nav:nth-child(2) li:last-child {
  padding-right: 0;
}
.footer__nav:nth-child(2) li ul li {
  padding: 0;
}
.footer__disclaimer {
  padding: 0 max(5.625vw, 30px);
}
.footer__disclaimer p {
  color: var(--secondary-text-color-accent);
  font-style: italic;
  letter-spacing: 0.025em;
  font-size: max(0.75vw, 12px);
  line-height: 1.5;
}
.footer__disclaimer p a {
  color: var(--secondary-text-color-accent);
  transition: var(--transition);
  text-decoration: none;
}
.footer__disclaimer p a:hover {
  color: var(--primary);
}
.footer__copyright {
  padding: max(4.625vw, 74px) max(5.625vw, 30px) 0;
}
.footer__copyright p {
  color: var(--secondary-text-color);
  text-align: center;
  font-size: max(0.875vw, 14px);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.footer__copyright p a {
  color: var(--secondary-text-color);
  text-decoration: none;
  transition: var(--transition);
}
.footer__copyright p a:hover {
  color: var(--primary);
}
.footer__copyright--logos {
  padding: max(1.313vw, 21px) 0 0;
  color: var(--secondary-text-color);
}
.footer__copyright--logos i {
  font-size: max(1.875vw, 30px);
  font-style: normal;
}
.footer__copyright--logos i.ai-font-eho {
  font-size: max(1.5vw, 24px);
  margin-right: max(0.688vw, 11px);
}

/*******************************************************
 *
 * IP Styles
 *
 *******************************************************/
.ip-banner {
  position: relative;
  width: 100%;
}
.ip-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
.ip-banner canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 250px;
  background-color: var(--dark);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ip-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ip-banner h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.ip-banner h1 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* 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;
}

#content {
  /* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
  /* Styles for category/archive/search/etc subheadings (h2) */
  /* Blog */
  /* Blog */
}
#content a {
  text-decoration: none;
  color: var(--font-color-default);
  transition: var(--transition);
}
#content .ihf-container .chosen-results {
  margin-left: 0;
}
#content .entry-thumbnail img {
  width: 100%;
  margin: 0 auto;
}
#content .entry-title,
#content .archive-title {
  font-size: 45px;
  font-family: var(--font-family-title);
  color: var(--primary-text-color);
  margin: 10px 0;
}
#content .archive-subtitle {
  font-family: var(--font-family-title);
  font-size: 24px;
  color: var(--primary-text-color);
}
#content .archive-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
#content .archive-list .post {
  width: 50%;
  padding: 15px;
  border: none;
}
#content .archive-list .post a {
  display: block;
  width: 100%;
  position: relative;
}
#content .archive-list .post .archive-thumbnail {
  width: 100%;
  float: none;
}
#content .archive-list .post .archive-thumbnail canvas {
  width: 100%;
  height: auto;
}
#content .archive-list .post .archive-thumbnail img {
  display: block;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
}
#content .archive-list .post .archive-content {
  width: 100%;
  float: none;
}
#content .archive-list .post .archive-content .archive-more {
  font-style: normal;
  text-decoration: none;
}
#content .archive-list .post .archive-content .archive-more:hover {
  color: var(--secondary-text-color) !important;
}
#content .archive-list .post:first-child {
  width: 100%;
}
#content .archive-list .post:first-child .entry {
  display: flex;
  flex-flow: row wrap;
}
#content .archive-list .post:first-child .entry .archive-thumbnail {
  width: 60%;
}
#content .archive-list .post:first-child .entry .archive-content {
  width: 37%;
  margin-left: 3%;
  font-size: 22px;
}
#content .archive-list .post:first-child .entry .archive-content .archive-subtitle {
  margin: 0;
}

.ip-container #inner-page-wrapper .default__container {
  padding: 0 max(3.125vw, 50px);
}

.post-page-get-a-free-home-valuation #inner-page-wrapper,
.aios-listings-template-default #inner-page-wrapper,
.aios-custom-ihomefinder-details-template #inner-page-wrapper {
  margin: 0;
}
.post-page-get-a-free-home-valuation #inner-page-wrapper .default__container,
.aios-listings-template-default #inner-page-wrapper .default__container,
.aios-custom-ihomefinder-details-template #inner-page-wrapper .default__container {
  padding: 0;
}

/** Pojo Accessibility */
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;
}

.listing-module-page #inner-page-wrapper .container,
.aios-custom-ihomefinder-template #inner-page-wrapper .container,
.post-page-featured-listings #inner-page-wrapper .container {
  width: 100%;
  padding: 0;
}

.aios-custom-ihomefinder-results-template #content-full #content .entry-title {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  text-overflow: ellipsis;
}
.bootstrap-select.btn-group .dropdown-menu,
.bootstrap-select.btn-group .dropdown-backdrop {
  z-index: 800;
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
  .defaultTitle h2 {
    line-height: 1;
  }
  /* Blog */
  #content .archive-list .post:first-child .entry .archive-thumbnail {
    width: 100%;
  }
  #content .archive-list .post:first-child .entry .archive-content {
    width: 100%;
    margin-left: 0;
  }
  #content .archive-list .post:first-child .entry .archive-content .archive-subtitle {
    margin: 0.75em 0;
  }
  /* Blog */
  /* Footer */
  .footer__disclaimer {
    padding-left: 0;
    padding-right: 0;
  }
  .footer__copyright {
    padding-left: 0;
    padding-right: 0;
  }
}
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
  .default__container {
    padding: 0 30px;
  }
  /* Header */
  .header__container {
    padding: 0 15px;
  }
  .header__logo {
    width: 100%;
    max-width: 200px;
  }
  .header__logo a img.logo-vertical {
    max-width: 60px;
  }
  .header__navigation {
    display: none;
  }
  .header__icons .header__icon:first-child {
    display: none;
  }
  .header--float .header__logo a img.logo-vertical {
    max-width: 60px;
  }
  /* Expanded Menu */
  .expandedMenu__container {
    padding: 0;
    flex-flow: column;
  }
  .expandedMenu__left {
    width: 100%;
    padding: 30px;
  }
  .expandedMenu__right {
    width: 100%;
    padding: 40px 15px;
  }
  .expandedMenu__right .expandedMenu__wrap > div {
    flex-flow: column;
  }
  .expandedMenu__nav {
    padding: 0;
    text-align: center;
  }
  .expandedMenu__nav li ul {
    padding: 0;
  }
  /* The following are used on inner pages. Please edit carefully. */
  .inner {
    width: 100%;
  }
  #content-sidebar,
#content-full {
    width: 100%;
  }
  .outer {
    width: 100%;
    min-width: 100%;
  }
  #content-sidebar #content {
    width: 100%;
  }
  #content {
    /* Blog */
    /* Blog */
  }
  #content .archive-list {
    margin: 0;
  }
  #content .archive-list .post {
    width: 100%;
    padding: 15px 0;
  }
  #content .archive-list .post .archive-content .archive-subtitle {
    text-align: left;
  }
  #content .archive-list .post:first-child .entry .archive-thumbnail {
    width: 100%;
  }
  #content .archive-list .post:first-child .entry .archive-content {
    width: 100%;
    margin-left: 0;
  }
  /* Contact Us */
  .contactUs {
    padding: 100px 0;
  }
  .contactUs__container {
    padding: 0 100px;
  }
  .contactUs__form form .wpcf7-response-output {
    position: static;
  }
  /* Footer */
  .footer {
    padding: 80px 30px;
  }
  .footer__contactInfo {
    padding: 10px 0;
  }
  .footer__contactInfo ul {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .footer__contactInfo ul li {
    font-size: 16px;
    padding: 20px 0;
    line-height: 1.7;
  }
  .footer__disclaimer {
    padding: 0;
  }
  .footer__copyright {
    padding: 70px 0;
  }
}
/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .defaultTitle h2 {
    font-size: 40px;
  }
  .ip-banner .container {
    width: 100%;
  }
  /* Contact Us */
  .contactUs {
    padding: 70px 0;
  }
  .contactUs__container {
    padding: 0 30px;
  }
  .contactUs__heading .defaultTitle {
    text-align: left;
  }
  .contactUs__heading p {
    text-align: left;
  }
  .contactUs__row {
    flex-flow: row wrap;
  }
  .contactUs__col {
    width: 100%;
  }
  /* Footer */
  .footer {
    padding: 80px 30px 40px;
  }
  .footer__contactInfo {
    padding: 10px 0;
  }
  .footer__contactInfo ul {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .footer__contactInfo ul li {
    font-size: 16px;
    padding: 20px 0;
    line-height: 1.7;
  }
  .footer__navigation {
    padding: 20px 0;
  }
  .footer__navigation > div {
    flex-flow: column;
    align-items: flex-start;
  }
  .footer__nav {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .footer__nav:nth-child(2) {
    flex-flow: column;
  }
  .footer__nav:nth-child(2) li {
    padding: 0;
  }
  .footer__disclaimer {
    padding: 0;
  }
  .footer__disclaimer p {
    font-size: 14px;
    text-align: center;
  }
  .footer__copyright {
    padding: 20px 0;
  }
}
/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
  .header__logo-broker {
    display: none;
  }
}
@media only screen and (max-width: 320px) {
  .featuredProperties__container .paginationSet .defaultBttn a {
    font-size: 12px;
    padding: 0 10px;
  }
  .defaultTitle h2 {
    font-size: 35px;
  }
  /* Header */
  .header__logo {
    max-width: 150px;
  }
  .header__logo a i {
    font-size: 23px;
  }
}
