/* Full-Screen Pushing Navigation
-------------------------------------------- */

body, html {
  /* prevent horizontal scrolling */
  overflow-x: hidden;
}

circle {
	stroke: transparent;
}

.site-container {
	position: relative;
	z-index: 2;
	/* fix bug on iOS */
	height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform 0.7s;
	-moz-transition: -moz-transform 0.7s;
	transition: transform 0.7s;
	-webkit-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
	-moz-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
	transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

.navigation-is-open .site-container {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}

.cd-nav-trigger {
	position: fixed;
	z-index: 3;
	right: 24px;
	top: 20px;
	height: 54px;
	width: 54px;
	background-color: #243040;
	border-radius: 50%;
	/* image replacement */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	-webkit-transition: -webkit-transform 0.5s;
	-moz-transition: -moz-transform 0.5s;
	transition: transform 0.5s;
	border: 1px solid #fff;
}

.cd-nav-trigger::after {
    content: "\f0c9"; 
    font-family: "Font Awesome 5 Free"; /* Font family for Font Awesome */
	font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px; /* Adjust the size as needed */
    color: #fff !important; /* Color of the icon */
	text-indent: 0;
}

.navigation-is-open .cd-nav-trigger::after {
    content: "\f00d"; 
}

.cd-nav-trigger:focus {
	outline: none;
}

.cd-nav-trigger svg {
	position: absolute;
	top: 0;
	left: 0;
}

.cd-nav-trigger circle {
	/* circle border animation */
	-webkit-transition: stroke-dashoffset 0.4s 0s;
	-moz-transition: stroke-dashoffset 0.4s 0s;
	transition: stroke-dashoffset 0.4s 0s;
}

.navigation-is-open .cd-nav-trigger {
	/* rotate trigger when navigation becomes visible */
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.navigation-is-open .cd-nav-trigger circle {
	stroke-dashoffset: 0;
	-webkit-transition: stroke-dashoffset 0.4s 0.3s;
	-moz-transition: stroke-dashoffset 0.4s 0.3s;
	transition: stroke-dashoffset 0.4s 0.3s;
}

.cd-header-wrapper {
	width: 100%;
}

.cd-header-wrapper img {
	max-width: 500px;
}

.cd-half-block-nav,
.cd-half-block-widget {
	float: left;
}

.cd-half-block-nav {
	width: 40%;
}

.cd-half-block-widget {
	width: 60%;
}

@media only screen and (min-width: 1170px) {

	.cd-nav-trigger {
		top: 20px;
	}

}

.cd-nav {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #131313;
	visibility: hidden;
	-webkit-transition: visibility 0s 0.7s;
	-moz-transition: visibility 0s 0.7s;
	transition: visibility 0s 0.7s;
}

.cd-nav .cd-navigation-wrapper {
	/* all navigation content */
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 40px 5% 40px calc(5% + 80px);
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: -webkit-transform 0.7s;
	-moz-transition: -moz-transform 0.7s;
	transition: transform 0.7s;
	-webkit-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
	-moz-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
	transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

.navigation-is-open .cd-nav {
	visibility: visible;
	-webkit-transition: visibility 0s 0s;
	-moz-transition: visibility 0s 0s;
	transition: visibility 0s 0s;
}

.navigation-is-open .cd-nav .cd-navigation-wrapper {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform 0.5s;
	-moz-transition: -moz-transform 0.5s;
	transition: transform 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
	-moz-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
	transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
	font-family: 'Lato', sans-serif;
}

.cd-nav h2 {
	position: relative;
	margin-bottom: 1.7em;
	font-size: 1.3rem;
	font-weight: 800;
	color: #080b0f;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif;
}
.cd-nav h2::after {
	/* bottom separation line */
	content: '';
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 1px;
	width: 60px;
	background-color: currentColor;
}

.cd-nav a {
	text-decoration: none;
}

.cd-nav .cd-primary-nav {
	margin-top: 60px;
}

.cd-nav .cd-primary-nav li {
	margin: .2em 0;
}

.cd-nav .cd-primary-nav a {
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	font-size: 2.4rem;
	color: rgba(255, 255, 255, 0.3);
	display: inline-block;
	line-height: 1;
}

.cd-nav .cd-primary-nav li.current-menu-item > a {
	color: #fff;
}

.no-touch .cd-nav .cd-primary-nav a:hover {
	color: #fff;
}

.nav-overlay {
	margin-top: 60px;
    margin-left: 20px;
    color: #fff;
}

.cd-nav .cd-half-block address {
	font-style: normal;
}

.cd-nav .cd-contact-info li {
	font-family: "Lato", sans-serif;
	margin-bottom: 1.5em;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.3);
}

.cd-nav .cd-contact-info a {
	color: #fff;
}

.cd-nav .cd-contact-info span {
	display: block;
}

.cd-nav .cd-contact-info li,
.cd-nav .cd-contact-info a,
.cd-nav .cd-contact-info span {
	font-size: 1.6rem;
}

.cd-half-block-nav img {
	max-width: 500px;
}

@media only screen and (min-width: 1170px) {

	.cd-nav .cd-navigation-wrapper {
		padding: 62px 20%;
	}
	.cd-nav .cd-navigation-wrapper::after {
		clear: both;
		content: "";
		display: table;
	}

	.cd-half-block-nav {
		width: 55%;
		float: left;
	}
	.cd-half-block-widget {
		width: 45%;
		float: left;
		color: #fff;
		padding-left: 50px;
	}

	.cd-nav .cd-primary-nav {
		margin-top: 0;
	}

	.cd-nav h2 {
		font-size: 1.5rem;
		margin-bottom: 5.6em;
	}

	.cd-nav .cd-primary-nav li {
		margin: .5em 0;
	}

	.cd-nav .cd-primary-nav li li {
		margin-left: 40px;
	}

	.cd-nav .cd-primary-nav a {
		font-size: 2.8rem;
	}

	.nav-overlay {
		margin-top: 20px;
	}

	.cd-nav .cd-contact-info {
		text-align: right;
	}

	.cd-nav .cd-contact-info li {
		margin-bottom: 38px;
	}

	.cd-nav .cd-contact-info li,
	.cd-nav .cd-contact-info a,
	.cd-nav .cd-contact-info span {
		font-size: 20px;
	}

}

.no-js .site-container {
	height: auto;
	overflow: visible;
}

.no-js .cd-nav {
	position: static;
	visibility: visible;
}

.no-js .cd-nav .cd-navigation-wrapper {
	height: auto;
	overflow: visible;
	padding: 100px 5%;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

@media only screen and (max-width: 700px) {
	
	.cd-header-wrapper {
		margin-top: 50px;
	}
	
	.cd-header-wrapper img {
		max-width: 100%;
	}
	
	.cd-nav .cd-navigation-wrapper {
		padding: 10%;
	}
	.cd-half-block-nav {
		width: 100%;
	}
	.cd-half-block-widget {
		display: none;
	}