:root {
	/** Font default */
	--font-family-default: "Inter", sans-serif;
	--font-family-title: "Syne", sans-serif;
	--font-size-default: 15px;
	--font-size-title: 18px;
	--font-color-default: #000000;
	--font-color-title: #192d50;
	--font-color--accent: #4f6073;
	/** Use for input, button, and any other element */
	--primary: #192d50;
	--secondary: #dfceba;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #343a40;
	--default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* Global */
body {
	font-family: var(--font-family-default);
	font-size: var(--font-size-default);
	background: #f7f6f7;	
	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; */
}

.custom-container {	
	width: 1420px;
	width: 88.75vw;
	margin-left: auto;
	margin-right: auto;
}

.pr {
	position: relative;
}

.db {
	display: block;
}

.df {
	display: flex;
}

.fw {
	flex-wrap: wrap;
}

.fd-c {
	flex-direction: column;
}

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

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

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

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

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

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

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

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

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

.w-50 {
	width: 50%;
}

.canvas-img {
	display: block;
	position: relative;
	overflow: hidden;
}

.canvas-img canvas {
	display: block;
	width: 100%;
	height: auto;
}

.canvas-img img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: all var(--default-transition);
	object-fit: cover;
}

.canvas-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.canvas-bg canvas {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: block;
}

.canvas-bg canvas.is-gray {
	filter: grayscale(1);	
}

.canvas-bg:is(.overlay-black,.overlay-white,.overlay-primary)::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	opacity: .80;
	z-index: 1;
	pointer-events: none;
}

.canvas-bg.overlay-primary::before {
	background: var(--primary);;
	opacity: .80;
}

.canvas-bg.overlay-white::before {
	background: #fff;
	opacity: .90;
}

.canvas-bg.overlay-white::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
	top: 0;
	left: 0;
	pointer-events: none;
}

.canvas-bg+.custom-container {
	position: relative;
	z-index: 2;
}

.section-wrapper {	
	font-size: 15px;
	font-size: 0.938vw;	
}

.section-wrapper p {
	margin: 0 0 25px;
	line-height: 2;
}

.section-wrapper a {
	text-decoration: none;
}

.section-wrapper p.special-text {
	font-weight: 600;
	font-size: 16px;
	font-size: 1vw;
}

.section-title {
	margin-bottom: 35px;
}

.section-title :is(h1, h2) {
	font-size: 80px;
	font-size: 5vw;
	font-weight: 500;
	font-family: var(--font-family-title);
	color: var(--font-color-title);
	margin: 0;
	letter-spacing: 1.5px;	
	margin: 0;
	line-height: 1;
	position: relative;
	text-wrap: balance;
}

.section-title :is(h1, h2).is-white {
	color: #fff;
}

.section-title :is(h1, h2) small.is-secondary {
	color: var(--secondary)
}

.section-title :is(h1, h2) small {
	font-size: 18px;
	font-size: 1.25vw;
	font-size: 1.125vw;
	font-family: var(--font-family-default);
	font-weight: 400;
	color: var(--font-color--accent);
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.6em;
}

.section-title .line-number::before {
	content: attr(data-number);		
	position: absolute;
	top: 0;
	left: -50px;	
	left: -3.125vw;
	width: 38px;
	width: 2.375vw;
	height: 100%;
	border-right: 1px #cbcbcb solid;	
	font-size: 18px;
	font-size: 1.125vw;
	line-height: normal;
	font-variant-numeric: lining-nums;
	font-feature-settings: "lnum";
}

.section-btn {
	display: inline-block;
	color: #0d0e1a;
	text-transform: uppercase;
	font-size: 15px;
	font-size: 0.938vw;
	font-weight: 500;
	padding: 19px 20px;
	padding: 19px 1.25vw;
	width: 270px;
	width: 16.875vw;
	transition: all var(--default-transition);
	text-align: center;
	border: 2px var(--primary) solid;
	position: relative;
	border-radius: 8px;
	letter-spacing: 0.10em;
}

.section-btn.is-white {
	color: #fff;
	border-color: #fff;
}

button.section-btn {
	background: transparent;
}

.section-btn:hover, .section-btn:focus, .section-btn:active {	
	text-decoration: none;	
	color: var(--primary);
	background: var(--secondary);
	border-color: var(--secondary);
	outline: none;
}

.slider-arrow {
	background: transparent;
	border: 0;
	font-size: 12px;
	text-transform: uppercase;	
	color: #8c8c8c;
	letter-spacing: 1px;
	transition: all .5s;
	width: 135px;
	height: 65px;
	padding: 0;
}

.slider-arrow.slider-arrow-n {
	border-left: 1px #d4d4d4 solid;
}

.slider-arrow.slider-arrow-p::before, .slider-arrow.slider-arrow-n::after {
	content: '';
	width: 48px;
	height: 100%;
	background: url(../../assets/images/global/icon-arrow.png) center no-repeat;
	display: inline-block;
	vertical-align: middle;
	border-bottom: 1px #a3a3a3 solid;
	transition: all .5s;
	position: relative;
	left: 0;
}

.slider-arrow.slider-arrow-p::before {
	transform: scaleX(-1);
}

.slider-arrow.slider-arrow-n:hover::after {
	left: 10px;
}

.slider-arrow.slider-arrow-p:hover::before {
	left: -10px;
}

.slider-arrow-b {
	background: transparent;
	border: 0;
	padding: 0;
	font-size: 0;
}

.slider-arrow-b::before {
	font-size: 50px;
}

.slider-arrow.is-white {
	color: #fff;
}

.slider-arrow.is-white.slider-arrow-n {
	border-color: #fff
}

.slider-arrow.is-white.slider-arrow-p::before, .slider-arrow.is-white.slider-arrow-n::after {
	filter: brightness(0) invert(1);
}

/* header */
.header {
	position: absolute;
	width: 100%;
	padding: 30px 0;
	z-index: 99;
}

.header .custom-container {
	max-width: 1420px;
	width: 95%;
}

.header.fixed {
	background: rgb(255 255 255 / .91);
	padding: 13px 0 9px;
	position: fixed;
	animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}

	100% {
		transform: translateY(0px);
	}
}

.header-logo {
	text-align: center;
	min-width: 200px;
}

.header .header-logo img {
	transition: all .5s;
}

.header:not(.fixed) .main-logo {
	filter: brightness(0) invert(1);
}

.header.fixed .header-logo img {
	max-width: 225px;
	filter: none;
}

.header-menu {
	margin-left: auto;
	border-right: 1px #fff solid;
}

.hdr-menu {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-family-default);
}

.hdr-menu>li {
	position: relative;
	padding: 0 30px;
}

.hdr-menu>li>a {
	font-size: 15px;
	font-size: 0.938vw;
	color: #fff;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1;	
	padding: 5px 0;
	display: block;
	position: relative;
	transition: var(--default-transition);
	letter-spacing: 0.155em;
}

.hdr-menu>li>a:hover {
	text-decoration: none;
}

.header.fixed .hdr-menu>li>a {
	color: #000;
}

.hdr-menu>li>a:after {
	position: absolute;
	font-family: agentimage!important;
	content: "\b0207";
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	height: 2px;
	opacity: 0;
	z-index: 1;
	transition: all .5s;
	text-align: center;
	color: #dfceba;
}

.hdr-menu>li:hover>a:after,
.hdr-menu>li:focus>a:after {
	opacity: 1;	
}

.hdr-menu .sub-menu {
	list-style: none outside none;
	margin: 0;
	padding: 45px 0 0;
	position: absolute;
	width: 100%;
	min-width: 235px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	transition: var(--default-transition);
	opacity: 0;
	visibility: hidden;
}

.hdr-menu>li:hover .sub-menu {
	padding: 25px 0 0;
}

.header.fixed .hdr-menu .sub-menu {
	padding-top: 55px;
}

.header.fixed .hdr-menu>li:hover .sub-menu {
	padding-top: 45px;
}

.hdr-menu li:hover>.sub-menu,
.hdr-menu li:focus>.sub-menu,
.hdr-menu li:focus-within>.sub-menu {
	opacity: 1;
	visibility: visible;
}

.hdr-menu .sub-menu li {
	display: block;
	position: relative;
	padding: 0;
	background: rgb(25 45 80 / .80);
	/* margin: 1px 0; */
}

.hdr-menu .sub-menu li:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary);
	transition: all var(--default-transition);
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transition: all .5s;
}

.hdr-menu .sub-menu li:hover  a {
	color: var(--primary);
}

.hdr-menu .sub-menu li:hover:before,
.hdr-menu .sub-menu li:focus:before {
	opacity: 1;
}

.hdr-menu .sub-menu a {
	font-size: 14px;
	color: #fff;
	line-height: 1;
	display: block;
	text-align: center;
	padding: 15px 10px 12px !important;
	text-transform: uppercase;
	line-height: 1;
	transition: var(--default-transition);
	position: relative;
	z-index: 2;
	font-weight: 600;
}


.hdr-menu .sub-menu a:hover::before {
	opacity: 1;
}

.hdr-menu .sub-menu a:hover {
	text-decoration: none;
}

.hdr-menu .sub-menu a:hover,
.hdr-menu .sub-menu a:focus {
	color: #fff;
}

.hdr-menu .sub-menu .sub-menu {
	margin-left: 100%;
	padding: 0 0 0 1px;
	top: 0;
}

.header-buttons>div {
	margin-left: 40px;
}

.header-buttons a {
	color: #fff;
	transition: color var(--default-transition);
}

.header.fixed .header-buttons a {
	color: #000;
}

.header-buttons a:hover {
	color: var(--secondary) !important;
	text-decoration: none;
}

.header-buttons a i {
	font-size: 16px;
}

.header-buttons a i.ai-font-envelope-o {
	font-size: 14px;
}

.header-buttons .icon-only {
	font-size: 0;
}

/* offcanvas menu */
/* html:has(body.offcanvas-open) {
	overflow: hidden;
} */

.offcanvas-toggle {
	font-size: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.offcanvas-menu {
	position: fixed;
	z-index: 9999;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	transition: all .5s;
}

.offcanvas-menu .canvas-bg {
	width: 50%;

}
body.offcanvas-open .offcanvas-menu {
	right: 0;
}

body.offcanvas-menu-open {
	overflow: hidden !important;
}

.offcanvas-menu-inner {
	width: 65%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	background: rgb(25 39 64 / 95%);
}

.offcanvas-menu-inner::before, .offcanvas-menu-inner::after {
	background: linear-gradient(180deg, rgba(25,45,80,1) 0%, rgba(25,45,80,0) 100%);
	content: '';
	position: absolute;
	width: 100%;
	height: 60%;
	position: absolute;
	pointer-events: none;
	top: 0;	
}

 .offcanvas-menu-inner::after  {
	background: linear-gradient(280deg, rgba(25,45,80,1) 0%, rgba(25,45,80,0) 100%);		
	width: 50%;
	height: 100%;
	right: 0;	 
}

.offcanvas-company-name {
	font-size: 35px;
	text-transform: uppercase;
	font-family: var(--font-family-title);
	letter-spacing: 2px;
	margin-bottom: 60px;
}

.offcanvas-menu-body {
	color: #fff;
	overflow-x: auto;
	height: 100%;
	position: relative;
	z-index: 2;
	padding: 65px 90px;	
}

.offcanvas-logo {
	margin-bottom: 60px;
}

.offcanvas-logo img {
	filter: brightness(0) invert(1);
}

.side-navi {
	display: flex;
	flex-wrap: wrap;
}

.side-navi>li {
	font-size: 34px;
	font-family: var(--font-family-title);
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 30px;
	line-height: 1.3;
	letter-spacing: 1px;
	width: 50%;
}

.side-navi li.contact-holder {
	margin-top: 122px;
}

.side-navi>li>ul {
	margin-top: 15px;
	line-height: 1.5;
	font-size: 15px;
	font-weight: 400;
	font-family: var(--font-family-default);
}

.side-navi>li>ul a {
	color: #cccccc;
	font-family: var(--font-family-default);
	text-transform: uppercase;
}

.side-navi a {
	transition: all .5s;
	color: #fff;
}

.side-navi a:hover {
	color: #fff;
	text-decoration: none;
}

.offcanvas-close {
	position: absolute;
	right: 80px;
	top: 80px;
	font-size: 0;
	color: #fff;
	width: 35px;
	height: 18px;
	justify-content: center;
	align-items: center;
	display: inline-flex;
	cursor: pointer;
	transition: all .5s;	
}

.offcanvas-close:hover {
	color: var(--secondary);
}

.offcanvas-close i {
	font-size: 18px;
}

.offcanvas-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.offcanvas-toggle-lines {
	width: 35px;
	height: 18px;
	display: flex;		
	flex-direction: column;	
	transition: all .5s;
	justify-content: space-between;
}

.offcanvas-toggle-lines i {
	width: 100%;
	height: 1px;
	background: #fff;
	display: block;
	transition: all .5s;
}

.header.fixed .offcanvas-toggle-lines i {
	background: #000;
}

.offcanvas-toggle-lines:hover i {
	background: var(--secondary);
}

.offcanvas-contact {
	border-top: 1px rgb(255 255 255 / .20) solid;
	text-align: center;
	margin-top: 30px;
	padding-top: 35px;
}

.offcanvas-contact-logo img {
	margin: 30px auto;
}

.offcanvas-contact-info-holder {
	display: flex;
	flex-wrap: wrap;
}

.offcanvas-contact-info {	
	width: 33.33%;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.1em;
}

.offcanvas-contact-info a {
	color: #fff;
}

.offcanvas-contact-smis {
	width: 100%;
	margin-top: 45px;
}

.offcanvas-contact-smis a {	
	display: inline-flex;
	flex-direction: column;
	text-align: center;	
	position: relative;	
	font-size: 18px;
	transition: all .5s;
	justify-content: center;
	align-items: center;
	margin: 7.5px 0;		
	width: 38px;
	height: 38px;
	color: #fff;
	border: 1px #fff solid;
	border-radius: 50%;	
}

.offcanvas-contact-smis a:hover {
	background: var(--secondary);
	border-color: var(--secondary);
	color: var(--primary);
	text-decoration: none;
}

.offcanvas-contact-smis a:not(:last-child) {
	margin-right: 10px;
}

.offcanvas-contact-info i {
	font-size: 18px;
	display: block;
	margin-bottom: 15px;
}

.offcanvas-contact-info i.ai-font-location-b {
	font-size: 25px;
}

.offcanvas-contact-info i.ai-font-envelope-o {
	font-size: 12px;
}

.offcanvas-contact-email i {
	font-size: 10px;
	top: 8px;
}


.offcanvas-smis {
	display: flex;
	flex-wrap: wrap;
}

.offcanvas-smis a {
	font-size: 24px;
	width: 25%;
	text-align: center;
	color: var(--secondary);
	margin: 0 10px 10px;
	transition: color var(--default-transition);
}

.offcanvas--smis a:hover {
	text-decoration: none;
	color: #000;
}

/* footer */
.footer-form-wrap { 
	padding: 0;
}

.footer-form-wrap .canvas-bg {
	mix-blend-mode: luminosity;
	opacity: .55;
}

.footer-form-wrap .canvas-bg:before{
	content: '';
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 40%;
	left: 0;
	top: 0;		
	background: linear-gradient(180deg, rgba(247,246,247,1) 30%, rgba(247,246,247,0) 100%);
	z-index: 1;
}

.footer-form .custom-container {
	margin: 0 auto;
	width: 1435px;
	width: 89.688vw;
	display: flex;
	justify-content: space-between;
	align-items: flex-start
}

.footer-form-left {
	width: 60%;
	background: #f7f6f7;
	padding: 80px;
	padding: 5vw;
}

.footer-form-left p {
	font-size: 16px;
	margin-bottom: 50px;
}

.footer-form-holder .wpcf7-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer-form-holder .ff-field {
	width: 100%;
	position: relative;
}

.footer-form-holder .ff-field .wpcf7-not-valid-tip {
	position: absolute;
	right: 8px;
	top: 0;
	left: auto;
	width: auto;
}

.footer-form-holder .wpcf7 {
	position: relative;
}

.footer-form-holder .wpcf7 form .wpcf7-response-output {
	position: absolute;
	width: 100%;
	background: #fff;
	bottom: -20px;;
	margin: 0;
	text-align: center;
}

.footer-form-holder .ff-field--half {
	width: calc(50% - 5px);
}

.footer-form-holder .ff-field .wpcf7-form-control {
	width: 100%;
	background: transparent;
	border: 1px #000 solid;
	border-radius: 10px;
	padding: 20px;
	font-size: 15px;	
	outline: none;
	color: #9f9f9f;
	margin: 5px 0;
}

.footer-form-holder .ff-field .wpcf7-textarea {
	height: 105px;
	resize: none;
	margin-bottom: 50px;
}

.footer-form-holder .ff-submit {
	width: 100%;
}

.footer-form-right {
	width: 50%;
	position: relative;
	margin-top: 80px;
}
.footer-form-right::before {
	content: '';
	pointer-events: none;	
	position: absolute;
	width: 100%;
	height: 100%;	
	right: -60px;
	top: -80px;
	right: -3.75vw;
	top: -5vw;
	background: var(--primary) url(../../assets/images/home/hp-texture.jpg) center no-repeat;;
	background-size: cover
}

.footer-form-img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.footer-main {		
	background: #fff;
	padding: 0 0 90px;
	font-size: 15px;
	color: #000;
	position: relative;
}

.footer-main .canvas-bg canvas{
	position: absolute;
	top: 0;
	left: 0;
}

.footer-main .canvas-bg::before {
	content: '';
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;		
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	z-index: 1;
}

.footer a {
	color: inherit;
	transition: all var(--default-transition);
}

.footer a:hover {	
	text-decoration: none;
	color: #999;
}

.footer-main .custom-container {	
	width: 1410px;
	width: 88.125vw;
	margin: 0 auto;	
	background: rgb(255 255 255 / .85);
	padding: 100px 130px;
	padding: 6.25vw 8.125vw;
}

.footer-main-cols {
	margin-bottom: 65px;
}

.footer-logo {
	padding-right: 75px;
	margin-bottom: 20px;
	flex: 1;
}


.footer-logo > div > a::after {
	content: '';
	display: inline-block;
	background: #fff;
	width: 1px;
	height: 143px;
	margin: 0 50px;
	vertical-align: middle;
}

.footer-logo p {
	margin-top: 20px;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 2px;
}

.footer-disclaimer {
	line-height: 1.8;
	margin: 0 auto 25px;
	font-size: 13px;	
	padding: 0 20px;
	color: #7a7a7a;
}

.footer-section-title {
	margin-bottom: 35px;
	font-size: 30px;
	font-size: 1.875vw;
	font-weight: 600;
	font-family: var(--font-family-title);
	color: var(--primary);
}

.footer-nav {
	width: 18%;
}

.footer .footernav {
	font-size: 17px;	
	font-size: 1.063vw;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 300;
}

.footer .footernav li:not(:last-child) {
	margin-bottom: 15px;
}

.footer-contacts {
	width: 29%;
}

.footer-contact-list {}

.footer-contact {
	font-size: 18px;
	letter-spacing: 1px;
	display: flex;
	width: 100%;
	margin-bottom: 12px;
	font-size: 15.16px;
	font-size: 0.948vw;
	font-weight: 300;
	line-height: 1.5;
}

.footer-contact strong {
	display: block;
	color: var(--primary);
	text-transform: uppercase;
	font-weight: 400;
}

.footer-contact a {
	font-weight: 600;
}

.footer-contact i {
	width: 35px;	
	text-align: center;
	position: relative;
	font-size: 18px;
	color: var(--primary);
	position: relative;	
	top: 2px;
	font-weight: 700;
}

.footer-contact i.ai-font-envelope-o {
	font-size: 12px;
	top: 5px;
}

.footer-contact i.ai-font-location-b {
	font-size: 20px;
}

.footer-smis-holder {
	width: 100%;	
}

.footer-smis {
	width: 100%;
	margin: 20px 0 40px;
}

.footer-smis a {	
	display: inline-flex;
	flex-direction: column;
	text-align: center;	
	position: relative;	
	font-size: 20px;
	font-size: 1.25vw;;
	transition: all .5s;
	justify-content: center;
	align-items: center;
	margin: 7.5px 0;		
	width: 40px;
	height: 40px;
	width: 2.5vw;
	height: 2.5vw;
	color: #191919;
	border: 1px #191919 solid;
	border-radius: 50%;	
}

.footer-smis a:hover {
	background: var(--secondary);
	border-color: var(--secondary);
	color: var(--primary);
}

.footer-smis a:not(:last-child) {
	margin-right: 10px;
}

.footer-smis a:hover {
	text-decoration: none;
}

.footer-copyright {
	width: 100%;
	font-size: 14px;	
	line-height: 1.5;
}

.footer-copyright p {
	margin-bottom: 20px;
}

.footer-copyright .agent-name,
.footer-copyright a:last-child {
	color: var(--primary);
}

.footer-copyright .ai-icon {
	display: inline-block;
	font-size: 28px;
	color: var(--primary);
	margin: 0 5px;
	vertical-align: middle;
}

.footer-copyright .ai-font-eho {
	font-size: 19px;
	position: relative;
	top: -2px;
}


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

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

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

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

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

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

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

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale {
	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;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle, #content .archive-title, #content .entry-title {
	font-family: var(--font-family-title);
	color: var(--primary);
	font-size: 45px;
}

#content .archive-subtitle {
	margin-top: 5px;
	line-height: 1;
}
html #content .post {
	margin-bottom: 50px !important;
	padding-bottom: 40px !important;
}

#content .aios-roadmaps-default-wrapper .aios-roadmaps-default-headings a {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#content .archive-subtitle a,
#content .archive-more {
	color: var(--primary);
}

#content .archive-subtitle a:hover,
#content .archive-more:hover {
	color: var(--secondary);
}

#content .listings-printable-header span {
	display: none !important;
}

#content .listings-printable-header img {
	filter: brightness(0) invert(1);
}

#ihf-main-container.ihf-modal-container .modal input[type=password] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    width: 100%;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    border: none !important;
    border-bottom: 1px solid #a5a5a5 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    color: #636363;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

html #listings-details .listings-cta.white>li>a.active,
html #listings-details .listings-cta.white>li>a:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: var(--primary) !important;
}

html #agents-results .agents-list .agents-box-col > .agents-box {
	pointer-events: none;
}


body.page-id-19 #inner-page-wrapper {
    display: none;
}

html body.pojo-a11y-readable-font *[class^=ai-font] {
    font-family: agentimage!important;
}

#listings-details .listings-hero.disable-overlay .listings-hero-single::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	display: block;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
	pointer-events: none;
	z-index: 3;
}

body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
	font-size: 11px;
	width: auto;
	left: auto;
	right: 0;
	top: 10px !important;;
}

.error-page-cf-wrap .wpcf7-not-valid-tip {
    width: auto;
    position: absolute;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 2px;
	display: none;
}

.error-page-cf-wrap .wpcf7-not-valid-tip:last-of-type {
	display: block;
}

.error-page-cf-wrap .wpcf7-response-output {
    text-align: center;
}

.error-page-cf-wrap  .wpcf7-response-output {
	position: absolute;
	width: 100%;
}

.forms-disclaimer {
	line-height: 1.5;
	margin-bottom: 20px;
	font-style: italic;
}

.error-page-content-wrapper  {
	padding-bottom: 40px;
}

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

.post-page-our-agents #inner-page-wrapper > .container {
    padding: 0px 15px !important;
}

/* 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) {

body.offcanvas-open .offcanvas-menu {
	display: none !important;
}

	body.ip-container .header-logo {
	transform: translateY(20px);
}
.entry-title {
    line-height: 1;
}

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

	.hidden-991 {
		display: none !important;
	}

	.header {
		padding: 70px 0;
	}

	.header .custom-container {
		justify-content: center;
	}

	#pojo-a11y-toolbar {
		display: none;
	}	
}

@media(max-width: 768px) {
	.section-btn {
		font-size: 15px;
		width: auto;
		min-width: 300px;
	}	

	.footer-form .custom-container {
		flex-wrap: wrap;
	}
	.footer-form-holder .ff-field--half {
		width: 100%;
	}
	.footer-form-left, .footer-form-right {
		width: 100%;
		margin-top: 0;
	}
	.footer-form-right::before {
		display: none;
	}

	.footer-main-cols, .footer-smis {
		margin-bottom: 10px;
	}
	.footer-logo, .footer-contacts, .footer-contacts, .footer-nav {
		width: 100%;
		text-align: center;
		padding-right: 0;
		flex: none;
	}	
	.footer-contacts {
		margin-bottom: 40px;
	}
	.footer-section-title {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.footer-contact {
		justify-content: center;
		font-size: 15px;
	}
	.footer-contact {
		display: block;
	}
	
	.footer .footernav {
		font-size: 17px;
	}
	.footer-smis a {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.footer-copyright p {
		text-wrap: balance;
	}

	.section-title :is(h1, h2) {
		font-size: 50px;
	}
	.section-title :is(h1, h2) small {
		font-size: 20px;
	}
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
	.ip-banner .container {
		width: 100%;
	}

	.section-wrapper {	
		font-size: 14px;
	}		
	.section-wrapper p.special-text {
		font-weight: 600;
		font-size: 16px;		
	}	


.footer-form-left {
    padding: 30px 15px 40px !important ;
}
	


}

@media(max-width: 480px) {
	.section-title {
		text-align: center !important;
	}
	.section-title :is(h1, h2) {
		font-size: 40px;
	}
	.section-title :is(h1, h2) small {
		font-size: 18px;
		letter-spacing: normal;
	}
	.section-title .line-number::before {
		display: none;
	}
	.section-btn {
		min-width: 100%;
	}

}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
