/*//--------------------------------- [ Imports ]*/
/*Overriding Gutter*/
html {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

/*//-------------------------------------------- [ Grid Settings ]*/
/*// One ///////////////////////////////////////////*/
/*// Two ///////////////////////////////////////////*/
/*// Three ///////////////////////////////////////////*/
/*// Four ///////////////////////////////////////////*/
/*// Five ///////////////////////////////////////////*/
/*// Six ///////////////////////////////////////////*/
/*//-------------------------------------------- [ Variables ]*/
/*// Colour ///////////////////////////////////////////*/
.color-primary {
    color: #ed524b;
}

.color-secondary {
    color: #30bdbb;
}

/*// Fonts ///////////////////////////////////////////*/
/*// Mobile Menu  ///////////////////////////////////////////*/
/*// Breakpoints ///////////////////////////////////////////*/
/*// Mixins ///////////////////////////////////////////*/
/*// Typography ///////////////////////////////////////////*/
* {
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

body {
    font-family: "Raleway", sans-serif;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 30px 0;
    font-family: "Raleway", sans-serif;
    color: #333c4e;
}

h1 {
    font-size: 4em;
    line-height: 1.2;
    font-weight: 600;
}

h2 {
    font-size: 5em;
    line-height: 1.6;
    font-weight: 600;
}
@media screen and (min-width: 1550px) {
    h2 {
        font-size: 5em;
    }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
    h2 {
        font-size: 2.8em;
    }
}
@media screen and (max-width: 480px) {
    h2 {
        font-size: 2.3em;
    }
}

h3 {
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.8em;
    line-height: 1.4;
}

h5 {
    font-size: 1.6em;
    line-height: 1.4;
}

h6 {
    font-size: 1.4em;
    line-height: 1.4;
}

p {
    line-height: 1.6;
    color: rgba(51, 60, 78, 0.7);
}

a {
    color: #30bdbb;
}

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

.super-text {
    font-family: "Roboto", sans-serif;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #30bdbb;
}

/*// Containing Elements ///////////////////////////////////////////*/
.container {
    padding: 0 10%;
    max-width: 1500px;
    margin: 0 auto;
}
.container.medium {
    padding: 0 20%;
}

section {
    padding: 100px 0;
}

/*// Animation ///////////////////////////////////////////*/
.fade-content > * {
    transition: ease opacity 0.85s, ease transform 0.85s;
}

.fade-content > *:nth-child(3n + 2) {
    transition-delay: 0.8s;
}

.fade-content > *:nth-child(3n + 3) {
    transition-delay: 0.9s;
}

div.keep-scrolling {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}
@media screen and (max-width: 480px) {
    div.keep-scrolling {
        bottom: 20px;
        right: 10px;
    }
}
div.keep-scrolling #mouse {
    border: 0.1em solid rgba(51, 60, 78, 0.4);
    border-radius: 1.5em;
    display: block;
    height: 2.6em;
    margin: 0px auto;
    position: relative;
    width: 1.5em;
}
div.keep-scrolling #mouse::before {
    content: "";
    display: block;
    width: 0.2em;
    height: 0.2em;
    border-radius: 0.2em;
    background: rgba(51, 60, 78, 0.4);
    opacity: 1;
    position: absolute;
    left: 0.55em;
    top: 0.4em;
    transition: all ease-in-out 0.2s;
}
div.keep-scrolling .scrolling::before {
    opacity: 1 !important;
    height: 0.8em !important;
}
div.keep-scrolling .doneScrolling::before {
    opacity: 0.5 !important;
    height: 0.2em !important;
    top: 1.2em !important;
}
div.keep-scrolling .preScrolling::before {
    opacity: 0 !important;
    top: 1.2em !important;
}
div.keep-scrolling .hideScrolling::before {
    opacity: 0 !important;
    display: none !important;
    top: 0.4em !important;
}
div.keep-scrolling .startScrolling::before {
    opacity: 1 !important;
    top: 0.4em !important;
}

/*// Header ///////////////////////////////////////////*/
header {
    background: #eeeeee;
    overflow: hidden;
}
header .header-content {
        position: relative;
    display: block;
    height: 100px;
}

header div.header-content .header-logo {
    display: block;
    position: absolute;
    top: 40px;
}

svg.branding {
    fill: #30bdbb;
    width: 50px;
    height: 50px;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}
svg.branding:hover {
    fill: #ed524b;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

/*// Mobile Menu ///////////////////////////////////////////*/
.button_container {
    position: fixed;
    top: 40px;
    right: 10%;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.25s ease;
}
.button_container:hover span {
    background: #ed524b;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}
.button_container.active {
    position: fixed;
    right: 10%;
}
.button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #fff;
}
.button_container.active .middle {
    opacity: 0;
    background: #fff;
}
.button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #fff;
}
.button_container span {
    background: #333c4e;
    border: none;
    height: 3px;
    border-radius: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
}
.button_container span:nth-of-type(2) {
    top: 11px;
}
.button_container span:nth-of-type(3) {
    top: 22px;
}

.overlay {
    position: fixed;
    background: #333c4e;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
    z-index: 900;
}
.overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
    overflow-y: scroll;
    /*&::before {
			transition: opacity .35s, visibility .35s, height .35s;
			opacity: 0.7;
			position: fixed;
		    background-image: url('../media/branding-emblem.svg');
		    background-size: 800px 800px;
		    background-repeat: no-repeat;

		    top: 0;
		    bottom: -50%;
		    left: 0;
		    right: 0;
		    content: '';
		    transform: rotate(25deg);
		}*/
}
.overlay.open::-webkit-scrollbar {
    width: 12px;
    background: transparent;
}
.overlay.open li {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
    animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
    animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
    animation-delay: 0.5s;
}
.overlay nav {
    position: relative;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    text-align: left;
}
.overlay ul {
    list-style: none;
    padding: 0 10%;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
    min-height: 400px;
    font-weight: 700;
    font-size: 1rem;
}
@media screen and (max-width: 768px) {
    .overlay ul {
        font-size: 0.8rem;
    }
}
.overlay ul h3 {
    color: #30bdbb;
}
.overlay ul li {
    display: block;
    padding: 0 0 20px 0;
    position: relative;
    opacity: 0;
}
.overlay ul li:last-child {
    margin-bottom: 114px;
}
.overlay ul li a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    text-decoration: none;
    overflow: hidden;
    padding-bottom: 5px;
}
.overlay ul li a:hover {
    color: #ed524b;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}
.overlay ul li a:hover:before,
.overlay ul li a:focus:before,
.overlay ul li a:active:before {
    width: 100%;
}
.overlay ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    transform: translateX(-50%);
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.35s;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

/*// Footer ///////////////////////////////////////////*/
footer {
    background: #eeeeee;
    padding: 30px 0;
    text-align: center;
}
footer div.footer-logo {
    padding: 30px 0 0 0;
}
footer div.footer-logo svg.branding {
    fill: #333c4e;
}
footer nav#primary ul {
    list-style-type: none;
    padding: 0;
}
footer nav#primary ul li a {
    font-family: "Roboto", sans-serif;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #333c4e;
    display: inline-block;
    padding: 30px 20px;
    text-decoration: none;
}
@media screen and (max-width: 800px) {
    footer nav#primary {
        display: none;
    }
}

/*// Identifier ///////////////////////////////////////////*/
div.identifier {
    position: relative;
}
div.identifier div.identifier-image {
    height: 60px;
    width: 60px;
    border: 3px solid #ffffff;
    border-radius: 60px;
    background-size: cover;
    background-position: center center;
    box-shadow: 0px 6px 36px -12px rgba(0, 0, 0, 0.46);
    margin: 0 auto;
}
div.identifier div.identifier-content {
    display: inline;
    padding: 10px;
    text-align: center;
    width: 350px;
}
div.identifier div.identifier-content div.identifier-name {
    font-family: "Roboto", sans-serif;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #30bdbb;
}
div.identifier div.identifier-content div.identifier-detail {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: rgba(51, 60, 78, 0.6);
    font-size: 0.8em;
}

/*// Hero ///////////////////////////////////////////*/
section.hero {
    background: #eeeeee;
    height: 80vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}
section.hero:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../media/rebecca-brand.svg");
    background-size: 500px;
    background-position: right bottom;
    background-repeat: no-repeat;
    transform: rotate(13deg);
}
@media screen and (max-width: 500px) {
    section.hero:before {
        background-size: 100%;
    }
}
section.hero div.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    text-align: center;
    padding: 0 50% 0 10%;
    text-align: left;
    overflow: visible;
    max-width: 1500px;
    margin: 0 auto;
}
section.hero div.hero-content h2 {
    color: #333c4e;
    line-height: 1.1;
}
@media screen and (max-width: 1000px) {
    section.hero div.hero-content {
        padding: 0 10% 0 10%;
    }
}

/*// Skills ///////////////////////////////////////////*/
section.skills {
    z-index: 2;
    overflow: hidden;
    background: #fafafa;
}
section.skills div.grid-collection {
    position: relative;
    overflow: hidden;
}
section.skills div.grid-collection div.grid-item {
    position: relative;
    min-height: 300px;
    padding: 30px;
    position: relative;
}
@media screen and (min-width: 980px) {
    section.skills div.grid-collection div.grid-item {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 32.6112651148%;
    }
    section.skills div.grid-collection div.grid-item:last-child {
        margin-right: 0;
    }
    section.skills div.grid-collection div.grid-item:nth-child(3n) {
        margin-right: 0;
    }
    section.skills div.grid-collection div.grid-item:nth-child(3n + 1) {
        clear: left;
    }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
    section.skills div.grid-collection div.grid-item {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 49.4584488361%;
    }
    section.skills div.grid-collection div.grid-item:last-child {
        margin-right: 0;
    }
    section.skills div.grid-collection div.grid-item:nth-child(2n) {
        margin-right: 0;
    }
    section.skills div.grid-collection div.grid-item:nth-child(2n + 1) {
        clear: left;
    }
}
@media screen and (max-width: 768px) {
    section.skills div.grid-collection div.grid-item {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 100%;
    }
    section.skills div.grid-collection div.grid-item:last-child {
        margin-right: 0;
    }
    section.skills div.grid-collection div.grid-item:nth-child(1n) {
        margin-right: 0;
    }
    section.skills div.grid-collection div.grid-item:nth-child(1n + 1) {
        clear: left;
    }
}
section.skills div.grid-collection div.grid-item div.grid-image {
    text-align: center;
    padding: 30px;
}
section.skills div.grid-collection div.grid-item div.expertise-list {
    text-align: center;
}
section.skills div.grid-collection div.grid-item div.grid-content {
    width: 100%;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #333c4e;
}

/*// Descriptions ///////////////////////////////////////////*/
section.project-description {
    background: #fafafa;
}

/*// Projects ///////////////////////////////////////////*/
section.projects {
    overflow: hidden;
    z-index: 2;
    padding: 100px 0;
}
section.projects div.grid-collection {
    position: relative;
}
section.projects div.grid-collection div.grid-item {
    position: relative;
    min-height: 430px;
    margin-bottom: 10px;
    position: relative;
}
@media screen and (min-width: 980px) {
    section.projects div.grid-collection div.grid-item {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 32.6112651148%;
    }
    section.projects div.grid-collection div.grid-item:last-child {
        margin-right: 0;
    }
    section.projects div.grid-collection div.grid-item:nth-child(3n) {
        margin-right: 0;
    }
    section.projects div.grid-collection div.grid-item:nth-child(3n + 1) {
        clear: left;
    }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
    section.projects div.grid-collection div.grid-item {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 49.4584488361%;
    }
    section.projects div.grid-collection div.grid-item:last-child {
        margin-right: 0;
    }
    section.projects div.grid-collection div.grid-item:nth-child(2n) {
        margin-right: 0;
    }
    section.projects div.grid-collection div.grid-item:nth-child(2n + 1) {
        clear: left;
    }
}
@media screen and (max-width: 768px) {
    section.projects div.grid-collection div.grid-item {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 100%;
    }
    section.projects div.grid-collection div.grid-item:last-child {
        margin-right: 0;
    }
    section.projects div.grid-collection div.grid-item:nth-child(1n) {
        margin-right: 0;
    }
    section.projects div.grid-collection div.grid-item:nth-child(1n + 1) {
        clear: left;
    }
}
section.projects div.grid-collection div.grid-item a.grid-image {
    width: 100%;
    height: 300px;
    position: relative;
    display: block;
    text-decoration: none;
    background-size: cover;
    background-position: center center;
}
section.projects div.grid-collection div.grid-item div.grid-content {
    position: relative;
    padding: 30px 0;
}
section.projects div.grid-collection div.grid-item div.grid-content div.grid-title {
    font-family: "Roboto", sans-serif;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #333c4e;
    padding: 15px 0;
}
section.projects div.grid-collection div.grid-item div.grid-content a {
    font-family: "Roboto", sans-serif;
    color: #30bdbb;
    text-decoration: none;
    padding: 15px 0;
}
section.projects div.grid-collection div.grid-item div.grid-content a svg.continue-reading {
    fill: #30bdbb;
    width: 20px;
    height: 10px;
    margin: 0 10px;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}
section.projects div.grid-collection div.grid-item div.grid-content a:hover {
    cursor: pointer;
}
section.projects div.grid-collection div.grid-item div.grid-content a:hover svg.continue-reading {
    margin-left: 20px;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

/*// Postings ///////////////////////////////////////////*/
section.postings {
    padding: 100px 0 0 0;
}
section.postings div.posting-collection {
    overflow: hidden;
}
section.postings div.posting-collection div.posting-item {
    text-decoration: none;
    position: relative;
    margin-bottom: 30px;
    height: 300px;
    position: relative;
}
@media screen and (min-width: 980px) {
    section.postings div.posting-collection div.posting-item {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 32.6112651148%;
    }
    section.postings div.posting-collection div.posting-item:last-child {
        margin-right: 0;
    }
    section.postings div.posting-collection div.posting-item:nth-child(3n) {
        margin-right: 0;
    }
    section.postings div.posting-collection div.posting-item:nth-child(3n + 1) {
        clear: left;
    }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
    section.postings div.posting-collection div.posting-item {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 49.4584488361%;
    }
    section.postings div.posting-collection div.posting-item:last-child {
        margin-right: 0;
    }
    section.postings div.posting-collection div.posting-item:nth-child(2n) {
        margin-right: 0;
    }
    section.postings div.posting-collection div.posting-item:nth-child(2n + 1) {
        clear: left;
    }
}
@media screen and (max-width: 768px) {
    section.postings div.posting-collection div.posting-item {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 100%;
    }
    section.postings div.posting-collection div.posting-item:last-child {
        margin-right: 0;
    }
    section.postings div.posting-collection div.posting-item:nth-child(1n) {
        margin-right: 0;
    }
    section.postings div.posting-collection div.posting-item:nth-child(1n + 1) {
        clear: left;
    }
}
section.postings div.posting-collection div.posting-item div.posting-image {
    background-size: cover;
    background-position: center center;
    height: 300px;
}
section.postings div.posting-collection div.posting-item div.posting-content {
    padding: 30px 0;
}
section.postings div.posting-collection div.posting-item div.posting-content div.posting-title {
    font-size: 1.2em;
    color: #333c4e;
}
section.postings div.posting-collection div.posting-item div.posting-content div.posting-date {
    font-family: "Roboto", sans-serif;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #30bdbb;
}

/*// Masthead ///////////////////////////////////////////*/
section.masthead {
    height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #eeeeee;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
    section.masthead {
        height: 400px;
    }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
    section.masthead {
        height: 300px;
    }
}
@media screen and (max-width: 480px) {
    section.masthead {
        height: 200px;
    }
}
section.masthead.masthead-image {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 800px 800px;
}
section.masthead div.masthead-video {
    width: 100%;
    max-width: 850px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
}
section.masthead div.masthead-video:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: inline;
    background: #333c4e;
}
section.masthead video {
    width: 95%;
    max-width: 850px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    border-top: 40px solid #ffffff;
    border-left: 30px solid #ffffff;
    border-bottom: 30px solid #ffffff;
    border-right: 30px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0px 6px 36px -12px rgba(0, 0, 0, 0.46);
}
section.masthead video p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    text-align: center;
}

/*// Credits ///////////////////////////////////////////*/
section.design-credientials {
    position: relative;
    overflow: hidden;
    padding: 100px 0 0 0;
}
section.design-credientials div.credit-listings div.column {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}
@media screen and (min-width: 980px) {
    section.design-credientials div.credit-listings div.column {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 32.6112651148%;
    }
    section.design-credientials div.credit-listings div.column:last-child {
        margin-right: 0;
    }
    section.design-credientials div.credit-listings div.column:nth-child(3n) {
        margin-right: 0;
    }
    section.design-credientials div.credit-listings div.column:nth-child(3n + 1) {
        clear: left;
    }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
    section.design-credientials div.credit-listings div.column {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 49.4584488361%;
    }
    section.design-credientials div.credit-listings div.column:last-child {
        margin-right: 0;
    }
    section.design-credientials div.credit-listings div.column:nth-child(2n) {
        margin-right: 0;
    }
    section.design-credientials div.credit-listings div.column:nth-child(2n + 1) {
        clear: left;
    }
}
@media screen and (max-width: 768px) {
    section.design-credientials div.credit-listings div.column {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 100%;
    }
    section.design-credientials div.credit-listings div.column:last-child {
        margin-right: 0;
    }
    section.design-credientials div.credit-listings div.column:nth-child(1n) {
        margin-right: 0;
    }
    section.design-credientials div.credit-listings div.column:nth-child(1n + 1) {
        clear: left;
    }
}
section.design-credientials div.credit-listings div.column p {
    margin: 0.2em 0;
    font-size: 0.8em;
    font-family: "Roboto", sans-serif;
}

/*// Styling ///////////////////////////////////////////*/
section.design-elements {
    overflow: hidden;
    position: relative;
    padding: 50px 0;
}
section.design-elements div.palette div.swatch {
    position: relative;
    margin-bottom: 10px;
    border-radius: 4px;
}
@media screen and (min-width: 980px) {
    section.design-elements div.palette div.swatch {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 32.6112651148%;
    }
    section.design-elements div.palette div.swatch:last-child {
        margin-right: 0;
    }
    section.design-elements div.palette div.swatch:nth-child(3n) {
        margin-right: 0;
    }
    section.design-elements div.palette div.swatch:nth-child(3n + 1) {
        clear: left;
    }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
    section.design-elements div.palette div.swatch {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 49.4584488361%;
    }
    section.design-elements div.palette div.swatch:last-child {
        margin-right: 0;
    }
    section.design-elements div.palette div.swatch:nth-child(2n) {
        margin-right: 0;
    }
    section.design-elements div.palette div.swatch:nth-child(2n + 1) {
        clear: left;
    }
}
@media screen and (max-width: 768px) {
    section.design-elements div.palette div.swatch {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 100%;
    }
    section.design-elements div.palette div.swatch:last-child {
        margin-right: 0;
    }
    section.design-elements div.palette div.swatch:nth-child(1n) {
        margin-right: 0;
    }
    section.design-elements div.palette div.swatch:nth-child(1n + 1) {
        clear: left;
    }
}
section.design-elements div.palette div.swatch div.color-swatch {
    border-radius: 4px;
    height: 40px;
}
section.design-elements div.palette div.swatch div.color-name {
    font-family: "Roboto", sans-serif;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #333c4e;
    margin: 10px 0 5px 0;
}
section.design-elements div.palette div.swatch div.hex-value {
    color: rgba(51, 60, 78, 0.7);
    font-size: 0.8em;
    margin: 5px 0 10px 0;
    text-transform: uppercase;
}
section.design-elements div.typography {
    overflow: hidden;
    position: relative;
    color: #333c4e;
}
section.design-elements div.typography div.character-style h6,
section.design-elements div.typography div.character-style ul > li {
    font-size: 0.8em;
}
section.design-elements div.typography div.character-style h6 {
    margin: 0;
}
section.design-elements div.typography div.character-style ul {
    margin: 0;
    padding: 0;
}
section.design-elements div.typography div.character-style ul li {
    list-style-type: none;
}
section.design-elements div.typography div.character-style div.character-description {
    float: left;
    display: block;
    margin-right: 1.0831023278%;
    width: 49.4584488361%;
    position: relative;
    padding-top: 25px;
}
section.design-elements div.typography div.character-style div.character-description:last-child {
    margin-right: 0;
}
section.design-elements div.typography div.character-style div.character-description:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: #eeeeee;
}
section.design-elements div.typography div.character-style div.character-example {
    float: left;
    display: block;
    margin-right: 1.0831023278%;
    width: 49.4584488361%;
    text-align: right;
}
section.design-elements div.typography div.character-style div.character-example:last-child {
    margin-right: 0;
}

/*// Image Grid ///////////////////////////////////////////*/
section.image-grid {
    overflow: hidden;
    position: relative;
    padding: 100px 0 0 0;
}
section.image-grid div.image-large {
    position: relative;
    background-size: cover;
    background-position: center center;
    height: 500px;
    margin-bottom: 30px;
}
@media screen and (min-width: 980px) {
    section.image-grid div.image-large {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 49.4584488361%;
    }
    section.image-grid div.image-large:last-child {
        margin-right: 0;
    }
    section.image-grid div.image-large:nth-child(2n) {
        margin-right: 0;
    }
    section.image-grid div.image-large:nth-child(2n + 1) {
        clear: left;
    }
}
@media screen and (max-width: 480px) {
    section.image-grid div.image-large {
        float: left;
        display: block;
        margin-right: 1.0831023278%;
        width: 100%;
    }
    section.image-grid div.image-large:last-child {
        margin-right: 0;
    }
    section.image-grid div.image-large:nth-child(1n) {
        margin-right: 0;
    }
    section.image-grid div.image-large:nth-child(1n + 1) {
        clear: left;
    }
}

/*// Full Screen Shot ///////////////////////////////////////////*/
section.full-view {
    position: relative;
    padding: 0;
}
section.full-view div.mock-up {
    box-shadow: 0px 6px 36px -12px rgba(0, 0, 0, 0.46);
    margin: 0;
    padding: 0;
    border: 19px solid #ffffff;
}

/*# sourceMappingURL=variables.css.map */