:root {
	/** Font default */
	--font-family-default: "Roboto", sans-serif;
	--font-family-title: "Barlow Semi Condensed", sans-serif;
	--font-size-default: 14px;
	--font-size-title: 18px;
	--font-color-default: #212121;
	--font-color-title: #212121;
	/** Use for input, button, and any other element */
	--primary: #000000;
	--secondary: #ff0000;
	--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: 1350px;
	width: 84.375vw;
	margin-left: auto;
	margin-right: auto;
}

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

.section-title :is(h1, h2) {
	font-weight: 600;
	font-size: 91.98px;
	font-size: clamp(40px, 5.74875vw, 91.98px);
	font-family: var(--font-family-title);
	color: var(--font-color-title);
	letter-spacing: 0.05em;
	margin: 0;
	position: relative;
	text-wrap: balance;
	text-transform: uppercase;
	display: inline-block;
	border-left: 4px var(--secondary) solid;
	padding-left: 25px;
	padding-left: 1.5625vw;
	text-align: left;
	line-height: 1;
}

.section-title :is(h1, h2) small {
	display: block;
	font-size: 25.28px;
	font-size: clamp(18px, 1.58vw, 25.28px);
}

.section-title :is(h1, h2) small::before {
    content: attr(data-number);
	color: #c7c7c7;
	margin-right: 20px;
	margin-right: 1.25vw;
}

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

.section-text h2, .section-text h3 {
	font-family: var(--font-family-title);
	font-weight: 600;
	margin-bottom: 10px;
}

.section-text h2 {
	font-size: 40px;
	font-size: clamp(25px, 2.5vw, 40px);
}

.section-text h3 {
	font-size: 30px;
	font-size: clamp(20px, 1.875vw, 30px);
}

.section-text p {
	line-height: 1.8;
	font-size: 16px;
	font-size: clamp(12px, 1vw, 16px);
	line-height: 1.9;
    letter-spacing: 0.05em;
}

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

.section-btn {
	display: inline-block;
	min-width: 220px;
	height: 60px;
	/* min-width: 13.750000000000002vw;
	height: 3.75vw; */
	text-transform: uppercase;
	text-align: center;
	align-content: center;
	font-weight: 500;
	font-size: 15px;
	font-size: clamp(11px, 0.9375vw, 15px);
	position: relative;
	border: 1px #212121 solid;
	background: transparent;
	color: #000;
	transition: all .5s;
	padding: 0 35px;
	letter-spacing: 0.075em;
}

.section-btn::after {
	content: '+';
	margin-left: 5px;
}

.section-btn::before {
	content: '';
	pointer-events: none;
	position: absolute;
	width: 55px;
	height: 4px;
	background: var(--secondary);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

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

.section-btn.is-white:not(:hover) {
	border-color: #fff;
	color: #fff;
}

.section-btn.is-outline {
	background: transparent;
	color: var(--primary);
	text-decoration: none;
}

.section-btn.is-outline:hover {
	background: var(--primary);
	color: #fff;
}

.slider-arrows-more {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

:is(.slider-arrows, .slider-arrows-more) .slider-arrow {
	background: transparent;
	border: 0;
	font-size: 0;
	width: 47px;
	height: 22px;
	transition: all .5s;
	padding: 0;
}

:is(.slider-arrows, .slider-arrows-more) .slider-arrow:hover {
	opacity: 0.6;
}

:is(.slider-arrows, .slider-arrows-more) .slider-arrow.is-white {
	color: #fff;
}

:is(.slider-arrows, .slider-arrows-more) .slider-arrow i {
	font-size: 18px;
	width: 47px;
	height: 22px;
	display: inline-block;
}

.slider-arrows .slider-arrow:last-child {
	margin-left: 20px;
}

.slider-arrows-more .slider-arrow-prev {
	order: 1;
}
.slider-arrows-more .slider-arrow-next {
	order: 3;
}
.slider-arrows-more .section-btn {
	order: 2;
}

:is(.slider-arrows, .slider-arrows-more) .slider-arrow i::before {
	font-size: 0;
	width: 47px;
	height: 22px;
	background: url(../../assets/images/home/custom-arrow.png) no-repeat;
	display: block;
}

:is(.slider-arrows, .slider-arrows-more) .slider-arrow-next i::before {
	transform: scaleX(-1);
}

:is(.slider-arrows, .slider-arrows-more) .slider-arrow.is-white i::before {
	filter: brightness(0) invert(1);
}

.pr {
	position: relative;
}

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

.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 canvas {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: block;
}

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

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

.canvas-bg.bg-white {
	background: #fff;
}
.canvas-bg.bg-white canvas {
	opacity: .10;
}

.canvas-bg.bg-black {
	background: #000;
}
.canvas-bg.bg-black canvas {
	opacity: .10;
}

.site-monogram {
	position: absolute;
	pointer-events: none;
	opacity: .10;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 270px;
	width: 16.875vw;
	height: auto;
}

/* header */
.header {
	position: absolute;
	width: 100%;
	padding: 20px 0;
	z-index: 99;
	top: 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: 8px 0;
	position: fixed;
	animation: smoothScroll 1s forwards;
	background: #000000;
}

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

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

.header-logo {
	opacity: 0;
}

.header.fixed .header-logo  {
	opacity: 1;
}

.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 45px;
	padding: 0 2.8125vw;
}
:is(.hdr-menu,.aios-split-nav)>li:not(:first-child) {
	border-left: 1px rgb(255 255 255 / 30%) solid;
}

: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;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.05em;
	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: var(--secondary);
	text-shadow: rgb(84, 80, 83) 1px 0px 0px, rgb(84, 80, 83) 0.540302px 0.841471px 0px, rgb(84, 80, 83) -0.416147px 0.909297px 0px, rgb(84, 80, 83) -0.989992px 0.14112px 0px, rgb(84, 80, 83) -0.653644px -0.756802px 0px, rgb(84, 80, 83) 0.283662px -0.958924px 0px, rgb(84, 80, 83) 0.96017px -0.279415px 0px;
}

.header.fixed :is(.hdr-menu,.aios-split-nav)>li>a:not(:hover) {
	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: 15px;
}

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


/* offcanvas menu */
@media(min-width:992px) {
	html:has(body.offcanvas-open) {
		overflow: hidden;
	}
}

.offcanvas-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	flex-direction: column;
	color: #fff;
	text-transform: uppercase;
}

.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: 80%;
	max-width: 900px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	background: #000;
	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: 50px 0 20px;
}

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

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

.side-navi {
	columns: 2;
}

.side-navi>li {
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
	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-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: 50px;
	top: 60px;
	font-size: 13px;
	color: #fff;
	width: 35px;
	height: 18px;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	transition: all .5s;
	text-transform: uppercase;
}

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

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

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

.offcanvas-toggle-label {
	margin-top: 7px;
	letter-spacing: 0.05em;
	font-size: 13px;
}

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

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

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

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

.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;
	transition: all .5s;
}

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

.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 {
	background: #000;
	overflow: hidden;
}

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

.footer-form-wrap .site-monogram {
	z-index: 2;
	width: auto;
	height: 115%;
	opacity: .08;
}

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

.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 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: 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 {
	background: #fff;
	padding: 95px 0 80px;
	font-size: 15px;
	color: var(--primary);
	position: relative;
}

.footer-main p {
	font-size: 14px;
	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-main .custom-container {
	max-width: 1140px;
}

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

.footer-logo > .textwidget {
	display: flex;
	justify-content: center;
}

.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 {
	padding-top: 45px;
	margin: 45px 0;
	border-top: 1px rgb(63 63 63 / .10) solid;
}

.footer .footernav {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
}

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

.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;
	padding: 0 15px;
	margin-top: 25px;
}

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

.ip-container #footer-form .section-title :is(h1, h2) small::before {
	content: '02';
}

/* 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, .ip-banner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.35);
}

.ip-banner::after {
	opacity: .7;
	height: 50%;
	background: linear-gradient(to bottom, #000, rgb(0 0 0 / 0));
}

.ip-banner canvas {
	display: block;
	position: relative;
	z-index: 0;
	width: 100%;
	min-height: 480px;
	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;
}

.ip-banner-breadcrumbs {
	position: absolute;
	bottom: 23px;
	left: 0;
	color: #fff;
	z-index: 1;
	width: 100%;
	font-size: 14px;
	letter-spacing: .05em;
}

.ip-banner-breadcrumbs a {
	color: #fff;
}

.ip-banner .custom-container {
	max-width: 1480px;
	width: 95%;
}

.ip-banner-logo {
	position: absolute;
	top: 53%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: center;
	text-align: center;
	z-index: 1;
	padding: 0 10%;
}

/* 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) */
#content .entry-title,
#content .archive-title {
	font-weight: 500;
	font-size: 45px;
	font-family: var(--font-family-title);
	color: var(--font-color-title);
	margin: 0;
	line-height: 0.9;
	letter-spacing: 0.05em;
}


/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
            padding-top: 50px;
}

#content .archive-list:before,
#content .archive-list:after {
    display: none;
}

#content .archive-list > article {
    float: none;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
}


body.single-post .entry-thumbnail img {
    width: 100%;
    max-width: 100%;
    display: block;
}

.archive-subtitle a {
    color: #000;
    font-weight: 500;
}

/* Contact page */

.page-id-13 .container {
	width: 100%;
	padding: 0;
}
.page-id-13 #inner-page-wrapper {
	margin-bottom: 0;
}

body.page-id-13 .ipcontactus_ascend__container,
body.page-id-13 .wpcf7-response-output {
	text-align: center !important;
}

.page-id-13 #content .ipcontactus_ascend__container .heading-1 {
	font-weight: 500;
  font-size: 45px;
  font-family: var(--font-family-title);
  margin: 0;
  line-height: 0.9;
  letter-spacing: 0.05em;
  border-left: 4px var(--secondary) solid;
  padding-left: 30px;
  padding-bottom: 7px;
  display: inline-block;
}

.page-id-13 .ipcontactus_ascend__form {
	text-align: left;
}

.page-id-13 #content-full {
	margin-top: 0;
}

.page-id-13 #content-full #content {
	padding: 0;
}

.page-id-13 .ipcontactus_ascend::after {
	opacity: .8;
}

/* Shop page */

.page-template-template-fullwidth.page-id-19 #inner-page-wrapper {
	margin-bottom: 0;
}

	.page-template-template-fullwidth.page-id-19 #inner-page-wrapper > .container,
	.page-template-template-fullwidth.page-id-19 #content {
		width: 100%;
		padding: 0;
	}

		.page-template-template-fullwidth.page-id-19 #content-full {
			margin: 0;
			min-height: 100px;
		}

			.page-template-template-fullwidth.page-id-19 #content .shop-full-img img {
				width: 100%;
			}

			.page-template-template-fullwidth.page-id-19 #content h1.entry-title  {
				font-size: 0;
			}


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


.offcanvas-toggle-lines {
    height: 9px;
    position: relative;
    top: -3px;
}

.offcanvas-toggle-label {
    font-size: 10px;
    margin-top: 2px;
}

.header-login a {
    padding: 6px 12px;
    top: -4px;
    position: relative;
}

.offcanvas-toggle-lines i {
    height: 1px;
}




p.fbd {
    font-weight: bold;
}

.fd-wrp p {
    margin-bottom: 20px;
}


.page-id-19 .ip-banner {
    display: none;
}

.page-id-19 .header {
    background: #000;
    padding-bottom: 6px;
}

.page-id-19 .shop-full-img {
    margin-top: 85px;
}

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

.use-floating-validation-tip .wpcf7-not-valid-tip {
	width: auto;
	position: absolute;
}
.wpcf7 form .wpcf7-response-output {
	text-align: center;
}

@media only screen and (max-width: 1280px) {
	.header-logo {
		width: 130px;
	}
	:is(.hdr-menu,.aios-split-nav)>li {
		padding: 0 20px;
	}
}
@media only screen and (max-width: 991px) {




	  .page-id-19 .shop-full-img{
	    margin-top: 0px;
	  }

		
	 #content .archive-list .article-long .archive-has-thumbnail {
        width: 100%;
        margin: 0 auto;
    }

    #content .archive-list .article-long .archive-thumbnail {
        width: 100%;
    }

    #content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
        margin-top: .75em;
    }

    #content .archive-list .article-long p {
        font-size: 16px;
    }
	/* The following are used on inner pages. Please edit carefully. */
	.inner {
		width: 100%;
	}
	#content-sidebar,
	#content-full {
		width: 100%;
	}

	.header-menu, .header-phone, .header-menu-button, .offcanvas-menu {
		display: none;
	}

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

	.header {
		background: #000;
		padding: 10px 0;
		position: relative;
	}
	.header .header-logo  {
		width: 180px;
		height: auto;
		opacity: 1;
	}
	.header .custom-container {
		justify-content: space-between;
	}

	body {
		padding-top: 52px;
	}

	.footer-form-wrap {
		padding: 50px 0 30px;
	}

	.footer-contact-info-list {
		flex-wrap: wrap;
		text-align: center;
	}
	.footer-contact-info-list-item {
		width: 100%;
		border-right: 0 !important;
		margin: 0 !important;
		padding: 10px 0 !important;
	}
	.footer-logo {
		margin-bottom: 20px;
	}

	.footer .footer-nav {
		padding: 20px 0;
	}
	.footer .footernav li {
		margin: 10px 0;
		display: block;
	}

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

	.ip-banner canvas {
		min-height: 200px;
	}
	.ip-banner-logo {
		top: 50%;
		max-width: 70%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

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

	.section-title :is(h1, h2) {
		letter-spacing: normal;
	}

	.ip-banner-logo {
		max-width: 80%;
	}

}

@media(max-width: 480px) {
	.page-id-13 #content .ipcontactus_ascend__container .heading-1 {
		max-width: 250px;
	}
}

@media(max-width: 414px) {
	.section-title :is(h1, h2),
	.section-title.is-big :is(h1, h2) {
		font-size: 30px;
	}

	.slider-arrows-more {
		margin-left: -10px;
	}
	.slider-arrows-more .slider-arrow-prev {
		margin: 0 5px;
	}
	.section-btn{
		letter-spacing: normal
	}
}

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