/*Toggle Button*/
.navbar .navbar-toggler {
	float: right;
	margin-top: 1.538rem;
	border-color: rgba(255, 255, 255, 1);	
	padding-left: 0;
	padding-right: 0;
}
.navbar-toggler:hover, 
.navbar-toggler:focus {
	background-color: transparent;	
}
.navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(1, 1, 47, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
	width: 2rem;
}

/*Navbar Header Wrap*/
.navbar-header-wrap {
	background-color: rgba(0, 0, 0, .4);
	position: absolute;
	right: 0;
	left: 0;
	z-index: 2;
}
.navbar.navbar-header-wrap .navbar-toggler {
	border-color: rgba(255, 255, 255, 0);	
}
.navbar.navbar-header-wrap .navbar-toggler-icon {
  	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar.navbar-header-wrap.header-fixed-top .navbar-toggler {
	border-color: rgba(1, 1, 47, 0);	
}
.navbar.navbar-header-wrap.header-fixed-top .navbar-toggler-icon {
  	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(1, 1, 47, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/*Header Sticky*/
.header-fixed-top {
	background-color: #fff;
	position: fixed;
	top:0; 
	left:0;
	width: 100%; 
	z-index: 3;
	box-shadow: 0 8px 20px 0 rgba(0,0,0,.1);
	opacity: 1;
	-webkit-animation: slide-down 1.07s;
	animation: slide-down 1.07s;
}
@keyframes slide-down {
    0% {
        opacity: 1;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0);
    } 
}