@charset "UTF-8";

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/
*/
img, object, embed, video {
  max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

body {
  font-family: 'Avenir Next W01 Thin', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.regular {
  font-family: 'Avenir Next W01 Thin', Helvetica, Arial, sans-serif;
}

.serif {
  font-family: 'Palatino LT W01 Roman', Times, serif;
}

.fltlft {
  float: left;
}

.fltrt {
  float: right;
}

.clear {
  clear: both;
}

.caps {
  text-transform: uppercase;
}

a:link, a:visited {
  text-decoration: none;
  color: #666666;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:hover {
  color: #000000;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
}

.not_seen {
  display: none;
}

.relative {
  position: relative;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;

	Inspiration from "Responsive Web Design" by Ethan Marcotte
	http://www.alistapart.com/articles/responsive-web-design

	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/
.fluid {
  clear: both;
  margin-left: 0;
  width: 100%;
  float: left;
  display: block;
}

.fluidList {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

/* Mobile Layout: 480px and below. */
.gridContainer {
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  padding-left: 2.5%;
  padding-right: 2.5%;
  clear: none;
  float: none;
}

#logo_container {
  width: 100%;
  position: fixed;
  right: 0px;
  top: 0px;
  background: #ffffff;
  z-index: 100;
  background-image: url(../images/leaf.png);
  background-repeat: no-repeat;
  background-position: 76% 3px;
  background-size: 33px auto;
}

#menu_nav_btn {
  position: absolute;
  right: 0%;
  top: 0px;
  z-index: 10;
  width: 20%;
  cursor: pointer;
  height: 100%;
  background: #666666;
}

#menu_nav_btn.menu_icon_bg {
  background-image: url(../images/icon-menu.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60% auto;
}

#menu_nav_btn.menu_close_bg {
  background-image: url(../images/icon-close.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60% auto;
  filter: alpha(opacity=90);
  opacity: 0.9;
}

#logo {
  float: right;
  width: 73%;
  font-size: 38px;
  line-height: 38px;
  font-weight: normal;
  margin: 0px 28% 0 0%;
  padding: 10px 0 0;
  color: #666666;
}

#tag {
  float: right;
  width: 73%;
  font-size: 15px;
  line-height: 12px;
  margin: 0px 29% 0 0%;
  padding: 0px 0 10px;
  font-weight: normal;
  color: #666666;
}

.nav_container {
  position: fixed;
  z-index: 120;
  left: -90%;
  top: 0px;
  height: 100%;
  border-right: thin solid #efefef;
  box-shadow: 0px 2px 6px #000000;
  -moz-box-shadow: 0px 2px 6px #000000;
  -webkit-box-shadow: 0px 2px 6px #000000;
  width: 80%;
  background-color: #ffffff;
  overflow-y: scroll;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

#main_nav {
  float: left;
  width: 100%;
  text-align: center;
  margin: 0px 0 0 0;
}

.show_main_nav {
  left: 0%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav_item {
  font-size: 15px;
  letter-spacing: 0.2em;
  padding: 20px 0;
  margin: 0 15% 0;
  border-bottom: thin solid #999999;
  width: 70%;
  color: #666666;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.nav_item.no-border {
  border-bottom: none;
}

.footer-social-link i {
  font-size: 26px;
  padding: 20px;
}

.nav_item img {
  width: 40px;
  height: auto;
}

.nav_item.current {
  color: rgb(156, 198, 80);
  font-weight: 700;
}

#project_name {
  z-index: 100;
  width: 95%;
  position: absolute;
  left: 1%;
  top: 50px;
  font-size: 28px;
  line-height: 28px;
  color: #EEEEEE;
  font-weight: normal;
  text-transform: uppercase;
}

#home_stage {
  z-index: 30;
  width: 100%;
  position: absolute;
  right: 0px;
  top: 40px;
}

#section_one {
  width: 100%;
  float: left;
}

#home_show {
  position: relative;
  width: 100%;
}

#details-show .owl-nav {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 60px;
  z-index: 220;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#details-show .owl-nav .owl-next {
  background-image: url(../images/right-arrow.png);
  background-size: auto 80%;
  background-repeat: no-repeat;
  background-position: 89% center;
  margin-right: 4%;
  float: right;
  width: 20%;
  opacity: 1;
  filter: alpha(opacity=1);
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

#details-show .owl-nav .owl-next p {
  margin: 20px 40% 20px 0%;
  color: #cccccc;
  float: right;
  font-size: 20px;
  line-height: 20px;
}

#details-show .owl-nav .owl-prev {
  background-image: url(../images/left-arrow.png);
  background-size: auto 80%;
  background-repeat: no-repeat;
  background-position: 10% center;
  float: left;
  width: 20%;
  margin-left: 4%;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 0;
}

#details-show .owl-nav .owl-prev p {
  margin: 20px 0% 20px 40%;
  color: #cccccc;
  float: left;
  font-size: 20px;
  line-height: 20px;
}

.slide_container {
  float: left;
  width: 100%;
}

.slide {
  float: left;
  width: 100%;
  min-width: 500px;
  height: 550px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.home_slide {
  float: left;
  width: 100%;
  height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project_slide {
  float: left;
  width: 100%;
  height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#project_name_2 {
  width: 100%;
  float: left;
  margin: 120px 0% -7px;
  padding: 0px;
  font-size: 46px;
  line-height: 46px;
  color: #eeeeee;
  font-weight: normal;
  text-transform: uppercase;
}

#section_two {
  width: 100%;
  float: left;
  margin: 0px 0;
}

#container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.portfolio_stage {
  position: relative;
  float: left;
  width: 100%;
  margin: 0px 0% 20px;
}

.portfolio_cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  float: left;
  position: relative;
}

.portfolio_title {
  position: absolute;
  text-align: left;
  bottom: 0px;
  left: 0%;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.60);
  width: 90%;
  padding: 20px 5%;
  font-size: 15px;
  line-height: 17px;
  color: #ffffff;
  margin: 0;
}

#company_stage {
  z-index: 30;
  width: 100%;
  position: absolute;
  right: 0px;
  top: 40px;
  background-image: url(../images/company-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: scroll;
}

#reviews_stage {
  float: left;
  margin: 100px 4%;
  width: 92%;
}

#contact_stage {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 40px;
  background-image: url(../images/company.jpg);
  background-repeat: none;
  background-size: cover;
  background-position: center center;
}

#contact_info_bg {
  position: absolute;
  right: 0px;
  width: 100%;
  top: 0px;
  padding: 0;
  overflow: scroll;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.70);
  display: flex;
  align-items: center;
}

#contact_info {
  float: left;
  width: 95%;
  padding: 10px 0% 20px 2.5%;
  color: #ffffff;
  text-align: right;
}

#company_info {
  float: left;
  width: 92%;
  padding: 80px 4% 0 4%;
  color: #ffffff;
  text-align: right;
}

#contact_info_2 {
  float: left;
  width: 95%;
  padding: 110px 0% 0 2.5%;
  color: #ffffff;
  text-align: justify;
}

#contact_info h2, #contact_info_2 h2 {
  font-size: 24px;
  line-height: 24px;
  padding: 0;
  margin: 130px 0 0;
  font-weight: normal;
  text-transform: uppercase;
}

#contact_info .smaller, #contact_info_2 .smaller {
  font-size: 18px;
  padding: 0;
  margin: 0 0 40px 0;
  font-weight: normal;
}

#contact_info h3, #contact_info_2 h3 {
  font-size: 24px;
  line-height: 1em;
  padding: 0;
  margin: 60px 0 0 0;
  font-weight: normal;
  text-transform: uppercase;
}

#contact_info p, #contact_info_2 p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

#contact_info a:link, #contact_info:visited {
  color: #ffffff;
}

#houzz_link {
  display: none;
}

#houzz_link img {
  width: 60px;
  height: auto;
  margin: -5px 0px 0px 2%;
  padding: 0;
}

#website {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

#website img {
  width: 70px;
  height: auto;
}

.zeroMargin_mobile {
  margin-left: 0;
}

.hide_mobile {
  display: none;
}

@media only screen and (min-width: 400px) {
  #logo_container {
    width: 100%;
    background-position: 69% 3px;
    background-size: 33px auto;
  }

  #logo {
    width: 65%;
    font-size: 42px;
    line-height: 42px;
    margin: 0px 35% 0 0%;
    padding: 10px 0 0;
  }

  #tag {
    width: 65%;
    font-size: 15px;
    line-height: 15px;
    margin: 0px 35% 0 0%;
    padding: 0px 0 10px;
  }

  #project_name {
    font-size: 36px;
    line-height: 36px;
  }
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout.  */
@media only screen and (min-width: 481px) {
  .gridContainer {
    width: 97.5%;
    padding-left: 1.25%;
    padding-right: 1.25%;
    clear: none;
    float: none;
    margin-left: auto;
  }

  #logo_container {
    width: 100%;
    background-position: 58% 3px;
    background-size: 47px auto;
  }

  #logo {
    width: 55%;
    font-size: 42px;
    line-height: 42px;
    margin: 0px 45% 0 0%;
    padding: 20px 0 0;
  }

  #tag {
    width: 55%;
    font-size: 15px;
    line-height: 15px;
    margin: 0px 45% 0 0%;
    padding: 0px 0 20px;
  }

  #menu_nav_btn {
    position: absolute;
    right: 0%;
    top: 0px;
    z-index: 10;
    width: 17%;
    cursor: pointer;
    height: 100%;
    background: #666666;
  }

  #menu_nav_btn.menu_icon_bg {
    background-image: url(../images/icon-menu.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }

  #menu_nav_btn.menu_close_bg {
    background-image: url(../images/icon-close.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50% auto;
    filter: alpha(opacity=90);
    opacity: 0.9;
  }

  .nav_container {
    width: 80%;
    margin-left: 0;
    overflow-y: hidden;
    overflow: hidden;
  }

  #main_nav {
    width: 100%;
    margin-left: 0;
  }

  .portfolio_cover {
    height: 240px;
  }

  .nav_item {}

  #section_one {}

  #home_stage {}

  #home_show {}

  .hide_tablet {
    display: none;
  }

  .zeroMargin_tablet {
    margin-left: 0;
  }

  #project_name {
    font-size: 42px;
    line-height: 42px;
    top: 60px;
  }
}

@media only screen and (min-width: 600px) {
  #menu_nav_btn {
    width: 14%;
  }

  #logo_container {
    background-position: 47% 3px;
    background-size: 47px auto;
  }

  #logo {
    width: 45%;
    font-size: 42px;
    line-height: 42px;
    margin: 0px 55% 0 0%;
    padding: 20px 0 0;
  }

  #tag {
    width: 45%;
    font-size: 15px;
    line-height: 15px;
    margin: 0px 55% 0 0%;
    padding: 0px 0 20px;
  }

  #mobile_prev_btn p {
    margin: 25px 0% 25px 40%;
    color: #cccccc;
    float: left;
    font-size: 30px;
    line-height: 30px;
  }

  #mobile_next_btn p {
    margin: 25px 40% 25px 0%;
    color: #cccccc;
    float: left;
    font-size: 30px;
    line-height: 30px;
  }

  #details-show .owl-nav {
    height: 80px;
  }

  .portfolio_cover {
    height: 260px;
  }

  #company_info {
    float: left;
    width: 80%;
    padding: 150px 5% 0 15%;
    color: #ffffff;
    text-align: right;
  }
}

/* Desktop Layout: 800px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 960px) {
  .hide_mobile, .hide_tablet {
    display: block;
  }

  #container {
    min-width: 850px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }

  .gridContainer {
    width: 100%;
    min-width: 850px;
    /*max-width: 1232px;*/
    /*width: 98.3334%;

	padding-left: 0.8333%;
	padding-right: 0.8333%;*/
    padding: 0;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
  }

  #grey_bg {
    position: fixed;
    z-index: 1;
    top: 0px;
    left: 9%;
    width: 31%;
    max-width: 565px;
    background: #888888;
    height: 100%;
  }

  #logo_container {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 40.6779%;
    background-image: url(../images/leaf.png);
    background-repeat: no-repeat;
    background-position: 88% 15px;
    background-size: 70px auto;
    z-index: 1;
  }

  #logo {
    float: left;
    width: 79.1666%;
    font-size: 48px;
    line-height: 48px;
    font-weight: normal;
    margin: 50px 0 0 0;
    padding: 0;
    color: #666666;
    text-align: right;
  }

  #tag {
    float: left;
    width: 79.1666%;
    font-size: 15px;
    line-height: 15px;
    margin: 0 0 40px 0;
    padding: 0;
    font-weight: normal;
    color: #666666;
    text-align: right;
  }

  .nav_container {
    position: fixed;
    z-index: 50;
    left: 7%;
    top: 0px;
    width: 33%;
    overflow: visible;
    overflow-y: visible;
    min-width: 300px;
    max-width: 600px;
    height: 700px;
    background-color: transparent;
    background-image: url(../images/OH.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center 0px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-right: none;
  }

  #main_nav {
    float: left;
    width: 33%;
    text-align: right;
    margin: 110px 0 0 0;
  }

  .nav_item {
    font-size: 15px;
    letter-spacing: 0.2em;
    width: 100%;
    padding: 0px;
    margin: 0px;
    color: rgb(255, 255, 255);
    border-bottom: none;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }

  .nav_item.current {
    color: rgb(156, 198, 80);
  }

  .nav_item:hover {
    color: rgb(156, 198, 80);
  }

  #social-box {
    position: fixed;
    bottom: 10px;
    left: 10%;
  }

  .footer-social-link {
    float: left;
    text-align: center;
    margin: 0px 10px 0px;
  }

  a.footer-social-link:focus, a.footer-social-link:active {
    outline: 0;
    outline: none;
  }

  .footer-social-link i {
    font-size: 18px;
    padding: 0px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: thin solid #cccccc;
    color: #cccccc;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }

  .footer-social-link i:hover {
    border-color: #ffffff;
    color: rgb(156, 198, 80);
    background: #ffffff;
    font-size: 26px;
  }

  #section_one {}

  #project_name {
    z-index: 300;
    width: 75%;
    position: absolute;
    left: auto;
    right: 0px;
    top: 78px;
    font-size: 46px;
    line-height: 36px;
    color: #EEEEEE;
    font-weight: normal;
    text-transform: uppercase;
  }

  #project_name_2 {
    z-index: 300;
    width: 75.3%;
    position: absolute;
    right: 0px;
    top: 90px;
    font-size: 46px;
    line-height: 36px;
    color: #EEEEEE;
    font-weight: normal;
    text-transform: uppercase;
    float: none;
    margin: 31px 0 0;
  }

  #home_stage {
    min-width: 700px;
    min-height: 500px;
    z-index: 30;
    width: 75%;
    position: absolute;
    right: 0px;
    top: 150px;
  }

  #contact_stage {
    min-width: 700px;
    min-height: 500px;
    z-index: 30;
    width: 75%;
    position: absolute;
    right: 0px;
    top: 150px;
    background-image: url(../images/company.jpg);
    background-repeat: none;
    background-size: cover;
    background-position: center center;
  }

  #contact_info_bg {
    min-height: 500px;
    position: absolute;
    right: 0px;
    width: 75%;
    top: 0px;
    padding: 0px;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.70);
  }

  #contact_info {
    float: right;
    width: 84%;
    padding: 50px 8% 0 8%;
    color: #ffffff;
    text-align: left;
  }

  #contact_info h2 {
    font-size: 46px;
    line-height: 46px;
    padding: 0;
    margin: 100px 0 0;
    font-weight: normal;
    text-transform: uppercase;
  }

  #contact_info .smaller {
    font-size: 18px;
    padding: 0;
    margin: 0px 0 40px 0;
    font-weight: normal;
    text-align: justify;
  }

  #contact_info h3 {
    font-size: 32px;
    line-height: 1em;
    padding: 0;
    margin: 60px 0 0 0;
    font-weight: normal;
    text-transform: uppercase;
  }

  #contact_info p {
    font-size: 20px;
    margin: 0;
    padding: 0;
    font-weight: normal;
  }

  #company_info {
    float: left;
    width: 90%;
    padding: 60px 5% 0 5%;
    color: #ffffff;
    text-align: left;
  }

  #contact_info a:link, #contact_info:visited {
    color: #ffffff;
  }

  #contact_info a:hover {
    color: rgb(156, 198, 80);
    color: rgba(156, 198, 80, 0.80);
  }

  #company_stage {
    min-width: 700px;
    min-height: 500px;
    z-index: 30;
    width: 75%;
    position: absolute;
    right: 0px;
    top: 150px;
    overflow: hidden;
    background-image: url(../images/company-2.jpg);
    background-repeat: none;
    background-size: cover;
    background-position: center center;
  }

  #mobile_home_show {
    display: none;
  }

  #home_show {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
  }

  #details-show .owl-nav {
    position: absolute;
    width: 100%;
    bottom: 35px;
    left: 0px;
    background-color: transparent;
  }

  #details-show .owl-nav .owl-next {
    background-image: url(../images/right-arrow.png);
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position: 66% center;
    margin-right: 4%;
    float: right;
    width: 20%;
    opacity: 1;
    filter: alpha(opacity=1);
    height: 100px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }

  #details-show .owl-nav .owl-next p {
    margin: 37px 40% 0 0%;
    color: #cccccc;
    float: right;
    font-size: 30px;
  }

  #details-show .owl-nav .owl-next:hover {
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.70);
    background-position: 89% center;
    color: #ffffff;
    width: 16%;
    margin-right: 0%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }

  #details-show .owl-nav .owl-prev {
    background-image: url(../images/left-arrow.png);
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position: 33% center;
    float: left;
    width: 20%;
    margin-left: 4%;
    opacity: 0;
    height: 100px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }

  #details-show .owl-nav .owl-prev p {
    margin: 37px 0% 0 40%;
    color: #cccccc;
    float: left;
    font-size: 30px;
  }

  #details-show .owl-nav .owl-prev:hover {
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.30);
    background-position: 10% center;
    color: #ffffff;
    width: 16%;
    margin-left: 0%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }

  .slide_container {
    float: left;
    width: 100%;
    min-height: 500px;
  }

  .slide {
    float: left;
    width: 100%;
    min-width: 500px;
    height: 550px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .home_slide {
    float: left;
    width: 100%;
    min-width: 500px;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
  }

  .project_slide {
    display: block;
    float: left;
    width: 100%;
    min-width: 500px;
    height: 550px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  #section_two {
    z-index: 60;
    width: 75%;
    position: absolute;
    right: 0px;
    top: 150px;
    min-width: 700px;
    float: none;
    margin: 0 0 60px;
  }

  .portfolio_stage {
    position: relative;
    float: left;
    width: 32.7%;
    margin: 5px 0.6% 0px 0%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    overflow: hidden;
    width: 32.7%;
    margin: 5px 0.6% 0px 0%;
  }

  .portfolio_cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 240px;
    float: left;
    position: relative;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }

  .portfolio_title {
    position: absolute;
    text-align: left;
    bottom: 0px;
    left: 0%;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.60);
    width: 90%;
    padding: 10px 5%;
    font-size: 16px;
    line-height: 17px;
    color: #ffffff;
    margin: 0;
    -webkit-transition: all 0.35s ease-out 0s;
    -moz-transition: all 0.35s ease-out 0s;
    -ms-transition: all 0.35s ease-out 0s;
    -o-transition: all 0.35s ease-out 0s;
    transition: all 0.35s ease-out 0s;
  }

  .portfolio_stage:hover>.portfolio_title {
    padding: 12% 8%;
    -webkit-transition: all 0.35s ease-out 0s;
    -moz-transition: all 0.35s ease-out 0s;
    -ms-transition: all 0.35s ease-out 0s;
    -o-transition: all 0.35s ease-out 0s;
    transition: all 0.35s ease-out 0s;
  }

  #houzz_link {
    position: fixed;
    bottom: 13px;
    left: 42%;
    font-size: 12px;
    text-align: left;
    display: inline;
    z-index: 220;
    width: 130px;
  }

  #houzz_link img {
    width: 60px;
    height: auto;
    margin: -5px 0px 0px 2%;
    padding: 0;
  }

  #website {
    position: fixed;
    bottom: 15px;
    right: 1%;
    z-index: 220;
    width: 70px;
    margin-bottom: 0px;
  }

  #website img {
    width: 70px;
    height: auto;
    float: right;
  }

  .zeroMargin_desktop {
    margin-left: 0;
  }

  .hide_desktop {
    display: none;
  }
}

@media only screen and (min-width: 1100px) {
  #contact_info_bg {
    width: 65%;
  }
}

@media only screen and (min-width: 1280px) {
  #main_nav {
    margin: 170px 0 0 0;
  }

  .slide {
    height: 650px;
  }

  #project_name {
    top: 66px;
    font-size: 56px;
  }

  #project_name_2 {
    top: 80px;
    font-size: 66px;
  }

  #contact_info_bg {
    width: 55%;
  }

  .portfolio_cover {
    background-size: 140% auto;
    height: 270px;
    /* box-shadow: inset 0px 2px 10px #000000;
	-moz-box-shadow: inset 0px 2px 10px #000000;
	-webkit-box-shadow: inset 0px 2px 10px #000000; */
  }

  .portfolio_stage:hover>.portfolio_cover {
    background-size: 170% auto;
    /* box-shadow: inset 0px 2px 30px #000000;
	-moz-box-shadow: inset 0px 2px 30px #000000;
	-webkit-box-shadow: inset 0px 2px 30px #000000; */
  }
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.85;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

#form_container {
  padding: 0px 5%;
  text-align: left;
  width: 90%;
  position: fixed;
  background: #ffffff;
  top: 5%;
  left: 50%;
  margin-left: -50%;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

#form_container h3 {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 32px;
  color: #666666;
  margin: 15px 0% 5px;
}

#form_container form {
  float: left;
  width: 100%;
  border: 0;
  color: #333333;
}

#form_container form fieldset {
  border: 0;
}

#form_container form input, #form_container form input[required] {
  float: left;
  width: 92%;
  background: #ffffff;
  color: rgb(0, 0, 0);
  border: thin solid #cccccc;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  padding: 8px 4%;
  height: 25px;
  margin: 0px;
  font-size: 16px;
  font-family: 'Avenir Next W01 Thin', Helvetica, Arial, sans-serif;
}

#form_container form textarea {
  float: left;
  width: 92%;
  color: rgb(0, 0, 0);
  border: thin solid #cccccc;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  margin: 0px 0px 20px 0px;
  font-size: 16px;
  padding: 8px 4%;
  font-family: 'Avenir Next W01 Thin', Helvetica, Arial, sans-serif;
}

#form_container form label {
  float: left;
  width: 100%;
  margin: 15px 0px 0px 0px;
  padding: 0px;
  border: 0;
}

#form_container form a#form_btn:link, #form_container form a#form_btn:visited {
  float: left;
  width: 100%;
  border: none;
  margin: 10px 0px 25px;
  padding: 15px 0px;
  background-color: #666666;
  color: #ffffff;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  font-size: 22px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#form_container form a#form_btn:hover {
  box-shadow: inset 0px 2px 8px #000000;
  -moz-box-shadow: inset 0px 2px 8px #000000;
  -webkit-box-shadow: inset 0px 2px 8px #000000;
}

@media only screen and (min-width: 500px) {
  #form_container {
    width: 420px;
    padding: 0px 40px;
    margin-left: -250px;
    top: 12%;
  }

  #form_container form a#form_btn:link, #form_container form a#form_btn:visited {
    width: 400px;
    padding: 15px 0px;
  }
}

@media only screen and (min-width: 960px) {
  #form_container {
    top: 20%;
  }
}

#show-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -20px;
  z-index: 5;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: #fff;
}

@media only screen and (min-width: 500px) {
  #show-nav {
		bottom: 15px;
		font-size: 12px;
	}
}

@media only screen and (min-width: 960px) {
  #show-nav {
    bottom: -40px;
    color: #666;
  }
}
