@charset "UTF-8";
/* fade effects */
.fadein-content {
  transform: translate3d(0, 50px, 0);
  opacity: 0;
  transition: opacity 1s, transform 1s;
}

.fadein--opacity {
  transform: translate3d(0, 0, 0);
}

.fadein-content.fadein-content--2, .fadein-content + .fadein-content {
  transition-delay: 0.2s;
}

.fadein-content.fadein-content--3, .fadein-content + .fadein-content + .fadein-content {
  transition-delay: 0.4s;
}

.fadein-content.fadein-content--4, .fadein-content + .fadein-content + .fadein-content + .fadein-content {
  transition-delay: 0.6s;
}

.fadein-content.fadein-content--5, .fadein-content + .fadein-content + .fadein-content + .fadein-content + .fadein-content {
  transition-delay: 0.8s;
}

.fadein-content.fadein-content--6, .fadein-content + .fadein-content + .fadein-content + .fadein-content + .fadein-content + .fadein-content {
  transition-delay: 1s;
}

.fadein-content.fadein-content--2 {
  transition-delay: 0.2s !important;
}

.fadein-content.fadein-content--3 {
  transition-delay: 0.4s !important;
}

.fadein-content.fadein-content--4 {
  transition-delay: 0.6s !important;
}

.fadein-content.fadein-content--5 {
  transition-delay: 0.8s !important;
}

.fadein-content.fadein-content--6 {
  transition-delay: 1.2s !important;
}

.fadein-content.fadein-content--7 {
  transition-delay: 1.4s !important;
}

.fadein-content.fadein-content--8 {
  transition-delay: 1.6s !important;
}

.fadein-content.fadein-content--9 {
  transition-delay: 1.8s !important;
}

.fadein-content.fadein-content--10 {
  transition-delay: 2s !important;
}

.fadein-container.shown .fadein-content,
.fadein-container-onload.shown .fadein-content {
  transform: none;
  opacity: 1;
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Karla", sans-serif;
  font-weight: 400;
  color: #161616;
  background-color: #f6f5f1;
}

.coded {
  display: none;
}

#page {
  /*position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;*/
}

.admin-bar #page {
  /*top: 32px;
  height: calc(100% - 32px);*/
}

.main-content {
  padding-top: 120px;
}

a {
  color: inherit;
  text-decoration: none;
}

.flex {
  display: flex;
}

.boxed {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.boxed-wide {
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

.boxed-smaller {
  max-width: 1010px;
}

.padded {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 420px) {
  .padded {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.site-header {
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.site-header .flex {
  align-items: center;
}

.site-branding {
  flex-basis: 450px;
  padding-right: 50px;
  flex-shrink: 3;
  min-width: 120px;
}

.logo {
  font-size: 14px;
  letter-spacing: 2px;
}
.logo::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #764d38;
  margin-left: 3px;
}

header nav {
  flex-basis: 670px;
  flex-shrink: 1;
}
header nav ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
header nav ul li {
  display: inline-block;
  letter-spacing: 2px;
}
header nav ul li a {
  margin-left: 2em;
  position: relative;
}
header nav ul li.current-menu-item {
  color: #c5846b;
}
header nav ul.sub-menu {
  position: absolute;
  display: none;
  padding-top: 0.5em;
  margin-left: 1.5em;
}
@media (min-width: 821px) {
  header nav ul.sub-menu::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 100%;
    height: calc(100% - 0.5em);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    z-index: 0;
  }
}
header nav ul.sub-menu li {
  position: relative;
  z-index: 1;
  display: block;
  padding-left: 1em;
  padding-right: 1em;
  background-color: #ebe6e0;
}
header nav ul.sub-menu li a {
  display: block;
  margin: 0;
  padding: 6px 0 12px 0;
}
header nav ul.sub-menu li:first-child a {
  padding-top: 12px;
}
header nav .menu-item-has-children > a {
  padding-right: 14px;
}
header nav .menu-item-has-children > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  right: 0;
  top: 4px;
  border-left: solid 1px #333;
  border-bottom: solid 1px #333;
  transform: rotate(-45deg);
}
@media (min-width: 861px) {
  header nav .menu-item-has-children:hover ul.sub-menu {
    display: block;
  }
}

.main-navigation-open {
  display: none;
}

@media (max-width: 860px) {
  header.site-header {
    padding-top: 0;
  }

  .main-navigation-open {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    right: 15px;
    top: 10px;
  }
  .main-navigation-open span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #764d38;
    margin-top: 6px;
  }
  .main-navigation-open span.third {
    width: 18px;
    margin-left: 6px;
  }

  .site-branding {
    margin-top: 15px;
  }

  .admin-bar .main-navigation-open {
    top: 56px;
  }

  .admin-bar header.site-header {
    padding-top: 50px;
  }

  header nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    box-sizing: border-box;
    padding-top: 100px;
    background-color: #f6f5f1;
    transform: translate(110%);
    transition: all 0.4s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  header nav ul li {
    display: block;
  }
  header nav ul li a {
    display: block;
    margin-left: 0;
    font-size: 1.2rem;
    padding: 0.5em 2.8em 0.5em 1.2em;
  }
  header nav .menu-item-has-children > a {
    padding-right: 45px;
  }
  header nav .menu-item-has-children > a::after {
    top: 15px;
    right: 24px;
  }
  header nav .menu-item-has-children > a.expanded::after {
    top: 20px;
    transform: rotate(-225deg);
  }
  header nav ul.sub-menu {
    display: block;
    position: relative;
    margin-left: 0;
    padding-top: 0;
    overflow: hidden;
    max-height: 0;
    transition: all 0.2s;
  }
  header nav ul.sub-menu li {
    padding-left: 0;
    padding-right: 0;
  }
  header nav ul.sub-menu li a {
    padding-left: 1.2em;
  }
  header nav .menu-item-has-children a.expanded + ul.sub-menu {
    max-height: 150px;
  }
  header nav .main-navigation-close {
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    right: 13px;
    top: 13px;
  }
  header nav .main-navigation-close span {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #161616;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  header nav .main-navigation-close span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .admin-bar .main-navigation-close {
    top: 60px;
  }

  .mobile-menu-opened header nav {
    transform: translate(0, 0);
  }
}
footer .footer-left {
  color: #606060;
  font-size: 2.25rem;
  padding-right: 30px;
  flex-basis: 400px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
footer .footer-left > div {
  display: inline-block;
}
footer .footer-left span {
  display: block;
  text-align: right;
}
footer .footer-left span img {
  transform: translate(-15%, -30%) rotate(-90deg);
}
footer .footer-right {
  flex-grow: 1;
}
footer .footer-col-company {
  color: #606060;
  font-size: 0.75rem;
  line-height: 1.3rem;
  padding-right: 30px;
  flex-basis: 210px;
  flex-grow: 1;
  min-width: 210px;
}
footer .footer-col-company .copy {
  font-size: 0.875rem;
  margin-bottom: 0.4em;
}
footer .footer-col-socials {
  flex-basis: 400px;
  color: #606060;
  font-size: 0.75rem;
  line-height: 1.3rem;
  flex-grow: 1;
}
footer .footer-col-socials a {
  flex-basis: 100px;
  margin-right: 30px;
}
footer .footer-col-socials a:hover {
  text-decoration: underline;
}
footer .footer-menu-cont {
  margin-top: 1em;
  margin-bottom: 1em;
}
footer .footer-menu-cont ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-menu-cont ul li::before {
  content: "/";
}
footer .footer-menu-cont ul li:first-child::before {
  display: none;
}
footer .footer-menu-cont ul a {
  color: #ababab;
  font-size: 0.75rem;
}
footer .footer-menu-cont ul a:hover {
  color: #606060;
}
footer .footer-final {
  margin-top: 70px;
  background-image: url("../img/footerbottombg.png");
  background-position: bottom;
  color: #fff;
  font-size: 0.7rem;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .footer-final a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  footer .footer-left {
    font-size: 1.6rem;
  }
}
@media (max-width: 720px) {
  footer > .flex {
    display: block;
  }
  footer .footer-left {
    margin-bottom: 1em;
  }
  footer .footer-left div span {
    display: inline-block;
  }
  footer .footer-left div span img {
    transform: translateY(5px);
    height: 0.8em;
    width: auto;
  }
}
@media (max-width: 500px) {
  footer .footer-right > .flex {
    display: block;
  }
}
.arrowlink {
  font-size: 0.875rem;
  color: #cbb8a8;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.arrowlink::after {
  content: "";
  display: inline-block;
  height: 1.2em;
  width: 1em;
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
  margin-left: 1.8em;
  transition: all 0.2s;
}
.arrowlink:hover {
  color: #c17b61;
}
.arrowlink:hover::after {
  transform: translate(5px, 0) rotate(-90deg);
}

.arrowdownlink {
  font-size: 0.875rem;
  color: #cbb8a8;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.arrowdownlink::after {
  content: "";
  display: inline-block;
  height: 1em;
  width: 0.8em;
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.5em;
  transition: all 0.2s;
}
.arrowdownlink:hover {
  color: #c17b61;
}
.arrowdownlink:hover::after {
  transform: translate(0, 3px);
}

.bitform {
  margin: 1em 0;
}
.bitform .bitform-title {
  color: #1d1d1d;
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2em;
  line-height: 1.2em;
}
.bitform .bitform-row {
  display: flex;
  justify-content: space-between;
}
.bitform .bitform-field {
  flex-basis: 100%;
  margin-top: 0.8em;
}
.bitform .bitform-field input[type=text], .bitform .bitform-field input[type=email], .bitform .bitform-field select, .bitform .bitform-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.8em;
  font-family: inherit;
  background-color: transparent;
  border: solid 1px #d3d7dd;
}
.bitform .bitform-field input[type=checkbox] {
  width: 1em;
  height: 1em;
  border-radius: 0;
  background-color: transparent;
}
.bitform .bitform-field input[type=submit] {
  background-color: #c5846b;
  color: #fff;
  border: solid 1px #c5846b;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  font-weight: 300;
  padding: 1em 2em;
  background-image: url(../img/arrow_white.svg);
  background-size: auto 12px;
  background-repeat: no-repeat;
  background-position: 95px 50%;
  padding-right: 70px;
  transition: all 0.2s;
}
.bitform .bitform-field input[type=submit]:enabled {
  cursor: pointer;
}
.bitform .bitform-field input[type=submit]:enabled:hover {
  background-position: 102px 50%;
  background-color: #d5947b;
}
.bitform .bitform-row.bitform-twocol .bitform-field {
  flex-basis: calc(50% - 10px);
}
.bitform .bitform-field label {
  display: block;
  color: #595959;
  font-size: 0.875rem;
}
.bitform .bitform-field label .wpcf7-list-item {
  margin-left: 0;
}
.bitform .bitform-field label a {
  text-decoration: underline;
}

.default-page-container {
  margin-bottom: 130px;
}
.default-page-container h2:first-child,
.default-page-container h3:first-child,
.default-page-container h4:first-child,
.default-page-container h5:first-child,
.default-page-container h6:first-child {
  margin-top: 0;
}
.default-page-container h2, .default-page-container h3, .default-page-container h4, .default-page-container h5, .default-page-container h6 {
  margin-top: 2em;
  margin-bottom: 1em;
}

@media (max-width: 500px) {
  .bitform .bitform-row {
    flex-wrap: wrap;
  }
  .bitform .bitform-row.bitform-twocol .bitform-field {
    flex-basis: 100%;
  }
}
body.home::before {
  content: "";
  display: block;
  width: calc(50% - 130px);
  height: 5px;
  background-color: #3f4931;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

body.home.admin-bar::before {
  top: 32px;
}

@media (max-width: 1220px) {
  body.home::before {
    width: 40%;
  }
}
.home-intro {
  margin-top: -120px;
  position: relative;
}
.home-intro .home-intro-contacts {
  position: absolute;
  right: -30px;
  top: 42%;
  transform-origin: right;
  transform: rotate(90deg) translateX(50%);
  font-size: 0.875rem;
  color: #161616;
}
.home-intro .home-intro-contacts a {
  color: inherit;
  text-decoration: none;
  margin-left: 0.4em;
}
.home-intro .home-intro-contacts a:first-child {
  margin-left: 0;
  margin-right: 0.4em;
}
.home-intro .home-intro-contacts a:hover {
  text-decoration: underline;
}
@media (max-width: 1280px) {
  .home-intro .home-intro-contacts {
    right: -10px;
  }
}
@media (max-width: 720px) {
  .home-intro .home-intro-contacts {
    display: none;
  }
}
.home-intro .flex {
  position: relative;
  z-index: 1;
  align-items: stretch;
}
.home-intro::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #f6f5f1;
}
.home-intro::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background-color: #ebe6e0;
}

.home-intro-text {
  position: relative;
  padding-top: 120px;
  padding-right: 50px;
  padding-bottom: 150px;
  flex-basis: 450px;
  box-sizing: border-box;
  background-color: #f6f5f1;
  font-size: 1.875rem;
  line-height: 1.4em;
  flex-shrink: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-intro-text .big {
  font-weight: normal;
  font-size: 1.26em;
  line-height: 1.2em;
}
.home-intro-text h1 {
  margin: 0 0 0.2em 0;
}
.home-intro-text a {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #454545;
  letter-spacing: 1px;
  line-height: 1em;
  display: inline-block;
}
.home-intro-text a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(0.25em);
  margin-left: 0.4em;
  transition: all 0.2s;
}
.home-intro-text a:hover {
  color: #7d7d7d;
}
.home-intro-text a:hover::after {
  transform: translateY(0.35em);
}

.home-intro-image {
  position: relative;
  box-sizing: border-box;
  padding: 120px 30px 50px 50px;
  flex-basis: 62%;
  width: 62%;
  flex-grow: 0;
  background-color: #ebe6e0;
  text-align: right;
  flex-shrink: 3;
}

.home-slideshow {
  margin-left: auto;
  width: 100%;
  max-width: 550px;
}
.home-slideshow .home-slide {
  text-align: left;
}
.home-slideshow .home-slide-image {
  width: 100%;
  padding-bottom: 128%;
  position: relative;
}
.home-slideshow .home-slide-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-slideshow .home-slide-title {
  font-size: 0.875rem;
  color: #161616;
  margin-top: 0.8em;
  margin-left: 1px;
}
.home-slideshow .slick-dots {
  position: absolute;
  bottom: 0;
  right: 1px;
  list-style: none;
  padding: 0 0 5px 0;
  margin: 0;
}
.home-slideshow .slick-dots li {
  display: inline-block;
}
.home-slideshow .slick-dots li button {
  border: solid 1px #999;
  padding: 0;
  width: 9px;
  height: 9px;
  background-color: transparent;
  font-size: 0;
  border-radius: 5px;
  margin-left: 9px;
}
.home-slideshow .slick-dots li.slick-active button {
  background-color: #c17b61;
  border-color: #c17b61;
}

@media (max-width: 1120px) {
  .home-intro-text {
    font-size: 1.6rem;
  }
}
@media (max-width: 960px) {
  .home-intro-text {
    font-size: 1.4rem;
    flex-basis: 42%;
    width: 42%;
  }

  .home-intro-image {
    padding-right: 0;
    flex-basis: 58%;
    width: 58%;
  }
}
@media (max-width: 860px) {
  .home-intro-text {
    padding-bottom: 0;
  }
}
@media (max-width: 720px) {
  .home-intro .flex {
    flex-direction: column;
  }

  .home-intro-text, .home-intro-image {
    flex-basis: auto;
    width: auto;
  }

  .home-intro::before, .home-intro::after {
    display: none;
  }

  .home-intro-text {
    padding-top: 70px;
    padding-right: 0;
  }

  .home-intro-image {
    margin-left: -30px;
    margin-right: -30px;
    padding: 30px;
  }

  .home-slideshow {
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .home-intro-image {
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px;
  }

  .footer-col-socials {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}
.home-logos {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 500px) {
  .home-logos {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.home-logos .home-logo-container {
  position: relative;
}
.home-logos .home-logo-container::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.home-logos .flex {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.home-logos a {
  display: block;
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  top: 0;
  left: 0;
  margin: 15px;
}
.home-logos a img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 500px) {
  .home-logos .home-logo-container::before {
    padding-bottom: 80%;
  }
  .home-logos a {
    margin: 0 15px;
    height: 100%;
  }
}

.home-services {
  margin-top: 60px;
  margin-bottom: 60px;
  background-color: #ebe6e0;
}
@media (max-width: 500px) {
  .home-services {
    margin-top: 30px;
  }
}
.home-services .flex {
  align-items: stretch;
}
.home-services h2 {
  font-size: 1.625rem;
  color: #141414;
  margin: 0 0 1em 0;
  font-weight: normal;
}
@media (max-width: 500px) {
  .home-services .home-services-accordion {
    min-height: 0 !important;
  }
}
.home-services .home-services-content {
  padding: 50px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  color: #242424;
  line-height: 1.4em;
}
.home-services .home-services-content .accordion-item {
  margin-top: 2px;
}
.home-services .home-services-content .accordion-item-title {
  color: #764d38;
  font-weight: 700;
  padding: 1em 2em;
  border: solid 1px #c17b61;
  display: flex;
  justify-content: space-between;
  line-height: 1.1em;
  cursor: pointer;
  transition: all 0.2s;
}
.home-services .home-services-content .accordion-item-title:hover {
  background-color: rgba(118, 77, 56, 0.1);
}
.home-services .home-services-content .accordion-item-title::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 1px #777675;
  border-left: solid 1px #777675;
  transform: translate(10px, 0) rotate(-45deg);
}
.home-services .home-services-content .accordion-item-title.expanded::after {
  transform: translate(10px, 5px) rotate(135deg);
}
.home-services .home-services-content .accordion-item-content {
  display: none;
  padding: 1px 0;
}
.home-services .home-services-content .accordion-item-content a {
  display: block;
  text-transform: uppercase;
  color: #454545;
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.home-services .home-services-content .accordion-item-content a::after {
  content: "";
  display: inline-block;
  background-image: url("../img/arrow.svg");
  height: 1em;
  width: 0.8em;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(0, 2px) rotate(-90deg);
  margin-left: 1em;
  transition: all 0.2s;
}
.home-services .home-services-content .accordion-item-content a:hover {
  color: #7d7d7d;
}
.home-services .home-services-content .accordion-item-content a:hover:hover::after {
  transform: translate(3px, 2px) rotate(-90deg);
}
.home-services .home-services-side {
  flex-basis: 370px;
  position: relative;
}
.home-services .home-services-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .home-services > .flex {
    display: block;
  }
  .home-services .home-services-side {
    height: 200px;
  }
}
@media (max-width: 500px) {
  .home-services .home-services-content {
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .home-services .home-services-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.home-projects .home-projects-top {
  padding-bottom: 50px;
}
.home-projects .home-projects-top .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-projects .home-projects-top .flex a {
  text-transform: uppercase;
  color: #454545;
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.home-projects .home-projects-top .flex a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0, 2px) rotate(-90deg);
  margin-left: 0.4em;
  transition: all 0.2s;
}
.home-projects .home-projects-top .flex a:hover {
  color: #7d7d7d;
}
.home-projects .home-projects-top .flex a:hover::after {
  transform: translate(3px, 2px) rotate(-90deg);
}
.home-projects .home-projects-proj {
  margin-bottom: 50px;
  font-size: 0;
}
.home-projects .home-projects-proj img {
  width: 100%;
  transition: all 0.4s;
  z-index: 1;
}
.home-projects .home-projects-proj a {
  display: block;
  position: relative;
}
.home-projects .home-projects-proj a:hover img {
  opacity: 0.8;
}
.home-projects .home-projects-proj .home-projects-overlay {
  transition: all 0.4s;
  overflow: hidden;
  position: absolute;
  opacity: 0;
  padding: 30px;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,0.8+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ccffffff",GradientType=0 );
  /* IE6-9 */
}
.home-projects .home-projects-proj .home-projects-overlay span {
  text-align: right;
  display: block;
  width: 100%;
  font-size: 3rem;
  transform: translateY(50px);
  transition: all 0.6s;
}
.home-projects .home-projects-proj a:hover .home-projects-overlay {
  opacity: 1;
}
.home-projects .home-projects-proj a:hover span {
  transform: translateY(0);
}
.home-projects .home-projects-testimonial {
  background-color: #ebe6e0;
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
  margin-bottom: 50px;
}
.home-projects .home-projects-testimonial .boxed {
  max-width: 720px;
}
.home-projects .home-projects-testimonial .testimonial-text {
  color: #242424;
  font-size: 1.25rem;
  line-height: 1.6em;
  margin-bottom: 1.6em;
}
.home-projects .home-projects-testimonial .testimonial-text p {
  display: inline;
}
.home-projects .home-projects-testimonial .testimonial-text::before {
  content: "“";
}
.home-projects .home-projects-testimonial .testimonial-text::after {
  content: "”";
}
.home-projects .home-projects-testimonial .testimonial-author {
  color: #242424;
  font-size: 0.7rem;
  letter-spacing: 3px;
}

@media (max-width: 500px) {
  .home-projects .home-projects-top {
    padding-bottom: 25px;
  }

  .home-projects .home-projects-top .flex {
    flex-wrap: wrap;
  }
  .home-projects .home-projects-top .flex h2 {
    margin-bottom: 0.3em;
    margin-top: 0.3em;
  }
}
.about-intro-title {
  max-width: 730px;
  font-weight: 700;
  color: #161616;
  font-size: 1.875rem;
  margin-bottom: 1em;
}

.about-intro-content {
  max-width: 980px;
}
.about-intro-content .image {
  flex-basis: 300px;
  margin-right: 35px;
}
.about-intro-content .image img {
  width: 100%;
  height: auto;
}
.about-intro-content .text {
  flex-basis: 635px;
  text-align: justify;
  line-height: 1.4em;
  columns: 2;
  column-gap: 35px;
}
.about-intro-content .text p {
  margin-top: 0;
}
@media (max-width: 780px) {
  .about-intro-content .text {
    columns: 1;
  }
}

@media (max-width: 679px) {
  .about-intro-content {
    flex-direction: column;
  }
  .about-intro-content .image {
    flex-basis: auto;
    margin-bottom: 20px;
    margin-right: 0;
    max-width: 300px;
  }
}
@media (max-width: 500px) {
  .about-intro-title {
    font-size: 1.6rem;
  }
}
.about-highlights {
  margin-top: 70px;
  margin-bottom: 100px;
}
.about-highlights > div {
  max-width: 960px;
}
.about-highlights .highlights-title {
  color: #141414;
  font-size: 2.25rem;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .about-highlights .highlights-title {
    font-size: 1.6rem;
  }
}
.about-highlights .highlight-title {
  margin-left: -20px;
  margin-right: -30px;
  padding-left: 70px;
  padding-right: 60px;
  border-bottom: solid 1px #c17b61;
  border-top: solid 1px #c17b61;
  margin-top: -1px;
  padding-top: 1em;
  padding-bottom: 1em;
  color: #1d1d1d;
  text-transform: uppercase;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.about-highlights .highlight-title:hover {
  background-color: rgba(118, 77, 56, 0.1);
}
.about-highlights .highlight-title::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: solid 1px #818080;
  border-bottom: solid 1px #818080;
  transform: translate(0, -0.15em) rotate(-45deg);
}
.about-highlights .highlight-title.expanded::after {
  transform: translate(0, 0.15em) rotate(135deg);
}
.about-highlights .highlight-text {
  display: none;
  padding-left: 50px;
  padding-right: 30px;
  padding-bottom: 10px;
  line-height: 1.75em;
  font-size: 1.125rem;
}
.about-highlights .highlight-text > div {
  max-width: 750px;
  margin: auto;
}

@media (max-width: 679px) {
  .about-highlights .highlight-title {
    padding-right: 15px;
  }
  .about-highlights .highlight-title,
.about-highlights .highlight-text {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
  }
}
.about-style {
  margin-bottom: 90px;
}
.about-style > .boxed > .flex {
  max-width: 1065px;
  align-items: stretch;
}
.about-style .style-title {
  color: #141414;
  font-weight: 700;
  margin: 0 0 1em 0;
  font-size: 2.25rem;
}
@media (max-width: 500px) {
  .about-style .style-title {
    font-size: 1.6rem;
  }
}
.about-style .style-cont {
  flex-basis: 600px;
}
.about-style .style-cont p {
  margin-top: 0;
}
.about-style .style-img img {
  width: 100%;
  height: auto;
}
.about-style .style-cont .style-text {
  text-align: justify;
  line-height: 1.4em;
}
.about-style .about-style-1 .style-img {
  padding: 30px 0 0 70px;
}
.about-style .about-style-1 .style-cont {
  padding-bottom: 30px;
}
.about-style .about-style-2 .style-img {
  padding: 0 70px 0 0;
}
.about-style .about-style-2 .style-cont {
  padding-top: 30px;
}
@media (max-width: 820px) {
  .about-style .about-style-1 .style-img {
    padding: 30px 0 0 35px;
  }
  .about-style .about-style-2 .style-img {
    padding: 0 35px 0 0;
  }
}
@media (max-width: 679px) {
  .about-style > .boxed > .flex {
    flex-direction: column;
  }
  .about-style > .boxed > .flex > div {
    flex-basis: auto;
  }
  .about-style .style-img {
    padding: 0 !important;
  }
}

.about-testimonial {
  background-color: #ebe6e0;
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
  margin-bottom: 50px;
}
.about-testimonial .boxed {
  max-width: 720px;
}
.about-testimonial .testimonial-text {
  color: #242424;
  font-size: 1.25rem;
  line-height: 1.6em;
  margin-bottom: 1.6em;
}
.about-testimonial .testimonial-text p {
  display: inline;
}
.about-testimonial .testimonial-text::before {
  content: "“";
}
.about-testimonial .testimonial-text::after {
  content: "”";
}
.about-testimonial .testimonial-author {
  color: #242424;
  font-size: 0.7rem;
  letter-spacing: 3px;
}

.about-team {
  margin-top: 90px;
  margin-bottom: 150px;
}
.about-team > .boxed > .flex {
  max-width: 1080px;
}
.about-team .team-title {
  color: #141414;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.6em 0;
}
@media (max-width: 500px) {
  .about-team .team-title {
    font-size: 1.6rem;
  }
}
.about-team .team-cont {
  flex-basis: 550px;
  margin-right: 70px;
}
.about-team .team-cont .team-text {
  line-height: 1.4em;
  text-align: justify;
}
.about-team .team-img {
  flex-basis: 440px;
}
.about-team .team-img img {
  width: 100%;
  height: auto;
}

@media (max-width: 679px) {
  .about-team > .boxed > .flex {
    flex-direction: column;
  }
  .about-team > .boxed > .flex > div {
    flex-basis: auto;
    margin: 0;
  }
}
body.page-template-template-services::before {
  content: "";
  display: block;
  width: calc(50% - 130px);
  height: 5px;
  background-color: #3f4931;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

body.page-template-template-services.admin-bar::before {
  top: 32px;
}

@media (max-width: 1220px) {
  body.page-template-template-services::before {
    width: 40%;
  }
}
.services-gallery-item {
  height: 270px;
  box-sizing: border-box;
  padding: 0 6px;
}
.services-gallery-item img {
  height: 270px;
  width: auto;
}

@media (max-width: 400px) {
  .services-gallery-item {
    height: 180px;
  }
  .services-gallery-item img {
    height: 180px;
  }
}
.services-gallery-arrows {
  text-align: right;
  margin-bottom: 15px;
}
.services-gallery-arrows button.slick-arrow {
  width: 40px;
  height: 40px;
  font-size: 0;
  border: solid 1px #d2cfcd;
  background-color: transparent;
  cursor: pointer;
}
.services-gallery-arrows button.slick-arrow:hover {
  background-color: rgba(235, 230, 224, 0.5);
}
.services-gallery-arrows button.slick-arrow::before {
  content: "";
  display: inline-block;
  height: 1em;
  width: 0.8em;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s;
  font-size: 16px;
  transform: rotate(90deg);
}
.services-gallery-arrows button.slick-arrow.slick-next::before {
  transform: rotate(-90deg);
}

.services-intro {
  background-color: #ebe6e0;
  margin-top: -120px;
}
.services-intro > .boxed-wide > .flex {
  align-items: stretch;
}
.services-intro .services-intro-image {
  flex-basis: 570px;
  background-size: cover;
  background-position: center;
}
.services-intro .services-intro-content {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-right: 30px;
  flex-basis: 760px;
  padding-left: 80px;
}
.services-intro .services-intro-title,
.services-intro .services-intro-text {
  max-width: 520px;
}
.services-intro .services-intro-title {
  margin: 0 0 0.4em 0;
  color: #161616;
  font-size: 3.125rem;
  font-weight: 700;
}
.services-intro .services-intro-text {
  line-height: 1.4em;
  text-align: justify;
}

@media (max-width: 679px) {
  .services-intro .boxed-wide > .flex {
    flex-direction: column;
  }
  .services-intro .services-intro-image {
    flex-basis: 300px;
  }
  .services-intro .services-intro-content {
    flex-basis: auto;
    padding: 30px;
  }
  .services-intro .services-intro-title {
    font-size: 2.4rem;
  }

  .services-inner-menu {
    display: none;
  }
}
@media (max-width: 420px) {
  .services-intro .services-intro-content {
    padding: 30px 15px;
  }
}
.services-inner-menu {
  background-color: #ebe6e0;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding-top: 1.4em;
  padding-bottom: 1.4em;
  color: #373636;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 1;
}
.services-inner-menu .services-inner-menu-title {
  display: inline;
  font-size: inherit;
  margin: 0;
  font-weight: 400;
  color: #c17b61;
}
.services-inner-menu a {
  margin: 0 1.2em 0 0.4em;
}

.admin-bar .services-inner-menu {
  top: 32px;
}

.services-cont-title {
  color: #141414;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0;
}

.services-cont-text p {
  margin-top: 0;
}

.services-cont-1 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.services-cont-1 .boxed {
  max-width: 810px;
}
.services-cont-1 .services-cont-title {
  max-width: 500px;
  margin-bottom: 0.5em;
}
.services-cont-1 .services-cont-text {
  line-height: 1.4em;
  text-align: justify;
}

.services-banner {
  margin-bottom: 50px;
}

.services-banner > div {
  height: 560px;
  background-size: cover;
}

.services-cont {
  margin-top: 50px;
  margin-bottom: 50px;
}
.services-cont > .boxed {
  text-align: right;
}
.services-cont > .boxed > .flex {
  text-align: left;
  max-width: 1080px;
  margin-left: auto;
}
.services-cont .services-cont-title {
  flex-basis: 200px;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-right: 15px;
}
.services-cont .services-cont-text {
  flex-basis: 775px;
  text-align: justify;
  line-height: 1.4em;
}
.services-cont .services-cont-text .services-cont-text-inner {
  flex-basis: 400px;
  margin-right: 35px;
}
.services-cont .services-cont-text img {
  width: 100%;
  height: auto;
}
.services-cont .services-cont-image {
  flex-basis: 375px;
}
.services-cont .services-cont-image img {
  width: 100%;
  height: auto;
}

.page-template-template-services footer {
  margin-top: 100px;
}

@media (max-width: 860px) {
  .services-cont .services-cont-title {
    flex-basis: 170px;
    font-size: 1.8rem;
  }
}
@media (max-width: 679px) {
  .services-cont-2 .services-cont-text.flex {
    display: block;
  }
  .services-cont-2 .services-cont-text.flex .services-cont-text-inner {
    margin-right: 0;
  }
}
@media (max-width: 540px) {
  .services-cont > .boxed > .flex {
    display: block;
  }
  .services-cont > .boxed > .flex .services-cont-title {
    margin-bottom: 0.6em;
  }
}
.services-cont-3 .services-cont-text, .services-cont-4 .services-cont-text, .services-cont-5 .services-cont-text {
  flex-basis: 655px;
}

.single-progetto::before, .post-type-archive-progetto::before {
  content: "";
  display: block;
  width: 100%;
  height: 75vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ebe6e0;
  z-index: 0;
}

#page {
  z-index: 1;
  position: relative;
}

.project-details {
  flex-basis: 310px;
  min-width: 200px;
}
.project-details div {
  line-height: 1.4em;
  margin-bottom: 0.4em;
}
.project-details div a:hover {
  text-decoration: underline;
}

.project-description {
  flex-basis: 720px;
  font-size: 1.25rem;
  margin-left: 50px;
  line-height: 1.75em;
}
.project-description p {
  margin-top: 0;
}

@media (max-width: 500px) {
  .project-intro > .boxed > .flex {
    flex-direction: column;
  }
  .project-intro > .boxed > .flex > div {
    flex-basis: 0;
    margin: 0;
  }
  .project-intro > .boxed > .flex > div.project-description {
    margin-top: 1em;
    font-size: 1.125rem;
  }
}
.project-gallery .flex {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.project-gallery .project-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-gallery .project-gallery-image.wide {
  flex-basis: 100%;
}
.project-gallery .project-gallery-image.two {
  flex-basis: calc(50% - 70px);
}
.project-gallery .project-gallery-image.three {
  flex-basis: calc(33% - 70px);
}
@media (max-width: 679px) {
  .project-gallery .project-gallery-image.two {
    flex-basis: calc(50% - 40px);
  }
  .project-gallery .project-gallery-image.three {
    flex-basis: calc(33% - 40px);
  }
}
@media (max-width: 500px) {
  .project-gallery .project-gallery-image.two {
    flex-basis: calc(50% - 25px);
  }
  .project-gallery .project-gallery-image.three {
    flex-basis: calc(33% - 25px);
  }
}
.project-gallery .gallery-row {
  padding-top: 38px;
  padding-bottom: 38px;
}
.project-gallery .gallery-row.bg {
  background-color: #ebe6e0;
}
.project-gallery .gallery-row.bg:first-child {
  background-color: transparent;
}
@media (max-width: 420px) {
  .project-gallery .project-gallery-image.two {
    flex-basis: calc(50% - 15px);
  }
  .project-gallery .project-gallery-image.three {
    flex-basis: calc(33% - 15px);
  }
  .project-gallery .gallery-row {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.single-progetto .home-projects-testimonial {
  margin-top: 40px;
  background-color: #ebe6e0;
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
  margin-bottom: 50px;
}
.single-progetto .home-projects-testimonial .boxed {
  max-width: 720px;
}
.single-progetto .home-projects-testimonial .testimonial-text {
  color: #242424;
  font-size: 1.25rem;
  line-height: 1.6em;
  margin-bottom: 1.6em;
}
.single-progetto .home-projects-testimonial .testimonial-text p {
  display: inline;
}
.single-progetto .home-projects-testimonial .testimonial-text::before {
  content: "“";
}
.single-progetto .home-projects-testimonial .testimonial-text::after {
  content: "”";
}
.single-progetto .home-projects-testimonial .testimonial-author {
  color: #242424;
  font-size: 0.7rem;
  letter-spacing: 3px;
}

.project-pager {
  background-color: #ebe6e0;
  padding: 35px 0;
  margin: 50px 0 70px 0;
}
.project-pager .flex {
  justify-content: space-between;
}
.project-pager .flex a {
  display: block;
  font-style: italic;
  font-size: 1.25rem;
  opacity: 0.5;
}
.project-pager .flex a span {
  display: block;
}
.project-pager .flex a span:first-child {
  font-size: 0.875rem;
}
.project-pager .flex a.singlepost__prev {
  text-align: right;
}
.project-pager .flex a:hover, .project-pager .flex a:focus {
  opacity: 1;
}

.project-contact .boxed {
  max-width: 640px;
}

.open-gallery {
  cursor: pointer;
  transition: all 0.3s;
}

.open-gallery:hover, .open-gallery:focus {
  opacity: 0.8;
}

.gallery-slider {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 900;
  background-color: #ebe6e0;
}
.gallery-slider .gallery-list-item.slick-slide {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-slider .gallery-list-item.slick-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.gallery-slider .gallery-list__arrowprev {
  position: absolute;
  top: 50%;
  left: 0;
  padding-left: 30px;
  border-bottom: solid 1px #333;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  cursor: pointer;
  opacity: 0.7;
  z-index: 2;
}
.gallery-slider .gallery-list__arrownext {
  position: absolute;
  top: 50%;
  right: 0;
  padding-right: 30px;
  border-bottom: solid 1px #333;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  cursor: pointer;
  opacity: 0.7;
  z-index: 2;
}
.gallery-slider .gallery-list__arrowprev:hover, .gallery-slider .gallery-list__arrowprev:focus,
.gallery-slider .gallery-list__arrownext:hover, .gallery-slider .gallery-list__arrownext:focus {
  opacity: 1;
}
.gallery-slider .gallery-list-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  border: solid 2px #111;
  border-radius: 50px;
  cursor: pointer;
  opacity: 0.7;
  z-index: 2;
}
.gallery-slider .gallery-list-close:hover, .gallery-slider .gallery-list-close:focus {
  opacity: 1;
}
.gallery-slider .gallery-list-close::after, .gallery-slider .gallery-list-close::before {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 2px;
  background-color: #111;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.gallery-slider .gallery-list-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gallery-slider .gallery-list-numbers {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
}

.projectlist-intro h1 {
  max-width: 640px;
}

.projectlist-categories {
  margin: 45px auto;
}
.projectlist-categories a {
  font-style: italic;
  margin-right: 30px;
  margin-bottom: 18px;
  cursor: pointer;
}
.projectlist-categories a.current {
  opacity: 0.7;
  cursor: default;
}

.projectlist-list {
  margin-bottom: 120px;
}

.projectlist-pager {
  display: none;
}

.projectlist-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.projectlist-items .projectlist-item {
  display: inline-block;
  width: calc(50% - 15px);
  margin-bottom: 45px;
  position: relative;
}
.projectlist-items .projectlist-item:hover .projectlist-image {
  opacity: 0.8;
}
.projectlist-items .projectlist-item .projectlist-name {
  margin-top: 15px;
  font-size: 0.875rem;
}
.projectlist-items .projectlist-item .projectlist-image {
  width: 100%;
  padding-bottom: 70%;
  position: relative;
  transition: all 0.4s;
}
.projectlist-items .projectlist-item .projectlist-image img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 500px) {
  .projectlist-items .projectlist-item {
    width: calc(50% - 10px);
    margin-bottom: 30px;
  }

  .projectlist-categories a {
    margin-right: 20px;
  }
}
@media (max-width: 400px) {
  .projectlist-items .projectlist-item {
    width: 100%;
  }
}
/*.blog-list {
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;

  & > a {
    width: calc(33.33% - 20px);
  }
}*/
.blog-list {
  margin-left: -27px;
  margin-right: -27px;
}

.blog-list-container::after {
  content: "";
  display: block;
  clear: both;
}

.blog-list-item {
  box-sizing: border-box;
  padding: 27px;
}

@media screen and (min-width: 821px) {
  .blog-list[data-columns]::before {
    content: "3 .column.size-1of3";
  }
}
@media screen and (min-width: 421px) and (max-width: 820px) {
  .blog-list[data-columns]::before {
    content: "2 .column.size-1of2";
  }
}
@media screen and (max-width: 420px) {
  .blog-list[data-columns]::before {
    content: "1 .column.size-1of1";
  }
}
@media (max-width: 600px) {
  .blog-list {
    margin-left: -15px;
    margin-right: -15px;
  }

  .blog-list-item {
    padding: 15px;
  }
}
.column {
  float: left;
}

.size-1of3 {
  width: 33.333%;
}

.size-1of2 {
  width: 50%;
}

.size-1of1 {
  width: 100%;
}

.blog-list-img img {
  width: 100%;
  height: auto;
}

.blog-list-wrap {
  display: block;
  background-color: #fff;
}
.blog-list-wrap img {
  transition: all 0.4s;
}
.blog-list-wrap:hover img {
  opacity: 0.8;
}

.blog-list-cont {
  padding: 8.5%;
}

.blog-list-date {
  font-size: 0.75rem;
  color: #888;
  margin-right: 20px;
}

.blog-list-cat {
  font-size: 0.875rem;
  color: #c69f73;
  text-transform: uppercase;
}

.blog-list-item h2 {
  font-size: 1.25rem;
  color: #101010;
  margin: 0.3em 0 0.4em 0;
}

.blog-list-excerpt {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.4em;
}

.blog-list-container .navigation.posts-navigation {
  padding-top: 40px;
  clear: both;
}

body.blog footer {
  margin-top: 120px;
}

.blog-list-container .nav-links {
  display: flex;
  justify-content: space-between;
  font-style: italic;
}

.blog-list-container .nav-links::before {
  content: "";
  order: 2;
}

.blog-list-container .nav-links .nav-previous {
  order: 3;
}

.blog-list-container .nav-links .nav-next {
  order: 1;
}

.single-post .single-post-date {
  color: #888888;
  font-size: 0.75rem;
  margin-right: 2em;
}
.single-post .single-post-category {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #c69f73;
}
.single-post h1 {
  margin: 0.1em 0 0.1em 0;
  color: #161616;
  font-size: 3.125rem;
}
.single-post .single-post-subtitle {
  color: #444444;
  font-size: 2.25rem;
  margin-bottom: 0.8em;
}
@media (max-width: 500px) {
  .single-post h1 {
    font-size: 2.5rem;
  }
  .single-post .single-post-subtitle {
    font-size: 1.8rem;
  }
}
.single-post .single-post-image {
  font-size: 0;
}
.single-post .single-post-image img {
  margin: 0;
  width: 100%;
}
.single-post .single-post-content {
  background-color: #fff;
  padding: 60px 30px;
  margin-bottom: 100px;
}
.single-post .single-post-content .single-post-share {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4em;
  margin-top: 2em;
}
.single-post .single-post-content .single-post-share a:hover {
  text-decoration: underline;
}
.single-post .single-post-content .single-post-text {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4em;
}
.single-post .single-post-content .single-post-text p {
  margin-top: 0;
}
.single-post .single-post-content .single-post-text p:first-child {
  margin-left: 44px;
}
.single-post .single-post-content .single-post-text p:first-child:first-letter {
  display: block;
  float: left;
  margin-left: -44px;
  font-size: 4.375rem;
  margin-top: 0.2em;
  color: #c5846b;
}
.single-post .single-post-content .single-post-divider {
  display: block;
  max-width: 830px;
  height: 1px;
  margin: 30px auto;
  background-color: #ebebeb;
}
.single-post .single-post-content .single-post-about {
  max-width: 780px;
  background-color: #c5846b;
  padding: 15px 45px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.single-post .single-post-content .single-post-about-img {
  position: relative;
  flex-basis: 180px;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 35px;
}
.single-post .single-post-content .single-post-about-img img {
  width: 100%;
}
.single-post .single-post-content .single-post-about-text {
  color: #fff;
  line-height: 1.4em;
  flex-shrink: 5;
}
@media (max-width: 679px) {
  .single-post .single-post-content .single-post-about-img {
    flex-basis: 110px;
  }
}
@media (max-width: 530px) {
  .single-post .single-post-content .single-post-about {
    flex-direction: column;
  }
}
.single-post .single-post-content .related-posts {
  margin-top: 65px;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}
.single-post .single-post-content .related-posts-title {
  color: #111;
  font-size: 1.3125rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.single-post .single-post-content .related-posts .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-post .single-post-content .related-posts .flex .related-post {
  flex-basis: calc(33.333% - 30px);
  flex-shrink: 0;
}
@media (max-width: 679px) {
  .single-post .single-post-content .related-posts .flex .related-post {
    flex-basis: calc(50% - 30px);
  }
}
@media (max-width: 420px) {
  .single-post .single-post-content .related-posts .flex .related-post {
    flex-basis: 100%;
  }
}
.single-post .single-post-content .related-posts .flex .related-post .related-img {
  width: 100%;
  padding-bottom: 64%;
  position: relative;
  transition: all 0.4s;
}
.single-post .single-post-content .related-posts .flex .related-post .related-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post .single-post-content .related-posts .flex .related-post:hover .related-img {
  opacity: 0.8;
}
.single-post .single-post-content .related-posts .flex .related-post h3 {
  color: #111111;
  font-size: 1.125rem;
  margin: 0.75em 0;
}

.contacts-container {
  margin-top: 40px;
  margin-bottom: 130px;
}
.contacts-container h1.mobile-only {
  display: none;
}
.contacts-container .contacts-right h1 {
  margin-top: 0;
}
.contacts-container .contacts-left {
  margin-right: 35px;
  flex-basis: 420px;
}
.contacts-container .contacts-left .contacts-contacts {
  margin-top: 1em;
  line-height: 1.6em;
}
.contacts-container .contacts-left .contacts-contacts strong {
  display: block;
  font-size: 1.5rem;
  color: #161616;
  margin-bottom: 0.3em;
}
.contacts-container .contacts-left .contacts-contacts a:hover {
  text-decoration: underline;
}
.contacts-container .contacts-right {
  flex-basis: 650px;
}
.contacts-container .contacts-img img {
  width: 100%;
}
.contacts-container .contacts-intro {
  line-height: 1.6em;
  margin-bottom: 3em;
}
@media (max-width: 679px) {
  .contacts-container {
    margin-top: 0;
  }
  .contacts-container h1.mobile-only {
    display: block;
  }
  .contacts-container .flex {
    flex-direction: column;
  }
  .contacts-container .contacts-left {
    margin-right: 0;
    flex-basis: 0;
    display: flex;
    align-items: center;
  }
  .contacts-container .contacts-left .contacts-contacts {
    margin-top: 0;
  }
  .contacts-container .contacts-left .contacts-contacts strong {
    font-size: 1.2rem;
  }
  .contacts-container .contacts-left .contacts-contacts a {
    font-size: 0.875rem;
  }
  .contacts-container .contacts-left .contacts-img {
    margin-right: 15px;
    width: 160px;
  }
  .contacts-container .contacts-right {
    flex-basis: 0;
  }
  .contacts-container .contacts-right h1 {
    display: none;
  }
}
@media (max-width: 420px) {
  .contacts-container .contacts-left .contacts-img {
    width: 90px;
    margin-right: 10px;
  }
}
/*# sourceMappingURL=sstyle.css.map */
