@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: 'bentonsans_light';
  src: url('../fonts/bentonsans_light_regular-webfont.woff2') format('woff2'), url('../fonts/bentonsans_light_regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bentonsans_book';
  src: url('../fonts/bentonsans_book_regular-webfont.woff2') format('woff2'), url('../fonts/bentonsans_book_regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bentonsansmedium';
  src: url('../fonts/bentonsans_medium-webfont.woff2') format('woff2'), url('../fonts/bentonsans_medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  border: 10px solid white;
  background: #FFF;
  font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
    
}
body.home {
  border-top: 10px white solid;;
  background: #FFF;
  background-image: url("../img/wa_park/09-Washington-Park-Residence-Entry-2.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  height: 100%;
  width: 100%;
}
body.dark_mode {
  background-color: #606161;
  background-color: #574F4E;
  color: white;
  border: 10px solid white;
  height: 100%;
  margin: 0px;
}
.hom {
  display: none;
}
.hidden {
  display: none;
}
/*structural*/
/* render html5 elements as block */
header, footer, section, aside, nav, article {
  display: block;
}
/*responsive images*/
img {
  width: 100%;
  height: auto;
}
#details {
  padding-top: 20px;
}
#container {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  height: auto;
  margin-top: 0px;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.full, .half, .quarter, .third, .fifth, .two_thirds, .two_fifths, .three-fifths, .three_quarters {
  width: 100%;
  padding: .2rem;
  box-sizing: border-box;
}
.row {
  display: flex;
  flex-direction: column-reverse;;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  transition: all .5s ease;
  margin: auto;
  margin-bottom: 30px;
}

#footer {
  background-color: #c5c1bd;
  height: 100px;
  align-items: center;
  justify-content: center;
  display: none;
}
header {
  background: white;
  height: 80px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 5%;
}
.dark_mode > header {
  height: 80px;
  width: 100%;
  display: flex;
  flex-direction: row;
    justify-content: flex-end;
  padding-right: 5%;
  background: transparent;
}
.dark_mode > .c-hamburger span.light {background:#fff;}
.dark_mode > .c-hamburger span.light:before{background:#fff;}
.dark_mode > .c-hamburger span.light:after{background:#fff;}
.dark_mode > .c-hamburger--htx.is-active span {
    background: none;}
.dark_mode > .c-hamburger--htx.is-active span:before {background:#5a4848;}
.dark_mode > .c-hamburger--htx.is-active span:after {background:#5a4848;}
.inner_wrap {
  box-sizing: border-box;
  margin-bottom: 10px;
}
/*flyout menu*/
/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */
#menuToggle {
  display: block;
  position: relative;
  top: 50px;
  left: 50px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#menuToggle a {
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}
#menuToggle a:hover {
  color: tomato;
}
#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}
/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}
#menu li {
  padding: 10px 0;
  font-size: 22px;
}
/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: none;
}
/*end flyout*/
nav a:hover, .current {
  color: black;
  font-weight: bold; /*background-image:url(../img/nav_sq.png);background-repeat: no-repeat; background-position: right 15px; */
}
nav ul {}
.article {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  align-items: flex-start;
  justify-content: flex-start;
  /*padding-top: 40px;*/
  margin-bottom: 20px;
}
.det_small, .det_large {
  width: 99%;
  margin: auto;
  /*margin-top: 20px;
  margin-bottom: 20px;*/
}
.det_small p {
  font-size: 14px;
  line-height: 22px;
    margin-bottom: 0px;
}

.det_large p {
  font-size: 14px;
  line-height: 22px;
}
.det_small a {
  color: #4d4d4f;
  text-decoration: none;
}
.det_small a:visited {
  color: #4d4d4f;
  text-decoration: none;
}
 .quote {
    font-size: 21px;
    line-height: 30px;
    margin-top: 20px;
    text-align: center;
  }
  .attrib {
    text-align: center;
    font-family: 'bentonsans_book', sans-serif;
    margin-bottom: 20px;
    font-size: 14px;
  }
.attrib_sm {
    font-family: 'bentonsans_light', sans-serif;
    text-margin-bottom: 20px;
    font-size: 12px;
}
#grid {
  display: flex;
  width: 100%;
  align-content: center;
  flex-wrap: wrap;
}
#grid > li {
  width: 28%;
  height: 200px;
  text-align: center;
  line-height: 100px;
  outline: thin brown solid;
  margin-bottom: 30px;
}
#wa_pk {
  background-image: url("../img/wa_park/09-Washington-Park-Residence-Entry-2.jpg");
}
#lk_wa {
  background-image: url("../img/lakewash/01-Lk-Wash-Exterior-Twilight-3.jpg");
}
#se_br {
  background-image: url("../img/seabrook/01-Seabrook-Exterior-1.jpg");
}
#br_mo {
  background-image: url("../img/broadmoor/Broadmoor-01-Exterior-Entry.jpg");
}
#ma_pk {
  background-image: url("../img/madison_park/03-Madison-Park-Patio.jpg");
}
#la_ch {
  background-image: url("../img/chelan/11-Chelan-Exterior.jpg");
}
#fi_hi {
  background-image: url("../img/first_hill/1_First-Hill-Kitchen-1.jpg");
}
#do_to {
  background-image: url("../img/downtown/01-Downtown-Residence-Entry.jpg");
}
#su_ca {
  background-image: url("../img/sun_cad/03-Exterior-bh-lonergan-5333x.jpg");
}
.tabs {
  display: block;
  float: left;
  height: 40px;
  line-height: 40px;
  width: 50%;
  text-align: center;
  font-family: 'bentonsans_book', Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #4d4d4f;
}
.lower_nav {
  background-size: cover;
  background-repeat: no-repeat;
  height: 150px;
  margin: auto;
  max-width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lower_nav a, .lower_nav a:visited {
  font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 150px;
  text-decoration: none;
  font-size: 36px;
  padding-left: 10px;
  padding-right: 10px;
  transition: all 1s ease;
    background:rgba(55,48,48,0.5);
    width:100%;
    height:100%;
}
.lower_nav a.dark {
  /*color: #4d4d4f;*/
}
/*Typographic*/
header h1 a {
  display: block;
  height: 40px;
  text-indent: -9999px;
  background-image: url("../img/ABID_Logo_primary_PR1.png");
  background-repeat: no-repeat;

  width: 200px;
  background-size: contain;
 
}
header h1 a.invert {
  display: block;
  height: 40px;
  text-indent: -9999px;
  background-image: url("../img/ABID_Logo_reverse_PR1.png");
  background-repeat: no-repeat;
  
  width: 200px;
  background-size: contain;
  margin-top: 10px;
}
.huge {
  font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
  font-size: 24px;
  padding-top: 20px;
  color: #867979;
  font-weight: normal;
  text-transform: uppercase;
  margin-right: 12%;
}
.supersize {
  font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
  font-size: 36px;
  color: #867979;
  font-weight: normal;
  text-align: center;
  /*text-transform: uppercase;*/
  margin-top: 130px;
  margin-bottom: 30px;
  width: 100%;
  display: none;
}
.sep {
  margin-bottom: 50px;
}
.intro {font-size:20px;}
.amy_intro {font-size:22px; line-height:28px;max-width:100%; padding-left: 5%;
  padding-right: 5%;}
.central {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
}
/*details*/
p {
  font-size: 16px;
    line-height: 1.5;
  font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
     /*margin-top: 20px;*/
}
.pro {
  padding-left: 5%;
  padding-right: 5%;
}
.quote {
  font-size: 20px;
  line-height: 30px;
  margin-top: 20px;
  text-align: center;
}
.attrib {
  text-align: center;
  font-family: 'bentonsans_book', sans-serif;
  margin-bottom: 20px;
}
#details p {
  font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #4d4d4f;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
  max-width: 500px;
  line-height: 20px;
}
#details a {
  color: #4d4d4f;
  text-decoration: none;
}
#details a:hover {
  text-decoration: underline;
}
.h2, h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
}
h3 {
  font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px;
}
h3.larger {
  font-size: 22px;
}
h3.smaller {
  font-size: 14px;
    line-height:1.5;
}
h4 {
  font-family: 'bentonsans_book', ariel, sans-serif;
  font-size: 21px;
  line-height: 30px;
  /*text-transform: uppercase;
	color: #675253;*/
  font-weight: normal;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-top: 0px;
}
/*projects page specific*/
#gallery {
  margin-top: 120px;
  max-width: 1200px;
  margin: auto;
  clear: both;
  display: flex;
  flex-wrap: wrap;
}
.item {
  flex: 1 1 350px;
  padding: 10px;
  align-content: flex-end;
}
.item img {}
#gallery a {
  font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666;
  text-decoration: none;
  transition: all .75s ease;
  display: flex;
  align-items: flex-end;
}
.text {
  margin-top: 10px;
}
.shadow:hover {
  /*	-webkit-box-shadow: 0 0 10px 5px rgba(0,0,0,.2);
	box-shadow: 0 0 10px 5px rgba(0,0,0,.2);*/
}
#gallery a:hover {
  filter: sepia(56%) brightness(85%) contrast(80%);
  -webkit-filter: sepia(56%) brightness(85%) contrast(80%);
  -moz-filter: sepia(56%) brightness(85%) contrast(80%);
}
/*modifiers*/
.pad_top {
  padding-top: 30px;
}
.shrink {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.clearfix {
  clear: both;
  min-height: 60vh;
  padding-top: 20px;
}
.frame {
  border-radius: 50%;
  border: 20px white solid;
  box-sizing: border-box;
}
#pic_holder {
  padding-top: 10px;
  width: 33%;
  margin-left: 20px;
  background-repeat: no-repeat;
  background-position: left top;
}
#about {
  flex-direction: column;
}
.four {
  width: 90%;
  margin: auto;
  margin-top: 0px;
}
.eight {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.awards {
  width: 100%;
}
.push_down {
  margin-top: 20px;
}
.push_down_large {
  margin-top: 55px;
}
.eight > p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
}
.four > p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
}
#mini_footer {
  clear: both;
  height: 60px;
}
#mini_footer ul {
  padding-top: 8px;
  padding-left: 8px;
}
#mini_footer li {
  display: inline;
  padding-right: 10px;
  font-style: normal;
}
#mini_footer a {
  text-decoration: none;
  font-family: 'Questrial', Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #aaa097;
  text-transform: uppercase;
}
#mini_footer a:hover {
  color: #655152;
}
#mini_footer a.current {
  color: #675253;
}
.award_link {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
    letter-spacing: 1px;
    font-family: 'bentonsansmedium', sans-serif;
  border-bottom: 0px white solid;
    transition: all .5s ease;
}
a.award_link:visited, a:visited {text-decoration: none;color: #fff;}
a.award_link:hover {
    text-decoration:none;
 /* border-bottom: thin white solid;*/
    color: #fff;
}
/*gallery
	#gallery li {
	display: block;
	
	width: 100%;
	margin-right: 22px;
	margin-bottom: 20px;}*/
#wapark, #lakewash, #chelan, #mad_park, #first_hill, #verde, #downtown, #sc1, #retail_hospitality {
  background-size: 200%;
}
#pic_holder {
  width: 100%;
  margin-left: 0px;
  padding-top: 70px;
}
#gallery {
  margin-top: 140px;
}
#footer {
  width: 100%;
  display: none;
}
#footer ul {
  padding-left: 20px;
  padding-top: 20px;
}
.amy {
    width: 90%;
    margin-left: 5%;
    margin-bottom: 20px;
  }
.filler {
    margin-bottom: 150px;
  }
/*smaller screen adjustments*/
@media screen and (max-width:700px) {
  nav a {
    letter-spacing: .1em;
    text-decoration: none;
    line-height: 30px;
    text-align: right;
    display: block;
    height: 30px;
    font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
    font-size: 28px;
    padding-top: 5px;
    color: #5a4848;
    font-weight: bold;
    padding-right: 14px;
  }
  body.dark_mode {
    background-color: #606161;
      background-color:#574F4E;
    color: white;
    border: 5px solid white;
    height: 100%;
  }
    .amy {
    width: 90%;
    margin-left: 5%;
    margin-bottom: 20px;
  }
     .row_v {
    flex-direction: column;
    max-width: 90vw;
    margin: auto;
  }
}
/*tablet*/
@media screen and (max-width:1100px) {
  header {
    display: flex;
    justify-content: flex-end;
       padding-right: 5%;
  }
  nav ul {}
  #container {
    max-width: 100%;
    margin: auto;
  }
  #wrapper {
    max-width: 1000px;
    margin: auto;
  }
  #about {
    margin-top: 60px;
    padding-top: 60px;
  }
  .pro {
    /*padding-left: 15%;
    padding-right: 15%;*/
  }
    .lower_nav {
  background-size: cover;
  background-repeat: no-repeat;
  height: 150px;
  margin: auto;
  max-width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
     .row_v {
    flex-direction: column;
    max-width: 60vw;
    margin: auto;
  }
}
@media screen and (min-width:700px) {
  body.home {
    background-image: url("../img/white_sq.png;");
    background-repeat: repeat;
  }
  #container {
    width: 90%;
  }
  .hom {
    display: block;
  }
  header {
    height: 80px;
    display: flex;
    justify-content: flex-end;
       padding-right: 5%;
    flex-direction: row;
  }
  header h1 a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: #333;
    display: block;
    /*margin: auto;*/
    height: 56px;
    text-indent: -9999px;
    background-image: url("../img/ABID_Logo_primary_PR1.png");
    background-repeat: no-repeat;
    width: 300px;
  }
  header h1 a.invert {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: #333;
    display: block;
    /*margin: auto;*/
    height: 56px;
    text-indent: -9999px;
    background-image: url("../img/ABID_Logo_reverse_PR1.png");
    background-repeat: no-repeat;
    width: 300px;
  }
    .amy_intro {font-size:20px; line-height:28px;max-width:80%; padding-left: 5%;
  padding-right: 5%;}
  .button_container {
    position: fixed;
    top: 3.5%;
    left: 5%;
    height: 27px;
    width: 40px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
  }
  .flex > img {
    width: 100%;
  }
  #hero {
    margin-top: 80px;
  }
  #inspo {
    padding-top: 30px;
    background-color: #FEFEFE;
    min-height: 300px;
  }
  nav ul {
    /*	display: flex;
    flex-direction: row;
	padding-right:20px;
	margin-top: 38px;*/
  }
  /*nav li {width: 33%;}*/
  nav a {
    letter-spacing: .1em;
    text-decoration: none;
    line-height: 40px;
    text-align: right;
    display: block;
    height: 40px;
    font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
    font-size: 36px;
    padding-top: 5px;
    color: #5a4848;
    font-weight: bold;
    padding-right: 14px;
  }
  nav a:hover, .current {
    color: black; /*background-image:url(../img/nav_sq.png);background-repeat: no-repeat; background-position: left 15px;*/
  }
  nav a {}
  #about {
    margin-top: 80px;
    padding-top: 80px;
  }
  #about {
    flex-direction: row;
  }
  .pro {
    padding-left: 5%;
    padding-right: 5%;
  }
  .four {
    width: 25%;
    margin: 0px;
  }
  .det_small {
    width: 35%;
    padding-top: 50px;
    padding-bottom: 10px;
    box-sizing: border-box;
    margin: 0px;
    margin-top: 30px;
  }
  .det_small p {
    font-size: 14px;
    line-height: 22px;
  }
  .det_large p {
    font-size: 16px;
    line-height: 22px;
  }
  .det_small a {
    color: #4d4d4f;
    text-decoration: none;
  }
  .det_large {
    width: 60%;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 30px;
    margin-bottom: 5px;
  }
  .eight {
    width: 60%;
    margin-left: 30px;
  }
  .awards {
    padding-left: 50px;
  }
  .push_down {
    margin-top: 24px;
  }
  .eight > p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 24px;
  }
  .four > p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 24px;
  }
  #narrow_one, #narrow_two {
    float: left;
    width: 45%;
  }
  #narrow_two {
    margin-top: 96px;
  }
  
  .row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    /*max-width: 70vw;*/
    margin: auto;
    margin-bottom: 30px;
  }
  
  .quarter {
    width: 25%;
  }
  .third {
    width: 33%;
  }
  .half {
    width: 50%;
  }
  .three_fifths {
    width: 60%;
    margin: auto;
  }
  .three_quarters {
    width: 75%;
    display: flex;
    flex-direction: column;
    
  }
 
  .two {
    width: 12.5%;
  }
  .one {
    width: 8.33%;
  }
  .ten {
    width: 83.33%;
  }
}
/*larger screens*/
@media screen and (min-width:1101px) {
  #container {
    width: 100%;
  }
  header {
    height: 80px;
    display: flex;
    justify-content: flex-end;
      padding-right: 10%;
    flex-direction: row;
  }
  nav ul {
    /*	display: flex;
	margin-top: 38px;*/
  }
  nav li {
    display: block;
    /*width: 150px;*/
  }
  .space_below {
    margin-bottom: 10px;
  }

  
  .amy {
    width: 100%;
   /* margin-left: 5%;*/
    margin-bottom: 20px;
  }
  #about {
    margin-top: 80px;
    padding-top: 80px;
  }
  .pad_left {
    padding-left: 30px;
  }
  #gallery {
    margin-top: 90px;
    margin-bottom: 100px;
  }
  #gallery a {
    font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #666;
    text-decoration: none;
    transition: all .75s ease;
    display: flex;
    align-items: center;
  }
  .row {
    max-width: 70vw;
    margin: auto;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: 30px;
  }
    .row_v {
    flex-direction: column;
    max-width: 700px;
    margin: auto;
  }
  .half {
    width: 50%;
    display: flex;
    flex-direction: column; /*align-items: center; justify-content: center;*/
  }
  #narrow_one {
    font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #4d4d4f;
    float: left;
    width: 220px;
    margin-top: 18px;
    line-height: 17px;
    margin-bottom: 0px;
  }
  #narrow_two {
    font-family: 'bentonsans_light', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #4d4d4f;
    float: left;
    width: 300px;
    margin-top: 120px;
    margin-left: 20px;
    line-height: 17px;
    margin-bottom: 0px;
  }
}
/*desktop*/
@media screen and (min-width:1400px) {
    
  #container {
    max-width: 1400px;
    margin: auto;
  }
  .row, .lower_nav {
    max-width: 50vw;
  }
  #details p {
    max-width: 500px;
  }
  #about {
    margin-top: 80px;
  }
  #hero {
    margin-top: 80px;
  }
  #inspo {
    padding-top: 60px;
    background-color: #FEFEFE;
    min-height: 500px;
  }
 .filler {
    margin-bottom: 350px;
  }
  .shrink {
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .quarter {
    width: 25%;
  }
  .half {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
 
 
}