@charset "UTF-8";
* {
  box-sizing: border-box;
  letter-spacing: 0.02em;
}

.mobile-header, .mobile-nav {
  display: none;
}

p {
  line-height: 24px;
}

body {
  font-family: "Work Sans", sans-serif;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
  font-weight: 300;
  color: black;
}

.contain {
  width: 1200px;
  margin: auto;
  position: relative;
  position: relative;
  height: 100%;
  display: block;
}

.header {
  width: 198px;
  position: fixed;
  display: block;
  padding-top: 30px;
  height: 100%;
  background-color: white;
}

.header .main-logo {
  max-width: 100px;
  width: 100px;
  float: right;
}

.header .main-logo svg {
  max-width: 100%;
  fill: black;
  float: right;
}

.header nav {
  float: left;
  width: 100%;
  display: block;
  text-transform: lowercase;
  margin-top: 35px;
}

.header nav ul {
  margin: 0;
  padding: 0;
}

.header nav ul li {
  width: 100%;
  display: block;
  list-style: none;
  margin-bottom: 10px;
  position: relative;
}

.header nav ul li a {
  position: relative;
}

.header nav ul li a:before {
  content: "";
  width: 2px;
  background-color: black;
  position: absolute;
  top: 2px;
  left: -10px;
  height: 0;
  transition: height 200ms;
}

.header nav ul li:hover > a {
  font-weight: 600;
}

.header nav ul li:hover > a:hover:before {
  height: 15px;
}

.header nav ul li.current_page_item > a, .header nav ul li.current-menu-item > a {
  font-weight: 600;
  position: relative;
}

.header nav ul li.current_page_item > a:before, .header nav ul li.current-menu-item > a:before {
  content: "";
  width: 2px;
  height: 15px;
  background-color: black;
  position: absolute;
  top: 2px;
  left: -10px;
}

.header nav ul li a {
  color: black;
  text-decoration: none;
}

.header nav ul li ul {
  display: none;
  margin-left: 10px;
  margin-top: 10px;
}

.header nav ul li.menu-item-has-children:after {
  content: "+";
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 14px;
  color: black;
}

.header nav ul li.menu-item-has-children.down:after {
  content: '-';
}

.carousel-wrapper {
  float: left;
  display: block;
  height: 510px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-wrapper .slide {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  display: block;
  opacity: 0;
  transition: opacity 500ms;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none;
  color: black;
}

.carousel-wrapper .slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-wrapper .slide .slide-content {
  background-color: white;
  width: 600px;
  height: 77px;
  position: absolute;
  bottom: 90px;
  left: 0px;
  padding-left: 20px;
  padding-top: 10px;
}

.carousel-wrapper .slide .slide-content strong {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 5px;
  float: left;
  width: 100%;
  display: block;
}

.carousel-wrapper .slide .slide-content p {
  margin: 0;
  padding-left: 10px;
  float: left;
  width: 100%;
  display: block;
  position: relative;
}

.carousel-wrapper .slide .slide-content p:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0px;
  width: 1px;
  height: 18px;
  background-color: black;
  z-index: 16;
}

.carousel-wrapper .pagination {
  position: absolute;
  bottom: 50px;
  left: 0px;
  width: 100%;
  padding-left: 30px;
  z-index: 9;
}

.carousel-wrapper .pagination .page {
  width: 20px;
  height: 20px;
  background-color: white;
  text-indent: -999px;
  overflow: hidden;
  float: left;
  margin-right: 10px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 200ms;
}

.carousel-wrapper .pagination .page.active, .carousel-wrapper .pagination .page:hover {
  opacity: 1;
}

.project-wrapper {
  float: left;
  display: block;
  height: 450px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.project-wrapper .project {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  display: block;
  opacity: 0;
  transition: opacity 200ms;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none;
  color: black;
}

.project-wrapper .project.active {
  opacity: 1;
  z-index: 1;
}

.project-wrapper .navigation {
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 9;
}

.project-wrapper .navigation .project-nav {
  float: left;
  background-color: white;
  opacity: 0.8;
  padding: 10px 30px;
  clear: both;
  margin-bottom: 10px;
  transition: opacity 200ms;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  color: #303030;
}

.project-wrapper .navigation .project-nav:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 18px;
  width: 1px;
  height: 18px;
  background-color: black;
  z-index: 16;
}

.project-wrapper .navigation .project-nav.active, .project-wrapper .navigation .project-nav:hover {
  opacity: 1;
}

.project-wrapper .project-more {
  position: absolute;
  background-color: white;
  bottom: 20px;
  right: 0;
  padding: 10px 20px 10px 20px;
  transition: background-color 200ms, color 200ms;
}

.project-wrapper:hover .project-more {
  background-color: #76776a;
  color: white;
  transition: background-color 200ms, color 200ms;
}

.main-body {
  float: left;
  width: calc(100% - 198px);
  display: block;
  margin-left: 198px;
}

.main-body.inside-page a {
  padding-bottom: 4px;
  color: inherit;
}

.main-body.inside-page a:hover {
  color: #76776a !important;
}

.main-body.inside-page a:after {
  content: "→";
}

.main-body .title-section {
  min-height: 130px;
  padding-left: 18px;
  padding-top: 40px;
}

.main-body .title-section .home-logo {
  max-width: 200px;
  margin-top: -5px;
}

.main-body .title-section .home-logo svg {
  max-width: 100%;
}

.main-body .title-section h1, .main-body .title-section h2 {
  font-weight: 400;
  text-transform: lowercase;
  margin: 0;
  padding: 0;
}

.main-body .home-content {
  float: left;
  width: 100%;
  display: block;
  background-color: #76776a;
  line-height: 32px !important;
  font-size: 24px;
  color: #bbbbb5;
  padding: 40px 0 40px 25px;
}

.main-body .home-content .container {
  max-width: 75%;
  float: left;
  display: block;
}

.main-body .home-content p {
  line-height: 32px;
}

.main-body .home-content p:first-of-type {
  color: white;
}

.main-body .home-content a {
  color: white;
}

.main-body .home-content ul {
  margin-left: 20px;
  margin-top: -20px;
  margin-bottom: 0;
  padding-top: 0;
}

.main-body .home-content ul li {
  list-style: none;
}

.main-body .featured-projects {
  float: left;
  display: block;
  width: 100%;
  margin-top: 65px;
}

.main-body .featured-projects h2 {
  padding: 0px 0px 0px 20px;
  margin: 0 0 15px 0;
  font-size: 24px;
}

.main-body .recent-articles {
  float: left;
  width: 100%;
  display: block;
  margin-top: 65px;
}

.main-body .recent-articles h2 {
  padding: 0px 0px 0px 20px;
  margin: 0 0 15px 0;
  font-size: 24px;
}

.main-body .instagram-wrapper {
  float: left;
  width: 100%;
  display: block;
  margin-top: 65px;
}

.main-body .instagram-wrapper h2 {
  padding: 0px 0px 0px 20px;
  margin: 0 0 15px 0;
  font-size: 24px;
}

.main-body .instagram-wrapper h2 i {
  width: 1.7px;
  height: 21px;
  background-color: black;
  display: inline-block;
  position: relative;
  top: 2px;
}

.main-body .instagram-wrapper h2 span {
  font-weight: 300;
  font-size: 16px;
  position: relative;
  top: -2px;
}

.main-body .instagram-wrapper .inst-wrap {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.main-body .instagram-wrapper .insta-item {
  width: 225px;
  max-width: 225px;
  height: 225px;
  margin: 0 10px 12px 0px;
  display: block;
  background-size: cover;
  flex-grow: 1;
}

.main-body .post {
  float: left;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  color: black;
  text-decoration: none;
}

.main-body .post:hover .content-wrapper {
  background-color: #d2d2d2;
}

.main-body .post .thumbnail {
  width: 315px;
  height: 150px;
  float: left;
}

.main-body .post .content-wrapper {
  float: left;
  width: 685px;
  display: block;
  height: 150px;
  background-color: #ebebeb;
  padding: 25px 70px 25px 25px;
  font-size: 15px;
  transition: background-color 200ms;
}

.main-body .post .content-wrapper h4 {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
}

.main-body .post .content-wrapper .date-wrapper {
  float: left;
  width: 100%;
  display: block;
  margin-bottom: 15px;
  color: #76776a;
  font-size: 16px;
}

.main-body .navigation.pagination {
  float: right;
  width: 100%;
  display: block;
  margin: 10px 0;
  text-align: right;
}

.main-body .navigation.pagination a {
  color: black;
  text-decoration: none;
}

.main-body .navigation.pagination li {
  list-style: none;
  display: inline-block;
}

.main-body .navigation.pagination .nav-links .page-numbers {
  padding: 5px 10px;
  background-color: grey;
  margin-left: 10px;
  display: inline-block;
  background-color: #ebebeb;
  transition: background-color 200ms;
}

.main-body .navigation.pagination .nav-links .page-numbers.current, .main-body .navigation.pagination .nav-links .page-numbers:hover {
  background-color: #76776a;
  color: white;
}

.main-body .blog-post .featured-image {
  margin-bottom: 25px;
}

.main-body .blog-post .content-area {
  float: left;
  width: 100%;
  padding: 40px 15px 0px 15px;
  display: block;
}

.main-body .blog-post .content-area h1 {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-size: 24px;
}

.main-body .blog-post .content-area .date-wrapper {
  color: #76776a;
  font-weight: 400;
  margin-bottom: 50px;
  float: left;
  width: 100%;
  display: block;
}

.main-body .featured-image {
  float: left;
  width: 100%;
  display: block;
  background-size: cover;
  height: 220px;
}

.main-body .project-wrap {
  float: left;
  width: 100%;
  display: block;
  background-color: #ebebeb;
  padding-left: 45px 25px 30px 25px !important;
}

.main-body .project-wrap a {
  color: black;
  padding-bottom: 3px;
  border-bottom: 1px solid black;
  text-decoration: none;
}

.main-body .accordion-container {
  float: left;
  width: 100%;
  display: block;
}

.main-body .accordion-container .accordion-wrapper {
  float: left;
  width: 100%;
  display: block;
}

.main-body .accordion-container .accordion-wrapper h2 {
  margin-top: 40px;
}

.main-body .accordion-container .accordion-wrapper.active .accordion-content {
  display: block;
}

.main-body .accordion-container .accordion-wrapper.active .accordion-toggle {
  -ms-transform: rotate(0deg) !important;
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
}

.main-body .accordion-container .accordion-wrapper .accordion-title {
  float: left;
  display: block;
  background-color: #bdbdb0;
  width: 100%;
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.main-body .accordion-container .accordion-wrapper .accordion-title .title {
  font-weight: 600;
  text-transform: uppercase;
}

.main-body .accordion-container .accordion-wrapper .accordion-title .job-title {
  color: white;
}

.main-body .accordion-container .accordion-wrapper .accordion-title .accordion-toggle {
  float: right;
  margin-right: 10px;
  transition: transform 200ms;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-body .accordion-container .accordion-wrapper .accordion-content {
  float: left;
  width: 100%;
  display: none;
  padding: 5px 5px 40px 5px;
}

.main-body .accordion-container .accordion-wrapper .accordion-content .profile-picture {
  float: left;
  width: 160px;
  height: 240px;
  display: block;
  margin-right: 10px;
}

.main-body .accordion-container .accordion-wrapper .accordion-content .profile-content {
  float: left;
  font-size: 16px;
  display: block;
  width: 80%;
}

.main-body .project-archive-listing {
  display: flex;
  float: left;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  padding-top: 15px;
  /*padding-left:10px;*/
}

.main-body .project-archive-listing .category-item {
  flex-grow: 1;
  margin: 0 0px 15px 0px;
}

.main-body .project-archive-listing .category-item.proj-archive {
  margin: 0 4px 9px 5px;
}

.main-body .project-archive-listing .category-item.is-featured {
  flex-grow: 2;
}

.main-body .category-item {
  float: left;
  width: 49%;
  max-width: 495px;
  height: 300px;
  background-size: cover;
  /*margin:0 10px 20px;*/
  position: relative;
}

.main-body .category-item.small {
  max-width: 322px;
}

.main-body .category-item.is-featured {
  max-width: 662px;
  width: 662px;
}

.main-body .category-item.featured {
  width: 100%;
  float: left;
  max-width: 100%;
  height: 500px;
}

.main-body .category-item.featured:hover .featured-title {
  background-color: #76776a;
  color: white;
}

.main-body .category-item.featured:hover .featured-title .p-title:before {
  background-color: white;
}

.main-body .category-item.featured .featured-title {
  position: absolute;
  bottom: 30px;
  background-color: white;
  padding: 10px 20px 10px 30px;
  color: black;
  text-decoration: none;
  transition: background-color 200ms;
  width: 70%;
}

.main-body .category-item.featured .featured-title h2 {
  margin: 0 0 5px 0;
  padding: 0;
  float: left;
  width: 100%;
  display: block;
}

.main-body .category-item.featured .featured-title .p-title {
  float: left;
  width: 100%;
  display: block;
  position: relative;
  padding-left: 10px;
  padding-bottom: 5px;
}

.main-body .category-item.featured .featured-title .p-title:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0px;
  width: 1px;
  height: 18px;
  background-color: black;
  transition: background-color 200ms;
  z-index: 16;
}

.main-body .category-item:hover .title {
  background-color: #76776a;
  color: white;
}

.main-body .category-item:hover .title:before {
  background-color: white;
}

.main-body .category-item .title {
  position: absolute;
  bottom: 30px;
  background-color: white;
  padding: 10px 20px 10px 30px;
  color: black;
  text-decoration: none;
  transition: background-color 200ms;
}

.main-body .category-item .title:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 18px;
  width: 1px;
  height: 18px;
  background-color: black;
  transition: background-color 200ms;
  z-index: 16;
}

.main-body .project-post .featured-image {
  width: 100%;
  height: 600px;
  display: block;
  float: left;
}

.main-body .project-post .project-meta {
  float: left;
  background-color: #ebebeb;
  width: 100%;
  display: block;
  padding: 20px;
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 20px;
}

.main-body .project-post .project-meta .content-details {
  float: left;
  width: 50%;
  display: block;
}

.main-body .project-post .project-meta .content-details p {
  margin: 2px 0px 15px 0px;
}

.main-body
.quote-wrapper {
  float: left;
  width: 100%;
  display: block;
  background-color: #76776a;
  padding: 20px;
  color: white;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  padding: 30px 25px 70px;
}

.main-body
.quote-wrapper .quote-mark {
  font-size: 65px;
  font-weight: 600;
  margin-bottom: -23px;
  float: left;
  width: 100%;
  display: block;
}

.main-body
.quote-wrapper .who-said {
  float: left;
  width: 100%;
  display: block;
  font-weight: 600;
}

.main-body .more-projects h5 {
  font-size: 20px;
  margin: 20px 0px 0px 25px;
}

.main-body .next-previous-wrapper {
  display: flex;
  float: left;
  width: 100%;
  /*flex-direction:row;*/
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
  margin-bottom: 40px;
}

.main-body .next-previous-wrapper
.next-prev {
  flex: 0 1 auto;
  width: 490px;
  height: 220px;
  display: block;
  background-size: cover;
  position: relative;
  text-decoration: none;
  transition: background-color 200ms;
}

.main-body .next-previous-wrapper
.next-prev:hover .next-prev-nav {
  background-color: white;
  color: black;
}

.main-body .next-previous-wrapper
.next-prev:hover .next-prev-nav:before {
  background-color: black;
}

.main-body .next-previous-wrapper
.next-prev:hover .title {
  background-color: #76776a;
  color: white;
}

.main-body .next-previous-wrapper
.next-prev:hover .title:before {
  background-color: white;
}

.main-body .next-previous-wrapper
.next-prev .next-prev-nav {
  position: absolute;
  bottom: 60px;
  padding: 10px 20px 10px 30px;
  background-color: #76776a;
  color: white;
  min-width: 140px;
  transition: background-color 200ms;
}

.main-body .next-previous-wrapper
.next-prev .next-prev-nav:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 18px;
  width: 1px;
  height: 18px;
  background-color: white;
  transition: background-color 200ms;
  z-index: 16;
}

.main-body .next-previous-wrapper
.next-prev .title {
  position: absolute;
  bottom: 10px;
  padding: 10px 20px 10px 30px;
  background-color: white;
  transition: background-color 200ms;
  color: black;
}

.main-body .next-previous-wrapper
.next-prev .title:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 18px;
  width: 1px;
  height: 18px;
  background-color: black;
  transition: background-color 200ms;
  z-index: 16;
}

.main-body .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 8px !important;
}

.main-body .gform_anchor {
  display: none;
}

.main-body span.gfield_required {
  display: none;
}

.main-body .gform_body li {
  margin: 0 !important;
  padding: 0;
  float: left !important;
  clear: none !important;
  width: 100%;
}

.main-body .gform_body .small-field {
  float: left;
  width: 50%;
  display: block;
}

.main-body .gform_body .small-field input {
  width: 100%;
  float: left;
  border: 0;
  background-color: #ebebeb;
  padding: 15px !important;
  outline: 0;
}

.main-body .gform_body input {
  outline: 0;
}

.main-body .gform_body
.large {
  width: 100%;
  float: left;
  border: 0;
  background-color: #ebebeb;
  padding: 15px !important;
}

.main-body .gform_body textarea {
  width: 100%;
  float: left;
  border: 0;
  background-color: #ebebeb;
  padding: 15px;
  outline: 0;
}

.main-body .ginput_container_textarea {
  float: left;
}

.main-body .gform_button {
  border: 0;
  padding: 15px 60px !important;
  color: white;
  background-color: #b76649;
  float: right;
  margin: 0 0px 20px 0px !important;
  transition: background-color 200ms;
  cursor: pointer;
  -webkit-appearance: none;
}

.main-body .gform_button:hover {
  background-color: #6e3d2c;
}

.main-body .ginput_container_email {
  float: left;
  width: 100%;
}

.main-body .imagegallery-wrapper {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}

.main-body .imagegallery-wrapper.imagegallery-short .imagegallery-image {
  height: 280px;
}

.main-body .imagegallery-wrapper.imagegallery-medium .imagegallery-image {
  height: 390px;
}

.main-body .imagegallery-wrapper.imagegallery-tall .imagegallery-image {
  height: 500px;
}

.main-body .imagegallery-wrapper .imagegallery-image {
  float: left;
  display: inline-block;
  background-size: cover;
  box-sizing: border-box;
  background-position: center center;
}

.main-body .imagegallery-wrapper.imagegallery-full .imagegallery-image {
  width: 100%;
}

.main-body .imagegallery-wrapper.imagegallery-half .imagegallery-image {
  width: calc(50% - 10px);
}

.main-body .imagegallery-wrapper.imagegallery-half .imagegallery-image:first-child {
  margin-right: 10px;
}

.main-body .imagegallery-wrapper.imagegallery-half .imagegallery-image:last-child {
  margin-left: 10px;
}

.main-body .imagegallery-wrapper.imagegallery-quarter .imagegallery-image:first-child {
  width: calc(25% - 10px);
  margin-right: 10px;
}

.main-body .imagegallery-wrapper.imagegallery-quarter .imagegallery-image:last-child {
  width: calc(75% - 10px);
  margin-left: 10px;
}

.main-body .imagegallery-wrapper.imagegallery-threequarter .imagegallery-image:first-child {
  width: calc(75% - 10px);
  margin-right: 10px;
}

.main-body .imagegallery-wrapper.imagegallery-threequarter .imagegallery-image:last-child {
  width: calc(25% - 10px);
  margin-left: 10px;
}

footer {
  float: left;
  width: calc(100% - 198px);
  display: block;
  background-color: #76776a;
  color: white;
  min-height: 260px;
  padding: 15px;
  font-size: 12px;
  font-weight: 300;
  margin-left: 198px;
  margin-top: 70px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer .footer-logo {
  float: left;
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

footer .footer-logo svg {
  max-width: 180px;
  fill: white;
}

footer .contact-details {
  float: left;
  width: 100%;
  display: block;
}

footer .contact-details .address {
  margin-bottom: 20px;
}

footer .contact-details .fax .label {
  margin-right: 49px;
}

footer .contact-details .phone .label {
  margin-right: 30px;
}

footer .contact-details .email .label {
  margin-right: 35px;
}

footer .contact-details .address, footer .contact-details .phone, footer .contact-details .fax, footer .contact-details .email {
  float: left;
  width: 100%;
  display: block;
}

footer .contact-details .label {
  float: left;
  display: block;
  margin-right: 20px;
}

footer .contact-details .details {
  float: left;
  position: relative;
}

footer .contact-details .details:before {
  content: "";
  width: 1px;
  height: 10px;
  background-color: white;
  position: absolute;
  top: 2px;
  left: -5px;
}

#footer-copyright {
  float: left;
  display: block;
  width: calc(100% - 198px);
  margin-left: 198px;
  background-color: white;
  padding: 15px;
  color: black;
  font-size: 13px;
}

#footer-copyright a {
  color: black;
  text-decoration: none;
}

#footer-copyright .copyright {
  display: inline-block;
  text-align: left;
  float: left;
}

#footer-copyright .site-credit {
  display: inline-block;
  text-align: right;
  float: right;
}

#footer-copyright .clickers {
  font-weight: 600;
}

@media screen and (max-width: 60em) {
  .content-details {
    width: 100% !important;
  }
  .main-body .next-previous-wrapper .next-prev {
    width: 100% !important;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 72em) {
  .home-logo {
    display: none;
  }
  .mobile-header {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    background-color: white;
    height: 58px;
    padding: 10px;
    display: block;
  }
  .mobile-header .main-logo {
    float: left;
    display: block;
  }
  .mobile-header .main-logo .ep-small {
    width: 62px;
    float: left;
  }
  .mobile-header .main-logo .ep-large {
    width: 120px;
    float: left;
    margin-left: 15px;
    margin-top: 2px;
  }
  .mobile-header .nav-trigger {
    float: right;
    margin-top: 10px;
    display: block;
    position: relative;
    width: 50px;
    display: inline-block;
    padding: 20px 10px;
    z-index: 9999;
    cursor: pointer;
    /*            .bars{
                            position;absolut;
                        }*/
  }
  .mobile-header .nav-trigger span {
    border-bottom: 1px solid black;
    display: block;
    width: 30px;
    position: absolute;
    cursor: pointer;
    transition-duration: 0.3s;
    /*                &:first-of-type {
                                    transform: rotate(45deg);
                                    left: 0.5px;
                                }
                                &:last-of-type {
                                    transform: rotate(-45deg);
                                    right: 0;
                                }*/
  }
  .mobile-header .nav-trigger span.top {
    top: 0;
  }
  .mobile-header .nav-trigger span.middle {
    top: 10px;
  }
  .mobile-header .nav-trigger span.bottom {
    top: 20px;
  }
  .mobile-header .nav-trigger.active span:first-of-type {
    transform: rotate(45deg);
    top: 31%;
  }
  .mobile-header .nav-trigger.active span:nth-of-type(2) {
    left: rem(-20);
    width: 0;
    opacity: 0;
  }
  .mobile-header .nav-trigger.active span:last-of-type {
    transform: rotate(-45deg);
    top: 31%;
  }
  .mobile-nav {
    display: block;
    position: fixed;
    float: none;
    height: 100vh;
    background-color: #76776a;
    transition: right 0.5s ease-in-out;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    right: -100%;
    top: 58px;
    z-index: 999;
    font-size: 18px;
    padding-left: 75px;
  }
  .mobile-nav .nav {
    margin-left: 0;
    padding-left: 15px;
  }
  .mobile-nav a {
    color: white;
    text-decoration: none;
    cursor: pointer;
  }
  .mobile-nav ul li {
    list-style: none;
    text-decoration: none;
    margin-bottom: 10px;
  }
  .mobile-nav ul li ul {
    margin-top: 10px;
    font-size: 16px;
  }
  .mobile-nav.open {
    right: 0;
  }
  .mobile-nav > ul > li {
    text-align: left;
    display: block;
    float: left;
    width: 100%;
    position: relative;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-nav > ul > li > a {
    color: white;
    font-size: em(20);
    padding: rem(20) rem(30);
    display: inline-block;
  }
  .mobile-nav > ul > li > ul > li {
    float: none;
    width: 100%;
  }
  .mobile-nav > ul > li > ul > li div span {
    border-bottom: 3px solid #76776a !important;
  }
  .mobile-nav > ul > li ul {
    display: none;
    position: static !important;
    transform: scaleY(1) !important;
    transform: scaleX(1) !important;
    height: auto !important;
    width: auto !important;
  }
  .mobile-nav > ul > li ul li a {
    padding: rem(15) rem(30);
  }
  .mobile-nav > ul > li ul li a:hover {
    color: #76776a;
  }
  .mobile-nav > ul > li.single-nav ul {
    display: none;
    overflow: hidden !important;
    width: 100% !important;
  }
  .mobile-nav > ul > li.single-nav ul li a:after {
    display: none;
  }
  .contain {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .header {
    display: none;
  }
  .main-body {
    width: 100%;
    margin-left: 0;
    padding: 10px;
  }
  .main-body .featured-image {
    margin-bottom: 20px;
  }
  .main-body.home
.title-section {
    display: none;
  }
  .main-body.home .carousel-wrapper {
    margin-top: 48px;
  }
  .main-body .title-section {
    min-height: 0;
    padding-left: 0;
    margin-top: 56px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #ebebeb;
  }
  .main-body .home-content {
    font-size: 20px;
    padding-top: 6px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .main-body .home-content ul {
    margin-left: 10px;
    margin-top: 10px;
    padding-left: 10px;
  }
  .main-body .home-content .container {
    max-width: 100%;
  }
  .main-body .project-wrapper {
    height: 250px;
  }
  .carousel-wrapper {
    height: 371px;
  }
  .carousel-wrapper .slide {
    max-width: 100%;
  }
  .carousel-wrapper .slide .slide-content {
    max-width: 100%;
    height: auto;
    padding-bottom: 10px;
    padding-right: 20px;
  }
  .carousel-wrapper .slide .slide-content p {
    font-size: 15px;
  }
  .carousel-wrapper .slide .slide-content strong {
    font-size: 15px;
  }
  .post .thumbnail {
    width: 100% !important;
    background-size: cover;
  }
  .post .content-wrapper {
    width: 100% !important;
    height: auto !important;
  }
  /*    .instagram-wrapper{
            .insta-item{
                width:48% !important;
                margin:0 10px 10px 10px !important;
                background-size:cover;
            }
        }*/
  .category-item {
    width: 100% !important;
    max-width: 100% !important;
  }
  .category-item.featured {
    height: 250px !important;
  }
  .project-post .featured-image {
    height: 300px !important;
    margin-bottom: 0 !important;
  }
  .project-post .project-meta {
    margin-bottom: 20px;
  }
  .project-post .project-meta .content-details {
    width: 100%;
  }
  .project-post .content-area {
    float: left;
    width: 100%;
    display: block;
  }
  footer {
    width: calc(100% - 20px) !important;
    margin: 10px !important;
  }
  #footer-copyright {
    width: 100%;
    margin: 0 !important;
    text-align: center;
  }
  #footer-copyright .copyright, #footer-copyright .site-credit {
    text-align: center;
    float: none;
  }
  #footer-copyright .site-credit {
    margin-top: 5px;
  }
  .accordion-container .profile-picture {
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
  }
  .accordion-container .profile-content {
    width: 100% !important;
  }
  .gform_body {
    width: 100%;
    float: left;
    overflow: hidden;
  }
  .gform_body .small-field {
    width: 100% !important;
  }
  .gform_body .medium {
    width: 100%;
    float: left;
  }
  .gform_body .ginput_container {
    float: left;
    width: 100%;
  }
  .main-body .next-previous-wrapper .next-prev {
    width: 49%;
  }
  .vc_row {
    margin-left: 0;
    margin-right: 0;
    float: left;
    width: 100%;
  }
  .imagegallery-wrapper .imagegallery-image {
    width: 100% !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 20px;
  }
}
