* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;


}

/* ID's' */


body {
    margin: 0;
    font-family: Helvetica, sans-serif;
    background-color: #fff;
    color: #393a3d;
}

a {
    color: #393a3d;
}

p {
    text-indent: 30px;
    margin-top: 20px; 
}

/* classes */

.main-content {
    padding: 10px;
}



.center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.text-large {
    font-size: 24px;
}

.text-normal {
    font-size: 20px;
}

.text-small {
    font-size: 16px;
}

.left {
    float: left;
}


.right {
    float: right;
}

.clear {
    clear: both;
}

.w-50 {
    width: 50%;
}

.w-80 {
    width: 80%;
}

.m-auto {
    margin: auto;
}

.yellow {
    color: #ff0;
}

/* classes */

.advo-header {
    height: 50px;
    background-color: #30BC52;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
    color: #333;}

.page-header {

    padding: 5px 10px;

}

.logo {
    float: left;
    font-weight: bold;
    font-size: 25px;
    padding: 2px 10px;
}

.menu-wrap {
    float: right;
}

.mobile-menu-wrap {
    display: none;
    padding: 10px 20px;
    border-bottom: 1px sol;
    border-top: solid 1.5px #ccc;
    margin-top: 5px;    
}

.mobile-menu-item {
    padding: 5px;

}

.mobile-menu-item a {
    color: #393a3d;
    text-decoration: none;

}


.menu-item {
    float: right;
    padding: 5px;
}

.menu-item a {
    color: #393a3d;
    text-decoration: none;
}

.menu-item a:hover {
    background-color: #eee;
}

.menu-button {
    float: right;
    padding: 0 10px;
    display: none;
}
.menu-button div {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 6px 0;
}

@media only screen and (max-width: 600px) {


    .menu-wrap {
        display: none;
        margin-top: 10px;
        float: left;

    }
    .menu-button {
        display: block;
    }

    .menu-item {
        display: block;
    }

}


