@font-face {
    font-family: GothamMedium;
    src: url('../fonts/Gotham-Medium.woff') format('woff');
}

.navbar {
    font-family: GothamMedium;
    display: flex;
    margin-bottom: 0px;
    background-color:white;
}

.navbar-right {
    margin-top: 10px;
}

nav li {
    text-align: center;
}

.navbar-header { 
    width: 40%;
    background-color: white;
    height: 100px;
    padding-left: 30px;
}

.navbar-collapse {
    width: 60%;
    color: #726658;
    background-color: #ede9e6;
}

.v, .globo {
    width: 50px;
}
.yage {
    width: 200px
}


.floating{
    -webkit-animation-name: Floatingx;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: Floating;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    margin-top: 5px;

}

@-webkit-keyframes Floatingx{
    from {-webkit-transform:translate(0, 0px);}
    65% {-webkit-transform:translate(0, -15px);}
    to {-webkit-transform: translate(0, -0px);    }    
}
    
@-moz-keyframes Floating{
    from {-moz-transform:translate(0, 0px);}
    65% {-moz-transform:translate(0, -15px);}
    to {-moz-transform: translate(0, -0px);}    
}


.scaling{
    -webkit-animation-name: scalex;
    -webkit-animation-duration:3s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -moz-animation-name: scale;
    -moz-animation-duration:3s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-timing-function:ease-in-out;
}
    
    @-webkit-keyframes scalex{
        from {-webkit-transform: scale(0.9);}
        65% {-webkit-transform: scale(1.0);}
        to {-webkit-transform: scale(0.9);}    
    }
        
    @-moz-keyframes scale{
        from {-moz-transform: scale(0.9);}
        65% {-moz-transform: scale(1.0);}
        to {-moz-transform: scale(0.9);}    
    }



@media screen and (max-width: 935px) {
    .v, .globo {
        width: 20px;
    }
    .yage {
        width: 90px;
    }
}

@media screen and (max-width: 767px ) {
    .navbar-header {
        width: 100%;
    }
}