/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root{
    --primary: #1C4473;
    --primary-faded: #042444ee;
    --primary250: #3492FE;
    --primary750: #132A45;
    --primary950: #021226;
}
body {
    font-size: 1rem;
    line-height: 1.7;
    color: #606d6e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #454B4D;
}

a {
    color: #1F8CD6;
    text-decoration: none;
}

a:hover {
    color: #175E91;
}

pre {
    background: #F0F0F0;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 3rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}
.nav-pinned{
    background: var(--primary-faded);
    color:#eee;
}
.nav-unpinned{
/*    background: var(--primary250);*/
    color:#333;

}
.hero {
    height: 500px;
    width:100% ;
    position:absolute;
    left:0;
    top: 0;
    background-image: url('../images/beach.jpg');
}
.uk-offcanvas-bar{
    background: var(--primary950);
    background: linear-gradient(176deg, var(--primary950) 0%, var(--primary) 100%);
}
