/* REMOVE LOGO */
header .navbar.navbar-default .brand {
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	opacity: 0;
}
/* REPLACE LOGO */
header .navbar.navbar-default .new-brand.d-none {
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	display: block!important;
	opacity: 1;
}

header .navbar.navbar-default .new-brand {
    position: absolute;
    display: block;
    right: auto;
    width: 150px;
    height: 150px;
    left: 5%;
    top: 15px;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}
header .navbar.navbar-default .new-brand img {
    width: 150px;
}
header .navbar.navbar-default.on .new-brand img {
	width: 120px;
}
header .navbar.navbar-default.on .new-brand {
    top: 5px;
}

header .navbar.navbar-default.on:before {
    opacity: 0;
}