* {
    font-family: "Titillium Web", sans-serif;
}

html, body {
    margin: 0;	
    background-color: #fff;
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 320px) {  
    .header {
        display: flex;
        background-color: #292828;
        height: 150px;
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        text-align: center;
        color: aliceblue;
        align-items: center;
    }

    .menuToggle {
        display: block;
        float: left;
        margin-right: 10px;
    }

    .menuToggle svg {
        fill: aliceblue;
        height: 40px;
    }

    .navmenu {
        width:100%;
        position: absolute;
        z-index: 1;
        display: none;
        background-color: #292828;
        top: 150px;
        left: 0;
        padding: 15px 0;
    }

    .navknap {
        display: block;
        margin: 10px 0 10px 0;
        text-align: center;
        font-size: 20px;
        color: aliceblue;
        text-decoration: none;
        text-transform: uppercase;
    }

    .active {
        color: #FFF200 !important;
    }
    

    .navmenu h1 {
        border-bottom: solid 1px aliceblue;
        padding-bottom: 10px;
        font-size: 20px;
        margin: 0 50px;
    }

    .logo {
        width: 205px;
        height: 130px;
    }

    .logo img {
        width: 100%;
        height: auto;
    }
    
    .calltoaction {
        display: none;
    }
    
    .calltoaction div {
        margin: 5px 0;
    }

    .calltoaction div i {
        margin: 0 0.3em 0 0;
        padding: 0;
        vertical-align: middle;
        font-size: 1.3em;
    }

    .calltoaction a {
        text-decoration: none;
        color: aliceblue;
    }
}

@media only screen and (min-width: 480px) {  
    .calltoaction {
        display: block;
    }

}

@media only screen and (min-width: 768px) {  
}

@media only screen and (min-width: 992px) {  
}

@media only screen and (min-width: 1200px) {  
    .menuToggle {
        display: none;
    }

    .navmenu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        font-size: 14pt;
        border: none;
        position: unset;
        z-index: 0;
        width: auto;
        padding: 0;
    }

    .navknap {
        color: #ffffff;
        margin-left: 15px;
        margin-right: 15px;
        text-decoration: none;
        margin: 0 15px 0 15px !important;
    }

    .navmenu h1 {
        display: none;
    }

    .navknap:hover {
        color: #C6D932
    }

}