:root {
	/** Font default */
	--font-family-default: 'Lato', sans-serif;
	--font-family-title: 'Playfair Display', serif;
	--font-size-default: 17px;
	--font-size-title: 18px;
	--font-color-default: #000000;
	--font-color-title: #101010;
	/** Use for input, button, and any other element */
	--primary: #f50000;
	--secondary: #6c757d;
	--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: #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; */
}

.custom-container {
	max-width: 1330px;
	width: 95%;
	margin: 0 auto;
}

.pr {
	position: relative;
}

.df {
	display: flex;
}

.fw {
	flex-wrap: wrap;
}

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

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

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

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

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

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

.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.section-logo-bg canvas {
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .06;
}

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

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

.canvas-bg.is-white::before {
	content: '';
	position: absolute;
	background-color: #fff;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: .75;
}

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

.canvas-bg.is-black::before {
	content: '';
	position: absolute;
	background-color: #000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: .75;
}

.canvas-bg.is-primary::before {
	content: '';
	position: absolute;
	background: var(--primary);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: .75;
}

.canvas-bg.is-secondary::before {
	content: '';
	position: absolute;
	background: var(--secondary);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: .70;
}

.canvas-bg.is-secondary::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 50%;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
	bottom: 0;
	z-index: 1;
}

.section-btn {
	font-family: var(--font-family-default);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	border: 2px var(--primary) solid;
	color: #000;
	min-width: 335px;
	height: 50px;	
	display: inline-flex;
	letter-spacing: 1.5px;
	transition: all var(--default-transition);
	text-decoration: none;
	text-align: center;
	justify-content: center;
	align-items: center;
}

button.section-btn {
	background: transparent;
}

.section-btn:hover {
	background-color: var(--primary);
	color: #fff;
	text-decoration: none;
}

.section-btn.wt {
	color: #fff;
}

.section-btn-wrap .section-btn:not(:last-child) {
	margin-right: 10px;
}

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

.section-title :is(h1,h2) {
	color: var(--font-color-title);
	font-size: 85px;
	font-family: var(--font-family-title);
	font-weight: 400;
	text-transform: uppercase;
	display: inline-block;
	margin: 0;
}

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

.section-title :is(h1,h2) small {
	display: block;
	font-family: var(--font-family-default);
	font-size: 26px;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 1.5px;
}

.slide-arrows {
	display: flex;
}

.slide-arrow {
	width: 68px;
	height: 60px;
	background: var(--primary);
	border: 0;
	font-size: 0;
	margin: 0 15px;
}

.slide-arrow i {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
}

/* header */
.header {
	width: 100%;
	height: auto;
	z-index: 20;
	position: absolute;
}

.header .custom-container {
	width: 90%;
	max-width: 1385px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 0 100px;
}

.header.fixed .navwrap {
	height: 100%;
}

.header.fixed .custom-container {
	width: 98%;
	height: 100%;
	max-width: 1490px;
	padding: 0;
}

.header-logo-default {		
	background: #dcd9d9;
	padding: 20px 15px;
	text-align: center;
}

.header-logo-default img {
	display: block;
	margin: 10px auto;
}

.header-logo-fixed {
	display: none;
}

.header.fixed .header-logo-default {
	display: none;
}

.header.fixed .header-logo-fixed {
	display: flex;	
}

.header-logo-fixed a  {	
	display: block;
	border-right: 1px rgb(255 255 255 / .25) solid;
	padding-right: 15px;
	margin-right: 15px;
}

/* Sub Menu */
.hdrnav {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-family-default);
}

.hdrnav>li {
	position: relative;
	margin: 0;
}

.hdrnav>li:not(:last-child) {
	margin-right: 60px;
}

.hdrnav>li:not(.menu-item-has-children):hover a {
	opacity: 0.7;
} 

.hdrnav>li::after {
	content: '';
	width: 0;
	height: 3px;
	position: absolute;
	top: 110%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
	content: "";
	position: absolute;
	pointer-events: none;
	opacity: 0;
	background: var(--secondary);
	transition: all var(--default-transition);
}

/* .hdrnav>li:hover::after {
	opacity: 1;
	width: 68px;
} */

.hdrnav>li>a {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 1.2px;
	padding: 5px 0;
	display: block;
	position: relative;
	transition: all var(--default-transition);
}

.hdrnav>li>a:hover {
	color: #fff;
	text-decoration: none;
}

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

.header.fixed .hdrnav .sub-menu {
	padding-top: 43px;
}

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

.hdrnav .sub-menu li {
	display: block;
	position: relative;
	padding: 0;
	background: #000;
	/* margin-bottom: 1px; */
	border-left: 2px var(--primary) solid;
}

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

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

.hdrnav .sub-menu li.menu-item-has-children:after {
	position: absolute;
	content: '';
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 7px solid #fff;
	z-index: 2;
	pointer-events: none;
}

.hdrnav .sub-menu a {
	font-size: 13px;
	color: #fff;
	line-height: 1;
	letter-spacing: .025em;
	display: block;	
	padding: 14px 15px !important;
	text-transform: uppercase;
	line-height: 1;
	transition: var(--default-transition);
	position: relative;
	z-index: 2;
}

.hdrnav .sub-menu a:hover,
.hdrnav .sub-menu a:focus {
	color: #fff;
	text-decoration: none;
}

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

/* fixed header */
.header.fixed {
	position: fixed;
	animation: smoothScroll 1s forwards;	
	padding: 0;
	background: #000;
	height: 85px;
}

.header.fixed .hdrnav>li>a {
	color: #fff;
}

.header.fixed .navigation {
	margin-right: 100px;
}

.header.fixed .hdrnav>li>a {
	font-size: 15px;
}

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

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

/* offcanvas menu */
body.offcanvas-open {
	overflow: hidden;
}

.offcanvas-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
	height: 99px;
    font-size: 0;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--default-transition);
	background: var(--primary);
}

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

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

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

.offcanvas-menu-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.offcanvas-menu-inner .canvas-bg::before {
    background: #000;
}

.offcanvas-menu-body {
    padding: 60px 0;
    color: #fff;
    overflow-x: auto;
    height: 100%;
    position: relative;
    z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.offcanvas-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 25px;
}

.side-navi {
    width: 95%;
	display: flex;
	flex-wrap: wrap;
	max-width: 845px;
	margin: 0 auto;
}

.side-navi > li {
    font-size: 30px;
	font-family: var(--font-family-title);
    text-transform: uppercase;
    margin-bottom: 35px;
    line-height: 1.3;
	width: calc(33.33%);
}

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

.side-navi > li:nth-child(3) {
    clear: left;
}

.side-navi > li > ul {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
    padding-left: 10px;	
}

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

.side-navi a:hover {
    color: var(--secondary);
}

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

.offcanvas-close {
    cursor: pointer;
    right: 0;
    top: 0;
    position: absolute;
    font-size: 32px;    
    display: flex;
    justify-content: center;
	flex-direction: column;
    align-items: center;
    color: #fff;
    transition: var(--default-transition);
	background: var(--primary);
	width: 90px;
	height: 99px;
	text-transform: uppercase;		
}

.offcanvas-close span {
	font-size: 12px;
	letter-spacing: 2px;
	margin-top: 10px;
}

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

.header.fixed .offcanvas-toggle {
	height: 100%;
}

.offcanvas-toggle-lines {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
	width: 31px;
    height: 18px;
    flex-direction: column;
	margin-bottom: 15px;
}

.offcanvas-toggle:hover {
	background: #fff;
}

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

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

.offcanvas-toggle-label {
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
}

.offcanvas-toggle:hover  .offcanvas-toggle-label {
	color: var(--primary);
}

.offcanvas-contacts-smis {
	text-align: center;
	margin-bottom: 20px;
}

.offcanvas-contacts-smis a {
	font-size: 25px;
	color: var(--secondary);
	margin: 0 20px;
}

.offcanvas-contacts-list {
	text-align: center;
	margin-bottom: 20px;
}

.offcanvas-contact-info {
	display: inline-block;
	margin: 0 20px;
	font-size: 16.94px;
}

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

.offcanvas-contact-info  i {
	margin-right: 10px;
	font-size: 13px;
	color: var(--secondary);
}

.offcanvas-logo {
    text-align: center;
	font-family: var(--font-family-title);
	text-transform: uppercase;
	color: #fff;
	font-size: 57.23px;
	letter-spacing: 1px;
} 

.offcanvas-logo a {
	color: #fff;
}

.offcanvas-monogram {
	position: absolute;
	right: 25px;
	bottom: -70px;
	pointer-events: none;
	opacity: .07;
}

/* footer */
.footer {
	width: 100%;
	background: #fff;
	padding: 110px 0 40px;
	font-size: 15px;	
	overflow: hidden;	
	color: #fff;
	position: relative;
	border-top: 4px var(--primary) solid;
}

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

.footer a:hover {
	color: var(--secondary);
}

.footer .custom-container {
	max-width: 1135px;
}

.fc-card {	
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.fc-card:first-child {
	border-right: 1px #d5d5d5 solid;
	padding-right: 60px;
	margin-right: 60px;
}

.fc-card-body {
	flex-grow: 1;
	padding-left: 30px;
}

.fc-card-body ul li {
	display: flex;
	margin-bottom: 14px;
	align-items: start;
	line-height: 1.2;
}

.fc-card-body ul li i {
	font-size: 14px;
	color: var(--primary);
	width: 22px;
	position: relative;	
	top: 2px;
}

.fc-card-body ul li i.ai-font-envelope-f {
	font-size: 10px;
	top: 5px;
}

.fc-card-body ul li i.ai-font-location-c {
	font-size: 18px;
}

.fc-card-body h3 {
	font-size: 22px;
	font-family: var(--font-family-title);
	text-transform: uppercase;
	margin-bottom: 14px;
	letter-spacing: 1px;
}

.fc-card-sm-list a {
	color: var(--primary);
	font-size: 18px;
	margin-right: 15px;
}

.footer-disclaimer {
	font-size: 14px;
	line-height: 1.8;
	padding-top: 25px;
	margin-bottom: 25px;
	text-align: center;
}

.footer-copyright {
	width: 100%;
	font-size: 14px;
	text-align: center;
}


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

.footer-copyright i {
	font-size: 30px;
	vertical-align: middle;
	color: #999999;
}

.footer-copyright i.ai-font-eho {
	font-size: 21px;
	margin-right: 5px;
}

/* footer form */
.footer-cf {
	position: relative;
	padding: 78px 0;
	background: #000;
}

.footer-cf .canvas-bg {
	filter: blur(5px);
	opacity: .78;
}

.footer-cf .canvas-bg::before, .footer-cf .canvas-bg::after {
	content: '';
	position: absolute;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	top: 0;
	left: 0;
	z-index: 1;
	opacity: .45;
}

.footer-cf .canvas-bg::after {
	transform: rotate(180deg);	
	right: 0;
	left: auto;
}

.footer-cf .custom-container {
	position: relative;
	max-width: 1140px;
	z-index: 2;
	background: rgb(255 255 255 / 90%);
}

.footer-cf .cf-content  {
	flex-grow: 1;
	padding: 50px;
}

.footer-cf .section-title h2 {
	font-size: 70px;
}

.footer-cf .wpcf7 {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	width: 90%;
}

.footer-cf .wpcf7 form {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	position: relative;
	margin-top: 30px;
}

.footer-cf .wpcf7 .wpcf7-response-output {
	position: absolute;
	width: 100%;
	text-align: center;
	color: #000;
	bottom: -30px;
	margin: 0;
	padding: 5px;
}

.cf-field {
	width: calc(50% - 10px);
	padding: 5px 0;
	position: relative;
	margin-bottom: 15px;
}

.cf-field-radio {
	margin-bottom: 35px;
	width: 100%;
}

.cf-field-radio .wpcf7-radio {
	display: flex;
	justify-content: space-between;
}

.cf-field-radio input[type="radio"] {
	accent-color: var(--primary);
}

.cf-field-radio .wpcf7-list-item {
	margin: 0 10px 0 0;
}

.cf-field-radio .wpcf7-list-item-label {
	font-size: 14px;
	color: #101010;
	font-weight: 600;
	
}

.cf-field-full {
	width: 100%;
}

.cf-field input,
.cf-field textarea {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 15px 0;
	font-size: 14px;	
	outline: none;
	color: #101010;
	border-bottom: 1px solid #101010;
	font-weight: 600;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {	
	color: #101010;
}

.cf-field textarea {
	resize: none;
	padding-top: 20px;
	height: 80px;
}

.cf-submit {
	width: 100%;
	margin-top: 45px;
}

.cf-submit .section-btn {
	min-width: 190px;
}

.cf-field .wpcf7-not-valid-tip {
	position: absolute;
	left: auto;
	right: 0;
	width: auto;
}

.cf-radio {
	width: 100%;
	margin-bottom: 45px;
}

.cf-radio > div {
	margin-bottom: 45px;
	font-size: 16px;
	color:#101010;
}

.cf-radio .wpcf7-list-item {
	position: relative;
	margin: 0 18px 0 0;
}

.cf-radio .wpcf7-list-item-label {
	font-size: 15px;
	text-transform: uppercase;
	width: 220px;
	height: 64px;
	line-height: 64px;
	display: inline-block;
	border: 1px rgb(198 160 79 / 20%) solid;
	text-align: center;
}

.cf-radio .wpcf7-list-item input {
	position: absolute;
	-webkit-appearance: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	outline: none;
}

.cf-radio .wpcf7-list-item input:checked +  .wpcf7-list-item-label {
	background: var(--secondary);
}

.footer-su {
	margin: 60px 0 30px;
	position: relative;

}

.footer-su-form-holder {
	flex: 1;
}

.footer-su .section-btn {
	color: #fff;
	background: var(--primary);
	min-width: 190px;
}

.footer-signup .section-btn:hover {
	background: #ccc;
	border-color: #ccc;
	color: #000;
}

.footer-su h3 {
	font-size: 23px;
	text-transform: uppercase;
	font-family: var(--font-family-title);
	color: var(--primary);
	margin-right: 15px;
}

.footer-su form {
	display: flex;
}

.footer-su .su-field {
	flex: 1;
	margin-right: 10px;
}
.footer-su .su-field input[type="email"] {
	background: #fff;
	border: 0;
	color: #000;
	font-size: 14px;
	padding: 15px;
	width: 100%;
	height: 50px;
}


.su-field .wpcf7-not-valid-tip {
	position: absolute;
	right: 0;
	left: auto;
	width: auto;
}

.footer-su .wpcf7-response-output {
	position: absolute;
	bottom: -50px;
	width: 100%;
	text-align: center;
	left: 0;
}

.footer-su .wpcf7-spinner {
	position: absolute;
}

.footer a:hover {
	color: var(--primary);
}

.fc-card-sm-list a:hover {
	color: #fff;
	text-decoration: none;
}

/* floating smis */
.floating-smis-list {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.floating-smis-list a {
	display: block;
	width: 32px;
	height: 32px;	
	border: 1px var(--primary) solid;
	border-radius: 50%;
	text-align: center;
	font-size: 0;
	margin: 5px 0;
	transition: all var(--default-transition);
	color: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
}

.floating-smis-list a span {
	font-size: 18px;
}

.floating-smis-list a span.ai-font-envelope-f,
.floating-smis-list a span.ai-font-phone {
	font-size: 12px
}

.floating-smis-list a:hover {
	background: var(--primary);
	color: #fff;
	text-decoration: none;
}

.floating-smis-list  span.divider {
	width: 1px;
	height: 30px;
	background: #fff;
	opacity: .5;
	margin: 5px;
	box-shadow: 2px 2px 1px #000;
}

.floating-chat-toggle {
	width: 49px;
	height: 49px;
	background: transparent;
	border: 0;
	background: url(../../assets/images/icon-chat.png) no-repeat;
	background-size: contain;
	font-size: 0;
}

/* popup: form */
#contact-popup .section-title h2 {
	font-size: 70px;
}

#contact-popup .wpcf7 {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	width: 90%;
}

#contact-popup .wpcf7 form {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	position: relative;
	margin-top: 30px;
}

#contact-popup .wpcf7 .wpcf7-response-output {
	position: absolute;
	width: 100%;
	text-align: center;
	color: #000;
	bottom: -30px;
	margin: 0;
	padding: 5px;
}

.pu-cf-field {
	width: calc(50% - 10px);
	padding: 5px 0;
	position: relative;
	margin-bottom: 15px;
}

.pu-cf-field-radio {
	margin-bottom: 35px;
	width: 100%;
}

.pu-cf-field-radio .wpcf7-radio {
	display: flex;
	justify-content: space-between;
}

.pu-cf-field-radio input[type="radio"] {
	accent-color: var(--primary);
}

.pu-cf-field-radio .wpcf7-list-item {
	margin: 0 10px 0 0;
}

.pu-cf-field-radio .wpcf7-list-item-label {
	font-size: 14px;
	color: #101010;
	font-weight: 600;
	
}

.pu-cf-field-full {
	width: 100%;
}

.pu-cf-field input,
.pu-cf-field textarea {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 15px 0;
	font-size: 14px;	
	outline: none;
	color: #101010;
	border-bottom: 1px solid #101010;
	font-weight: 600;
}

.pu-cf-field input::placeholder,
.pu-cf-field textarea::placeholder {	
	color: #101010;
}

.pu-cf-field textarea {
	resize: none;
	padding-top: 20px;
	height: 80px;
}

.pu-cf-submit {
	width: 100%;
	margin-top: 45px;
}

.pu-cf-submit .section-btn {
	min-width: 190px;
}

.pu-cf-field .wpcf7-not-valid-tip {
	position: absolute;
	left: auto;
	right: 0;
	width: auto;
}

.pu-cf-radio {
	width: 100%;
	margin-bottom: 45px;
}

.pu-cf-radio > div {
	margin-bottom: 45px;
	font-size: 16px;
	color:#101010;
}

.pu-cf-radio .wpcf7-list-item {
	position: relative;
	margin: 0 18px 0 0;
}

.pu-cf-radio .wpcf7-list-item-label {
	font-size: 15px;
	text-transform: uppercase;
	width: 220px;
	height: 64px;
	line-height: 64px;
	display: inline-block;
	border: 1px rgb(198 160 79 / 20%) solid;
	text-align: center;
}

.pu-cf-radio .wpcf7-list-item input {
	position: absolute;
	-webkit-appearance: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	outline: none;
}

.pu-cf-radio .wpcf7-list-item input:checked +  .wpcf7-list-item-label {
	background: var(--secondary);
}

.aiosp-container.aiosp-inline-holder.aiosp-ref-\#contact-popup .aios-popup-body {
	padding: 0;
	max-width: 1130px;
}
.pu-cf-content {
	padding: 60px 0;
}

.aiosp-container.aiosp-inline-holder.aiosp-ref-\#contact-popup .aios-popup-body .aiosp-close {
	background: var(--primary);
	color: #fff;
	opacity: 1;
	width: 70px;
	height: 70px;
	font-size: 45px;
}

.aiosp-container.aiosp-inline-holder.aiosp-ref-\#contact-popup .aios-popup-body .aiosp-close::after{
	content: 'CLOSE';
	display: block;
	font-size: 9px;
	margin-top: -20px;
}

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */

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

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

#content .archive-subtitle,
#content .archive-title,
#content .entry-title {
	font-size: 60px;
	font-family: var(--font-family-title);	
	position: relative;
	margin: 0;
	color: var(--primary);
}

#content .archive-subtitle {
	font-size: 30px;
	line-height: 1.2;
	margin-bottom: 20px;
}

#breadcrumbs a {
	color: var(--primary);
}

.entry-content a:not(class) {
	color: var(--primary);
}

#ip-amante-ii-about #welcome{
	padding-top: 0 !important;
}
#ip-amante-ii-about #content-full{
	margin-top: 0 !important;
}
#ip-amante-ii-about #breadcrumbs{
	margin: 20px 0 1.12em !important;
}
#ip-amante-ii-about .welcome-text .section-title-a{
	padding: 0 0 20px !important;
}

#listings-details .listings-disclaimer-inner>p, #listings-details .listings-disclaimer-inner>div {
	text-transform: none !important;
}


/* updates */
body.single-aios-communities div#content-full {
    margin-top: 0;
}
body.aios-custom-ihomefinder-details-template #inner-page-wrapper .wpcf7-form.use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 12px;
    width: fit-content;
}

#listings-details .listings-form .wpcf7-spinner {
    position: absolute;
    margin: 0;
}

.sitemap-list .page_item.page-item-318 {
    display: none;
}

body.aios-custom-ihomefinder-details-template #inner-page-wrapper .wpcf7-form.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    width: fit-content !important;
}


.error-page-content-wrapper span.wpcf7-not-valid-tip {
    position: absolute;
    width: fit-content;
}
.error-page-content-wrapper .wpcf7-response-output {
    text-align: center;
}
#aios-communities-iconic .aioscomu-details {
    text-shadow: 0 2px 2px #000;
}
.ai-communities-pagination ul li a.current, .ai-communities-pagination ul li span.current {
    color: var(--primary);
}

@media(max-width:1440px) {
	.header .custom-container {
		width: 95%;		
		padding: 0 80px 0 50px;
	}	
	.hdrnav>li:not(:last-child) {
		margin-right: 50px
	}
}

@media(max-width: 1199px) {
	.hdrnav>li:not(:last-child) {
		margin-right: 20px
	}	
	.hdrnav>li>a{
		font-size: 16px;
	}
}
/* 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.single-aios-rm-financing #content .aios-roadmaps-default-wrapper .aios-roadmaps-theme-1-headings div a i {
	    font-size: 0;
	}

	/* .amh-menu li:first-child {
	    display: none !important;
	} */

	.header .navigation, .hidden-mobile {
		display: none;
	}

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

	.header .custom-container {
		padding: 0;
	}
	.header .logo {
		margin-top: 50px;
	}


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

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

	.footer {
		width: 100%;
		background: #d7d7d7;
		padding: 30px 0;
	}

	.footer p {
		line-height: 1.7;
		text-align: center;
	}

	.footer .footernav {
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}

	.footer .footernav li {
		padding: 10px;
	}

	.footer .footer-logo {
		width: 100% !important;
		float: none !important;
	}

	.fc-card {
		display: block;
		width: 100%;
		text-align: center;		
	}
	.fc-card:first-child {
		border-right: 0;
		padding-right: 0;
		margin-right: 0;
		border-bottom: 1px #d5d5d5 solid;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.fc-card-logo img{
		display: block;
		margin: 20px auto;
	}
	.fc-card-body {
		padding-left: 0;
	}
	.fc-card-body ul li {
		justify-content: center;
	}

	#floating-smis {
		display: none;
	}

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

	.footer-su, .footer-su form {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footer-su h3 {
		margin-bottom: 20px;
		text-align: center;
	}

	.su-submit {
		margin-top: 20px;
	}
	
	html #content .aios-roadmaps-default-wrapper .aios-roadmaps-theme-1-headings div {
		padding: 0;
	}
	html #content .aios-roadmaps-default-wrapper .aios-roadmaps-theme-1-headings div a i {
		font-size: 0;
	}	


	/* updates */
	body.offcanvas-open {
	    overflow: scroll !important;
	}
	.offcanvas-menu {
	    display: none;
	}

	.pu-cf-field-radio .wpcf7-list-item-label {
	    font-size: 10px;
	}
	.pu-cf-field-radio .wpcf7-list-item label {
	    display: flex;
	    align-items: center;
	}
	.pu-cf-field-radio input[type="radio"] {
	    margin-top: 0;
	    margin-right: 5px;
	}

	.footer-cf .cf-content {
	    padding: 50px 10px;
	}
	.cf-field-radio .wpcf7-list-item-label {
	    font-size: 13px;
	}
	.cf-field-radio .wpcf7-list-item label input {
	    transform: translateY(2px);
	}
}

@media only screen and (max-width: 768px) {
	.pu-cf-field-radio .wpcf7-list-item {
	    margin: 10px 0;
	}
}

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

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

	.cf-field, .pu-cf-field {
		width: 100%;
	}

	.cf-field-radio .wpcf7-radio, .cf-field-radio .wpcf7-radio .wpcf7-list-item,
	.pu-cf-field-radio .wpcf7-radio, .pu-cf-field-radio .wpcf7-radio .wpcf7-list-item{
		display: block;
	}
	.footer-cf .custom-container, .contact-popup-main {
		display: block;
	}	

}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media(max-width: 480px) {
	.section-title :is(h1,h2), .footer-cf .section-title h2 {
		font-size: 35px;
	}	

	.section-btn {
		min-width: 95%;
		padding: 0 10px;
	}	

	.footer-cf .cf-content {
		padding: 20px;
	}

	body.page-id-22 h1.archive-title {
	    font-size: 45px !important;
	}

	.header .logo {
	    width: 100%;
	    max-width: 80px;
	    margin: 60px 0 0 0;
	}
	.header-logo-default {
	    padding: 1px 10px;
	}

	.cf-submit {

	    margin-top: 20px;
	}

	.footer-cf .wpcf7 .wpcf7-response-output {
	    bottom: -16px;
	    font-size: 12px;
	}
}


@media(min-width:1200px){
	html:not(.mobile):not(.safari.ipad):not(.safari.iphone):not(.mobile.android):not(.android) .canvas-bg.is-fixed canvas{
	    background-attachment: fixed;
	}
}


