/* Extra Classes */
.no-margin {
	margin: 0;
}

.no-padding {
	padding: 0;
}

/* Menu */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: transparent;
	padding: 23px 0;
	z-index: 1111;
}

header.scrolled {
	background: rgb(0 167 225 / 80%);
}

header.scrolled {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px;
}

header nav {
	clear: both;
	display: block;
	line-height: 60px;
	height: 60px;
	position: relative;
}


.grt-menu-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

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

a.grt-logo img {
	max-height: 60px;
	width: auto;
	width: 112px;
}

.grt-mobile-button {
	display: none;
}

.grt-mobile-button:focus {
	border: 0;
	outline: 0;
}

.body-overflow {
	overflow: hidden;
}

ul.grt-menu {
	display: block;
	float: right;
	margin: 0 -10px 0 0;
	padding: 0;
	list-style-type: none;
}

ul.grt-menu:after {
	content: "";
	clear: both;
	display: block;
}

ul.grt-menu li {
	display: inline-block;
	padding: 0px 8px;
	margin: 0;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
	position: relative;
}

ul.grt-menu li:last-child {
	padding-left: 0;
}

ul.grt-menu li a {
	font-size: 11px;
	line-height: 14px;
	display: inline-block;
	color: #FFFFFF;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;

	text-decoration: none;
}

header.singlepage ul.grt-menu li a {
	color: #282626;
}

ul.grt-menu li.active a:after {
	position: absolute;
	bottom: -23px;
	content: "";
	width: 28px;
	height: 5px;
	left: 12px;
	right: 12px;
	border-bottom: 4px solid #FFFFFF;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

ul.grt-menu li.grt-dropdown:hover {
	cursor: pointer;
}

ul.grt-menu li.grt-dropdown:hover a {
	box-shadow: none;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list {
	display: none;
	position: absolute;
	background: #fff;
	margin: 0;
	padding: 0;
	min-width: 150px;
	animation: fadeIn 0.8s;
	z-index: 999;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
	display: block;
	font-size: 18px;
	color: #FFF;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
	padding: 9px 12px;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li:last-child a {
	padding-bottom: 15px;
}

ul.grt-menu li.grt-dropdown.active-dropdown {
	background: #fff;
}

ul.grt-menu li.grt-dropdown.active-dropdown ul.grt-dropdown-list {
	display: block !important;
}

ul.grt-menu li.grt-dropdown.active-dropdown a {
	color: #FFF;
}


/* Desktop only style */
@media (min-width:1200px) {

	ul.grt-menu li.grt-dropdown:hover>a+ul.grt-dropdown-list {
		display: block;
		top: calc(100% - 17px);
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li {
		display: block;
	}

	ul.grt-menu li.grt-dropdown:hover>a {
		color: #FFF;
		box-shadow: inset 150px 0 0 0 #fff;
	}

	ul.grt-menu li a:hover {
		color: #FFF;
		box-shadow: unset;
		background: transparent;
	}
}

/* Tablet only style */
@media (min-width:769px) and (max-width:1200px) {
	ul.grt-menu li a {
		font-size: 18px;
	}
}

/* Mobile only style */
@media (max-width:1200px) {
	.grt-mobile-button {
		display: block;
		position: relative;
		right: 0;
		top: 10px;
		background: transparent;
		color: #3d3d3d;
		margin: 0;
		padding: 0;
		cursor: pointer;
		border: 0;
		width: 35px;
	}

	.grt-mobile-button .line1,
	.grt-mobile-button .line2,
	.grt-mobile-button .line3 {
		width: 35px;
		height: 2px;
		background-color: #fff;
		margin: 6px 0;
		transition: 0.4s;
		display: block;
	}

	.body-overflow .grt-mobile-button .line1,
	.body-overflow .grt-mobile-button .line2,
	.body-overflow .grt-mobile-button .line3 {
		background-color: #000;
	}

	ul.grt-menu {
		display: block;
	}

	ul.grt-menu {
		display: none;
		margin: 0;
		height: 0;
	}

	ul.open-grt-menu {
		position: fixed;
		background: #FFFFFF;
		box-shadow: 0px 10px 60px #0000000D;
		width: 100%;
		left: 0;
		right: 0;
		top: 0;
		min-height: 100vh;
		float: none;
		display: block;
		justify-content: center;
		flex-direction: column;
		text-align: center;
		overflow-y: auto;
		padding: 100px 32px;
	}

	ul.grt-menu li:last-child {
		padding-left: 0;
	}

	.grt-mobile-button-open {
		z-index: 99999;
		top: 25px;
	}

	.grt-mobile-button-open .line1 {
		-webkit-transform: rotate(-45deg) translate(-8px, 5px);
		transform: rotate(-45deg) translate(-8px, 5px);
	}

	.grt-mobile-button-open .line2 {
		opacity: 0;
	}

	.grt-mobile-button-open .line3 {
		-webkit-transform: rotate(45deg) translate(-8px, -7px);
		transform: rotate(45deg) translate(-8px, -7px);
	}

	ul.grt-menu li {
		display: block;
	}

	ul.grt-menu li a {
		padding: 6px 10px;
		font-size: 20px;
		color: #000;
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list {
		width: 100%;
		position: relative;
		display: none;
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
		display: block;
		font-size: 17px;
	}
}