.fat-nav {
	display: none;
}

.fat-text {
	position: fixed;
	top: 2%;
	right: 4%;
	color: #000;
	z-index: 10001;
	font-size: 1.2rem;
}

/* 1023px */
@media only screen and (max-width: 1023px) {

.hamburger {
	display: block;
	width: 35px;
	height: 50px;
	position: fixed;
	top: 20px;
	right: 4%;
	z-index: 10000;
	padding: 0px;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	padding-top: 20px;
}

.hamburger::before {
	font-size: 1.2rem;
	content: 'MENU';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-family: poppins, sans-serif;
	font-weight: 600;
	font-style: normal;
}

.hamburger__icon {
	position: relative;
	display: block;
	width: 35px;
	height: 1px;
	background-color: #2a3174;
	transition:
		background-color 0.4s,
		transform 0.4s;
}

.hamburger.active::before {
	color: #FFF;
}

.hamburger.active .hamburger__icon {
	background-color: #FFF;
	height: 3px;
}

.fat-nav {
	top: 0;
	left: 0;
	z-index: 9999;
	position: fixed;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(99, 86, 163, 1);

	transform: translateX(100%);
	visibility: visible;
	pointer-events: none;

	transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);

	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.fat-nav.active {
	display: block !important;

	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;

	transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.fat-nav__wrapper {
	width: 100%;
	height: 100%;
	display: table;
	table-layout: fixed;
	padding-top: 10%;
}

.fat-nav ul {
	margin: 0;
	padding: 30% 5% 0% 5%;
	width: 100%;
}

.fat-nav ul ul {
	margin: 0;
	padding: 0% 5%;
	width: 100%;
}

.fat-nav li {
	list-style-type: none;
	text-align: left;
	color: #FFF;
}

.fat-nav li:last-child {
	border-bottom: none;
}

.fat-nav ul li {
	margin-bottom: 40px;
}

.fat-nav p {
	position: relative;
	padding: 0% 5% 5% 5%;
}

.fat-nav p::before {
	content: "";
	display: block;
	width: 25px;
	height: 1px;
	background-color: #fff;
	margin-top: 40px;
	margin-bottom: 30px;
}

.fat-nav li a,
.fat-nav p a {
	display: block;
	transition: none;
	-webkit-transition: none;
	font-size: 2.2rem;
	letter-spacing: 2px;
	line-height: 2em;
	color: #FFF;
}

.fat-nav li span {
	transition: none;
	-webkit-transition: none;
	font-size: 16px;
	color: #888;
	letter-spacing: 2px;
	line-height: 2em;
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
}

.fat-nav .menu_single {
	position: relative;
}

.fat-nav .menu_single .menu_second-level {
	width: 100%;
	background: #FFF;
	display: none;
	box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, .1);
	border-radius: 10px;
}

.fat-nav .menu_single .menu_second-level li + li {
	border-top: solid 1px #fff;
}

.fat-nav .menu_single .menu_second-level li a {
	font-size: 14px;
	display: block;
	padding: 5px 0;
}

}