.container{
	padding:0 45px;
}

header{
	background-color: #fff;
    position: fixed;
    z-index: 99;
    width: 100%;
    left: 0;
    top: 0;
    height:79px;
    border-bottom: 1px solid #e6e6e5;
}

header .container{
	height:100%;
}

header .menu{
	height:100%;
}

header .menu .row {
    justify-content: space-between;
    display:flex;
    height:100%;
}

header .logo {
    width: 138px;
    align-content:center;
}

header .logo a {
    display: inline-block;
}

header .logo img {
    display: block;
    max-width:100%;
}

header .menu .wrapper {
    width: calc(100% - 140px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .menu .wrapper nav {
    text-transform: uppercase;
    color: #707070;
    line-height: 120%;
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
    font-size: 0.95em;
}

header .menu .wrapper nav > ul {
    display: flex;
    list-style:none;
    font:inherit;
}

header .menu .wrapper nav > ul > li {
	align-content:center;
}

header .menu .wrapper nav > ul > li:not(:last-child) {
    margin-right: 24px;
    font:inherit;
}

header .menu .wrapper nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    text-decoration:none;
    color:inherit;
    font-size:19px;
    font-weight:700;
}






.bbaslider{
font-size:100px;
color:#fff;
text-shadow:0 0 10px rgba(0, 0, 0, 0.2);
position:relative;
height:102px;
text-align:center;
width:100%;
}

.bbaslider .element{
position:absolute;
top:62px;
left:0;
text-align:center;
width:100%;
opacity:0;
font-weight:bold;
}

.bbaslider .element.getin{
animation: 0.8s ease-out 0s 1 alternate getin;
animation-fill-mode: forwards;
}

.bbaslider .element.getout{
animation: 0.8s ease-out 0s 1 alternate getout;
animation-fill-mode: forwards;
}

@keyframes getin{
	from{
		top:62px;
		opacity:0;
	}
	to{
		top:0;
		opacity:1
	}
}

@keyframes getout{
	from{
		top:0;
		opacity:1;
	}
	to{
		top:-100px;
		opacity:0;
	}
}

