html,
body {
    height: 100%;
}

* {
    margin: 0;
    padding: 0;  
    font-family: 'Varela Round', sans-serif;
    color: white;
    font-weight: normal;
}

h1 {
    font-size: 44px;
    line-height: 1;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 30px;
}

h4 {    
    font-size: 22px;
}

h5 {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
}

h6 {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
}


p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 18px;
    font-weight: lighter;
    color: white;
}


/*  Navigation Menu  */

header {}

.menu-start {
    position: absolute;
    width: 100%;
    height: 60px;
    z-index: 3;
}

.menu-fixed {
    position: fixed;
    width: 100%;
    height: 60px;
    background: white;
    z-index: 2;
}

.menu-mobile {
    position: fixed;
    top: -200px;
    width: 100%;
    max-width: 1920px;
    height: 200px;
    background: rgba(255, 255, 255, 1);
    visibility: hidden;
    z-index: 3;
}

.cont-links {
    width: 95%;
    max-width: 1840px;
    height: 60px;
    margin: auto;   
}

.menu-fixed .cont-links {
    
}

.menu-mobile .cont-links {
    width: 176px;
    padding-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cont-logo {
    width: 30%;
    float: left;
    margin-top: 6px;
}

.menu-start nav {
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: center;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.menu-fixed nav {
    width: 70%;
    height: 100%;
    float: left;
    text-align: right;
}

.menu-mobile nav {
    text-align: center;
    padding-top: 5px
}

.menu-start nav li,
.menu-fixed nav li {
    display: inline-block;
    line-height: 60px;
    vertical-align: middle;
}

nav ul {
    list-style-type: none;
}

nav a {
    cursor: pointer;
    font-weight: normal;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0px 10px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

nav a:hover {
    color: white;
    letter-spacing: 3px;
}

.menu-fixed nav a {
    color: darkgrey;
}

.menu-mobile nav a {
    font-size: 14px;
    line-height: 28px;
    color: darkgrey;
}

.menu-fixed nav a:hover,
.menu-mobile nav a:hover {
    color: darkslategrey;
}

.dropdown-button {
    position: absolute;
    width: 176px;
    top: 200px;
    cursor: pointer;
}

@media (max-width: 540px) {
    .menu-start,
    .menu-fixed {
        display: none;
    }
    .menu-mobile {
        visibility: visible;
    }
}
