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

/*--------------------------------------------------------------
# Highlighters
--------------------------------------------------------------*/
::selection {
  background: #b4e2c9; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #b4e2c9; /* Gecko Browsers */
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

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 {
  border-color: #aaa #bbb #bbb;
}

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%;
  padding: 10px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #D9AF49;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  color: #D9AF49;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 49%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 49%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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;
  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;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#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;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.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;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.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: 20px 0 0.8075em 0;
  color: #8fcbab;
  border: 1px dashed #8fcbab;
  padding: 20px;
}

.wp-caption-text {
  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;
}


/*--------------------------------------------------------------
*
*
## LD Styles
*
*
*-------------------------------------------------------------*/

/*--------------------------------------------------------------
## Fontface
--------------------------------------------------------------*/
@font-face {
  font-family: 'Colaborate';
  src: url('../fonts/ColabLig.eot');
  src: url('../fonts/ColabLig.eot?#iefix') format('embedded-opentype'),
       url('../fonts/ColabLig.woff') format('woff'),
       url('../fonts/ColabLig.ttf') format('truetype'),
       url('../fonts/ColabLig.svg#ColabLig') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Colaborate';
  src: url('../fonts/colabreg-webfont.eot');
  src: url('../fonts/colabreg-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/colabreg-webfont.woff') format('woff'),
       url('../fonts/colabreg-webfont.ttf') format('truetype'),
       url('../fonts/colabreg-webfont.svg#colaborate-regularregular') format('svg');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Imogen Agnes';
  src: url('../fonts/ImogenAgnes.eot');
  src: url('../fonts/ImogenAgnes.eot?#iefix') format('embedded-opentype'),
       url('../fonts/ImogenAgnes.woff') format('woff'),
       url('../fonts/ImogenAgnes.ttf') format('truetype'),
       url('../fonts/ImogenAgnes.svg#ImogenAgnes') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Naive Line Sans';
  src: url('../fonts/NaiveLineSansRegular.eot');
  src: url('../fonts/NaiveLineSansRegular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/NaiveLineSansRegular.woff') format('woff'),
       url('../fonts/NaiveLineSansRegular.ttf') format('truetype'),
       url('../fonts/NaiveLineSansRegular.svg#NaiveLineSansRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Naive Line Sans';
  src: url('../fonts/NaiveLineSansBold.eot');
  src: url('../fonts/NaiveLineSansBold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/NaiveLineSansBold.woff') format('woff'),
       url('../fonts/NaiveLineSansBold.ttf') format('truetype'),
       url('../fonts/NaiveLineSansBold.svg#NaiveLineSansBold') format('svg');
  font-weight: normal;
  font-style: normal;
}

/*--------------------------------------------------------------
## Typography
--------------------------------------------------------------*/
body{
  font-family: 'Colaborate', 'Trebuchet MS', 'Arial', 'Helvetica', sans-serif;
  font-size: 18px;
  font-size: 1.125rem; /* 18/16 */
  min-width: 300px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  color:  #d9af49;
  font-size: 24px;
  font-size: 1.5rem; /* 24/16 */
  text-align: center;
  font-weight: normal;
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog .post h2 {
  font-family: 'Colaborate', 'Trebuchet MS', 'Arial', 'Helvetica', sans-serif;
  font-weight: normal;
  line-height: 1.6em;
  font-size: 1.125rem;
  color: #404040;
  text-decoration: underline;
}

.blog .post .entry-header h2 {
  text-align: center;
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  text-decoration: none;
  font-size: 24px;
  font-size: 1.5rem;
}

p{
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.6em;
}

::selection {
  background: #e4f4eb; /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: #e4f4eb; /* Gecko Browsers */
}

/*--------------------------------------------------------------
## Lists
--------------------------------------------------------------*/
.hentry ul,
.ld-services ul {
  margin-left: 20px;
  padding-left: 0;
}

.hentry ul li,
.ld-services ul li {
  color: #3c3c3c;
  list-style: none;
  margin-bottom: 12px;
}

.hentry ul li:before,
.ld-services ul li:before {
  color: #D9AF49;
  content: "\25AA";
  padding-right: 13px;
  position: relative;
  top: 0em;
  display: block;
  float: left;
  margin-left: -20px;
}

.hentry ol {
  margin-left: 0;
  padding-left: 18px;
}

li h2,
li h3,
li h4,
li h5,
li h6 {
  text-align: left;
  margin-top: 0;
  clear: none;
  margin-bottom: 5px;
}

dd {
  margin: 10px 0 30px 0;
  border-left: 1px dashed #d9af49;
  padding-left: 10px;
  float: left;
  width: 100%;
  padding-bottom: 10px;
}

dd p:last-child {
  margin-bottom: 0;
}

dt {
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  color: #d9af49;
  font-size: 20px;
  font-size: 1.25rem;
}

/*--------------------------------------------------------------
## Divs
--------------------------------------------------------------*/
.page-content, .entry-content, .entry-summary {
  margin-top:  0;
}

.ld-services,
.entry-content {
  margin-bottom: 100px;
}

.home .entry-content {
  margin-top: 52px;
  margin-bottom: 62px;
}

.post .entry-content {
  margin-bottom: 0;
}

.hentry {
  margin-bottom: 0;
}

.nav-container, .site-content, .wide-text {
  width: 1240px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  padding: 0 20px;
}

.thin-text {
  width:  865px;
  max-width: 90%;
  display: block;
  margin: 0 auto;
}

.half {
  width:  50%;
  float: left;
}

.ld-divider img{
  width: 51px;
  height: 12px;
  margin: 0 auto;
  display: block;
}

/*--------------------------------------------------------------
## Buttons
--------------------------------------------------------------*/
button,
input[type="submit"],
.ld-button{
  display: inline-block;
  min-height: 39px;
  min-width: 165px;
  background-color: #FFBC92;
  text-align: center;
  text-decoration: none;
  color: #5f5f5f;
  letter-spacing: 0.1em;
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  padding-top: 7px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px #FFBC92 solid;
  outline: 3px solid #FFBC92;
  font-size: 18px;
  font-size: 1.125rem; /* 18/16 */
}

button:hover,
button:active,
input[type="submit"]:hover,
input[type="submit"]:active,
.ld-button:active,
.ld-button:hover {
  color: #5f5f5f;
  text-decoration: none;
  border: 1px #fff solid;
  outline: 3px solid #FFBC92;
}

.ld-topbar .ld-button {
  min-height: 27px;
  background-color: #b4e2c9;
  padding-top: 1px;
  margin-left: 30px;
  border: 1px #b4e2c9 solid;
  outline: 3px solid #b4e2c9;
  margin-top: 2px;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.ld-topbar {
  color: #b4e2c9;
  background-color: #5f5f5f;
  text-align: center;
  min-height: 40px;
  padding: 5px 20px;
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 50;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
}

.ld-topbar .ld-button:active,
.ld-topbar .ld-button:hover {
  color: #5f5f5f;
  text-decoration: none;
  border: 1px #fff solid;
}

.ld-logo-container {
  text-align: center;
}

.ld-logo {
  display: inline-block;
  margin: 25px auto 15px auto;
  width: 117px;
}

.ld-hero-image-container{
  position: relative;
  float: left;
  width: 100%;
  background: #ffbc92;
  margin-bottom: 100px;
  overflow: hidden;
}

.ld-hero-image-container .hex {
  position: absolute;
  top: 0;
  width: 43.5%;
  left: 0;
}

.ld-hero-image-container .diagonal-peach {
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
}

.ld-hero-image-container .caption-bg {
  width: 40%;
  background: #b4e2c9;
  position: absolute;
  top: 0;
  bottom: 0;
}

.ld-hero-image {
  float: right;
}

.hero-caption {
  position: absolute;
  width: 40%;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hero-caption h2 {
  font-family: 'Imogen Agnes', 'Brush Script MT', "Brush Script Std", "Lucida Calligraphy", "Lucida Handwriting", "Apple Chancery", cursive;
  color:  #5f5f5f;
  font-size: 72px;
  font-size: 4.5rem; /* 72/16 */
  line-height: 56px;
  text-align: center;
  padding: 0 30px;
  margin: 0;
}

/*--------------------------------------------------------------
## Navigation
--------------------------------------------------------------*/
.main-navigation {
  text-transform: uppercase;
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  text-align:center;
  border-bottom: 2px solid #FFBC92;
}

.main-navigation ul {
  display: inline-block;
  margin:0;
  vertical-align:top;
}

.main-navigation li a {
  margin: 0 28px;
  color: #5F5F5F;
  padding: 10px 0;
}

.main-navigation ul li:last-child {
  background: #FFBC92;
  border: 1px #FFBC92 solid;
  outline: 3px solid #FFBC92;
  margin-left: 28px;
}

.main-navigation ul li:last-child:hover,
.main-navigation ul li:last-child:focus {
  border: 1px #FFF solid;
}

.main-navigation ul li:last-child a {
  margin: 0;
  padding: 10px 20px;
}

.main-navigation .current_page_item:after,
.main-navigation .current_page_parent:after {
  display: block;
  position: absolute;
  z-index: 100;
  right: 50%;
  bottom: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #ffbc92;
  content: "";
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* Mobile menu */
.menu-toggle{
  display: none;
}

.main-navigation.toggled ul {
  display: inline-block;
}


/*--------------------------------------------------------------
## Featured Work
--------------------------------------------------------------*/
.home .feat-work {
  margin-top: 92px;
}

.feat-work-container {
  width: 50%;
  float: left;
  position: relative;
  margin-bottom: 4px;
}

.feat-work-container a:hover,
.feat-work-container a:focus {
  text-decoration: none;
}

.feat-work-container.fw-1 .feat-work-inner,
.feat-work-container.fw-3 .feat-work-inner {
  margin-right: 2px;
}

.feat-work-container.fw-2 .feat-work-inner,
.feat-work-container.fw-4 .feat-work-inner {
  margin-left: 2px;
}

.feat-work-container.fw-3 .feat-work-img-container,
.feat-work-container.fw-4 .feat-work-img-container {
  float: left;
}

.feat-work-container.fw-3 .feat-work-text-container,
.feat-work-container.fw-4 .feat-work-text-container {
  right: 2px;
}

.feat-work-hex {
  position: absolute;
  z-index: 50;
}

.feat-work-img-container {
  float: right;
  width: 50%;
  position: relative;
  z-index: 40;
}

.feat-work-container img{
  display: block;
}

.feat-work-text-container{
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #ffb292;
}

.feat-work-container.fw-3 .feat-work-text-container,
.feat-work-container.fw-4 .feat-work-text-container {
  background-color: #B4E2C9;
}

.feat-work-text-inner{
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 20px;
  width: 100%;
  z-index: 60;
}

.feat-work-text-inner h3,
.feat-work-text-inner h4 {
  margin-top: 10%;
  margin-bottom: 10%;
  color: #5f5f5f;
}

.feat-work-text-inner h3 {
  font-family: 'Imogen Agnes', 'Brush Script MT', "Brush Script Std", "Lucida Calligraphy", "Lucida Handwriting", "Apple Chancery", cursive;
  font-size: 60px;
  font-size: 3.75rem; /* 60/16 */
}

.feat-work-text-inner h4 {
  font-size: 20px;
  font-size: 1.25rem; /* 20/16 */
}

/*--------------------------------------------------------------
## Testimonials
--------------------------------------------------------------*/
.ld-testimonial {
  margin-top: 82px;
  margin-bottom: 120px;
  float: left;
  width: 100%;
}

.testimonial-author {
  text-align: right;
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  color: #d9af49;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonials-page {
  margin-bottom: 100px;
}

.testimonials-page .ld-divider {
  margin-top: 60px;
  margin-bottom: 60px;
}

/*--------------------------------------------------------------
## Call To Action
--------------------------------------------------------------*/
.ld-call-to-action {
  background-color:  #b4e2c9;
  float: left;
  width: 100%;
  text-align: center;
}

.ld-call-to-action .wide-text{
  padding-top: 13px;
  overflow: hidden;
  background-image:  url( '../img/hex1.png');
  background-position: top right;
}

.ld-call-to-action h3 {
  font-family: 'Imogen Agnes', 'Brush Script MT', "Brush Script Std", "Lucida Calligraphy", "Lucida Handwriting", "Apple Chancery", cursive;
  color:  #5f5f5f;
  font-size: 72px;
  font-size: 4.5rem; /* 72/16 */
  margin-bottom: 10px;
}

.ld-call-to-action .ld-button {
  margin-bottom: 60px;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.site-footer {
  padding-bottom:  60px;
  float: left;
  width: 100%;
}

.footer-menu {
  margin-bottom: 30px;
  background: #FFBC92;
}

.footer-menu div div {
  text-align:center;
}

.site-info {
  width: 85%;
  float: left;
}

.site-info p {
  margin-bottom: 0;
  clear: both;
}

.site-footer ul {
  margin-left: 0;
  padding-left: 0;
  overflow: hidden;
  margin-bottom: 15px;
  padding-top: 22px;
  display: inline-block;
}

.site-footer li {
  float: left;
  list-style: none;
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  font-size: 0.9em;
}

.site-footer li:after {
  content: '|';
  color: #D9AF49;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
}

.site-footer li:last-child:after {
  content: '';
}

.site-footer li a {
  color: #5f5f5f;
}

.site-footer li a:hover,
.site-footer li a:focus,
.site-footer li a:active {
  color: #5f5f5f;
}

.ld-social-icons-container {
  width:  15%;
  float: left;
}

.ld-social-icons {
  float: right;
}

.ld-social-icons img {
  margin-left: 15px;
}

.ld-social-icons a{
  text-decoration: none;
}

.ld-social-icons .pinterest-icon {
  width:  24px;
  height: 24px;
}

.ld-social-icons .twitter-icon {
  width:  30px;
  height: 24px;
}

.ld-social-icons .instagram-icon {
  width:  26px;
  height: 24px;
}

/*--------------------------------------------------------------
## FAQs
--------------------------------------------------------------*/
.faqs-page {
  margin-top: -80px;
  margin-bottom: 100px;
}

.ld-plus-minus{
  height: 30px;
  width: 30px;
  background-image: url('../img/ld-plus-minus.png');
  background-size: 60px 30px;
  background-position: left;
  float: none;
  margin-right: 20px;
}

.q-and-a {
  clear: both;
}

.faq-question {
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  color: #d9af49;
  clear: left;
  cursor: pointer;
  margin-bottom: 20px;
  float: left;
}

.faq-question.question-open .ld-plus-minus {
  background-position: right;
}

.faq-question.question-open {
  transition: background-color 0.5s ease;
}

.faq-question span {
  padding-top: 3px;
  display: block;
  float: left;
  padding-left: 50px;
  margin-top: -30px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  clear: left;
  margin-left:  50px;
  opacity: 0;
  -webkit-transition: max-height ease-out 2s, opacity ease-out 1s, top 0.5s ease-out 1.5s;
  transition: max-height ease-out 2s, opacity ease-out 1s, top 0.5s ease-out 1.5s;
  position: relative;
  top: 10px;
}

.faq-answer.show-answer{
  max-height: 500px;
  opacity: 1;
  -webkit-transition: max-height ease-out 2s, opacity ease-out 1s, top ease-out 0.5s;
  transition: max-height ease-out 2s, opacity ease-out 1s, top ease-out 0.5s;
  top: -10px;
}

.faq-answer span {
  padding-bottom: 20px;
  display: block;
}


/*--------------------------------------------------------------
## Timeline
--------------------------------------------------------------*/
.ld-timeline-entry {
  padding-bottom: 60px;
}

.entry-right {
  float: right;
  width: 50%;
  border-left: 2px solid #FFBC92;
  clear: both;
  position: relative;
  left: -2px;
}

.entry-left {
  float: left;
  width: 50%;
  border-right: 2px solid #FFBC92;
  clear: both;
}

.entry-left.last-entry {
  border-right: 2px solid #fff;
}

.entry-right.last-entry {
  border-left: 2px solid #fff;
}

.ld-timeline-entry:before{
  background: #fff;
  border: 2px solid #ffbc92;
  content: '';
  display: block;
  z-index: 50;
  height: 16px;
  width: 16px;
}

.entry-right:before {
  position: relative;
  right: 9px;
  float: left;
}

.entry-left:before {
  position: relative;
  left: 9px;
  float: right;
}

.ld-timeline-entry span {
  position: relative;
  top: -5px;
}

.entry-right span {
  padding-left: 30px;
  display: block;
}

.entry-left span {
  padding-right: 30px;
  display: block;
  text-align: right;
}

.entry-left h2,
.entry-left h3,
.entry-right h2,
.entry-right h3 {
  position: relative;
  top: -18px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 21px;
  font-size: 1.3125rem; /* 21/16 */
}

.entry-left h2,
.entry-left h3 {
  text-align: right;
}

.entry-right h2,
.entry-right h3 {
  text-align: left;
}

.ld-timeline-entry .ld-button {
  margin-top: 10px;
}

.ld-timeline-entry p {
  margin-bottom: 10px;
}


/*--------------------------------------------------------------
## Portfolio
--------------------------------------------------------------*/
.fw-testimonial {
  margin-bottom: 100px;
}

/*--------------------------------------------------------------
## Service
--------------------------------------------------------------*/
.ld-services h2 {
  font-family: 'Imogen Agnes', 'Brush Script MT', "Brush Script Std", "Lucida Calligraphy", "Lucida Handwriting", "Apple Chancery", cursive;
  font-size: 60px;
  font-size: 3.75rem; /* 60/16 */
  color: #5f5f5f;
  text-align: left;
  margin-top: 0;
}

.ld-services .ld-divider {
  margin: 60px 0;
}

.ld-services .ld-divider:first-child {
  margin-top: -60px;
}

.ld-services .ld-price {
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  font-size: 22px;
  font-size: 1.375rem; /* 22/16 */
  margin-bottom: 30px;
  color: #D9AF49;
}

/*--------------------------------------------------------------
## Blog
--------------------------------------------------------------*/
.ld-blog-post .wp-post-image {
  display: block;
  margin: 0 auto 30px auto;
}

.single-post .ld-blog-post:first-of-type .ld-divider,
.blog .ld-blog-post:first-of-type .ld-divider {
  display: none;
}

.ld-blog-post .ld-divider {
  margin: 60px 0;
}

.ld-blog-post:last-of-type {
  margin-bottom: 100px;
}

.entry-footer .cat-links {
  clear: both;
  display: block;
  margin-top: 30px;
}

.site-main .post-navigation {
  margin-top: 60px;
  margin-bottom: 60px;
}

.ld-blog-post + .ld-divider {
  margin-top: 60px;
}

.ld-blog-post h2,
.ld-blog-post h3,
.ld-blog-post h4,
.ld-blog-post h5,
.ld-blog-post h6 {
  text-align: left;
}

.nav-previous a:before {
  content: "< ";
}

.nav-next a:after {
  content: " >";
}

.nav-links a {
  background-color: #b4e2c9;
  color: #5f5f5f;
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  padding: 11px 20px;
  display: inline-block;
}

.empty-blog {
  margin-bottom: 100px
}

.ld-blog-post h3 {
  font-size: 20px;
  font-size: 1.25rem; /* 20/16 */
}

.ld-blog-post h4 {
  font-size: 19px;
  font-size: 1.1875rem; /* 19/16 */
}

.ld-blog-post h5 {
  font-size: 18px;
  font-size: 1.125rem; /* 18/16 */
}

.ld-blog-post h6 {
  font-size: 17px;
  font-size: 1.0625rem; /* 17/16 */
}

.ld-blog-post .entry-footer .cat-links{
  margin-bottom: 100px;
}

.ld-blog-post .entry-footer .cat-links:before{
  content: '» ';
}

.ld-blog-post .entry-meta {
  display: none;
}


/*--------------------------------------------------------------
## Blog comments
--------------------------------------------------------------*/
.comments-area {
  margin-top: 100px;
  margin-bottom: 100px;
}

h2.comments-title,
h3.comment-reply-title {
  text-align: left;
}

ol.comment-list {
  margin-left: 0;
  padding-left: 0;
}

ol.comment-list li article {
  border-left: 2px solid #B4e2c9;
  background: rgba(180, 226, 201, 0.12);
  padding: 20px;
  margin-bottom: 30px;
}

ol.comment-list > li.even > article {
  border-left:  2px solid #ffBc92;
  background: rgba(255, 188, 146, 0.12);
}

.comment-author {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}

.comment-author .avatar,
.comment-author .fn,
.comment-author .says {
  display: block;
  float: left;
}

.comment-author .fn,
.comment-author .says {
  line-height: 32px;
}

.comment-author .fn {
  padding-left: 10px;
}

.comment-author .says {
  padding-left: 5px;
}

.comment-metadata{
  display: none;
}

.cancel-comment-reply-link {
  color: #5f5f5f;
  float: right;
}

/*--------------------------------------------------------------
## Case Study
--------------------------------------------------------------*/
.ld-case-study .ld-divider {
  margin: 60px 0;
}

.cs-intro {
  font-family: 'Naive Line Sans', 'Open Sans', 'Arial', 'Helvetica', sans-serif;
  color: #b4e2c9;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-weight: normal;
  margin-top: 30px;
  margin-bottom: 100px;
}

.large-surface-left {
  float: left;
  width: 75%; /* 900/1200 */
  padding-right: 20px;
}

.large-surface-right {
  float: left;
  width: 25%; /* 300/1200 */
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 60px;
}

.large-screenshot-left,
.large-screenshot-right {
  float: left;
  width: 50%;
  margin-top: 140px;
}

.large-screenshot-left {
  padding-right: 40px;
}

.large-screenshot-right {
  padding-left: 40px;
}

.large-screenshot-left img,
.large-screenshot-right img {
  border: 1px solid #eaebed;
  border-radius: 5px;
}


/*--------------------------------------------------------------
## Images
--------------------------------------------------------------*/


@media screen and (max-width: 768px) {
  .wp-image-782,
  .wp-image-779 {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
## Media Queries
--------------------------------------------------------------*/
@media screen and (max-width: 1220px) {
  .main-navigation li a {
    margin: 0 15px;
  }

  .main-navigation ul li:last-child {
    margin-left: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .main-navigation li a {
    margin: 0 12px;
    font-size: 16px;
    font-size: 1rem;
  }

  .main-navigation ul li:last-child {
    margin-left: 11px;
  }

  .feat-work-text-inner h3 {
    font-size: 48px;
    font-size: 3rem; /* 48/16 */
  }

  .feat-work-text-inner h4 {
    font-size: 18px;
    font-size: 1.125rem; /* 18/16 */
  }

  .feat-work-text-inner h3,
  .feat-work-text-inner h4 {
    margin-top: 8%;
    margin-bottom: 8%;
  }

  .large-surface-left {
    width: 100%;
    padding-right: 0px;
  }

  .large-surface-right {    
    padding-left: 0px;
    padding-right: 0px;
    width: 865px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    float: none;
    clear: both;
    padding-top: 100px;
  }

  .large-screenshot-left, 
  .large-screenshot-right {
    width: 100%;
    margin-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 960px) {
  .site-info {
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }

  .ld-social-icons {
    float: none;
    clear: both;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
  /* mobile menu */
  .menu-toggle {
    display: inline-block;
  }

  .main-navigation li {
    float: none;
    text-align: left;
  }

  .main-navigation li a {
    color: #b4e2c9;
  }

  .main-navigation li a:hover,
  .main-navigation li a:active {
    text-decoration: underline;
  }

  .main-navigation ul li:last-child {
    margin-left: 15px;
    max-width: 170px;
    text-align: center;
    margin-top: 15px;
  }

  .main-navigation ul li:last-child a {
    color: #5f5f5f;
  }

  .main-navigation ul li:last-child a:hover,
  .main-navigation ul li:last-child a:active {
    text-decoration: none;
  }

  .main-navigation .current_page_item:after,
  .main-navigation .current_page_parent:after {
    content: none;
  }

  .main-navigation .current_page_item:before,
  .main-navigation .current_page_parent:before {
    display: block;
    z-index: 100;
    width: 16px;
    height: 16px;
    background-size: 16px;
    content: "";
    float: left;
    margin: 14px 12px 0 12px;
    border: 2px solid #FFBC92;
  }

  .main-navigation .menu-primary-menu-container {
    overflow: hidden;
    position: fixed;
    z-index: 50;
    top: 0;
    right: -200px;
    width: 200px;
    min-height: 100%;
    border-left: 2px solid #595959;
    background: #5f5f5f;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }

  .main-navigation.toggled .menu-primary-menu-container {
    right: 0;
  }

  .ld-topbar.menu-open {
    padding-right: 220px;
  }

  .hero-caption h2 {
    font-size: 64px;
    font-size: 4rem; /* 64/16 */
    line-height: 47px;
  }
}

@media screen and (max-width:768px) {
  .hero-caption h2 {
    font-size: 47px;
    font-size: 2.9375rem; /* 47/16 */
    line-height: 31px;
  }

  .ld-call-to-action h3 {
    font-size: 60px;
    font-size: 3.75rem; /* 60/16 */
  }

  .feat-work {
    max-width: 600px;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .feat-work-container {
    width: 100%;
    margin-bottom: 3px;
  }

  .feat-work-container.fw-1 .feat-work-inner,
  .feat-work-container.fw-2 .feat-work-inner,
  .feat-work-container.fw-3 .feat-work-inner,
  .feat-work-container.fw-4 .feat-work-inner {
    margin-left: 0;
    margin-right: 0;
  }

  .feat-work-container.fw-1 .feat-work-img-container,
  .feat-work-container.fw-3 .feat-work-img-container {
    float: right;
  }

  .feat-work-container.fw-1 .feat-work-text-container,
  .feat-work-container.fw-3 .feat-work-text-container {
    background-color: #ffb292;
    right: auto;
    left: 0;
  }

  .feat-work-container.fw-2 .feat-work-img-container,
  .feat-work-container.fw-4 .feat-work-img-container {
    float: left;
  }

  .feat-work-container.fw-2 .feat-work-text-container,
  .feat-work-container.fw-4 .feat-work-text-container {
    right: 0;
    background-color: #B4E2C9;
  }

  .feat-work-text-inner h3{
    font-size: 60px;
    font-size: 3.75rem; /* 60/16 */
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .feat-work-text-inner h4{
    font-size: 20px;
    font-size: 1.25rem; /* 20/16 */
    margin-top: 10%;
    margin-bottom: 10%;
  }
}

@media screen and (max-width:568px) {
  .ld-topbar span {
    display: block;
  }

  .ld-topbar .ld-button {
    margin-left: 0;
  }

  .ld-topbar.menu-open {
    padding-right: 20px;
  }

  .ld-call-to-action .half {
    width: 100%;
  }

  .ld-call-to-action .half:first-of-type {
    border-bottom: 2px dashed #9ac9b0;
  }

  .ld-hero-image-container .caption-bg {
    width: 100%;
  }

  .ld-hero-image {
    z-index: 15;
    position: relative;
  }

  .hero-caption {
    width: 100%;
    top: 0;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    position: relative;
    clear: both;
    padding: 20px 0;
    background: #b4e2c9;
  }

  .hero-caption h2 {
    font-size: 50px;
    font-size: 3.125rem; /* 50/16 */
    line-height: 30px;
  }

  .ld-hero-image-container .caption-bg {
    width: 100%;
    clear: both;
  }

  .ld-hero-image-container .hex {
    top: auto;
    z-index: 20;
  }

  .thin-text {
    max-width: 95%;
  }

  .thin-text.ld-blog-post {
    max-width: 100%;
  }

  .ld-hero-image-container,
  .entry-content,
  .testimonials-page,
  .faqs-page,
  .ld-services,
  .empty-blog,
  .ld-blog-post .entry-footer .cat-links {
    margin-bottom: 60px;
  }

  .comments-area {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .faqs-page {
    margin-top: -60px;
  }

  .ld-services .ld-divider:first-child {
    margin-top: -20px;
  }

  .ld-testimonial {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .feat-work-text-inner h3 {
    font-size: 48px;
    font-size: 3rem; /* 48/16 */
  }

  .feat-work-text-inner h4 {
    font-size: 18px;
    font-size: 1.125rem; /* 18/16 */
  }

  .feat-work-text-inner h3,
  .feat-work-text-inner h4 {
    margin-top: 0;
    margin-bottom: 0;
  }

  ol.comment-list ol.children {
    margin-left: 20px;
    padding-left: 0;
  }

  .cs-intro {
    margin-bottom: 0px;
  }

  .large-surface-right {
    padding-top: 60px;
  }

  .large-screenshot-left,
  .large-screenshot-right {
    padding-top: 20px;
    margin-top: 40px;
  }
}

@media screen and (max-width:480px) {
  .entry-left,
  .entry-right {
    float: left;
    width: 100%;
    left: 0;
  }

  .entry-left {
    border-left: 2px solid #FFBC92;
    border-right: none;
  }

  .entry-left span,
  .entry-left h2,
  .entry-left h3 {
    text-align: left;
  }

  .entry-left span {
    padding-left: 30px;
    padding-right: 0;
  }

  .entry-left:before {
    left: auto;
    right: 9px;
    float: left;
  }
}

@media screen and (max-width:400px) {
  .feat-work {
    max-width: 300px;
  }

  .feat-work-img-container {
    width: 100%;
  }

  .feat-work-text-container {
    position: relative;
    width: 100%;
    float: left;
    padding: 20px 0 30px 0;
  }

  .feat-work-text-inner {
    position: relative;
    top: auto;
    -ms-transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
  }

  .feat-work-hex {
    z-index: 30;
    bottom: 0;
  }
}