:root {
	/** Font default */
	--font-family-default: "Montserrat", sans-serif;
	--font-family-title: "Libre Baskerville", serif;
	--font-size-default: 14px;
	--font-size-title: 18px;
	--font-color-default: #000000;
	--font-color-title: #000000;
	/** Use for input, button, and any other element */
	--primary: #000;
	--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 {
	width: 1480px;
	width: 92.5vw;
	margin-left: auto;
	margin-right: auto;
}

.pr {
	position: relative;
}

.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;
	margin-bottom: 2.5vw;
}

.section-title :is(h1, h2) {
	font-weight: 400;
	font-size: 28px;
	font-size: 1.7500000000000002vw;
	font-family: var(--font-family-title);
	color: var(--font-color-title);
	margin: 0;
	line-height: 1.3;
	letter-spacing: 0.25em;
	position: relative;
	text-wrap: balance;
	text-transform: uppercase;
	display: inline-block;
}

.section-text p {
	font-size: 15px;
	font-size: 0.9375vw;
    line-height: 2;
    letter-spacing: 0.025em;
	color: #454545;
}


.section-text p:not(:last-child) {
	margin-bottom: 20px;
	margin-bottom: 1.25vw;
}

.section-btn {
	display: inline-flex;
	align-items: center;
	/* min-width: 220px; */
	height: 60px;
	height: 3.75vw;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 13px;
	font-size: 0.8125vw;
	position: relative;
	border-bottom: 1px #ccc solid;
	background: transparent;
	color: #000;
	transition: all .5s;
	padding: 0;
	letter-spacing: 0.4em;
}

.section-btn:hover, .section-btn:focus {
	color: #000;
	text-decoration: none;
	font-weight: 700; 
}

.section-btn-arrow {
	width: 35px;
	height: 16px;
	width: 2.1875vw;
	height: 1vw;
	display: inline-block;
	background: url(../../assets/images/home/arrow.png) no-repeat;
	background-position: right;
	margin-right: 25px;
	margin-right: 1.5625vw;
	background-size: contain;
	opacity: 0.7;
}

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

.section-btn:hover .section-btn-arrow  {
	opacity: 1;
}

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

.section-btn.is-white .section-btn-arrow {
	filter: brightness(0) invert(1);
}

.section-btn.is-white:hover {
}

.section-title.with-line {
	display: flex;
	align-items: center;
}

.section-title.with-line::after {
	content: '';
	background: #ccc;
	display: inline-block;
	flex: 1;
	height: 1px;
	margin-left: 60px;
	margin-right: -7.5vw;
}

.slider-arrow {
	font-size: 0 !important;;
	border: 0
}

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

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

.offcanvas-open .header {
	opacity: 0;
}

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

.header .custom-container {
	width: 1480px;
	width: 92.5vw;
	position: relative;
	display: flex;
	align-items: center;
}

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

.header.fixed .header-logo img {
	max-width: 180px;
}

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

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

.header-logo {
	overflow: hidden;
	text-align: center;
	transition: all .5s;
	filter: brightness(0) invert(1);
	transition: all .5s;
	width: 276px;
	width: 17.25vw;
}

.header.fixed .header-logo {
}

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

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

:is(.hdr-menu, .aios-split-nav)>li>a {
	font-size: 14px;
	font-size: 0.8750000000000001vw;
	letter-spacing: 0.1em;
	font-family: var(--font-family-default);
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1;
	padding: 5px 0;
	padding: 0.3125vw 0;
	display: block;
	position: relative;
	transition: var(--default-transition);
}

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

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

: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: 32px;
}

: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;
	padding: 2px;
	background: rgb(0 0 0 / .60);
	margin: 1px 0;
}

:is(.hdr-menu, .aios-split-nav) .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;
}

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

: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 {
	text-decoration: none;
	color: #fff;
	background: #000;
}

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

.offcanvas-toggle-label {
    display: none;
}
.hdr-menu li[class*="icon-"] {
	/* padding: 0 15px; */
	padding: 0 0.9375vw;
}
.hdr-menu li[class*="icon-"] a {
    font-size: 0;
}
	.hdr-menu li[class*="icon-"] a:hover {
		opacity: 0.7;
	}
.hdr-menu li[class*="icon-"] a:before {
	position: relative;
    font-family: agentimage !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.hdr-menu li[class*="icon-"] a:before,
.hdr-menu li[class*="icon-"] a i {
	/* font-size: 20px; */
	font-size: 1.25vw;
}
.hdr-menu li[class*="icon-"] a i.ai-font-envelope-f {
    /* font-size: 14px; */
	font-size: 0.875vw;
}
.hdr-menu li.icon-search a:before {
    content: "\b0039";
}
.hdr-menu li.icon-contact a:before {
    content: "\b0204";
}

.header-phone {
	font-size: 20px;
	font-size: 1.25vw;
	font-weight: 600;
	letter-spacing: 0.075em;
	margin-left: 45px;
	margin-left: 2.8125vw;
	margin-right: auto;
}

.header-phone a {
	color: #fff;
}

.header.fixed .header-phone a {
	color: var(--primary);
}

.header-menu-button {
	margin-left: 30px;	
	margin-left: 1.875vw;	
}

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

/* 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;
	opacity: 0;
	pointer-events: none;
}

.offcanvas-menu .canvas-bg {
	opacity: 0.05
}

body.offcanvas-open .offcanvas-menu {
	right: 0;
	opacity: 1;
	pointer-events: all;
}

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

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

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

.offcanvas-logo {
	margin-bottom: 80px;
	padding: 0 60px;
	padding: 0 3.75vw;
}

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

.offcanvas-logo .textwidget {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 75px;
}


.offcanvas-menu-nav {
	padding: 0 60px;
	padding: 0 3.75vw;
}

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

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

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

.side-navi>li>ul {
	margin-top: 25px;
	line-height: 1.5;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: normal;
}

.side-navi>li>ul a {
	color: #cccccc;
	text-transform: uppercase;
}

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

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

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

.offcanvas-close::after {
	content: 'CLOSE';
	font-size: 12px;
	margin-left: 20px;
}

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

.offcanvas-close i {
	font-size: 16px;
	font-weight: 700;
}

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

.offcanvas-toggle-lines {
	width: 27px;
	height: 7px;
	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;
}


.offcanvas-toggle-lines i:first-child,
.offcanvas-toggle-lines i:last-child {
	width: 18px;
}

.offcanvas-toggle-lines i:first-child {
	display: none;
}

.offcanvas-toggle-lines i:last-child {
	margin-left: auto;
}

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

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

.offcanvas-toggle-label {
	font-size: 12px;
	font-size: 0.75vw;
	font-weight: 300;
	color: #fff;
	text-transform: uppercase;
	margin-left: 24px;
	margin-left: 1.5vw;
	letter-spacing: 0.2em;
}

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



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

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

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

.offcanvas-contact-info-list-item i {
	margin-right: 15px;
}

.offcanvas-contact-info-list-item .ai-font-location-b {
	font-size: 20px;
	top: 2px;
}

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

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

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


.offcanvas-contact-smis {
	width: 100%;
	border-top: 1px rgb(63 63 63 / .10) solid;
	text-align: left;
	margin-top: 30px;
	padding-top: 30px;
}

.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: var(--primary);
}

.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 {
	background: var(--primary);
}

.footer-form-wrap {
	padding: 100px 0;
	padding: 6.25vw 0;
}

.footer-form-wrap .canvas-bg {
	background: #000;
}

.footer-form-wrap .canvas-bg canvas {
	opacity: .30;
}

.footer-form .custom-container {
	margin: 0 auto;
	max-width: 1140px;
}

.footer-form .custom-container p {
	color: #fff;
	text-align: center;
	line-height: 1.5;
	max-width: 925px;
	margin: 0 auto 30px;
	font-size: 15px;
	line-height: 1.9;
	letter-spacing: 0.075em;
}

.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-form-control::placeholder {
	text-transform: uppercase;
}

.footer-form-holder .ff-field label[for="ff-message"] {
	margin: 30px 0;
	display: block;
	text-transform: uppercase;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.075em;
}

.footer-form-holder .ff-field .wpcf7-textarea {
	height: 180px;
	resize: none;
	margin-bottom: 30px;
	border: 1px rgb(255 255 255 / .50) solid;
	padding: 10px;
}

.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 {
	background: #fff;
	padding: 65px 0 55px;
	font-size: 15px;
	color: #000;
	position: relative;
}

.footer-main p {
	font-size: 13px;
	line-height: 2;
    letter-spacing: 0.05em;
}

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

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

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

.footer-main .custom-container {
	max-width: 1140px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}

.footer-logo {
	margin-bottom: 50px;
	width: 40%;
}

.footer-logo>.textwidget {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 25px;
}

.footer-contact-info {
	width: 50%;
}

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

.footer-contact-info-list-item {
	font-size: 15px;
	line-height: 1.4;
	letter-spacing: 0.075em;
	font-weight: 300;
	width: 50%;
	position: relative;
	margin-bottom: 20px;
}

.footer-contact-info-list-item > i {
	width: 30px;
	top: 2px;
	font-size: 20px;
	font-weight: 700;
	position: absolute;
	left: -30px;
}

.footer-contact-info-list-item > i.ai-font-location-b {
	font-weight: 700;
}

.footer-contact-info-list-item i.ai-font-envelope-o {
	font-size: 13px;
	top: 4px;
}

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

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

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

.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: 100%;
	padding: 25px 0;
	margin: 0 0 50px;
	border-top: 1px rgb(63 63 63 / .10) solid;
	border-bottom: 1px rgb(63 63 63 / .10) solid;
}

.footer .footernav {
	font-size: 14px;
	font-family: var(--font-family-default);
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
}

.footer .footernav li {
	display: inline-block;
	margin: 0 25px;
}

.footer-copyright {
	width: 35%;
	font-size: 14px;
	line-height: 1.5;
	padding: 0 15px;
	order: 4;
}

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

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

.footer-disclaimer {
	width: 55%;
	order: 5;
	text-align: right;
}

/* popup */
.aiosp-container.aiosp-inline-holder.aiosp-ref-\#inquire-popup .aios-popup-body{
    max-width: 870px;
	padding: 0;
    background: rgb(255 255 255 / 40%);
	padding: 20px;
}

.aios-popup-body .aiosp-close {
	top: 30px;
	right: 30px;
	color: #000;
	opacity: 1;
	font-size: 40px;
}

.inquire-popup-inner {
	display: flex;
	background: #fff;
}

.inquire-popup-left {
	width: 45%;
}

.inquire-popup-left img {
	object-fit: cover;
	height: 100%;
}

.inquire-popup-right {
	text-align: center;
	padding: 80px 40px ;
	width: 55%;
}

.inquire-popup-right h2 span {
	text-transform: uppercase;
	font-size: 12.53px;
	color: #7d7d7d;
	letter-spacing: 0.6em;
	margin-bottom: 12px;
	display: block;
}

.inquire-popup-right h2 img {
	margin-bottom: 20px;
}

.inquire-popup-right p {
	font-size: 13px;
	color: #454545;
	margin-bottom: 30px;
	line-height: 1.8;
}

.inquire-popup-right .wpcf7 {
	position: relative;
}

.inquire-popup-right .wpcf7 form {
	display: flex;
	flex-wrap: wrap;
	
}

.pu-field, .pu-submit {
	width: 100%;
	position: relative;
}

.pu-field--half {
	width: 50%;
}

.pu-field .wpcf7-form-control {
	border: 0;
	border-bottom: 1px #a6a6a6 solid;
	padding: 18px 0;
	outline: none;
	width: 100%;
}

.pu-field .wpcf7-form-control::placeholder {
	text-transform: uppercase;
}

.pu-field  .wpcf7-textarea {
	height: 60px;
	resize: none;
}

.pu-submit {
	margin-top: 30px;
}

.pu-submit button {
	background: transparent;
	border: 0;
	font-size: 15px;
	letter-spacing: 0.1em;
	font-size: 300;
}

.pu-submit  .wpcf7-spinner {
	position: absolute;
	right: 0;
}

.pu-submit button span {
	transition: all .5s;
}

.pu-submit button:hover span {
	font-weight: 700;
}

.pu-submit button i {
	border-bottom: 1px #000 solid;
	padding: 18px;
	font-size: 13px;
}

.pu-field .wpcf7-not-valid-tip {
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(-50%);
	left: auto;
	width: auto;
	font-size: 11px;
	padding: 2px;
}

.inquire-popup-right .wpcf7-response-output {
	position: absolute;
	bottom: -50px;
	font-size: 11px;
}

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

/* Breadcrumbs — match guide: small sans-serif, gray path, darker current */
#breadcrumbs,
.yoast-breadcrumbs,
.rank-math-breadcrumb {
	font-family: var(--font-family-default);
	font-size: 13px;
	font-size: 0.8125vw;
	font-weight: 400;
	letter-spacing: 0.025em;
	line-height: 1.5;
	color: #999;
	margin: 25px 0 30px;
	margin: 1.5625vw 0 1.875vw;
}

#breadcrumbs a,
.yoast-breadcrumbs a,
.rank-math-breadcrumb a {
	color: #999;
	text-decoration: none;
	transition: color .3s;
}

#breadcrumbs a:hover,
#breadcrumbs a:focus,
.yoast-breadcrumbs a:hover,
.yoast-breadcrumbs a:focus,
.rank-math-breadcrumb a:hover,
.rank-math-breadcrumb a:focus {
	color: #666;
	text-decoration: none;
}

#breadcrumbs .breadcrumb_last,
.yoast-breadcrumbs .breadcrumb_last,
.rank-math-breadcrumb .last {
	color: #333;
	font-weight: 700;
}

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

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

/* 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{
	font-weight: 400;
	font-size: 38px;
	font-family: var(--font-family-title);
	color: var(--font-color-title);
	margin: 0;
	line-height: 1.3;
	letter-spacing: 0.25em;
	position: relative;
	text-wrap: balance;
	text-transform: uppercase;
	display: inline-block;
}


/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 991px) {

	.header .custom-container {
		justify-content: space-between
	}
	
	.header-menu {
		display: none;
	}

	body #pojo-a11y-toolbar  {
		display:none !important;
	}

	/* 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-logo,
	.footer-contact-info,
	.footer-contact-info-list-item, 
	.footer-copyright, 
	.footer-disclaimer {
		width: 100%;
		text-align: center;
	}
	.footer-disclaimer {
		margin-bottom: 40px;
	}
	.footer-copyright, .footer-disclaimer {
		order:inherit;
	}
	.footer-contact-info-list-item > i {
		position: relative;
		margin: 0 auto;
		left: auto;
	}
	.footer .footernav li {
		display: block;
		margin: 25px 0;
	}

	.side-navi>li {
		width: 50%;
	}
	.offcanvas-close {
		top: 10px;
		right: 40px;
	}

	.offcanvas-menu-body {
		padding: 60px 20px;
		text-align: center;
	}
	.offcanvas-logo .textwidget {
		flex-direction: column;
		gap: 20px;
		align-items: center;
		padding-right: 0;
	}
	.offcanvas-contact-info-list {
		flex-direction: column;
		max-width: 200px;
		margin: 0 auto;
		gap: 20px;		
	}
	.offcanvas-contact-info-list-item i {
		margin-right: 0;
		display: block;
	}
	.offcanvas-contact {
		padding: 0;
	}
	.offcanvas-contact-info-list-item {
		text-align: center;
	}
}

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

	#breadcrumbs,
	.yoast-breadcrumbs,
	.rank-math-breadcrumb {
		font-size: 13px;
		margin: 20px 0 25px;
	}

	.section-title :is(h1, h2) {
		font-size: 28px;
	}
	.section-text p {
		font-size: 15px;
	}
	.section-btn {
		font-size: 13px;
		height: 60px;
	}

	.header .custom-container {
		width: 92%;
	}
	.header-logo {
		width: 275px;
	}
	.offcanvas-toggle-label {
		font-size: 0;
	}

	.inquire-popup-inner {
		flex-wrap: wrap;
	}
	.inquire-popup-left {
		width: 100%;
	}
	.inquire-popup-left img {
		width: 100%;
		height: 200px;
	}
	.inquire-popup-right {
		width: 100%;
		padding: 20px 30px 80px;
	}
	.pu-field--half {
		width: 100%;
	}
	.inquire-popup-right .wpcf7 form .wpcf7-response-output {
		bottom: -70px;
		width: 100%;
	}

	.custom-container {
		width: 90%;
	}

	.section-btn-arrow {
		width: 30px;
		height: 10px;
	}
}

@media(max-width: 600px) {
	.side-navi>li {
		width: 100%;
	}
}