@import url(https://fonts.googleapis.com/css?family=Lato);
header {
    min-height: 100px;
    width: 100%;
    position: fixed;
    font-size: 14px;
    top: 0;
    z-index: 9999999;
    background: rgba(255, 255, 255, .95)
}

header.sticky {
    background: rgba(255, 255, 255, .98);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    box-shadow: 0 0 10px rgba(0, 0, 0, .6)
}

.container-head {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    height: 70px
}



.logo {width:350px}

.logo img {
 width:350px;
 position:absolute;
 left:20px; top: -20px
}

@media only screen and (max-width: 480px) {

.logo {
    width: 250px
}

.logo img {
    width: 250px;
    position: absolute;
    left: 5px; 
}

}

.animationsection {
    padding: 30px 0
}

.animationsection .container {
    display: block;
    color: #000;
    min-height: 230px
}

.animation {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 10px 0
}

.animation .button {
    display: block;
    padding: 7px 25px;
    background: #fff;
    border-radius: 3px;
    color: #000;
    margin-right: 20px;
    cursor: pointer
}

.animation .button.active {
    background: #000
}