.clear {
    clear: both;
}

header {
    background: inherit;
    position: fixed;
    z-index: 1;
}

header nav {
    margin: 0;
    padding: 0;
}

@media all and (min-width: 55rem) {
    header nav ul li {
        width: 25%;
        text-align: right;
    }
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    float: left;
}

header nav ul li:before {
    content: "";
}

header nav ul li a:link {
    color: #261700;
    padding: 0;
    text-decoration: none;
    text-shadow: 0 0 0 #331F00;
}

header nav ul li a:visited {
    color: #261700;
}

header nav ul li a:hover {
    color: #FF9900;
    -webkit-transition: color .25s ease;
    -moz-transition: color .25s ease;
    -o-transition: color .25s ease;
    -ms-transition: color .25s ease;
    transition: color .25s ease;
}

h1,
h2,
h3,
h4 {
    font-weight: 300;
}

.heading {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}

@media (min-width: 55rem) {
    h2 {
        text-align: left;
        font-size: 2rem;
        line-height: 3rem;
        word-spacing: -0.125rem;
    }
    h3 {
        font-size: 1.5rem;
        line-height: 1;
        word-spacing: 0.5rem;
    }
    #home h3 {
        font-size: 1.5rem;
        line-height: 1.25;
        word-spacing: 0.5rem;
    }
    h5 {
        font-size: 1rem;
        line-height: 1.5;
    }
    h6 {
        font-size: 0.8888888rem;
        line-height: 1rem;
        font-weight: normal;
    }
}

a:link {
    color: #FF9900;
    text-decoration: none;
    padding: 0;
}

a:visited {
    color: #FF9900;
    /*#B86E00;*/
}

a:hover {
    color: #FF9900;
    text-decoration: underline;
}

ul {
    list-style: none;
    margin-top: 0;
}

.box ul li {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0;
}

.box {
    padding: 3rem 0 0 0;
    box-sizing: border-box;
}

.logo {
    float: left;
}

.box:after {
    content: "";
    display: table;
    clear: both;
}

@media all and (min-width: 55rem) {
    .box {
        padding: 6rem 0;
        min-height: 100vh;
    }
}

@media all and (min-width: 71rem) {
    .tagline {
        margin-top: 0;
        position: relative;
        top: -4rem;
        margin-left: 33.3333333333%;
    }
}

.no-border {
    border: none;
}

@media all and (min-width: 55rem) {
    .center {
        text-align: center;
    }
}

a.button,
button {
    background: #FF9900;
    color: #222;
    padding: 0 1.5rem;
    text-decoration: none;
}

.button:hover,
button:hover {
    background: #FFAA11;
}

.call {
    margin-bottom: 0;
}

h1 {
    margin: 0;
}

ul p,
ul h5,
ul h6 {
    margin: 0;
}

.no-margin {
    margin: 0;
}

@media all and (min-width: 55rem) {
    .modal {
        position: fixed;
        /*        top: 3rem;*/
        /*        left: 15%;*/
    }
}

.modal {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    background: #FAFAFA;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    padding: 1.5rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    border: 1px solid #bbb;
    overflow-y: scroll;
}

.modal.show {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    z-index: 999;
    opacity: 1;
    pointer-events: auto;
    max-width: 100%;
    max-height: 100%;
}

.sidebar {
    border-left: 6px solid #444;
    /*margin-left: 6px;*/
    
    padding-left: 6px;
}

dt {
    font-weight: normal;
}

dd {
    margin: 0;
}