:root {
	/** Font default */
	--font-family-default: "Hanken Grotesk", serif;
	--font-family-title: "Gloock", serif;
	--font-family-title-alt: "Perpetua Titling MT Light", serif;
	--font-family-jost: "Jost", serif;
	--font-size-default: 18px;
	--font-size-title: 100px;
	--font-size-title-sm: 70px;
	--font-color-default: #828282;
	--font-color-title: #ffffff;
	--primary-color: 0, 0, 0;
	/* #000000 */
	--secondary-color: 45, 41, 38;
	/* #2d2926 */
	--tertiary-color: 204, 204, 204;
	/* #cccccc */
	--background-color: #000000;
	/** Use for input, button, and any other element */
	--primary: #000000;
	--secondary: #2d2926;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #343a40;
	--default-transition: .4s cubic-bezier(.4, 0, .2, 1);
}

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

.slick-slide {
	outline: none !important;
}

a,
a:focus,
a:visited,
a:hover,
button {
	outline: 0 !important;
	text-decoration: none !important;
}

a {
	color: inherit;
}

#main-wrapper {
	position: relative;
	overflow: hidden;
}

.gsite-title {
	position: relative;
}

.gsite-title h2 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-title);
	color: var(--font-color-title);
	line-height: 0.9;
}

.gsite-title.is-text-sm h2 {
	font-size: var(--font-size-title-sm);
}

.gsite-title small {
	display: block;
	font-family: var(--font-family-title-alt);
	font-size: 30px;
	font-weight: 300;
	color: #a6a6a6;
	letter-spacing: 0.2em;
	margin-bottom: 20px;
}

.gsite-button,
a.gsite-button {
	display: inline-block;
	position: relative;
	width: 180px;
	max-width: 100%;
	font-size: 15px;
	color: #ffffff;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
	padding-left: 16px !important;
}

.gsite-button i,
a.gsite-button i {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 12px;
	font-style: normal !important;
	display: flex;
	justify-content: flex-end;
	width: 35px;
	overflow: hidden;
	z-index: 2;
	transition: all var(--default-transition);
}

.gsite-button span,
a.gsite-button span {
	position: relative;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ffffff;
	z-index: 1;
	transition: all var(--default-transition);
}

.gsite-button:hover i,
a.gsite-button:hover i {
	width: 45px;
	color: #808080;
}

.gsite-button:hover span,
a.gsite-button:hover span {
	background: rgba(var(--secondary-color), 1);
	border-color: rgba(var(--secondary-color), 1);
}

.gsite-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.gsite-bg img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

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

.gsite-input {
	position: relative;
}

.gsite-input input:not([type=submit]),
.gsite-input select,
.gsite-input textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	width: 100%;
	padding: 0;
	outline: none;
	background: none;
}

.gsite-input textarea {
	resize: none;
}

.gsite-submit {
	position: relative;
}

.gsite-submit input[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	width: 100%;
	padding: 0;
	border: 0;
	outline: none;
}

.gsite-submit button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	width: 100%;
	padding: 0;
	border: 0;
	outline: none;
}

.gsite-submit button:not(.gsite-button) {
	padding: 0;
}

.gsite-arrow {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	position: relative;
	padding: 0;
	border: 0;
	width: 60px;
	height: 53px;
	font-size: 20px;
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #8b8b8b;
	transition: all var(--default-transition);
}

.gsite-arrow:hover {
	background: rgba(var(--primary-color), 1);
	border-color: rgba(var(--primary-color), 1);
	color: #ffffff;
}

.parallax-scroll {
	background-attachment: fixed !important;
}

.name-Safari .parallax-scroll,
.is-mobile .parallax-scroll {
	background-attachment: scroll !important;
}

.gsite-image {
	position: relative;
}

.gsite-image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	background: rgba(var(--primary-color), 1);
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: absolute;
	top: 12%;
	left: 12%;
	width: auto;
	font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
	font-size: 12px;
	text-align: center;
}

.site-navi .sub-menu.show-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.aios-mobile-header-wrapper {
	z-index: 1026 !important;
}

.admin-bar .header {
	top: 32px;
}

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

button:focus-visible,
a:focus-visible {
	outline-style: solid !important;
	outline-width: 5px !important;
	outline-color: red !important;
	transition: none !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-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background {
	display: none !important;
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
	background-color: rgba(var(--primary-color), 1) !important;
	color: #ffffff !important;
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay,
#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items.pojo-a11y-links {
	border-color: rgba(var(--primary-color), 1) !important;
}

/* Pojo : END */
/* Intro : START */
body.home {
	overflow: hidden;
}

body.home.intro-ended {
	overflow: auto;
}

body:not(.home) .intro-wrap {
	display: none;
}

.intro-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--background-color);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1050;
	transition: all var(--default-transition);
}

.intro-wrap img {
	filter: brightness(0) invert(1);
	transform: scale(0.5);
	opacity: 0;
	transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-wrap img.zooming-in {
	transform: scale(1);
	opacity: 1;
}

.intro-wrap.exiting {
	opacity: 0;
}

/* Intro : END */
/* Header : START */
.header {
	position: fixed;
	background: var(--background-color);
	width: 100%;
	padding: 30px 0;
	top: 0;
	left: 0;
	z-index: 1020;
	font-size: 0;
	transition: all var(--default-transition);
}

.header.is-sticky {
	padding: 22px 0;
}

.header.is-sticky .header-logo a img {
	width: 128px;
}

.header-container {
	position: relative;
	max-width: 1630px;
	padding: 0 15px;
	margin: 0 auto;
}

.header-logo {
	text-align: center;
}

.header-logo a {
	display: inline-block;
}

.header-logo a img {
	filter: brightness(0) invert(1);
	transition: all var(--default-transition);
}

nav.navigation {
	position: relative;
	margin: 0 80px 0 auto;
}

.site-navi li {
	display: block;
	position: relative;
}

.site-navi li a {
	display: block;
	position: relative;
	font-size: 16px;
	color: #ffffff;
	line-height: 1.1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all var(--default-transition);
}

.site-navi>li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 28px;
}

.site-navi>li:first-child {
	margin-left: 0 !important;
}

.site-navi>li:last-child {
	margin-right: 0 !important;
}

.site-navi>li:hover>a {
	color: rgba(var(--tertiary-color), 1);
}

.site-navi .sub-menu {
	position: absolute;
	width: 100%;
	min-width: 170px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(20px);
	transition: all var(--default-transition);
}

.site-navi .sub-menu .sub-menu {
	top: 0;
	margin-left: 100%;
}

.site-navi .sub-menu li a {
	padding: 7px 10px;
	font-size: 14px;
	color: #000000;
	background: #ffffff;
}

.site-navi .sub-menu li:hover>a {
	background: rgba(var(--primary-color), 1);
	color: #ffffff;
}

.site-navi>li>.sub-menu {
	left: -150%;
	right: -150%;
	margin: auto;
	padding-top: 22px;
}

.site-navi>li>.sub-menu::before,
.site-navi>li>.sub-menu::after {
	content: "";
	display: block;
	width: 100%;
	height: 10px;
	background: #ffffff;
}

.site-navi>li>.sub-menu>li:first-child::before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	right: 0;
	top: -16px;
	margin: 0 auto;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #ffffff;
}

.site-navi li:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.header-menu {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	padding: 0;
	border: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #ffffff;
	transition: all var(--default-transition);
}

.header-menu i {
	font-size: 15px;
}

.header-menu span {
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 6px;
}

.header-menu:hover {
	color: rgba(var(--tertiary-color), 1);
}

/* Header : END */
/* Offcanvas : START */
.is-offcanvas-active {
	overflow: hidden;
}

.is-offcanvas-active .offcanvas {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}

.is-offcanvas-active .offcanvas-overlay {
	pointer-events: auto;
	opacity: 1;
}

.is-offcanvas-active .offcanvas-bg {
	pointer-events: auto;
	opacity: 1;
	transform: translateX(0);
}

.is-offcanvas-active .offcanvas-inner {
	pointer-events: auto;
}

.offcanvas {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1020;
	overflow: auto;
	font-size: 0;
	opacity: 0;
	transform: translateX(50%);
	pointer-events: none;
	transition: all 1s ease-in-out;
}

.offcanvas-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1010;
	pointer-events: none;
	opacity: 0;
	transition: all 1s ease-in-out;
}

.offcanvas-bg {
	position: fixed;
	width: 95%;
	max-width: 1150px;
	min-height: 100vh;
	top: 0;
	right: 0;
	background: var(--background-color);
	z-index: 1020;
	transform: translateX(50%);
	opacity: 0;
	pointer-events: none;
	transition: all 1s ease-in-out;
}

.offcanvas-bg::before {
	content: "";
	display: block;
	position: absolute;
	aspect-ratio: 759/881;
	width: 66%;
	height: auto;
	top: 0;
	right: -30px;
	background: url(../../images/logo-mono.png) no-repeat center center/contain;
	filter: brightness(0) invert(1);
	opacity: 0.1;
	pointer-events: none;
}

.offcanvas-inner {
	position: relative;
	padding: 120px min(125px, 6.51vw) 150px;
	width: 95%;
	max-width: 1150px;
	min-height: 100vh;
	margin: 0 0 0 auto;
}

.offcanvas-close {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	padding: 0;
	border: 0;
	width: 20px;
	height: 2px;
	background: #ffffff;
	position: absolute;
	top: 55px;
	right: 60px;
	z-index: 10;
	transition: all var(--default-transition);
}

.offcanvas-close:hover {
	color: rgba(var(--tertiary-color), 1);
}

.side-navi {
	position: relative;
	width: 120%;
	display: flex;
	flex-wrap: wrap;
	z-index: 2;
}

.side-navi li {
	display: block;
	position: relative;
}

.side-navi li a {
	display: inline-block;
	position: relative;
	font-size: 24px;
	font-weight: 500;
	color: #ffffff;
	line-height: 1.1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all var(--default-transition);
}

.side-navi li:hover>a {
	color: #cccccc;
}

.side-navi>li {
	width: 33.33%;
	margin-bottom: 68px;
}

.side-navi .sub-menu {
	margin-top: 30px;
}

.side-navi .sub-menu li {
	margin-bottom: 18px;
}

.side-navi .sub-menu li a {
	font-size: 18px;
	font-weight: 300;
	color: #cccccc;
	letter-spacing: 0.1em;
}

.side-navi .sub-menu li a::before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #ffffff;
	opacity: 0;
	transition: all var(--default-transition);
}

.side-navi .sub-menu li:hover>a {
	color: #ffffff;
	padding-left: 20px;
}

.side-navi .sub-menu li:hover>a::before {
	opacity: 1;
}

.offcanvas-contact {
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	margin: 0 min(-3.125vw, -60px);
	padding-top: 75px;
	margin-top: 95px;
}

.offcanvas-contact .offcanvas-contact-item {
	display: flex;
	align-items: center;
}

.offcanvas-contact .offcanvas-contact-item:not(:first-child) {
	margin-left: 60px;
}

.offcanvas-contact i {
	font-size: 15px;
	color: #ffffff;
	margin-right: 10px;
}

.offcanvas-contact i.ai-font-location-c {
	font-size: 20px;
}

.offcanvas-contact i.ai-font-envelope-f {
	font-size: 10px;
}

.offcanvas-contact a {
	font-size: 15px;
	font-weight: 300;
	color: #ffffff;
	line-height: 1.1;
	letter-spacing: 0.05em;
	transition: all var(--default-transition);
}

.offcanvas-contact a:hover {
	color: rgba(var(--tertiary-color), 1);
}

/* Offcanvas : END */
/* Footer : START */
.footer {
	position: relative;
	background: var(--background-color);
	padding: 125px 0 120px;
	font-size: 0;
}

.footer-container {
	position: relative;
	max-width: 1430px;
	padding: 0 15px;
	margin: 0 auto;
}

.footer-logo {
	text-align: center;
}

.footer-logo a {
	display: inline-block;
}

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

.footer-contact {
	position: relative;
	margin-top: 62px;
}

.footer-contact .footer-contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 110px;
}

.footer-contact i {
	font-size: 22px;
	color: #ffffff;
	height: 22px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.footer-contact i.ai-font-envelope-f {
	font-size: 15px;
}

.footer-contact a {
	font-size: 18px;
	font-weight: 300;
	color: #ffffff;
	line-height: 1.2;
	letter-spacing: 0.05em;
	transition: all var(--default-transition);
}

.footer-contact a:hover {
	color: rgba(var(--tertiary-color), 1);
}

.footer-smis {
	margin-top: 62px;
}

.footer-smis a {
	font-size: 25px;
	color: #ffffff;
	margin: 0 25px;
	transition: all var(--default-transition);
}

.footer-smis a:hover {
	color: rgba(var(--tertiary-color), 1);
}

.footernav {
	border-top: 1px solid rgba(141, 141, 141, 0.22);
	border-bottom: 1px solid rgba(141, 141, 141, 0.22);
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 44px 0;
	margin-top: 62px;
}

.footernav li {
	margin: 0 28px;
}

.footernav li.menu-privacy-policy {
	display: block;
	width: 100%;
	margin: 10px 0 0;
}

.footernav li a {
	font-size: 16px;
	color: #ffffff;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all var(--default-transition);
}

.footernav li:hover>a {
	color: rgba(var(--tertiary-color), 1);
}

.footer-accessibility {
	font-size: 13px;
	font-weight: 300;
	color: #ffffff;
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-align: center;
	max-width: 1110px;
	margin: 45px auto 0;
}

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

.footer-accessibility a:hover {
	color: rgba(var(--tertiary-color), 1);
}

.footer-copyright {
	font-size: 13px;
	font-weight: 300;
	color: #ffffff;
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-align: center;
	max-width: 1110px;
	margin: 13px auto 0;
}

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

.footer-copyright a[href="https://www.agentimage.com"] {
	font-weight: 600 !important;
	text-decoration: underline !important;
}

.footer-copyright a:hover {
	color: rgba(var(--tertiary-color), 1);
}

.footer-realtors {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #ffffff;
	margin-top: 16px;
}

.footer-realtors i.ai-font-realtor-mls {
	font-size: 20px;
	margin-left: 7px;
}

/* Footer : END */

/* IP Join Us : START */
.ip-join-row {
	padding: 40px 0;
}

.ip-join-row:not(.last-row) .ip-join-col h2 {
	margin-top: 0 !important;
}

.ip-join-row:not(.last-row) .ip-join-col + .ip-join-col {
	margin-top: 12px;
}

.ip-join-col h2 {
	text-wrap: pretty;
}

.ip-join-row:not(:first-child) {
	border-top: 1px #fff solid;
}

.page-id-75 .ip-join-row:not(:first-child) {
	border-top: 0;
}

.ip-join-row .gsite-button {
	width: auto;
}

.ip-join-row table {
	font-size: 11px;
}

.ip-join-row table td {
	border: 1px #fff solid;
	padding: 10px;
	font-size: var(--font-size-default);
}

.ip-join-row .gsite-button span {
	padding: 0 15px 0 30px;
}

.ip-join-row .gsite-button  i {
	font-style: normal !important;
}

.ip-join-row ul ul {
	font-size: 14px;
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}

.ip-join-row.last-row {
	justify-content: center;
	text-align: center;
}

.ip-join-row.last-row .ip-join-col h2 {
	font-size: 1.8em;
}

.ip-join-row.last-row ul {
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* IP Join Us : END */

/* CF Agreement : START */
ul.cf7-agreement {
	margin-left: 0 !important;
	font-size: 14px;
	color: #828282;
	line-height: 1.5 !important;
}
#content ul.cf7-agreement {
	width: 750px;
    max-width: 100%;
    margin: 0 auto !important;
}
ul.cf7-agreement li {
	display: block;
}
/* CF Agreement : END */

/* IP Contact : START */
.page-id-14 .aios-contact-main:before {
	background-image: url(/wp-content/uploads/2025/01/contact-bg.jpg);
	filter: grayscale(1);
}

.page-id-14 #breadcrumbs {
	padding: 0 20px;
}

.page-id-14 .aios-contact-form .wpcf7-spinner {
	position: absolute;
	left: 0;
    right: 0;
    margin: 0 auto;
}

.page-id-14 .aios-contact-form-title {
	display: none;
}

.page-id-14 .aios-contact-info ul li {
	font-size: 18px;
}

.page-id-14 #content .aios-contact-main ul.cf7-agreement {
	text-align: center;
	margin: 20px 0 0 !important;
}

.page-id-14 #content .aios-contact-main button.gsite-button {
	display: block;
    margin: 20px auto 0;
    border: 0;
	color: var(--font-color-default);
	background: none;
}

.page-id-14 #content .aios-contact-main button.gsite-button span {
	border-color: var(--font-color-default);
}
/* IP Contact : END */

#agents-results .agents-img a:hover img {
	filter: grayscale();
}
#agents-results .agents-img:hover img {
	filter: none;
}
#agents-results .agents-contact {
	background: #fff !important;
}
#agents-results .agents-contact li {
	color: #000 !important;
}
#agents-results .agents-contact li a {
	color: #000 !important;
}
#agents-results .agents-contact li span {
	color: #000 !important;
}
#content #agents-results .agents-button {
	background: #ffffff;
	color: #000000;
}
#content #agents-results .agents-button:hover {
	background: rgba(var(--secondary-color), 1);
	color: #ffffff;
}

.single-aios-rm-buyers .aios-roadmaps-default-wrapper .aios-roadmaps-default-content img,
.single-aios-rm-sellers .aios-roadmaps-default-wrapper .aios-roadmaps-default-content img {
	filter: grayscale();
}

.contact-consent {
    width: 100%;
}
body.ip-container div#inner-page-wrapper .contact-consent ul {
    margin: 0 auto;
    padding-left: 16px;
}
body.ip-container div#inner-page-wrapper .contact-consent {
    padding-top: 30px;
}
.contact-consent p, .contact-consent ul li {
    color: var(--font-color-default) !important;
    font-size: 12px;
    text-align: center;
}
.contact-consent {
    padding: 0 15px;
}
.contact-consent ul {
    width: fit-content;
    margin: 0 auto;
    padding-top: 10px;
}
.contact-consent ul li {
    text-align: left;
    padding-bottom: 5px;
}
.contact-consent label {
    display: flex !important;
    align-items: center;
}
.contact-consent label input {
    margin-top: 0;
    margin-right: 5px;
}
.contact-consent p {
    margin: 0 !important;
    font-size: 13px !important;
}

body.page-id-61 div#inner-page-wrapper .market-list ul {
    width: fit-content;
}
body.page-id-61 div#inner-page-wrapper .market-list {
	background: none !important;
}

.error-page-content-wrapper .error-form-wrapper .error-forms{
	color: #000;
}

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

@media(min-width: 992px){
	.ip-join-row {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.ip-join-row:nth-child(even) {
		flex-direction: row-reverse;
	}
}

@media only screen and (min-width: 992px) {
	.desktop-hide {
		display: none !important;
	}
}

@media only screen and (max-width: 1440px) {
	:root {
		--font-size-title: 80px;
		--font-size-title-sm: 60px;
	}

	/* Footer : START */
	.footer-contact .footer-contact-item {
		margin: 0 80px;
	}

	/* Footer : END */
}

@media only screen and (max-width: 1199px) {
	:root {
		--font-size-default: 16px;
		--font-size-title: 70px;
		--font-size-title-sm: 55px;
	}

	/* Header : START */
	nav.navigation {
		margin: 0 40px 0 auto;
	}

	.site-navi>li {
		margin: 0 10px;
	}

	/* Header : END */
	/* Footer : START */
	.footer-contact .footer-contact-item {
		margin: 0 40px;
	}

	/* Footer : END */
}

@media only screen and (max-width: 991px) {
	#main-wrapper {
		padding-top: 52px;
	}

	.mobile-hide {
		display: none !important;
	}

	.desktop-hide {
		display: block !important;
	}

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

	/* Header : START */
	.header {
		position: relative;
		padding: 20px 0;
	}

	.header-logo {
		width: 100%;
	}

	nav.navigation {
		display: none;
	}

	.header-menu {
		display: none;
	}

	/* Header : END */
	/* Footer : START */
	.footer-contact .footer-contact-item {
		margin: 15px 0;
	}

	.footer-contact .footer-contact-item:first-child {
		margin-top: 0;
	}

	.footer-contact .footer-contact-item:last-child {
		margin-bottom: 0;
	}

	.footernav li {
		width: 100%;
		margin: 5px 0;
	}

	.footernav li.menu-privacy-policy {
		margin: 5px 0;
	}

	.footer-smis a {
		margin: 0 15px;
	}

	/* Footer : END */

	.ip-join-row:not(.last-row) .ip-join-col + .ip-join-col {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 480px) {
	:root {
		--font-size-title: 40px;
		--font-size-title-sm: 40px;
	}

	.gsite-title small {
		font-size: 18px;
	}

	/* Footer : START */
	.footer {
		padding: 50px 0;
	}

	.footer-logo a img {
		width: 300px;
	}

	.footer-contact a {
		font-size: 15px;
	}

	/* Footer : END */
}