:root {
	/** Font default */
	--font-family-default: "Montserrat", sans-serif;
	--font-family-title: "Prata", serif;
	/* --font-family-default: "Inter", sans-serif;
	--font-family-title: "Gilda Display", serif; */
	--font-size-default: 14px;
	--font-size-title: 18px;
	--font-color-default: #000000;
	--font-color-title: #6c757d;
	/** Use for input, button, and any other element */
	--primary: #007bff;
	--secondary: #6c757d;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #343a40;
	--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 0 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.offcanvas-open {
	overflow: hidden;
}

a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
}

.custom-container {
	margin: 0 auto;
	width: 87.1875%;
	max-width: 1395px;
}

.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+ :is(.container, .custom-container) {
	position: relative;
	z-index: 2;
}

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

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

.section-title :is(h1, h2) {
	font-family: var(--font-family-title);
	font-size: 60px;
	font-size: clamp(40px, 3.75vw, 60px);
	margin: 0;
}

.section-title :is(h1, h2) small {
	display: block;
	font-family: var(--font-family-default);
	font-size: 30px;
	font-size: clamp(15px, 1.875vw, 30px);
	color: #000;
}

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

.section-text p {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.02em;
}

.section-btn {
	text-transform: uppercase;
	text-decoration: none;
	transition: all .5s;
	position: relative;
	color: #000;
	font-size: 14px;
	letter-spacing: 0.12em;
	background: transparent;
	border: 0;
}

.section-btn::after {
	content: '';
	width: 13px;
	height: 1px;
	background: #000;
	vertical-align: middle;
	transition: all .5s;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% + 10px);
}

.section-btn:hover {
	color: #000;
}

.section-btn:hover::after {
	width: 35px;
}

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

.section-btn.is-white:hover {
	color: #999;
}

.section-btn.is-white::after {
	background: #fff;
}

.site-monogram {
	position: absolute;
	opacity: .03;
	pointer-events: none;
}

.slider-arrow {
	border: 0;
	background: transparent;
	font-size: 0;
	transition: all .5s;
}

.slider-arrow:hover {
	opacity: 0.6;
}

.slider-arrow-prev img {
	transform: scaleX(-1);
}

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

body.logged-in header {
	top: 32px;
}

.header .custom-container {
	width: calc(100% - 40px);
	max-width: max(90vw,1400px);
	position: relative;
	display: flex;
	align-items: center;
}

.header.fixed {
	padding: 8px 0;
	position: fixed;
	animation: smoothScroll 1s forwards;
	background: #fff;
}

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

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

.header-logo {
	filter: brightness(0) invert(1);
	max-width: 179px;
}

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

.header-menu {
	transition: all .5s;
	opacity: 1;
	top: -5px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.header.fixed .header-menu {
	top: 0;
}

.menu-primary-menu-container:has(.aios-split-nav) {
	display: flex;
}

:is(.hdr-menu, .aios-split-nav) {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

:is(.hdr-menu, .aios-split-nav)>li {
	position: relative;
	padding: 0 30px;
	/* padding: 0 1.5625vw; */
	padding: 0 1.2vw;
}

:is(.hdr-menu, .aios-split-nav)>li.login-link {
	display: none;
}

.header.fixed :is(.hdr-menu, .aios-split-nav)>li:not(:first-child-child) {
	border-left: 1px #fff solid;
}

:is(.hdr-menu, .aios-split-nav)>li>a {
	/* font-size: 14px; */
	/* font-size: clamp(11px,0.8750000000000001vw,14px); */
	font-size: max(9px,0.75vw);
	color: #fff;
	font-weight: 400;	
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1;
	display: block;
	position: relative;
	transition: var(--default-transition);
	text-decoration: none;
}

:is(.hdr-menu, .aios-split-nav)>li>a:hover {
	text-decoration: none;
	color: #ccc;
}

.header.fixed :is(.hdr-menu, .aios-split-nav)>li>a:not(:hover) {
	color: #000;
}

:is(.hdr-menu, .aios-split-nav)>li>a:after {
	content: '';
	position: absolute;
	left: 50%;
	width: 0;
	height: 3px;
	background: #fff;
	transform: translateX(-50%);
	bottom: -5px;
	height: 3px;
	opacity: 0;
	z-index: 1;
	transition: all .5s;
	text-align: center;
	color: #dfceba;
}

/* :is(.hdr-menu,.aios-split-nav)>li:hover>a:after,
:is(.hdr-menu,.aios-split-nav)>li:focus>a:after {
	width: 82px;
	opacity: 1;	
} */

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

:is(.hdr-menu, .aios-split-nav)>li:hover>.sub-menu {
	padding: 15px 0 0;
}

.header.fixed :is(.hdr-menu, .aios-split-nav)>.sub-menu {
	padding-top: 55px;
}

.header.fixed :is(.hdr-menu, .aios-split-nav)>li:hover>.sub-menu {
	padding-top: 11px;
}

:is(.hdr-menu, .aios-split-nav) li:hover>.sub-menu,
:is(.hdr-menu, .aios-split-nav) li:focus>.sub-menu,
:is(.hdr-menu, .aios-split-nav) li:focus-within>.sub-menu {
	opacity: 1;
	visibility: visible;
}

:is(.hdr-menu, .aios-split-nav) .sub-menu li {
	display: block;
	position: relative;	
	background: rgb(0 0 0 / .82);	
}
:is(.hdr-menu, .aios-split-nav) .sub-menu li:hover {
	background: #000;
}

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

:is(.hdr-menu, .aios-split-nav) .sub-menu li:hover a {
	border-color: var(--secondary);
}

:is(.hdr-menu, .aios-split-nav) .sub-menu li:hover:before,
:is(.hdr-menu, .aios-split-nav) .sub-menu li:focus:before {
	opacity: 1;
}

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


:is(.hdr-menu, .aios-split-nav) .sub-menu a:hover::before {
	opacity: 1;
}

:is(.hdr-menu, .aios-split-nav) .sub-menu a:hover {
	text-decoration: none;
}

:is(.hdr-menu, .aios-split-nav) .sub-menu a:hover,
:is(.hdr-menu, .aios-split-nav) .sub-menu a:focus {
	color: #fff;
}

:is(.hdr-menu, .aios-split-nav) .sub-menu .sub-menu {
	margin-left: 100%;
	padding: 0 0 0 1px;
	top: 0;
}

.header-right{
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	position: relative;
	top: -5px;
}
.header.fixed .header-right{
	top: 0;
}
.header-phone{

}
.header-phone a{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    position: relative;
    transition: var(--default-transition);
    text-decoration: none;
}
.header.fixed .header-phone a{
    color: #000;
}
.header.fixed .header-phone a:hover,
.header-phone a:hover{
	color: #ccc;
}
.header-menu-button {
	/*margin-right: 35px;*/
}

.header-login a {
	background: var(--secondary);
	color: #fff;
	width: 135px;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 12px;
}

.header a[data-title="Explore"] + .sub-menu{
	columns: 2;
	background: rgb(0 0 0 / 82%);
	min-width: 450px;
	top: 36px;
	padding: 0;
}

.header a[data-title="Explore"] + .sub-menu li {
	background: transparent;
}

.header a[data-title="Explore"] + .sub-menu a {
	line-height: 1.3;
}



.offcanvas-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	transition: all .5s;
}

.offcanvas-toggle:hover {
	opacity: .5;
}

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

.offcanvas-menu .canvas-bg {
	opacity: 0.06;
}

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;
	background: #fff;
	overflow: hidden;
}

.offcanvas-menu-inner .site-monogram {
	top: -25%;
	left: -12%;
	transform: translate(0);
	opacity: .06;
	width: 65%;
}

.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: 80px 0;
}

.offcanvas-logo {
	margin-bottom: 75px;
	padding: 0 60px;
	padding: 0 3.75vw;
	display: flex;
	justify-content: center;
}

.offcanvas-menu-nav {
	/* padding: 0 90px;	 */
	padding: 0 5.625vw;	
}

.side-navi {
	display: flex;
	/* justify-content: space-between; */
	justify-content: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.side-navi>li {
	font-size: 23px;
	font-family: var(--font-family-title);
	font-weight: 500;
	margin-bottom: 25px;
	line-height: 1.3;
	letter-spacing: 0.05em;
}

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

.side-navi>li>ul a {
	color: #212121;
	font-size: 16px;
	letter-spacing: 0.12em;
}

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

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

.offcanvas-close {
	position: absolute;
	right: 100px;
	top: 50px;
	right: 6.25vw;
	top: 3.125vw;
	font-size: 14px;
	color: #000;
	width: 35px;
	height: 18px;
	justify-content: center;
	align-items: center;
	display: flex;
	cursor: pointer;
	transition: all .5s;
	text-transform: uppercase;
}

.offcanvas-close:hover {
	color: #ccc;
}

.offcanvas-close i {
	font-size: 28px;
	font-weight: 700;
	margin-left: 18px;
}

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

.offcanvas-toggle-label {
	letter-spacing: 0.05em;
	font-size: 14px;	
	/* font-size: clamp(11px,0.8750000000000001vw,14px); */
	font-size: max(9px,0.75vw);
	margin-right: 20px;
	margin-right: 1.0416666666666665vw;
}

.header.fixed .offcanvas-toggle-label  {
	color: #000;
}

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

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

.offcanvas-toggle-lines i:nth-child(2) {
	width: 30px;
	margin-left: auto;
	display: none;
}

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

.offcanvas-toggle-lines:hover i {
	background: #ccc;
}

.offcanvas-contact {
	border-top: 1px rgb(255 255 255 / .20) solid;
	margin: 30px 3.75vw 0;
	padding: 30px 60px 0;
	padding: 1.875vw 0 0;
}

.offcanvas-contact-info-holder {
	border-top: 1px rgb(63 63 63 / .10) solid;
	padding-top: 30px;
}

.offcanvas-contact-info-holder h3,
.offcanvas-contact-info-holder .contact-title {
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.offcanvas-contact-info-list {
	display: flex;
	margin-bottom: 40px;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
}

.offcanvas-contact-info-list-item {
	font-size: 14px;
	font-weight: 300;
	align-content: center;
	color: #fff;
	text-align: left;
	line-height: 24px;
	letter-spacing: 0.075em;
	width: 50%;
}

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

.offcanvas-contact-info-list-item strong {
	font-weight: 600;
}


.offcanvas-contact-smis {
	width: 50%;
}

.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;
	color: #fff;
}

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

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

.offcanvas-contact-info i {
	font-size: 14px;
	margin-right: 15px;
	color: var(--primary);
}

.offcanvas-contact-info i.ai-font-envelope {
	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 {
	overflow: hidden;
	position: relative;
	z-index: 2;
	display: block;
}

.footer-form-wrap {
	padding: 100px 0;
	padding: 6.25vw 0;
	position: relative;
	background: #000;
}

.footer-form-wrap .site-monogram {
	left: auto;
	right: 20px;
	opacity: 0.11;
	filter: brightness(0) invert(1);
}

.footer-form-wrap::after {
	content: '';
	pointer-events: none;
	position: absolute;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 132px 0 0 138px;
	border-color: transparent transparent transparent #fff;
	transform: rotate(270deg);
	bottom: 0;
	right: -10px
}

.footer-form-wrap .canvas-bg {
	width: 50%;
}

.footer-form-wrap .canvas-bg::after {
	content: '';
	pointer-events: none;
	position: absolute;
	width: 50%;
	height: 100%;
	right: 0;
	top: 0;
	background: linear-gradient(to left, #000, rgb(0 0 0 / 0%));
}

.footer-form-wrap .custom-container {
	margin: 0 0 0 auto;
	max-width: none;
	width: 50%;
	padding: 0 100px;
	padding: 0 6.25vw;
}

.footer-form-wrap .section-title :is(h1, h2) small {
	font-size: 16px;
}

.footer-form-wrap .section-title :is(h1, h2) small::after {
	content: '';
	display: block;
	width: 1px;
	height: 15px;
	background: #fff;
	margin: 15px 0 10px;
}

.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--thirds {
	width: calc(33.33% - 5px);
}

.footer-form-holder .ff-field .wpcf7-form-control {
	width: 100%;
	background: transparent;
	-webkit-box-shadow: none;
	border: 0;
	border-bottom: 1px rgb(255 255 255 / .50) solid;
	padding: 20px 0;
	font-size: 14px;
	outline: none;
	color: #fff;
	margin: 5px 0;
	letter-spacing: 0.075em;
}

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

.footer-form-holder .ff-field [data-name="your-message"] .wpcf7-not-valid-tip {
	top: auto;
	bottom: 50px;
}

.footer-form-holder .ff-consent {
	color: #fff;
	font-size: 11px;
	line-height: 1.8;
	max-width: 960px;
	margin: 0 auto 50px;
}

.footer-form-holder .ff-consent input[name="consent-checkbox"] {
	position: absolute;
	left: -10px;
	margin-top: 2px;
}

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

.footer-form-right {
	width: 50%;
	position: relative;
	margin-top: 80px;
}

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

.footer-main {
	padding: 95px 0 50px;
	font-size: 15px;
	color: #000;
	position: relative;
}

.footer-main .custom-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1330px;
}

.footer-main h3 {
	margin-bottom: 20px;
	font-size: 24px;
	font-family: var(--font-family-title);
}

.footer-main ul {
	line-height: 2;
}

.f-social-links a:not(:last-child)::after {
	content: '/';
	margin: 0 5px;
}

.footer-main p {
	font-size: 12px;
	line-height: 2.1;
}

.footer-main .canvas-bg canvas {
	opacity: .10;
}

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

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

.footer-logo {
	width: 28%;
	margin-bottom: 50px;
	margin-bottom: 2.604166666666667vw;
	margin-right: 5%;
}

.footer-logo .textwidget {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.footer-contact {
	width: 35%;
	padding-top: 45px
}

.footer-contact-info-list {
	display: flex;
	margin-bottom: 40px;
	justify-content: center;
}

.footer-contact-info-list-item {
	font-size: 15px;
	line-height: 1.9;
	letter-spacing: 0.075em;
	font-weight: 300;
	align-content: center;
	text-transform: uppercase;
}

.footer-contact-info-list-item:not(:last-child) {
	border-right: 1px rgb(63 63 63 / .60) solid;
	padding-right: 12px;
	margin-right: 12px;
}

.footer-contact-info-list-item strong {
	font-weight: 600;
}

.footer-contact-smis {
	width: 100%;
	text-align: center;
}

.footer-contact-smis a {
	margin: 0 12px;
	font-size: 25px;
}

.footer-locations-wrap {
	gap: 50px;
}

.footer-location-info ul {
	margin-bottom: 35px;
	line-height: 1.8;
	font-family: var(--font-family-title);
}

.footer-location-info .location-name {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
}

.footer-location-info .location-phone {
	font-weight: 700;
}

.footer-location-info .location-map {
	margin-bottom: 40px;
	border: 4px #cb9c44 solid;
}

.footer-location-info .location-map iframe {
	display: block;
}

.footer-nav {
	width: 25%;
	margin-left: 5%;
	padding-top: 45px;
}


.footer .footernav {
	font-size: 15px;
	letter-spacing: 1px;
	columns: 2;
}

.footer-disclaimer {
	width: 100%;
	margin-top: 90px;
	margin-top: 4.6875vw;
	text-align: center;
}

.footer-disclaimer p {
	margin-bottom: 30px;
}

.footer-subscribe {
	padding: 0 0 45px;
	margin: 45px 0;
	border-bottom: 1px rgb(63 63 63 / .10) solid;
}

.footer-subscribe h3 {
	font-size: 24px;
	font-weight: 500;
	font-family: var(--font-family-title);
	margin-bottom: 25px;
}

.footer-subscribe form {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.footer-subscribe .subs-field {
	display: inline-block;
}

.footer-subscribe .subs-field .wpcf7-not-valid-tip {
	position: absolute;
	right: 0;
	width: auto;
	left: auto;
	top: 50%;
	transform: translateY(-50%);
}

.footer-subscribe .subs-field .wpcf7-form-control {
	width: 100%;
	background: transparent;
	border: 0;
	border-bottom: 1px #000 solid;
	padding: 12px 0;
	font-size: 14px;
	outline: none;
	color: #cbcbcb;
	margin: 5px 0;
}

.footer-subscribe .subs-field .wpcf7-form-control::placeholder {
	text-transform: uppercase;
}

.footer-subscribe .subs-submit {
	display: inline-block;
	width: 160px;
}

.footer-subscribe .subs-submit .wpcf7-spinner {
	position: absolute;
}

.footer-subscribe .subs-submit .section-btn {
	min-width: 160px;
	height: 50px;
}

.footer-subscribe .subs-consent {
	font-size: 10px;
	line-height: 1.8;
	text-align: left;
	max-width: 595px;
	margin: 30px auto 0;
}

.footer-subscribe .subs-consent [name="consent-checkbox"] {
	position: absolute;
	left: -20px;
	margin-top: 2px;
}

.footer-copyright {
	font-size: 14px;
	line-height: 1.5;
	width: 100%;
	margin-top: 25px;
	text-align: center;
}

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

.footer-copyright p .agent-name {
	font-weight: 700;
}

.footer-copyright .ai-icon {
	display: inline-block;
	font-size: 30px;
	margin: 0 5px;
	vertical-align: middle;
}

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


/* popup: form */
.aiosp-container.aiosp-inline-holder.aiosp-ref-\#popup-form .aios-popup-body {
	background: #000;
	padding: 5% 10%;
	max-width: 1000px;
	color: #fff;
	clip-path: polygon(89.11% 100%, 100% 80%, 100% 0%, 0% 0%, 0% 100%);
}

.aiosp-container.aiosp-inline-holder.aiosp-ref-\#popup-form .aios-popup-body .aiosp-close {
	color: #fff;	
	width: 100px;
	height: 100px;
	opacity: 1;
	font-size: 0;
}
.aiosp-container.aiosp-inline-holder.aiosp-ref-\#popup-form .aios-popup-body .aiosp-close::before {
	content: "\b0241";
	font-size: 18px;
	font-family: agentimage! important;
}


#popup-form .section-title :is(h1, h2) small {
	font-size: 16px;
	margin-bottom: 15px;
	letter-spacing: 0.12em;
}

body:has(.aiosp-container.aiosp-inline-holder.aiosp-ref-\#popup-form) .aiosp-bg {
	background: #fff;
	opacity: .90;
}

#popup-form .wpcf7-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#popup-form .pu-field {
	width: 100%;
	position: relative;
}

#popup-form .pu-field .wpcf7-not-valid-tip {
	position: absolute;
	right: 8px;
	top: 0;
	left: auto;
	width: auto;
}

#popup-form .wpcf7 {
	position: relative;
}

#popup-form .wpcf7 form .wpcf7-response-output {
	position: absolute;
	width: 100%;
	background: #fff;
	bottom: -50px;
	color: #000;
	margin: 0;
	text-align: center;
}

#popup-form .pu-field--half {
	width: calc(50% - 15px);
}

#popup-form .pu-field--thirds {
	width: calc(33.33% - 5px);
}

#popup-form .pu-field .wpcf7-form-control {
	width: 100%;
	background: transparent;
	-webkit-box-shadow: none;
	border: 0;
	border-bottom: 1px rgb(255 255 255 / .50) solid;
	padding: 20px 0;
	font-size: 14px;
	outline: none;
	color: #fff;
	margin: 5px 0;
	letter-spacing: 0.075em;
}

#popup-form .pu-field .wpcf7-textarea {
	height: 80px;
	resize: none;
	margin-bottom: 30px;
}

#popup-form .pu-field [data-name="your-message"] .wpcf7-not-valid-tip {
	top: auto;
	bottom: 50px;
}

#popup-form .pu-consent {
	color: #fff;
	font-size: 11px;
	line-height: 1.8;
	max-width: 960px;
	margin: 0 auto 50px;
}

#popup-form .pu-consent input[name="consent-checkbox"] {
	position: absolute;
	left: -10px;
	margin-top: 2px;
}

#popup-form .pu-submit {
	width: 100%;
	text-align: center;
}

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

#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
	background: var(--secondary) !important;
}

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

body.ihf-results-template #content-sidebar #content{
    width: 100%;
    float: none;
}
body.ihf-results-template aside.sidebar{
    display: none;
}

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

.category-press #content-sidebar #content,
.category-testimonials #content-sidebar #content{
	width: 100%;
}

.category-press .sidebar,
.category-testimonials .sidebar{
	display: none;
}

#hp-testi{
    /*background: url(images/testi-bg.jpg) center center no-repeat;*/
    background-size: cover;
    position: relative;
    padding: 148px 0;
}
.testi-wrapper{
    max-width: 664px;
}
.testi-wrapper .testi-top{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 44px;
}
.testi-wrapper .testi-top h2{
    font-size: 31px;
    letter-spacing: 0.200em;
    text-transform: uppercase;
}
.testi-wrapper .testi-nav{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.testi-wrapper .testi-nav span{
    width: 26px;
    height: 25px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.testi-wrapper .testi-nav span:hover{
    opacity: .4;
}
.testi-wrapper .testi-nav span.testi-prev{
    margin: 0 10px 0 0;
    /* background:url(images/testi-prev.png) center center no-repeat; */
    background: url(../../images/spritesheet.png)no-repeat;
    width: 26px;
    height: 25px;
    background-position: -127px -36px;
}
.testi-wrapper .testi-nav span.testi-next{
    background:url(../../images/spritesheet.png) center center no-repeat;
    width: 26px;
    height: 25px;
    background-position: -91px -36px;
}
.testi-slide{}
.testi-slide ul{}
.testi-slide li{
    font-size: 18px;
    color:#000;
    line-height: 29px;
    letter-spacing:0.030em;
    text-align: justify;
}
.testi-slide h3{
    font-size: 20px;
    margin: 38px 0 0;
}

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

/* new */
body:has(main.main--new) .section-btn::after {
	display: none;
}
body:has(main.main--new) .section-btn {
	border: 1px #000 solid;
	/* border-radius: 20px 0 20px 0; */
	border-radius: 1.25vw 0 1.25vw 0;
	display: inline-flex;
	height: 50px;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 40px;
	min-width: 205px;
	overflow: hidden;
}
body:has(main.main--new) .section-btn span {
	position: relative;	
}
body:has(main.main--new) .section-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	transition: all .5s;
	opacity: 0;
	background: linear-gradient(to right, #2a2a2a, #585858);
}
body:has(main.main--new) .section-btn.is-white {
	border-color: #fff;
}
body:has(main.main--new) .section-btn:hover {
	/* border-radius: 0 20px 0 20px; */
	border-radius: 0 1.25vw 0 1.25vw;
	border-color: #252525;
	color: #fff;
}
body:has(main.main--new) .section-btn:hover::before {
	opacity: 1;
}

body:has(main.main--new) .section-title :is(h1, h2) {
	/* font-size: 50px; */
	font-size: clamp(25px,3.125vw,50px);
	text-transform: uppercase;
}

.footer.footer--new .footer-main h3 {
	font-size: 24.06px;
	text-transform: uppercase;
}
.footer.footer--new .footer-form-wrap .section-title :is(h1, h2) small {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.12em;
	margin-bottom: 20px;
}
.footer.footer--new .footer-form-wrap .section-title :is(h1, h2) small::after {
	display: none;	
}

.footer.footer--new .footer-form-wrap::after{
	display: none;
}
.footer.footer--new .footer-form-wrap{
	border-bottom-right-radius: 140px;
	overflow: hidden;
}

.offcanvas-menu-inner {
	border-bottom-right-radius: 150px;
	overflow: hidden;	
}
.offcanvas-overlay {
	background: rgb(0 0 0 / 80%);
}
.side-navi a[data-title="Explore"] + .sub-menu {
    columns: 2;
}
.side-navi>li {
    letter-spacing: normal;
}

.aiosp-container.aiosp-inline-holder.aiosp-ref-\#popup-form .aios-popup-body {
	clip-path: none;
	/* border-radius: 0 0 150px 0; */
	border-radius: 0 0 9.375vw 0;
}
/* end new */
/* offcanvas menu */
@media(min-width:992px) {
	html:has(body.offcanvas-open) {
		overflow: hidden;
	}
	.header-logo{
		max-width: min(12.517vw,179px);
	}
	.header.fixed .header-logo{
		max-width: 70px;
	}
	:is(.hdr-menu, .aios-split-nav)>li>a{
		letter-spacing: 0.040em;
	}
	.header-right{
		gap: min(1.399vw,20px);
	}
	.header-phone a{
	    /* font-size: clamp(11px,0.8750000000000001vw,14px); */
		font-size: max(9px,0.75vw);
	}
	.offcanvas-toggle-lines{
		width: min(3.497vw,50px);
	}
}
@media(min-width:1200px) {
	:is(.hdr-menu, .aios-split-nav)>li>a{
		letter-spacing: 0.12em;
	}
}
@media(max-width: 1199px) {
	:is(.hdr-menu, .aios-split-nav)>li>a {
		/*font-size: 11px;*/
	}
	.header-logo {
		/*max-width: 120px;*/
	}
}
@media only screen and (max-width: 991px) {
	.header {
		position: fixed;
		background: #000;
	}
	.header-logo {
		max-width: 70px;
	}
	.header .custom-container {
		justify-content: space-between;
		/*padding: 0 30px;*/
		padding: 0 15px;
		width: 100%;
	}	

	.header-menu {
		display: none;
	}

	.header-menu-button {
		margin-right: 0;
	}

	.footer-form .custom-container {
		width: 95%;
		padding: 0;
		margin: 0 auto;
	}

	.footer-form-wrap .canvas-bg {
		width: 100%;
	}

	.footer-form-wrap .canvas-bg::after {
		width: 100%;
		background: #000;
		opacity: .5;
	}

	.footer-logo, .footer-contact, .footer-nav {
		width: 100%;
		text-align: center;
		margin-left: 0;
	}

	.footer-logo {
		margin-right: 0;
	}

	.footer .footernav {
		columns: 1;
	}

	.footer-main ul li strong {
		display: block;
	}
	
	.footer-copyright {
		max-width: 480px;
		margin: 0 auto;
	}

	.footer-form-wrap::after {
		display: none
	}	
	
	/* 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%;
	}

	.side-navi {
		display: block;
		text-align: center;
	}

	.offcanvas-open .offcanvas-close {
		top: 30px;
		right: 60px;
		position: fixed;
	}

	.offcanvas-menu-inner {
		border-bottom-right-radius: 0;
	}	
}

@media only screen and (max-width: 767px) {
	.ip-banner .container {
		width: 100%;
	}
}

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