p {
    font-size: 0.8vw;
    font-weight: 600;
    letter-spacing: 0.3vw;
}
.super_container {
	width: 100%;
}
.main_nav {
    height: 100%;
    flex-basis: 200%;
    text-align: center;
}
.nav_items {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul {
    list-style: none;
    margin-bottom: 0px;
    padding: 0;
}
.nav_items li.active {
    background: #BE0E1C;
    color: #fff!important;
}
.nav_items li.active a {
    color: #fff!important;
    font-weight: 600;
    font-size: 20px;
}
.nav_items li {
    display: inline-block;
    margin-left: 35px;
    height: 100%;
}
.nav_items li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #0b1033;
    letter-spacing: 3.5px;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}
.logo {
    padding: 27px 0px;
	display: flex;
    align-items: baseline;
}
.logo img {
    width: 80%;
}
.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px!important;
    color: #171717;
    text-transform: uppercase;
}
.header {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 21;
    background: #FFFFFF;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer {
    background: #fff url(../images/footer.png) 0 0 no-repeat;
    background-size: cover;
    height: 11vw;
    /*margin-top: 150px; */
    text-align: center;
    padding-top: 1.254vw;
}
.footer p {
    color: #fff;
    margin-bottom: 0.5vw!important;
    font-size: 0.1vw;
}

.footer li {
    display: inline-block;
    margin: 30px 10px;
}
/*********************************
3.3 Hamburger Menu
*********************************/

.hamburger_container
{
    width: 15%;
    height: 100%;
	padding: 4%;
	display: none;
	cursor: pointer;
	text-align: center;
	background-color: #fff;
}
.hamburger_logo {
	width: 100%;
	height: 60px;
	display: none;
    justify-content: space-between;
    align-items: center;
	background-color: #fff;
	
}
.hamburger_logo img {
	height: 16px;
    margin-left: 2px;
}
.hamburger_text
{
	display: none;
	margin-right: 7px;
    font-weight: 600;
    font-size: 18px;
	color: #171717;
}
.hamburger_icon
{
	position: relative;
    display: inline-block;
    background: #fff;
    top: 10px;
    width: 0px;
    height: 0px;
    border: 9px solid #000;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
}
.hamburger_icon.active
{
	background: transparent;
}
.hamburger_icon.active::before
{
	top: -9px;
	transform: translateY(9px) rotate(45deg);
}
.hamburger_icon.active::after
{
	top: 9px;
	transform: translateY(-9px) rotate(-45deg);
}
.hamburger_icon::before
{
	top: -6px;
}
.hamburger_container:hover .hamburger_icon::before
{
	top: -8px;
}
.hamburger_container:hover .hamburger_icon::after
{
	top: 8px;
}
.hamburger_container:hover .hamburger_icon.active::before
{
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	top: 0;
}
.hamburger_container:hover .hamburger_icon.active::after
{
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	top: 0;
}

/*********************************
3.4 Full Screen Menu
*********************************/

.fs_menu_container
{
	position: fixed;
	top: -100vh;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #FFFFFF;
	z-index: 20;
	-webkit-transition: all 1s 0s cubic-bezier(1,0,0,1);
	-moz-transition: all 1s 0s cubic-bezier(1,0,0,1);
	-ms-transition: all 1s 0s cubic-bezier(1,0,0,1);
	-o-transition: all 1s 0s cubic-bezier(1,0,0,1);
	transition: all 1s 0s cubic-bezier(1,0,0,1);
	padding-left: 48px;
	padding-right: 63px;
	padding-top: 120px;
	text-align: left;
}
.fs_menu_shapes
{
	position: absolute;
	bottom: 32px;
	left: -70px;
	width: 25%;
}
.fs_menu_shapes img
{
	width: 100%;
}
.fs_menu_container.active
{
	top: 0;
	background-color: #000;
}
.fs_menu_list
{
	display: inline-block;
	width: 100%;
}
.fs_menu_list li
{
	overflow: hidden;
	line-height: 70px;
    border-bottom: 1px solid #fff;
}
.fs_menu_list li a
{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.4;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	-moz-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	-ms-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	-o-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	transition: all 1600ms cubic-bezier(.19,1,.22,1);
}
.fs_menu_list li:first-child a {transition-delay: 600ms;}
.fs_menu_list li:nth-child(2) a {transition-delay: 670ms;}
.fs_menu_list li:nth-child(3) a {transition-delay: 740ms;}
.fs_menu_list li:nth-child(4) a {transition-delay: 810ms;}
.fs_menu_list li:nth-child(5) a {transition-delay: 880ms;}
.fs_menu_list li:nth-child(6) a {transition-delay: 950ms;}
.fs_menu_list li:nth-child(7) a {transition-delay: 900ms;}
.fs_menu_list li:nth-child(8) a {transition-delay: 950ms;}
.fs_menu_list li:nth-child(9) a {transition-delay: 1000ms;}
.fs_menu_list li:nth-child(10) a {transition-delay: 1050ms;}
.fs_menu_container.active .fs_menu_list li a
{
	transform: none;
}
.fs_menu_list li a span
{
	position: relative;
}
.fs_menu_list li a span span
{
	position: absolute;
	top: -1px;
	left: -5px;
	color: #ff4200;
	z-index: -1;
}
.fs_menu_list li a > span::after
{
	display: block;
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 0%;
	height: 3px;
	background: #171717;
	content: '';
	-webkit-transition: all 600ms cubic-bezier(.19,1,.22,1);
	-moz-transition: all 600ms cubic-bezier(.19,1,.22,1);
	-ms-transition: all 600ms cubic-bezier(.19,1,.22,1);
	-o-transition: all 600ms cubic-bezier(.19,1,.22,1);
	transition: all 600ms cubic-bezier(.19,1,.22,1);
}
.fs_menu_list li a:hover span::after
{
	width: 100%;
}
.fs_social_container
{
	position: absolute;
	bottom: 0px;
	right: 63px;
	width: auto;
	height: 74px;
	z-index: 11;
}
.fs_social li
{
	display: inline-block;
	margin-left: 10px;
}
.fs_social li a
{
	width: 100%;
	height: 100%;
	padding: 10px;
}
.fs_social li i
{
	font-size: 13px;
	color: rgba(255,66,0,0.6);
}
.fs_social li:hover i
{
	color: rgba(255,66,0,1);
}