/* ==========================================================================================
   ARX - Global Navigation - Resets
   ========================================================================================== */
html,
body {
	margin: 0;
	padding: 0;
}

#arx-globalnav,
#arx-globalnav::before,
#arx-globalnav::after,
#arx-globalnav *,
#arx-globalnav *::before,
#arx-globalnav *::after {
	margin: 0;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	padding: 0;
}

#arx-globalnav {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

#arx-globalnav :focus,
#arx-globalnav *:focus {
	outline: none;
}

#arx-globalnav ul {
	list-style-type: none;
}



/* ==========================================================================================
   ARX - Global Navigation - Basics
   ========================================================================================== */
:root {
	--arx-gn-height: 66px;
}

html.arx-gn-noscroll,
html.arx-gn-noscroll body {
	overflow: hidden !important;
	height: 100% !important;
}
html.arx-gn-noscroll-long {
	overflow-y: scroll !important;
}

#arx-gn-menustate {
	display: none;
}

#arx-globalnav {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 9999;
	display: block;
	width: 100%;
	height: var(--arx-gn-height);
	background-color: #1b1b1b;
	font-size: 16px;
	font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: left;
	color: #f5f5f7;
}

#arx-gn-placeholder {
	height: var(--arx-gn-height);
}

/*links*/
#arx-globalnav a {
	color: #a1a1a6;
}
#arx-globalnav a:link,
#arx-globalnav a:visited {
	text-decoration: none;
}
#arx-globalnav a:hover {
	text-decoration: underline;
	color: #f5f5f7;
}
#arx-globalnav a:active {
	text-decoration: none;
}

@media only screen and (max-width: 767px) {
	:root {
		--arx-gn-height: 57px;
	}
}



/* ==========================================================================================
   ARX - Global Navigation - Content
   ========================================================================================== */
#arx-globalnav .arx-gn-content {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	max-width: 980px;
	padding: 0 22px;
}

@media only screen and (max-width: 767px) {
	#arx-globalnav .arx-gn-content {
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		padding: 0;
	}
}



/* ==========================================================================================
   ARX - Global Navigation - Header
   ========================================================================================== */
#arx-globalnav .arx-gn-header {
	position: relative;
	z-index: 3;
	width: 100%;
	height: var(--arx-gn-height);
}

/*arx imoveis*/
#arx-globalnav .arx-gn-arximoveis {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 4;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#arx-globalnav .arx-gn-arximoveis-link {
	display: block;
	width: 108px;
	height: 46px;
	background-image: url("/site/images/globalnav/arximoveis/image.svg");
	background-size: 108px 46px;
	background-repeat: no-repeat;
}

#arx-globalnav .arx-gn-arximoveis-link-text {
	position: absolute;
	overflow: hidden;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	margin: 0;
	border: none;
	width: 1px;
	height: 1px;
	padding: 0;
}

/*menu icon*/
#arx-globalnav .arx-gn-menuicon {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 4;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#arx-globalnav .arx-gn-menuicon-label {
	display: block;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

#arx-globalnav .arx-gn-menuicon-icon {
	display: block;
	width: 18px;
	height: 18px;
	background-image: url("/site/images/globalnav/menuicon/icon.svg");
	background-size: 18px 18px;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
	#arx-globalnav .arx-gn-header {
		position: absolute;
		top: 0;
		left: 0;
	}

	#arx-globalnav .arx-gn-arximoveis {
		left: 16px;
	}

	#arx-globalnav .arx-gn-arximoveis-link {
		width: 87px;
		height: 37px;
		background-size: 87px 37px;
	}

	#arx-globalnav .arx-gn-menuicon {
		right: 16px;
	}
}



/* ==========================================================================================
   ARX - Global Navigation - List
   ========================================================================================== */
#arx-globalnav .arx-gn-list {
	position: fixed;
	top: 0;
	right: -300px;
	bottom: 0;
	z-index: 9999;
	width: 300px;
	height: 100%;
	background-color: #1b1b1b;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-transition: right 400ms cubic-bezier(0.4, 0, 0.6, 1);
	transition: right 400ms cubic-bezier(0.4, 0, 0.6, 1);
}

#arx-gn-menustate:checked ~ #arx-globalnav .arx-gn-list {
	right: 0;
}

/*close icon*/
#arx-globalnav .arx-gn-closeicon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#arx-globalnav .arx-gn-closeicon-label {
	display: block;
	margin: 20px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

#arx-globalnav .arx-gn-closeicon-icon {
	display: block;
	width: 18px;
	height: 18px;
	background-image: url("/site/images/globalnav/closeicon/icon.svg");
	background-size: 18px 18px;
	background-repeat: no-repeat;
}

/*menu*/
#arx-globalnav .arx-gn-item-menu {
	display: block;
	text-align: right;
}

#arx-globalnav a.arx-gn-link {
	display: block;
	padding: 10px 20px;
	font-size: 21px;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	-webkit-transition: color 200ms ease;
	transition: color 200ms ease;
}
#arx-globalnav a.arx-gn-link:hover {
	color: rgba(255, 255, 255, 0.65);
}

.arx-gn-current-home #arx-globalnav .arx-gn-link-home,
.arx-gn-current-buy #arx-globalnav .arx-gn-link-buy,
.arx-gn-current-rent #arx-globalnav .arx-gn-link-rent,
.arx-gn-current-about #arx-globalnav .arx-gn-link-about,
.arx-gn-current-team #arx-globalnav .arx-gn-link-team,
.arx-gn-current-announce #arx-globalnav .arx-gn-link-announce,
.arx-gn-current-contact #arx-globalnav .arx-gn-link-contact {
	color: rgba(255, 255, 255, 0.65);
}

@media only screen and (max-width: 320px) {
	#arx-globalnav .arx-gn-list {
		width: 100%;
	}
}



/* ==========================================================================================
   ARX - Global Navigation - Curtain
   ========================================================================================== */
#arx-globalnav .arx-gn-curtain {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9998;
	width: 100%;
	height: 100%;
	background-color: rgba(17, 17, 17, 0.85);
	opacity: 0;
	-webkit-transition: opacity 400ms cubic-bezier(0.4, 0, 0.6, 1);
	transition: opacity 400ms cubic-bezier(0.4, 0, 0.6, 1);
	pointer-events: none;
}

#arx-gn-menustate:checked ~ #arx-globalnav .arx-gn-curtain {
	opacity: 1;
	pointer-events: all;
}