/*----- HEADER -----*/
.hidden {
	display: none;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
	padding: 40px 0;
}
.active-header {
    background: #191919;
    padding: 20px 0;
    box-shadow: 0 0 10px #191919;
}
.navbar {
    padding: 0;
	position: relative;
	z-index: 1;
}
.brand img {
    max-width: 320px;
}
.wrapper {
	background: url("../images/object.png") no-repeat;
	background-size: cover;
	background-position: right bottom;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	display: flex;
	align-items: center;
	padding: 100px 0 50px;
}
.wrapper .container {
    display: block;
}
#navbar_menu_box h6{
	font-size: 16px;
	font-weight: 400;
	color: #FFFFFF;
	margin-bottom: 0;
}
#navbar_menu_box:hover h6{
	color: #00AEEF;
}
#navbar_menu_box{
	display: grid;
    grid-auto-flow: column;
	align-items: center;
    gap: 7px;
}
#navbar_menu_box span {
    background: #FFFFFF;
    width: 15px;
    height: 2px;
    display: block;
}
#navbar_menu_box span:nth-child(2) {
    width: 24px;
	margin: 5px 0;
}
#navbar_menu_box h6:nth-child(2) {
    display: none;
}
.active_header #navbar_menu_box h6:first-child {
    display: none;
}
.active_header #navbar_menu_box h6:nth-child(2){
	display: block;
}
.active_header #navbar_menu_box div span:first-child {
    width: 24px;
    transform: rotate(45deg);
}
.active_header #navbar_menu_box div span:last-child {
    width: 24px;
    transform: rotate(-45deg);
    margin: -14px 0;
}
.active_header #navbar_menu_box span:nth-child(2) {
    visibility: hidden;
}
.sidemenu_content h3 {
    font-size: 42px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 2rem;
}
.sidemenu_content h3 b {
    font-weight: 500;
    color: #00AEEF;
}
.menu li a {
    font-size: 58px;
    font-weight: 400;
    color: #FFFFFF;
    display: block;
    margin-bottom: 4rem;
    line-height: normal;
}
.menu li a:hover{
    color: #00AEEF;
}
.menu li:last-child a{margin-bottom: 0;}
.back_menu{
	font-size: 20px;
    font-weight: 400;
    color: #8B8B8B;
    display: grid;
    grid-auto-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
	margin-bottom: 4rem;
}
.back_menu:hover{
	color: #00AEEF;
}
.back_menu:hover svg path{
	fill: #00AEEF;
}
.inner_menu_list h6{
	font-size: 20px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: 3px;
	margin-bottom: 3rem;
}
.inner_menu_list li a{
	font-size: 25px;
	font-weight: 300;
	color: #FFFFFF;
	margin-bottom: 1.5rem;
	display: block;
}
.inner_menu_list li p{
	font-size: 25px;
	font-weight: 300;
	color: #FFFFFF;
	margin-bottom: 1.5rem;
	display: block;
}
.inner_menu_list li a:hover{color: #00AEEF;}
.inner_menu_list li:last-child a{margin-bottom: 0;}
/* .active_header .sidemenu_content{
    visibility: visible;
    position: fixed;
    top: -100px;
}
.sidemenu_content {
    position: relative;
    top: 0px;
    bottom: 0;
    height: 100%;
    margin: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    visibility: hidden;
} */
footer {
    padding: 15px 0;
    color: #191919;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
}
footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer b{
    font-weight: 600;
}