@charset "UTF-8";
/* !DECLARATIONS *****************************************/
/* !BASE Styles and resets *******************************/
article, aside, figcaption, figure, footer, header, main, section {
  display: block;
}

html,
body {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.75;
  color: #000;
  opacity: 0.8;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #fff;
  background-image: linear-gradient(150deg, #ffebf5 0%, #fffceb 40%, #ffeab8 75%, #e7ffcc 100%);
  /*
  	@media only screen and (min-width: $bp-xx-large) {
  		font-size: 131.25%;
  	}
  	@media only screen and (min-width: $bp-xxx-large) {
  		font-size: 140%;
  	}
  */
}
@media only screen and (min-width: 51em) {
  body {
    font-size: 100%;
  }
}
@media only screen and (min-width: 64em) {
  body {
    font-size: 125%;
  }
}
@media only screen and (min-width: 77em) {
  body {
    font-size: 112%;
  }
}

h1, h2 {
  font-weight: 300;
  font-size: 1.75em;
  line-height: 1.25em;
  color: #ff424f;
  margin: 1.25em 0 0.75em 0;
  clear: both;
}

h3, h4, h5, h6 {
  font-weight: 600;
  margin: 1.25em 0 0.75em 0;
  clear: both;
}

p {
  font-size: 1em;
  line-height: 1.75em;
}

a:link,
a:visited {
  color: #504d93;
}
footer a:link,
footer a:visited {
  color: #7f60fb;
  font-weight: 600;
  font-size: 1.125em;
}

a:hover,
a:active,
a:focus {
  color: #545289;
}
footer a:hover,
footer a:active,
footer a:focus {
  color: #1f1f33;
}

ul {
  list-style-type: none;
  list-style-position: outside;
  padding-left: 0.5em;
}

li + li {
  margin-top: 0.25em;
}

ul > li {
  padding-left: 1em;
  background: url(/images/redbullet.svg) no-repeat;
  background-position: 0 0.75em;
  background-size: 0.3125em;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -webkit-border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  border-radius: 0.25em;
  border: solid 1px rgba(84, 82, 137, 0.5);
  /*
  	margin: 1em;
  	padding: .25em;
  */
}

blockquote {
  font-weight: 300;
  font-style: italic;
}
blockquote i {
  font-style: normal;
  font-weight: 400;
}

hr {
  border: none;
  border-bottom: 0.0625em solid #55538A;
  clear: both;
}

/* !LAYOUT ***********************************************/
body {
  /* Setup macro grid layout */
  display: grid;
  grid-template-columns: 0 1fr;
  grid-template-rows: 3em auto;
  grid-template-areas: "site-nav site-nav-access" "site-nav site-header" "site-nav main-content" "site-nav site-footer";
}

#site-nav {
  position: fixed;
  height: 100%;
  grid-area: site-nav;
  overflow: hidden;
  background-color: #55538A;
  background: linear-gradient(120deg, #55538a, #1f1f33);
  box-shadow: inset -7px 0 12px -7px rgba(31, 31, 51, 0.75);
  padding: 4em 0 0 0;
  transform: translateX(-15em);
  transition: transform 0.5s;
  z-index: 90;
}

#site-header {
  grid-area: site-header;
  width: 100%;
  min-width: 20em;
  padding: 0;
  margin: 3em 0;
  transition: width 0.5s;
  padding: 0 4%;
}
@media only screen and (min-width: 51em) {
  #site-header {
    padding: 0 4%;
  }
}
@media only screen and (min-width: 64em) {
  #site-header {
    padding: 0 4%;
  }
}
@media only screen and (min-width: 77em) {
  #site-header {
    padding: 0 15%;
  }
}
@media only screen and (min-width: 99em) {
  #site-header {
    padding: 0 20%;
  }
}
@media only screen and (min-width: 118em) {
  #site-header {
    padding: 0 20% 0 20%;
  }
}

#content {
  grid-area: main-content;
  padding: 0 4%;
}
@media only screen and (min-width: 51em) {
  #content {
    padding: 0 4%;
  }
}
@media only screen and (min-width: 64em) {
  #content {
    padding: 0 4%;
  }
}
@media only screen and (min-width: 77em) {
  #content {
    padding: 0 15%;
  }
}
@media only screen and (min-width: 99em) {
  #content {
    padding: 0 20%;
  }
}
@media only screen and (min-width: 118em) {
  #content {
    padding: 0 20% 0 20%;
  }
}

#site-footer {
  grid-area: site-footer;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  padding: 0 4%;
  /*
  	@media only screen and (min-width: $bp-xxx-large) {
  		flex-direction: column;
  		justify-content: flex-start;
  		font-size: .75em;
  		padding: 0 2%;
  	}
  */
}
@media only screen and (min-width: 64em) {
  #site-footer {
    flex-direction: row;
  }
}

#site-footer article {
  /*
  	@media only screen and (min-width: $bp-xxx-large) {
  		flex: none;
  		padding: 0 1em 1.5em 1em;
  	}
  */
}
@media only screen and (min-width: 64em) {
  #site-footer article {
    flex: 1 1 50%;
    padding: 0 2em 3em 2em;
  }
}

/* !MODULES **********************************************/
/* !MODULES + site-nav ***********************************/
.site-menu {
  font-weight: 600;
  font-size: 1em;
  color: #fff;
  line-height: 1em;
}

.menu-toggle {
  grid-area: site-nav-access;
  display: none;
}
.menu-toggle:checked ~ #site-nav {
  transform: translateX(0em);
}

.site-menu-list {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.sub-menu {
  display: block;
}

.site-menu-item {
  display: block;
  line-height: 2em;
  padding: 0;
  background-image: none;
}

.site-menu-link:link,
.site-menu-link:visited {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #fff;
  padding: 0.5em;
}

.site-menu-link:hover,
.site-menu-link:active,
.site-menu-link:focus {
  color: #2e2d4a;
  background-color: rgba(255, 255, 255, 0.5);
}

.site-menu-button {
  position: fixed;
  font-size: 1.25em;
  font-weight: 600;
  font-variant: all-petite-caps;
  line-height: normal;
  text-align: left;
  color: #fff;
  background-color: #55538A;
  margin: 1.5rem 1rem 1rem 0;
  padding: 0rem 0.5rem 0rem 2rem;
  cursor: pointer;
  border-radius: 0 1em 1em 0;
  box-shadow: 7px 4px 12px -7px rgba(31, 31, 51, 0.75);
  transform: translateX(-2rem);
  transition: transform 0.6s, border-radius 0.8s, padding 0.5s;
  z-index: 100;
}

.site-menu-button:after {
  content: "⇾";
  margin: 0 0.5rem;
}

.site-menu-button:before {
  content: "";
  margin: 0 0.5rem;
}

.menu-toggle:checked ~ .site-menu-button {
  text-align: right;
  color: #41406a;
  background-color: #fff;
  padding: 0 0 0 0.5rem;
  box-shadow: -7px 4px 12px -7px rgba(31, 31, 51, 0.75);
  border-radius: 1em 0 0 1em;
  transform: translateX(6.625em);
}
@media only screen and (min-width: 64em) {
  .menu-toggle:checked ~ .site-menu-button {
    transform: translateX(7.125em);
  }
}

.menu-toggle:checked ~ .site-menu-button:after {
  content: "";
}

.menu-toggle:checked ~ .site-menu-button:before {
  content: "⇽";
}

/* !MODULES + site-nav + pagination **********************/
.pagination {
  width: 100%;
}

.pagination-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 0.5em;
  width: 80%;
  overflow: auto;
  font-size: 1em;
  font-weight: 600;
  list-style: none;
  margin: 1em auto;
  padding: 0;
}

.pagination-list-item {
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background-color: #504d93;
  border: 1px solid #55538A;
  border-radius: 50%;
  padding: 0.25em inherit;
}
.pagination-list-item.active {
  background-color: #ff424f;
}
.pagination-list-item.first {
  border-radius: 0 50% 0 50%;
  background-color: #58620e;
}
.pagination-list-item.last {
  border-radius: 50% 0 50% 0;
  background-color: #58620e;
}
.pagination-list-item.previous {
  border-radius: 0 50% 0 50%;
  background-color: #85912b;
}
.pagination-list-item.next {
  border-radius: 50% 0 50% 0;
  background-color: #85912b;
}
.pagination-list-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: currentcolor;
}

.post-prev-link {
  text-align: center;
}
@media only screen and (min-width: 51em) {
  .post-prev-link {
    text-align: left;
  }
}

.post-next-link {
  text-align: center;
}
@media only screen and (min-width: 51em) {
  .post-next-link {
    text-align: right;
  }
}

/* !MODULES + tags-nav *******************************/
.tags-nav {
  font-size: 0.75em;
  margin: 1em 0;
}

.tag-link {
  padding: 0.25em 0.5em;
}

/* !MODULES + header *************************************/
.site-logo-type {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  position: relative;
  width: 90%;
  max-width: 4.25em;
  font-weight: 300;
  font-size: 3.75em;
  color: #000;
  margin: 0 auto;
  padding-left: 0.25em;
}
@media only screen and (min-width: 64em) {
  .site-logo-type {
    max-width: 10.5em;
    font-size: 3em;
  }
}
@media only screen and (min-width: 77em) {
  .site-logo-type {
    font-size: 3.5em;
  }
}
@media only screen and (min-width: 99em) {
  .site-logo-type {
    font-size: 3.75em;
  }
}

.site-logo-type span {
  position: relative;
  display: block;
  line-height: 1em;
  margin: 0;
}
@media only screen and (min-width: 64em) {
  .site-logo-type span {
    display: inline;
  }
}

.site-logo-type .little {
  letter-spacing: 0.133333em;
}
@media only screen and (min-width: 64em) {
  .site-logo-type .little {
    letter-spacing: 0.0325em;
  }
}

.site-logo-type .berry {
  letter-spacing: 0.166667em;
}
@media only screen and (min-width: 64em) {
  .site-logo-type .berry {
    letter-spacing: 0.0125em;
  }
}

.site-logo-type .studio {
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 64em) {
  .site-logo-type .studio {
    letter-spacing: 0.0125em;
  }
}

.site-logo-type .studio .blueberry {
  display: inline-block;
  color: rgba(255, 255, 255, 0);
  padding: 0 0.325em 0.0125em 0;
  margin-right: -0.25em;
  background-image: url(/images/blueberry.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}

/* !MODULES + site intro **********************************/
.site-intro {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
@media only screen and (min-width: 37em) {
  .site-intro {
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}

.site-intro-title {
  order: 1;
  flex-basis: 100%;
  font-size: 2em;
  line-height: 1em;
  margin-top: 0.5em;
}

.site-intro-portrait {
  display: none;
  order: 3;
  margin: 0;
}
.site-intro-portrait img {
  max-height: 200px;
  margin: 0;
  border: none;
}
@media only screen and (min-width: 37em) {
  .site-intro-portrait img {
    max-height: 375px;
  }
}
@media only screen and (min-width: 37em) {
  .site-intro-portrait {
    display: block;
    order: 1;
    flex-basis: 30%;
  }
}
@media only screen and (min-width: 77em) {
  .site-intro-portrait {
    order: 1;
    flex-basis: 25%;
  }
}

.site-intro p {
  order: 4;
  flex-basis: 100%;
  margin-top: 0;
}

.site-intro p:first-of-type {
  order: 2;
  font-weight: 300;
  font-size: 1.125em;
  line-height: 1.75em;
}
@media only screen and (min-width: 37em) {
  .site-intro p:first-of-type {
    flex-basis: 70%;
    padding: 0 1em;
  }
}
@media only screen and (min-width: 77em) {
  .site-intro p:first-of-type {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 77em) {
  .site-intro p:first-of-type {
    flex-basis: 75%;
    padding: 0 2em;
  }
}

/* !MODULES + page titling ********************************/
.page-title {
  flex: none;
  font-size: 2em;
  line-height: 1em;
  text-transform: capitalize;
  margin: 1.5ems 0 1em 0;
  color: #ff424f;
}
.page-title b {
  font-weight: 400;
}
@media only screen and (min-width: 37em) {
  .page-title {
    font-size: 2.25em;
  }
}

.section-title {
  flex: none;
  grid-column: 1/-1;
  font-size: 2em;
  line-height: 1.25em;
  text-transform: capitalize;
  color: #ff424f;
  margin: 1.25em 0 0.75em 0;
}

.post-title {
  margin: 0 0 1em 0;
  color: #ff424f;
  font-size: 1.5em;
}
.post-excerpt .post-title {
  margin: 0;
}

.post-sub-title {
  flex: none;
}

/* !MODULES + page intro **********************************/
.page-intro-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
.page-intro-content figure {
  flex: 0 1 50%;
  margin: 0;
}
.page-intro-content figcaption {
  flex: 0 1 50%;
  padding: 0 0 0 2em;
}
@media only screen and (min-width: 51em) {
  .page-intro-content {
    flex-flow: row wrap;
    row-gap: 2em;
  }
}

.page-intro {
  font-size: 1.125em;
  line-height: 1.5em;
}

/*
.section-intro {
	font-size: 1.25em;
	line-height: 1.5em;
}
*/
/* !MODULES + posts + portfolio ************************/
.posts {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 2em 2em;
  /*
  	@media only screen and (min-width: $bp-x-large) {
  		grid-template-columns: 1fr 1fr 1fr;
  		//flex-flow: row wrap;
  	}
  */
}
@media only screen and (min-width: 51em) {
  .posts {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 51em) {
  .related-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.post {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0 1em 1em 1em;
  margin-bottom: 1em;
}
.post h1 {
  flex-basis: 100%;
}
.post h2 {
  font-size: 1.5em;
  flex-basis: 100%;
}
.post h1 + p, .post h2 + p {
  flex-basis: 100%;
}
@media only screen and (min-width: 51em) {
  .post p {
    flex: 2 1 30%;
  }
}
.post figure + p {
  flex: 2 1 50%;
}
@media only screen and (min-width: 51em) {
  .post p + p {
    flex: 3 1 100%;
  }
}

.post-header-link:link {
  display: block;
  text-decoration: none;
  text-align: center;
  /*
  	@media only screen and (min-width: $bp-medium) {
  		display: inline;
  		text-align: left;
  	}
  */
}

.post-excerpt {
  flex-flow: column nowrap;
  font-size: 1.125em;
  font-weight: 300;
  margin-top: 0;
}

.post-meta {
  font-size: 0.75em;
}

.by-the-way {
  font-weight: 300;
  font-style: italic;
  color: #273012;
  background-color: #fffceb;
  border: 0.0625em solid #85912b;
  border-radius: 0.25em;
  margin: 0 auto;
  padding: 1em 1.25em;
}
@media only screen and (min-width: 51em) {
  .by-the-way {
    flex: 1 1 30%;
    margin: 1em 0.5em;
  }
}

/* !MODULES + images ***************************************/
.thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 0.25em;
  margin: 0 auto;
  padding: 0.325em;
}
@media only screen and (min-width: 64em) {
  .thumbnail {
    max-width: 40em;
    margin: 0 1em 0.5em 0;
  }
}

.featured-img {
  border-radius: 0.25em;
  margin: 0;
  padding: 0.325em;
}
@media only screen and (min-width: 51em) {
  .featured-img {
    max-width: 40em;
  }
}

.post {
  /*
  	figure:nth-of-type(3n) {
  		@media only screen and (min-width: $bp-medium) {
  			float: right;
  		}
  	}
  */
}
@media only screen and (min-width: 51em) {
  .post p img {
    max-width: 20em;
  }
}
@media only screen and (min-width: 51em) {
  .post figure {
    flex: 0 0 100%;
    margin: 1em 0.5em;
  }
  .post figure.half {
    flex: 0 1 50%;
  }
  .post figure.quarter {
    flex: 0 1 25%;
  }
  .post figure.third {
    flex: 0 1 30%;
  }
}
.post figure.codepen-embed {
  flex: 1 0 100%;
  margin: 1em 0;
}
.post figcaption {
  font-size: 0.9em;
  font-style: italic;
  text-align: center;
}

/* !MODULES + tags ***************************************/
.post-meta {
  font-size: 0.825em;
  margin-bottom: 2em;
}

.post-meta b {
  color: #ff424f;
}

.tags-list {
  display: block;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.tags-list li {
  display: inline;
  padding: 0 0.325em 0 0.825em;
  margin-top: 0;
  background-position: 0 0.6em;
}

.tags-list li:first-child {
  padding-left: 0;
  background: none;
}

.tag-cloud {
  margin-bottom: 2em;
}

.tag-cloud li {
  display: inline-block;
  background: none;
  padding: 0em;
}

.tag-cloud a:link,
.tag-cloud a:visited {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background-color: #fff;
  border: 1px #504d93 solid;
  border-radius: 0.25em;
  padding: 0.325em 0.625em;
  margin: 0.5em;
  transition: all ease-in 0.3s;
}

.tag-cloud a:hover,
.tag-cloud a:active {
  color: #fff;
  background-color: #ff424f;
  border-color: #ff424f;
}

/* !MODULES + form elements ******************************/
/*
.contact-form {
	max-width: 50%;
	margin: 0 auto;
}
*/
.contact-label {
  display: block;
  font-weight: 400;
}

.contact-input {
  display: block;
  width: 20em;
  font-size: 1em;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: rgba(169, 173, 83, 0.2);
  padding: 0.5em;
  border-radius: 4px;
  border: 1px solid #8F9337;
  margin-bottom: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-textarea {
  height: 10em;
}

.contact-button {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1em;
  color: #FFFFFF;
  background: #7572BE;
  padding: 0.5em 1em;
  border: 1px solid #55538A;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-response {
  width: 50%;
  float: right;
  background-color: rgba(117, 119, 190, 0.25);
  border: 1px solid rgba(117, 119, 190, 0.75);
  border-radius: 0.25em;
  padding: 1.5em;
}

/* !MODULES + social icons ********************************/
.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-list li {
  background: none;
  margin: 1em 0;
  overflow: auto;
  display: inline-block;
}
@media only screen and (min-width: 51em) {
  .social-list li {
    display: list-item;
    width: 100%;
  }
}
@media only screen and (min-width: 118em) {
  .footer-social .social-list li {
    display: inline-block;
    width: auto;
    padding: 0 0.25em;
  }
}

.social-link {
  padding: 0;
  margin: 0 0 0 1em;
  display: none;
}
@media only screen and (min-width: 51em) {
  .social-link {
    display: inline;
  }
}
@media only screen and (min-width: 118em) {
  .footer-social .social-link {
    display: none;
  }
}

.social-link-icon {
  position: relative;
  display: block;
  width: 2em;
  height: auto;
  float: left;
  margin: 0 0 0 0;
}
.connect .social-link-icon:link {
  color: #fff;
}
.footer .social-link-icon:link {
  color: #7f60fb;
}

.icon {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.connect use {
  fill: #FF4450;
}

.footer use {
  fill: #FF4450;
}

/* !MODULES + footer *************************************/
.footer-title {
  color: #000;
}

/* !MODULES + rules and decorations **********************/
hr.blueberry {
  height: 3.5em;
  background: url(/images/blueberry.svg) center center no-repeat;
  background-size: contain;
  border: 0;
  margin: 0.35em 0 1em 0;
}

hr.strawberry {
  height: 3.5em;
  background: url(/images/strawberry.svg) center center no-repeat;
  background-size: contain;
  border: 0;
  margin: 0.35em 0 1em 0;
}

/* !STATES ***********************************************/
/* !STATES + animation keyframes **************************/
@keyframes fade-out-success {
  from {
    background-color: #a9ad50;
  }
  to {
    background-color: rgba(169, 173, 80, 0);
  }
}
@keyframes fade-out-error {
  from {
    background-color: #ff4450;
  }
  to {
    background-color: #ff4450;
  }
}
@keyframes fade-in-button {
  from {
    background-color: rgba(117, 114, 190, 0);
  }
  to {
    background-color: rgba(117, 114, 190, 0.2);
  }
}
@keyframes fade-out-button {
  from {
    background-color: rgba(117, 114, 190, 0.2);
  }
  to {
    background-color: rgba(117, 114, 190, 0);
  }
}

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