/*!
Theme Name: Simply Fluid 2019
Theme URI: http://underscores.me/
Author: Travis Norris
Author URI: http://underscores.me/
Description: Simply Fluid 2019
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: simply-fluid-2019
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Links
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

html {
	line-height: 1.2;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

code, kbd, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 85%;
}

sub, sup {
	font-size: 50%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.7em;
}

img {
	border-style: none;
}

button, input, optgroup, select, textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button, input {
	overflow: visible;
}

button, select {
	text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%; 
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"], [type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body, button, input, select, optgroup, textarea {
	font-family: 'Roboto Slab', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
	font-size: 1em;
	line-height: 1.8;
	color: #424548;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400; 
    line-height: 1.4;
	clear: both;
}

h1 { 
    font-size: 2em;
}

h2 {
    font-size: 1.6em;
}

h3 {
    font-size: 1.4em;
}

h4 {
    font-size: 1.2em;
    color: #b3b5b8;
}

h5 {
    font-size: 1em;
    color: #b3b5b8;
}

p {
    font-size: 1.2em;
    margin-top: 1em;
    margin-bottom: 1em;
    widows: 3;
    orphans: 3;
}

strong, b {
    font-weight: 400; 
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
    display: block;
    position: relative;
	margin: 3em auto 3.5em auto;
    padding: 0 40px 0 60px;
    border-right: 4px solid #3db7e4;
}

blockquote::before {
    display: inline-block;
    position: absolute;
    margin-left: -60px;
    margin-top: -7px;
    padding: 0;
    width: 40px;
    height: 100%;
    content: '';
    background-image: url(assets/images/quotes-blue.svg);
    background-size: 40px;
    background-repeat: no-repeat;
}

blockquote p {
    font-size: 1.2em;
    color: #3db7e4;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}


@media screen and (max-width: 600px) {
    
    h1 {
        font-size: 1.8em;
    }
    
}


/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
	box-sizing: border-box;
}

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

body {
	background: #fff;
}

hr {
    display: block;
    margin: 3em auto;
    height: 1px;
	border: 0;
	background-color: #e3e1db;
}

.wp-block-separator {
    border-top: none;
    border-bottom: none;
}

ul {
	margin: 0 3em 1em;
    padding: 0;
    list-style: disc;
}

ol {
    margin: 0 0 1em;
    padding: 0;
    counter-reset: item;
}
 
ol > li {
    margin: 0;
    padding: 0 0 0 2em;
    text-indent: 0;
    list-style-type: none;
    counter-increment: item;
}
 
ol > li:before, ol > li > ol > li:before {
    display: inline-block;
    font-weight: 400;
    text-align: left;
}

ol > li:before {
    width: 2em;
    margin-left: -2em;
    content: counter(item) ".";
}

ol > li > ol {
    counter-reset: subsection;
    list-style-type: none;
}

ol > li > ol > li {
    counter-increment: subsection;
    margin-top: .5em;
    padding: 0 0 0 3em;
}

ol > li > ol > li:before {
    width: 3em;
    margin-left: -3em;
    content: counter(item) "." counter(subsection) " ";
}

ol > li > ul, ol > li > p {
    text-indent: 0;
}

ul > li > ul > li, ol > li > ul > li {
    margin-top: .5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
	max-height: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

.wrapper {
    display: block;
    width: 100%;
    overflow: hidden;
}

.inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.flex {
    display: flex;
}

.block {
    display: block;
}

.narrow {
    max-width: 800px;
}

#content {
    margin-top: 72px;
    margin-bottom: 2em;
}

.entry-header {
    margin-top: 3em;
}

@media screen and (max-width: 600px) {
    
    .inner-wrapper {
        padding: 0 24px;
    }
    
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    width: auto;
	border: none;
	border-radius: 6px;
	background: #3db7e4;
	color: #fff;
	font-size: 14px;
	padding: 10px 14px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #4A89C1;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	background: #3db7e4;
    outline: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}


/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a, a:visited {
	color: #3db7e4;
    text-underline-position: under;
}

a:hover, a:focus, a:active {
	color: #326a91;
}

.btn {
    display: inline-block;
    height: 48px;
    margin: .6em auto;
    padding: 0 1em;
    line-height: 48px;
    border-radius: 8px;
}

a.btn, a.btn:visited, a.btn:hover, a.btn:focus, a.btn:active {
    text-decoration: none;
}

a.bg-none:hover, a.bg-none:focus, a.bg-none:active {
    color: #3db7e4;
}

a.outlined {
    line-height: 42px;
    border: solid 1px #938884;
}

a.outlined:hover, a.outlined-gray:focus, a.outlined-gray:active {
    background: #F8F7F7;
}

a img {
    padding: 0;
    border-bottom: none;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#content[tabindex="-1"]:focus {
	outline: 0;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.wrapper-inner.post {
    display: block;
    margin: 0 auto 6em auto;
    max-width: 860px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}


/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

embed, iframe, object {
	max-width: 100%;
}

.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text, .wp-element-caption {
	text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    z-index: 999;
}

.site-header .wrapper-inner {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 100px;
    margin: 0 auto;
    padding: 0 40px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.site-header a {
    text-decoration: none;
}

.site-branding {
    height: 48px;
    padding: 2px 0 0;
    text-align: left;
    flex: none 0 auto;
}

.site-branding a:hover {
    color: #3db7e4;
}

.site-branding img {
    width: auto;
}

.site-branding h2 {
    margin: 0 auto;
    font-size: 20px;
    line-height: 40px;
}

.main-nav {
    height: 48px;
    width: auto;
    line-height: 48px;
    text-align: right;
    flex: 1 1 auto;
}

.main-nav ul {
    display: block;
    margin: 0 auto;
    padding: 0;
	list-style: none;
}

.main-nav ul li {
	display: inline-block;
    position: relative;
}

.main-nav ul li a {
    display: inline-block;
    width: auto;
    height: 48px;
    padding: 0 12px;
    line-height: 48px;
    border-radius: 8px;
    color: #676c72;
}

.main-nav ul li a:hover, .main-nav ul li a:focus, .main-nav ul li a:active {
    color: #3db7e4;
}

#menu-toggle, label[for="menu-toggle"], .mobile-nav {
    display: none;
}


@media screen and (max-width: 600px) {

    #menu-toggle {
        display: hidden;
    }
    
    label[for="menu-toggle"] {
        position: absolute;
        top: 12px;
        right: 24px;
        display: flex;
        height: 48px;
        align-items: center;
        margin-right: -12px;
        padding: 0 12px;
        cursor: pointer;
    }

    label[for="menu-toggle"] img {
        margin: 0;
    }
    
    .site-header  .wrapper-inner{
        padding: 0 72px 0 24px;
        height: 72px;
    }
    
    .site-branding {
        width: 100%;
        height: 44px;
    }

    .main-nav {
        width: 100vw;
        height: 0;
        position: fixed;
        top: 72px;
        left: 0;
        background: #fff;
        overflow-x: hidden;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        box-sizing: border-box;
        z-index: 9998;
        border-bottom: 1px solid #dddddd;
    }

    .main-nav ul {
        display: block;
        width: 100%;
        padding: .5em 12px 2.5em;
    }

    .main-nav ul li {
        display: block;

    }

    .main-nav ul li a  {
        display: block;
                height: 64px;
        line-height: 64px;
        font-size: 1.4em;
        text-decoration: none;
    }
    
    #menu-toggle:checked ~ .menu-toggle-show {
        visibility: hidden;
        opacity: 0;
        transition: opacity .2s;
        transition-timing-function: ease-in-out;
    }
    
    #menu-toggle:checked ~ .menu-toggle-hide {
        visibility: visible;
        opacity: 1;
        transition: opacity .2s;
        transition-timing-function: ease-in-out;
    }
    
    #menu-toggle:checked ~ .main-nav {
        height: auto;
        transition: height .2s;
        transition-timing-function: ease-in-out;
    }
    
    #menu-toggle:not(:checked) ~ .main-nav {
        height: 0;
        transition: height .2s;
        transition-timing-function: ease-in-out;
    }
    
    #menu-toggle:not(:checked) ~ .menu-toggle-hide {
        visibility: hidden;
        opacity: 0;
        transition: opacity .2s;
        transition-timing-function: ease-in-out;
    }

    #menu-toggle:not(:checked) ~ .menu-toggle-show {
        visibility: visible;
        opacity: 1;
        transition: opacity .2s;
        transition-timing-function: ease-in-out;
    }

}


/*--------------------------------------------------------------
# Main Content Elements
--------------------------------------------------------------*/

.valign-top {
    align-self: flex-start;
}

.valign-center {
    align-self: center;
}

.valign-bottom {
    align-self: flex-end;
}

article {
    margin: 0 auto;
}


@media screen and (max-width: 800px) {

}


/* WORK */

.work .hero h1 {
    width: 90%;
    margin: 3em 0 3.5em;
    font-weight: 300;
}

.work .project-wrapper .image-wrapper {
    margin-bottom: 1em;
}

.work .project-wrapper h2 {
    margin-bottom: 0;
}

.work .project-wrapper .two-third {
    margin-bottom: 3em;
    padding: .3em 0;
}

.work .project-wrapper h4 {
    margin-top: .2em;
    margin-bottom: .1em;
}


@media screen and (max-width: 800px) {
    
    .work .hero h1 {
        width: 100%;
        margin: 2em 0 2.2em;
    }
    
    .work .project-wrapper .image-wrapper {
        padding: 0;
    }
    
    .work .project-wrapper .two-third {
        padding-top: 0;
    }
    
}


/* CASE STUDY */

.page-template-case-study .entry-header, .page-template-case-study .wp-block-group {
    margin: 0 auto;
    max-width: 720px;
}

.page-template-case-study img {
    margin: 4em auto 1em auto;
}

.page-template-case-study h3 {
    margin-top: 1.5em;
    margin-bottom: .5em;
}


/*--------------------------------------------------------
# FOOTER 
--------------------------------------------------------*/

.site-footer {
    display: block;
    clear: both;
    width: 100%;
    margin: 0 auto;
    padding: 4em 40px 6em;
    text-align: center;
    color: #676c72;
    background: #f0f0f1;
}


@media screen and (max-width: 800px) {
    
    .site-footer {
        padding: 3em 24px 4em;
    }

    .site-footer .wrapper .flex {
        display: block;
    }

    .footer-branding {
        display: block;
        width: 100%;
    }
    
    .footer-logo {
        float: none;
        margin: 0 auto 1em auto;
    }
    
    .footer-branding p {
        margin: 0 auto;
        text-align: center;
        max-width: 500px;
    }
    
    .footer-nav-wrapper {
        margin: 2em auto 0 auto;
        width: 100%;
        justify-content: space-around;
    }
    
    .social-links {
        width: 100%;
        margin: 2em auto;
        text-align: center;
    }
    
    .copyright {
        display: inline-block;
    }
    
    .policies {
        display: inline-block;
        float: right;
    }
    
    .site-footer .valign-center {
        padding-top: 1em;
    }

}

@media screen and (max-width: 500px) {

    .copyright, .policies {
        display: block;
        width: 100%;
        text-align: center;
    }

}


/*--------------------------------------------------------------
# General Overides
--------------------------------------------------------------*/

.one-half {
    width: 50%;
}

.one-third {
    width: 34%;
}

.two-third {
    width: 66%;
}

.two-fifth {
    width: 40%;
}

.three-fifth {
    width: 60%;
}

.one-fourth {
    width: 25%;
}

.three-fourth {
    width: 75%;
}

.white {
    color: #fff;
}

.orange {
    color: #f58025;
}

.blue {
    color: #3db7e4;
}

.gray {
    color: #938884;
}

.lt-gray {
    color: #f8f7f7;
}

.green {
    color: #13bf86;
}

.purple {
    color: #9c7acc;
}

.aqua {
    color: #39bfbf;
}

.yellow {
    color: #f2bf49;
}

.bg-white {
    background: #fff;
}

.bg-orange {
    background: #f58025;
}

.bg-blue {
    background: #3db7e4;
}

.bg-gray {
    background: #938884;
}

.bg-lt-gray {
    background: #f8f7f7;
}

.bg-green {
    background: #13bf86;
}

.bg-purple {
    background: #9c7acc;
}

.bg-aqua {
    background: #39bfbf;
}

.bg-yellow {
    background: #f2bf49;
}

.bg-none {
    background: none;
}

.bdr-top {
    border-top: 1px solid #dddddd;
}

.bdr-bottom {
    border-bottom: 1px solid #dddddd;
}

.bdr-green {
    border: 1px solid #13bf86;
}

.bdr-none {
    border: none;
}

.bdr-white {
    border-color: #fff;
}

a.green, a.green:visited {
    color: #13bf86;
}

a.purple, a.purple:visited {
    color: #9c7acc;
}

a.aqua, a.aqua:visited {
    color: #39bfbf;
}

a.yellow, a.yellow:visited {
    color: #f2bf49;
}

a.gray, a.gray:visited {
    color: #938884;
}

a.green:hover, a.green:focus, a.green:active {
    color: #fff;
    background: #13bf86;
}

a.purple:hover, a.purple:focus, a.purple:active {
    color: #fff;
    background: #9c7acc;
}

a.aqua:hover, a.aqua:focus, a.aqua:active {
    color: #fff;
    background: #39bfbf;
}

a.yellow:hover, a.yellow:focus, a.yellow:active {
    color: #fff;
    background: #f2bf49;
}

a.gray:hover, a.gray:focus, a.gray:active {
    color: #fff;
}

@media screen and (max-width: 800px) {

    .one-half, .one-third, .two-third, .two-fifth, .three-fifth, .one-fourth, .three-fourth {
        width: 100%;
    }
    
}
