/* SET UP */
/* FONTS - - - - - - - - - - - - - -  */
/* @import must be at top of file, otherwise CSS will not work */
@import url("https://use.typekit.net/qke4hgr.css");
@import url("https://cloud.typography.com/7022974/6873432/css/fonts.css");
/* MIXINS - - - - - - - - - - - - - - */
/* COLORS - - - - - - - - - - - - - - */
/* SIZE VARIABLES - - - - - - - - - - - - - - */
body,
input,
select,
button,
textarea,
p,
ul,
ol {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-size: var(--font--size-base);
  line-height: var(--font--line-base);
  color: var(--color--text);
}
@media (min-width: 768px) {
  body,
input,
select,
button,
textarea,
p,
ul,
ol {
    font-weight: 100;
    letter-spacing: 0.005em;
  }
}

/* ANIMATIONS - - - - - - - - - - - - - -  */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fade-in {
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in;
  animation: fadeIn 1s ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* GLOBAL */
/* TEXT STYLES - - - - - - - - - - - - - -  */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Surveyor Text A", "Surveyor Text B";
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 30px 0;
}

h1,
.h1 {
  font-size: var(--font--size-h1);
  /*
  	@media (max-width:450px) {
  		font-size: 2.5rem;
  	}
  */
}
@media (max-width: 600px) {
  h1,
.h1 {
    font-size: var(--font--size-h1-mobile);
  }
}

h2,
.h2 {
  font-size: var(--font--size-h2);
}
@media (max-width: 600px) {
  h2,
.h2 {
    font-size: var(--font--size-h2-mobile);
  }
}
.orange-title h2,
.orange-title .h2 {
  padding-bottom: 1rem;
}

h3,
.h3 {
  font-size: var(--font--size-h3);
}

h4,
.h4 {
  font-size: var(--font--size-h4);
}

h5,
.h5 {
  font-size: var(--font--size-h5);
}

h6,
.h6 {
  font-size: var(--font--size-h6);
}

p {
  color: #fcb040;
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  p {
    font-size: 1.2rem;
  }
}
.module--simple-text p, .column p, footer p {
  color: white;
  font-size: 1.2rem;
}
.module--simple-text p strong, .column p strong, footer p strong {
  color: #fcb040;
}

strong,
b {
  font-weight: 700;
}

/* LINKS / BUTTONS - - - - - - - - - - - - - -  */
a {
  color: var(--color--link);
  transition: 0.15s ease color;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: var(--color--link-hover);
  text-decoration: none;
}

button,
.btn {
  font-size: 14px;
}

button,
.btn,
input[type=submit] {
  background: var(--color--link);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.65em 2.25em;
  margin: 3px;
  box-shadow: none;
  text-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--color--link);
  border-radius: 10px;
  outline: none;
  transition: 0.15s ease all;
  line-height: 1.5;
}
button:hover, button:focus, button:active, button.active,
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit]:active,
input[type=submit].active {
  background: var(--color--link-hover);
  border: 2px solid var(--color--link-hover);
  color: white;
}
button.white-btn-outline,
.btn.white-btn-outline,
input[type=submit].white-btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
button.white-btn-outline:hover, button.white-btn-outline:focus, button.white-btn-outline:active,
.btn.white-btn-outline:hover,
.btn.white-btn-outline:focus,
.btn.white-btn-outline:active,
input[type=submit].white-btn-outline:hover,
input[type=submit].white-btn-outline:focus,
input[type=submit].white-btn-outline:active {
  background: white;
  border: 2px solid white;
  color: var(--color--link);
}
button.btn-outline,
.btn.btn-outline,
input[type=submit].btn-outline {
  background: transparent;
  border: 2px solid var(--color--link);
  color: var(--color--link);
}
button.btn-outline:hover, button.btn-outline:focus, button.btn-outline:active,
.btn.btn-outline:hover,
.btn.btn-outline:focus,
.btn.btn-outline:active,
input[type=submit].btn-outline:hover,
input[type=submit].btn-outline:focus,
input[type=submit].btn-outline:active {
  border: 2px solid var(--color--link-hover);
  color: var(--color--link-hover);
}

/* GENERAL - - - - - - - - - - - - - -  */
html {
  background: #1d1d1d;
}

body {
  background: #1d1d1d;
  /*
  	&.fade-out-transition {
  		opacity: 0!important;
  	}
  */
}
body.fade-transition {
  opacity: 0;
  transition: opacity 0.6s;
}

.body-inner-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

nav dl,
nav ol,
nav ul,
nav li,
section nav dl,
section nav ol,
section nav ul,
section nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

hr.split {
  border-top: 2px solid var(--color--brand);
  width: 50px;
  margin: 1rem 0 2rem;
}

.centered {
  text-align: center;
}

section {
  padding: var(--module--padding);
  position: relative;
}
@media (min-width: 1441px) {
  section {
    padding: 100px 0;
  }
}

.container {
  padding: 0 30px;
  margin: auto;
}

.wide-container {
  padding: 0 30px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .container:not(.wide-container) {
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .container:not(.wide-container) {
    max-width: var(--module--width);
  }
}
@media (min-width: 1441px) {
  .container:not(.wide-container) {
    max-width: var(--module--max-width);
  }
}
@media (max-width: 767px) {
  .container:not(.wide-container) {
    max-width: 100%;
  }
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding: 0 15px;
}

@media (min-width: 768px) {
  .visible-xs {
    display: none;
  }
}

.search--results h2 {
  padding: 0 0 60px;
}

.orange-title .title {
  color: #fcb040;
}

.dark-text p {
  color: #111111;
}

.large-title .title {
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .large-title .title {
    font-size: 1.8rem;
  }
}

.breadcrumbs {
  padding: 15px 15px;
}
.breadcrumbs .container {
  display: flex;
}

.custom-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hero {
  padding: 60px 0;
  position: relative;
  display: flex;
  padding-bottom: 10rem;
  background-color: var(--color--bg-light);
  /*
      @media(max-width:800px) {
  		min-height: 80vw !important;
  	}
  */
  /*
  	@media(max-width:450px) {
  		min-height: 140vw !important;
  	}
  */
}
@media (max-width: 767px) {
  #hero {
    font-size: 16px;
    padding: 10px 0 7rem;
  }
}
#hero .container {
  text-align: center;
  z-index: 1;
}
#hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero h1 {
  font-size: 2.1em;
}
@media (max-width: 450px) {
  #about #hero h1 {
    font-size: 1.8em;
  }
}
#hero .hero-text {
  font-size: 1.2em;
  padding-top: 30px;
  margin: 0 auto;
}
#hero .hero-text p {
  margin-bottom: 0;
}
#hero .hero-text h2 {
  padding-top: 0;
}
#hero .hero-text button {
  border: 1px solid;
}
#hero .hero-image {
  padding-left: 5%;
}
#hero .arrow {
  text-align: end;
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media (max-width: 767px) {
  #hero .arrow {
    display: none;
  }
}
#hero .arrow a#scroll-arrow {
  display: contents;
  font-size: 1.7rem;
}
#hero .arrow svg {
  font-size: 0.5em;
  transform: scaleY(1.5);
}
#hero .btn {
  font-size: 1rem;
}
#hero .bg-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
}
#hero .bg-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}
#hero .bg-wrapper.parallax-scroll img {
  height: 120%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0px);
}
#hero .bg-wrapper.image-top img {
  object-position: top;
}
#hero .bg-wrapper.image-bottom img {
  object-position: bottom;
}
#hero .video-bg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
#hero .video-bg video {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#hero .video-bg:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: black;
  opacity: 0.4;
  z-index: 1;
  mix-blend-mode: multiply;
}
#hero.bg-overlay-light, #hero.bg-overlay-dark {
  color: white;
}
#hero.bg-overlay-light .bg-wrapper:after, #hero.bg-overlay-dark .bg-wrapper:after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 102%;
  height: 102%;
}
#hero.bg-overlay-light .bg-wrapper:after {
  opacity: 0.7;
  background: white;
}
#hero.bg-overlay-light .has-bg-image {
  color: black;
}
#hero.bg-overlay-dark .bg-wrapper:after {
  opacity: 0.4;
  background: var(--color--bg-dark);
}
#hero.bg-overlay-dark .has-bg-image {
  color: white;
}
#hero.content-left .container, #hero.content-right .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#hero.content-left .container .hero-text,
#hero.content-left .container .hero-image, #hero.content-right .container .hero-text,
#hero.content-right .container .hero-image {
  max-width: 50%;
  width: 50%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  #hero.content-left .container .hero-text,
#hero.content-left .container .hero-image, #hero.content-right .container .hero-text,
#hero.content-right .container .hero-image {
    max-width: 50%;
    width: 50%;
  }
}
@media (min-width: 768px) {
  #hero.content-left .hero-text,
#hero.content-left .hero-image {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
}
@media (min-width: 768px) {
  #hero.content-right .hero-text,
#hero.content-right .hero-image {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }
}

.posts-container .image {
  overflow: hidden;
  padding-bottom: 67%;
  position: relative;
  width: 100%;
}
.posts-container .image img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease all;
}
.posts-container .image img:hover {
  transform: scale(1.05);
}
.posts-container.tile-border .post-wrapper {
  box-shadow: 0px 4px 10px -6px grey;
  transition: all 0.3s ease-in-out;
  background: #fff;
}
.posts-container.tile-border .feat-img {
  margin: 0;
}
.posts-container.tile-border .text {
  padding: 30px;
  border: 1px solid lightgray;
}

.posts-container.display-list {
  display: flex;
  flex-direction: column;
}
.posts-container.display-list .post-wrapper {
  margin-bottom: 30px;
}
.posts-container.display-list .article-part,
.posts-container.display-list .article-part > a {
  display: flex;
}
.posts-container.display-list .article-part.no-image, .posts-container.display-list .article-part.no-image > a,
.posts-container.display-list .article-part.no-image .text {
  width: 100%;
}
.posts-container.display-list .image {
  width: 33.333333%;
}
.posts-container.display-list img {
  height: 100%;
}
.posts-container.display-list .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  width: 66.666666%;
}
.posts-container.display-list .text h2 {
  padding: 0;
}
.posts-container.display-list .text .excerpt {
  padding-top: 15px;
}
.posts-container.display-list .text .date,
.posts-container.display-list .text .author {
  padding: 8px 0 0;
  margin: 0;
}
.posts-container.display-list .text .above-title {
  padding-bottom: 5px;
}
.posts-container.display-list .text .below-title {
  padding-top: 5px;
}
@media (max-width: 767px) {
  .posts-container.display-list .article-part,
.posts-container.display-list .article-part > a {
    flex-wrap: wrap;
  }
  .posts-container.display-list .image {
    width: 100%;
    max-height: 76vw;
  }
  .posts-container.display-list .text {
    width: 100%;
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .posts-container.display-list.tile-border .text {
    padding: 30px;
  }
}
.posts-container.display-list .article-part.type-page .text {
  width: 100%;
}
@media (max-width: 767px) {
  .posts-container.display-list .article-part.type-products {
    text-align: center;
  }
}

.posts-container.display-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 30px;
}
.posts-container.display-tiles .image {
  padding-bottom: 67%;
  position: relative;
  width: 100%;
}
.posts-container.display-tiles .image img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
}
@media (max-width: 991px) {
  .posts-container.display-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .posts-container.display-tiles {
    grid-template-columns: repeat(1, 1fr);
  }
}
.posts-container.display-tiles .article-part.type-products {
  text-align: center;
}
.posts-container.display-tiles .article-part.type-products .image {
  overflow: inherit;
}

.posts-container.display-slider .post-wrapper {
  margin: 0 15px;
}
.posts-container.display-slider button.slick-arrow:before {
  color: var(--color--link);
}
.posts-container.display-slider .article-part.type-post .info .divider {
  display: none;
}
.posts-container.display-slider .article-part.type-post .info .categories {
  display: block;
}
.posts-container.display-slider .article-part.type-post .excerpt {
  padding: 10px 0;
}
.posts-container.display-slider .article-part.type-products {
  text-align: center;
}
@keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
  }
}
.filter-nav,
.filter-nav-full {
  margin-bottom: 40px;
}
.filter-nav button,
.filter-nav-full button {
  margin: 0 15px 10px 0;
}

#post-filter-container .post,
#post-filter-full-container .post,
.posts-container .post {
  animation-name: animateIn;
  animation-duration: 400ms;
  animation-delay: calc(var(--animation-order) * 150ms);
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.module--live-filter .filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.module--live-filter .filter-nav .filter {
  padding-right: 15px;
  margin-bottom: 10px;
}
.module--live-filter .filter-nav .filter .btn {
  margin-bottom: 0;
  border: 2px solid var(--color--accent);
}
.module--live-filter .filter-nav .filter .btn.active {
  background: white;
  color: var(--color--accent);
}
.module--live-filter .filter-nav.sidebar-categories .filter .btn {
  color: var(--color--link);
  transition: 0.15s ease color;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
}
.module--live-filter .filter-nav.sidebar-categories .filter .btn.active, .module--live-filter .filter-nav.sidebar-categories .filter .btn:hover {
  color: var(--color--link-hover);
}
@media (min-width: 768px) {
  .module--live-filter .filter-nav.sidebar-categories {
    float: left;
    flex-direction: column;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .module--live-filter .sidebar-posts.posts-container.display-tiles,
.module--live-filter .sidebar-posts .posts-container.display-tiles {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .module--live-filter .sidebar-posts.posts-container.display-tiles,
.module--live-filter .sidebar-posts .posts-container.display-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .module--live-filter .sidebar-posts.posts-container.display-tiles,
.module--live-filter .sidebar-posts .posts-container.display-tiles {
    grid-template-columns: repeat(1, 1fr);
  }
}
.module--live-filter.display-slider .filter-post-container {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .module--live-filter.display-slider .filter-nav.sidebar-categories {
    width: 20%;
    justify-content: flex-start;
  }
}
.module--live-filter.display-slider .sidebar-posts.posts-container,
.module--live-filter.display-slider .sidebar-posts .posts-container {
  max-width: 100%;
}
@media (min-width: 768px) {
  .module--live-filter.display-slider .sidebar-posts.posts-container,
.module--live-filter.display-slider .sidebar-posts .posts-container {
    width: 80%;
  }
}

.search-live-filtering .filter-nav-full {
  display: flex;
  flex-direction: column;
}
.search-live-filtering .filter-nav-full .main-filter {
  display: flex;
  flex-wrap: wrap;
}
.search-live-filtering .filter-nav-full .taxonomy-filter {
  display: none;
}
.search-live-filtering .filter-nav-full .filter {
  padding-right: 15px;
  margin-bottom: 10px;
}
.search-live-filtering .filter-nav-full .filter .btn {
  margin-bottom: 0;
  border: 2px solid var(--color--accent);
}
.search-live-filtering .filter-nav-full .filter .btn.active {
  background: white;
  color: var(--color--accent);
}
@media (min-width: 768px) {
  .search-live-filtering .filter-nav-full {
    align-items: center;
  }
}

body.menu {
  overflow: hidden;
}
body.menu.sidebar-mobile:before {
  content: "";
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.4;
  z-index: 5;
}

.head-nav-wrapper {
  position: relative;
  z-index: 5;
}
.head-nav-wrapper.fixed-scrolling {
  position: fixed;
  width: 100%;
}
.head-nav-wrapper.fixed-scrolling.sticky-active header.over-image-hero {
  background: var(--color--brand);
  color: #fff;
}

.fixed-scrolling-margin {
  margin: 1em;
}

.top-banner {
  position: relative;
}
.top-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-banner.no-btn .container {
  justify-content: center;
}
.top-banner p {
  margin: 0.5rem 0;
}
.top-banner .btn {
  margin: 0.25rem;
}
.theme-dark .top-banner {
  background-color: var(--color--brand-dark);
}
.theme-light .top-banner {
  background-color: var(--color--accent);
}
.theme-light .top-banner a {
  color: var(--color--brand-dark);
}

.top-nav {
  background-color: var(--color--brand-dark);
  position: relative;
}
.top-nav .container,
.top-nav ul.menu,
.top-nav ul.social-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.top-nav .top-bar-nav li {
  padding: 5px;
  margin-left: 20px;
  font-size: 14px;
}
.top-nav .social li,
.top-nav .search-bar {
  padding: 0 2px;
  margin: 0 5px;
}
.top-nav .social {
  margin-left: 10px;
}
.top-nav li a,
.top-nav li button {
  color: var(--color--accent);
}
@media (max-width: 767px) {
  .top-nav {
    display: none;
  }
}
.top-nav.top-theme-light {
  background-color: var(--color--accent);
}
.top-nav.top-theme-light a {
  color: var(--color--brand-dark);
}
.top-nav.top-theme-light a:hover, .top-nav.top-theme-light a:focus, .top-nav.top-theme-light a:active {
  color: var(--color--link-hover);
}

.search-bar {
  position: relative;
  display: flex;
  z-index: 10;
}
.search-bar .search-form {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10;
}
.search-bar .search-btn {
  background: none;
  padding: 0 2px;
  margin: 0 5px;
  color: var(--color--accent);
  border: none;
}
.search-bar .search-btn:hover {
  color: var(--color--link-hover);
}
.search-bar .search-btn svg {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .search-bar {
    margin-right: 30px;
  }
}

.search-form {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
}
.search-form:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.8;
}
.search-form .search-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  height: 100%;
  width: 85%;
  max-width: 700px;
  margin: auto;
}
.search-form .close-btn {
  text-align: right;
  padding: 0 10px 10px;
  width: 100%;
}
.search-form .close-btn .svg-btn-wrapper {
  font-size: 20px;
  color: white;
  cursor: pointer;
}
.search-form form {
  display: flex;
  align-items: baseline;
  width: 100%;
  border: 2px solid var(--color--link);
}
.search-form form input {
  border-radius: 0;
  background: none;
  line-height: 1;
  font-size: 20px;
  padding: 15px;
  color: white;
  border: none;
}
.search-form form input:hover, .search-form form input:focus, .search-form form input:active {
  color: white;
  box-shadow: none;
}
.search-form form input[type=search] {
  background: none;
  text-align: left;
}
.search-form form input[type=submit] {
  background: var(--color--link);
}

.header-wrapper {
  position: relative;
}

header {
  background-color: var(--color--brand-dark);
  transition: 0.3s ease background;
}
.theme-light header {
  background-color: var(--color--brand-light);
}
.theme-light header a,
.theme-light header button {
  color: var(--color--brand-dark);
}
@media (max-width: 767px) {
  header {
    padding: 0 !important;
  }
}
header.over-image-hero {
  position: absolute;
  width: 100%;
  z-index: 2;
  background: none;
}
header.nav-always-mobile .nav-block,
header.nav-always-mobile .misc-menu {
  display: none;
}
header.nav-always-mobile .navbar-toggle,
header.nav-always-mobile .mobile-buttons {
  display: block !important;
}
header .container,
header ul.menu,
header ul.social-menu,
header .nav-main-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .container {
  justify-content: space-between;
  position: relative;
}
header .header-part {
  display: flex;
  flex-direction: column;
}
header .header-part .main-row {
  margin-left: -25px;
}
header .header-part.part-2 {
  text-align: center;
  align-items: center;
}
header .header-part.part-2.col .main-row {
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
  width: max-content;
}
header .header-part.part-3 {
  align-items: flex-end;
}
header .header-part.part-3 .main-row {
  margin-right: -5px;
}
header .header-part .main-row {
  display: flex;
}
header .header-part .header-logo {
  position: relative;
  z-index: 3;
  padding: 1em 0;
}
header .header-part .header-logo img {
  max-height: 60px;
}
header .header-part .header-logo span.logo-container object {
  height: 60px;
  width: 60px;
}
header .header-part .top-nav {
  display: flex;
  align-items: center;
  background: none;
  padding: 1em 0;
}
header .header-part .top-nav.smaller {
  margin-bottom: -20px;
  padding: 20px 0 0;
}
header .header-part .top-nav.smaller li {
  font-size: 15px;
  line-height: 1rem;
}
header .header-part .top-nav.smaller .misc-menu {
  padding: 0;
}
header .header-part .main-row nav.nav-menu {
  padding: 1em 0;
}
header .header-part .main-row ul.menu {
  justify-content: flex-end;
}
header .header-part .main-row ul.menu li {
  position: relative;
  margin-left: 20px;
}
header .header-part .main-row ul.menu li a {
  padding: 15px 5px;
  display: block;
}
header .header-part .main-row ul.menu ul.sub-menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  position: absolute;
  background-color: var(--color--brand-light);
  top: 100%;
  left: 50%;
  margin-left: -100px;
  z-index: -1;
  min-width: 200px;
}
.theme-light header .header-part .main-row ul.menu ul.sub-menu {
  background-color: var(--color--brand-dark);
}
header .header-part .main-row ul.menu ul.sub-menu li {
  margin: 0;
  padding: 0;
  line-height: 1;
}
header .header-part .main-row ul.menu ul.sub-menu li:hover {
  background-color: var(--color--accent);
  transition: 0.15s ease all;
}
header .header-part .main-row ul.menu ul.sub-menu li:hover > a {
  color: white;
}
header .header-part .main-row ul.menu ul.sub-menu li a {
  visibility: hidden;
  color: var(--color--text);
  padding: 10px 15px;
  margin: 0;
  display: block;
  text-align: center;
}
.theme-light header .header-part .main-row ul.menu ul.sub-menu li a {
  color: var(--color--brand-light);
}
header .header-part .main-row ul.menu ul.sub-menu:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--color--brand-light);
  transform: rotate(45deg);
  top: -5px;
  left: 50%;
  margin-left: -10px;
}
.theme-light header .header-part .main-row ul.menu ul.sub-menu:before {
  background: var(--color--brand-dark);
}
header .header-part .main-row ul.menu ul.sub-menu ul.sub-menu {
  position: absolute;
  left: 100%;
  margin: 0;
  top: 0;
}
header .header-part .main-row ul.menu ul.sub-menu ul.sub-menu:before {
  left: 0px;
  top: 8px;
}
header .header-part .main-row ul.menu li.menu-item:hover > ul.sub-menu {
  transition: 0.15s ease all;
  transform: translateY(0px);
  opacity: 1;
  z-index: 1;
}
header .header-part .main-row ul.menu li.menu-item:hover > ul.sub-menu, header .header-part .main-row ul.menu li.menu-item:hover > ul.sub-menu > li > a {
  visibility: visible;
}
header .header-part .misc-menu {
  display: flex;
}
header .header-part .misc-menu.not-empty {
  margin-left: 20px;
  padding: 1em 0;
}
header .header-part nav.social {
  display: flex;
}
header .header-part nav.social li {
  padding: 0 2px;
  margin: 0 5px;
}
header .mobile-buttons {
  position: absolute;
  right: 30px;
  z-index: 10;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
header .mobile-buttons.mobile-left {
  right: unset;
}
header .mobile-buttons .search-bar {
  margin-right: 10px;
}
header .navbar-toggle {
  padding: 0;
  height: 22px;
  width: 30px;
  background: none;
  outline: 0;
  border: 0;
}
header .navbar-toggle .icon-bar {
  background: #ffffff;
  position: absolute;
  width: 30px;
  height: 4px;
  right: 0;
  transition: 0.2s linear;
}
header .navbar-toggle .icon-bar:nth-child(1) {
  transform: rotate(45deg);
}
header .navbar-toggle .icon-bar:nth-child(2) {
  opacity: 0;
}
header .navbar-toggle .icon-bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
  opacity: 1;
}
header .navbar-toggle.closed .icon-bar:nth-child(1) {
  top: 5px;
  transform: rotate(0);
}
header .navbar-toggle.closed .icon-bar:nth-child(2) {
  transform: rotate(0);
  width: 50%;
  opacity: 1;
}
header .navbar-toggle.closed .icon-bar:nth-child(3) {
  opacity: 0;
}
header .mobile-menu #mobile-nav ul,
header .mobile-menu .top-bar-nav ul {
  flex-direction: column;
}
header .mobile-menu #mobile-nav ul li,
header .mobile-menu .top-bar-nav ul li {
  margin: 8px 0;
  font-size: 22px;
  width: 100%;
}
header .mobile-menu #mobile-nav ul li a,
header .mobile-menu .top-bar-nav ul li a {
  width: 100%;
  display: block;
  color: white;
}
header .mobile-menu #mobile-nav ul ul.sub-menu li,
header .mobile-menu .top-bar-nav ul ul.sub-menu li {
  font-size: 0.8em;
  margin-bottom: 0;
}
header .mobile-menu #mobile-nav ul ul.sub-menu li a,
header .mobile-menu .top-bar-nav ul ul.sub-menu li a {
  color: var(--color--accent);
}
header .mobile-menu .social {
  margin-top: 15px;
}
header .mobile-menu .social li {
  margin: 0 10px;
}
header .mobile-menu .social li a {
  color: var(--color--accent);
}
header .mobile-menu.overlay {
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
header .mobile-menu.overlay .mobile-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
header .mobile-menu.overlay .mobile-wrapper:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--color--brand-dark);
  top: 0;
  left: 0;
  opacity: 95%;
  z-index: -1;
}
header .mobile-menu.overlay #mobile-nav,
header .mobile-menu.overlay .top-bar-nav {
  width: 100%;
  padding: 0 30px;
}
header .mobile-menu.sidebar {
  display: block;
  position: fixed;
  top: 0;
  right: -450px;
  height: 100vh;
  width: 450px;
  max-width: 100vw;
  background-color: var(--color--accent);
  padding: 10em 4em 0;
  z-index: 3;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .mobile-menu.sidebar.open {
  right: 0;
}
header .mobile-menu.sidebar ul.menu > li > a {
  font-weight: 700;
}
header .mobile-menu.sidebar #mobile-nav ul,
header .mobile-menu.sidebar .top-bar-nav ul {
  align-items: baseline;
}
header .mobile-menu.sidebar .social li {
  margin: 0 20px 0 0;
}
header .mobile-menu.drop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color--brand-dark);
  z-index: 1;
  text-align: center;
}
header .mobile-menu.drop .mobile-wrapper {
  padding: 100px 2rem 2rem;
  height: 100vh;
}
header .mobile-menu.drop #mobile-nav ul {
  text-align: center;
}
header .mobile-menu.drop .social ul {
  justify-content: center;
}
@media (min-width: 768px) {
  header .mobile-buttons {
    display: none;
  }
}
@media (max-width: 767px) {
  header .header-part .main-row,
header .header-part .top-nav {
    display: none;
  }
}

header {
  /*
  	nav.nav-menu {
  		position: fixed;
  	}
  */
}
header .header-part.part-2 {
  justify-content: center;
}
header .nav-bg {
  position: absolute;
  transition: 0.3s ease all;
  transform: scale(0);
}
header .nav-bg.open {
  transform: scale(1);
}
header .nav-bg .nav-bg-circle {
  background: #fbb040;
  border-radius: 50%;
  position: absolute;
  width: 200vw;
  height: 200vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .mobile-menu.collapsed-menu .mobile-wrapper {
  background: rgba(242, 170, 62, 0.98);
}
header .mobile-menu.collapsed-menu .mobile-wrapper:before {
  content: none;
}
header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav {
  max-width: 600px;
  padding: 0;
}
header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu {
  flex-direction: row;
}
@media (max-width: 767px) {
  header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu {
    flex-direction: column;
  }
}
header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu li {
  width: 50%;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu li a {
  color: #fff;
  font-size: 2.75em;
  font-family: "Surveyor Text A", "Surveyor Text B";
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 0.5em 0;
}
@media (max-width: 767px) {
  header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu li a {
    padding: 0.2em 0;
  }
}
header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu li a:hover {
  color: white;
}
header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu li:nth-of-type(1) {
  -webkit-animation-delay: 0.125s;
  animation-delay: 0.125s;
}
header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu li:nth-of-type(2) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu li:nth-of-type(3) {
  -webkit-animation-delay: 0.375s;
  animation-delay: 0.375s;
}
header .mobile-menu.collapsed-menu .mobile-wrapper #mobile-nav ul.menu li:nth-of-type(4) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
header .mobile-menu.collapsed-menu .mobile-wrapper .top-bar-nav {
  display: none;
}
header .mobile-menu.collapsed-menu .mobile-wrapper span.tagline {
  color: #fff;
  font-size: 2.2em;
  display: block;
  padding-top: 40px;
  letter-spacing: 0;
  line-height: 1em;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.675s;
  animation-delay: 0.675s;
}

.page-home header.home-hide-logo .header-logo {
  display: none;
}
.page-home #hero .hero-text .home-title {
  font-size: 5vw;
}
@media (max-width: 767px) {
  .page-home #hero .hero-text .home-title {
    font-size: 10vw;
  }
  .page-home #hero .hero-text .home-title br {
    display: none;
  }
}
@media (min-width: 768px) {
  .page-home #hero .hero-text .home-title {
    font-size: 6vw;
  }
}
@media (min-width: 1200px) {
  .page-home #hero .hero-text .home-title {
    font-size: 4.1rem;
  }
}
@media (min-width: 1441px) {
  .page-home #hero .hero-text .home-title {
    font-size: 5.1rem;
  }
}
.page-home #hero .hero-text p {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .page-home #hero .hero-text p {
    font-size: 1.2rem;
  }
}
@media (max-width: 1199px) {
  .page-home .module.module--text_and_image_block.module-full .container {
    flex-direction: column-reverse !important;
    padding: 0 30px;
  }
  .page-home .module.module--text_and_image_block.module-full .container div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .page-home .module.module--text_and_image_block.module-full .container img {
    padding-bottom: 0px;
  }
}
.page-home .module.module--text_and_image_block .container .module--text {
  padding-left: 15px;
}
.page-home #more-than .module--image {
  padding: 2% 5% 2% 0;
}
@media (max-width: 1199px) {
  .page-home #more-than .module--image {
    padding: 5%;
  }
}
.page-home #more-than .module--image img {
  border-radius: 10px;
}
.page-home .module.module--testimonials .testimonial {
  padding: 30px 0;
  margin: 0 auto;
}
.page-home p {
  font-size: 1.2rem;
}

.work {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
}
.work .project {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  height: 30vw;
  padding: 0;
  background-color: orange;
  float: left;
  z-index: 4;
}
.page-home .work .project:not(.featured) {
  display: none;
}
.work .project .project-image {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0px;
  z-index: 1;
  opacity: 1;
  transition: opacity 400ms ease 0s;
}
@media (max-width: 849px) {
  .work .project .project-image {
    position: relative;
  }
}
.work .project .project-video video,
.work .project .project-video-mobile video {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 849px) {
  .work .project .project-video {
    display: none;
  }
}
.work .project .thumbnail-feature {
  width: 80%;
  max-height: 90%;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.2s linear;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
}
@media (min-width: 850px) {
  .work .project .thumbnail-feature:hover {
    transform: scale(1.05);
  }
  .work .project .thumbnail-feature:hover .project-image {
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .work .project {
    height: 45vw;
  }
}
@media (max-width: 680px) {
  .work .project {
    height: 100vw;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .work {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media (max-width: 680px) {
  .work {
    height: auto;
    width: 100%;
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}

.standard.standard-sidebar .sidebar {
  padding: 30px 0 0;
}
.standard.standard-sidebar .sidebar .menu-item {
  display: none;
}
.standard.standard-sidebar .sidebar .menu-item a {
  display: block;
  margin-bottom: 10px;
  line-height: 1.2;
}
.standard.standard-sidebar .sidebar .menu-item ul.sub-menu {
  padding-left: 10px;
}
.standard.standard-sidebar .sidebar .menu-item.current_page_item,
.standard.standard-sidebar .sidebar .menu-item.current-page-ancestor {
  display: block;
}
.standard.standard-sidebar .sidebar .menu-item.current_page_item .menu-item,
.standard.standard-sidebar .sidebar .menu-item.current-page-ancestor .menu-item {
  display: block;
}
.standard.standard-sidebar .sidebar .menu-item.current-page-ancestor .current_page_item > a {
  display: block;
  font-weight: 700;
}
.standard.standard-sidebar .sidebar .current_page_item > a {
  font-weight: 700;
}
.standard.standard-sidebar .body-content {
  padding: 0;
}
.standard.standard-sidebar .body-content section {
  padding: 0 0 45px;
}
.standard.standard-sidebar .body-content .container {
  margin: 0;
  padding: 0;
  max-width: 100%;
  width: 100%;
}
.standard.standard-sidebar .body-content .row {
  margin: 0;
}
@media (min-width: 768px) {
  .standard.standard-sidebar .body-content {
    padding: 0 0 0 60px;
  }
}
.standard#about h2 {
  color: #fcb040;
}
.standard#about .column p {
  margin: 0 0 1.65em;
}
.standard#about .orange-title {
  padding-top: 30px;
  padding-bottom: 0;
}
.standard#about .orange-title:last-of-type {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .standard#about #about-col {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .standard#about #about-col .columns {
    display: block;
  }
}
.standard#about #about-col .columns .column {
  padding: 30px 45px 30px 0;
}
@media (max-width: 767px) {
  .standard#about #about-col .columns .column {
    padding: 0px 0px 0px 0;
  }
}
@media (max-width: 767px) {
  .standard#about #about-col .columns h2 {
    padding-bottom: 30px;
  }
  .standard#about #about-col .columns h2:last-of-type {
    padding-top: 60px;
  }
}
.standard#team #hero {
  min-height: 22vw !important;
  padding-bottom: 0rem;
}
.standard#team #hero .arrow {
  bottom: 0;
}
.standard#team .quote h2 {
  color: #fcb040;
  padding-top: 0;
}
.standard#team .testimonials.list .module--text.label-top h2 {
  padding: 0;
}
.standard#team .testimonials.list .module--text.label-top div {
  margin: 0 0 0.5rem;
}
.standard#team .testimonials.list .module--text.label-top div .cite {
  color: #fcb040;
  font-weight: 300;
}
@media (max-width: 767px) {
  .standard#team .testimonials.list .testimonial {
    display: block;
  }
  .standard#team .testimonials.list .testimonial > div {
    padding: 0;
    margin: 30px auto;
    text-align: center;
  }
  .standard#team .testimonials.list .testimonial > div.image img {
    width: 250px;
    height: 250px;
  }
  .standard#team .testimonials.list .testimonial > div .quote {
    text-align: left;
    margin-top: 15px;
  }
}
.standard#team .testimonials.carousel .testimonial {
  padding: 0 0 3rem;
}

.parallax-scroll-all .module {
  /*
  		&.has-bg-image .bg-wrapper img,
  		&.wide-columns .bg-wrapper img,
  		&.sep-reg-columns .bg-wrapper img,
  		&.sep-wide-columns .bg-wrapper img {
  			transform: translate(-50%, 0px);
  		}
  */
  /*
  		&.module--columns.wide-columns,
  		&.module--columns.sep-reg-columns,
  		&.module--columns.sep-wide-columns {
  */
  /*
  		    .bg-wrapper img {
  			    height: 200%;
  			    transform: translate(-50%, 0px);
  			}
  */
}
.parallax-scroll-all .module .bg-wrapper img {
  bottom: 0;
  left: 50%;
  height: 200%;
  transform: translate(-50%, 0px);
}

.module {
  position: relative;
  overflow: hidden;
  /*
  	&.module--map {
  		.map-stat {
  			color: #02c576;
  			padding: 5px 0;
  			font-style: italic;
  		}
  		.map-image {
  			@media (min-width:767px) {
  				padding-left: 60px;
  			}
  		}
  		.map-image img {
  			height: 100%;
  			object-fit: contain;
  		}
  		.row {
  			align-items: center;
  		}
  	}
  */
}
.module .container {
  position: relative;
  z-index: 1;
}
.module .bg-wrapper {
  position: absolute;
  width: 102%;
  height: 102%;
  top: 0;
  left: -1px;
  overflow: hidden;
}
.module .bg-wrapper img.bg,
.module .bg-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}
.module img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.module .module--title h2.title,
.module .module--text h2.title {
  padding-top: 0;
}
.module .module--title h2.title.only-element,
.module .module--text h2.title.only-element {
  padding: 0;
}
.module .module--title {
  width: 100%;
  text-align: center;
}
.module .module--text {
  margin: auto;
}
.module .section-button {
  padding-top: 30px;
  text-align: center;
}
.module.white-text {
  color: white;
}
.module.module--simple-text {
  /*
  		h2 {
  			color:var(--color--brand-dark);
  		}
  		&.white-text h2 {
  			color:white;
  		}
  */
}
.module.module--simple-text .module--title {
  text-align: left;
}
.module.module--simple-text.has-bg-image .bg-wrapper img {
  height: 190%;
}
.module.module--simple-text.has-bg-image .module--title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  height: 30vw;
}
@media (max-width: 600px) {
  .module.module--simple-text.has-bg-image .module--title {
    height: 120vw;
  }
}
.module.module--featured-block .module--title {
  text-align: initial;
}
.module.module--featured-block.full-height {
  min-height: 100vh;
  display: flex;
}
.module.module--featured-block.featured-width-half .module--text {
  width: 50%;
}
@media (max-width: 767px) {
  .module.module--featured-block.featured-width-half .module--text {
    width: 100%;
  }
}
.module.module--featured-block.featured-width-third .module--text {
  width: 33%;
}
@media (max-width: 767px) {
  .module.module--featured-block.featured-width-third .module--text {
    width: 100%;
  }
}
.module.module--featured-block.featured-width-two-thirds .module--text {
  width: 66%;
}
@media (max-width: 767px) {
  .module.module--featured-block.featured-width-two-thirds .module--text {
    width: 100%;
  }
}
.module.module--featured-block.featured-position-right .module--text {
  margin-right: 0;
}
.module.module--featured-block.featured-position-left .module--text {
  margin-left: 0;
}
.module.module--columns-block.column-wide {
  padding: 0;
}
.module.module--columns-block.column-wide .container {
  max-width: unset;
  padding: 0;
}
.module.module--columns-block .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow-wrap: break-word;
}
.module.module--columns-block .columns .column {
  padding: 30px;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 840px) {
  .module.module--columns-block .columns {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    grid-auto-rows: minmax(100px, auto);
    grid-gap: 20px !important;
  }
  .module.module--columns-block .columns .column {
    padding: 20px;
  }
}
.module.module--single-post.centered-img {
  text-align: center;
}
.module.module--single-post.centered-img .container {
  position: static;
}
.module.module--single-post.centered-img .article-part .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.module.module--single-post.centered-img .article-part .image img {
  width: 100%;
  height: 100%;
}
.module.module--single-post.centered-img .article-part .text {
  position: relative;
}
.module.module--single-post.centered .article-part .image {
  display: none;
}
@media (min-width: 768px) {
  .module.module--single-post.split-r .article-part,
.module.module--single-post.split-r .article-part > a, .module.module--single-post.split-l .article-part,
.module.module--single-post.split-l .article-part > a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .module.module--single-post.split-r .article-part .image,
.module.module--single-post.split-r .article-part .text,
.module.module--single-post.split-r .article-part > a .image,
.module.module--single-post.split-r .article-part > a .text, .module.module--single-post.split-l .article-part .image,
.module.module--single-post.split-l .article-part .text,
.module.module--single-post.split-l .article-part > a .image,
.module.module--single-post.split-l .article-part > a .text {
    width: 50%;
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .module.module--single-post.split-r .article-part .text,
.module.module--single-post.split-r .article-part > a .text {
    padding-left: 45px;
  }
}
@media (min-width: 768px) {
  .module.module--single-post.split-l .article-part,
.module.module--single-post.split-l .article-part > a {
    flex-direction: row-reverse;
  }
  .module.module--single-post.split-l .article-part .text,
.module.module--single-post.split-l .article-part > a .text {
    padding-right: 45px;
  }
}
.module.module--gallery {
  /*
  		h2 {
  			color:var(--color--brand-dark);
  		}
  */
}
.module.module--gallery .gallery {
  display: grid;
}
.module.module--gallery .gallery .gallery-part {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.module.module--gallery .gallery .gallery-part > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.module.module--gallery .gallery .gallery-part .image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.module.module--gallery .gallery .gallery-part .image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.module.module--gallery .gallery .gallery-part .image.img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module.module--gallery .gallery .gallery-part .caption {
  transition: 0.4s ease all;
}
.module.module--gallery .gallery .gallery-part .caption.hover-slide-up {
  transform: translate(0, 100%);
  transition: 0.4s ease all;
}
.module.module--gallery .gallery .gallery-part .caption.hover-fade {
  opacity: 0;
  transition: 0.3s ease all;
}
.module.module--gallery .gallery .gallery-part:hover .caption.hover-slide-up {
  transform: translate(0, 0);
}
.module.module--gallery .gallery .gallery-part:hover .caption.hover-fade {
  opacity: 1;
}
.module.module--gallery .gallery.caption-none .caption {
  display: none;
}
.module.module--gallery .gallery.caption-below .image {
  height: auto;
}
.module.module--gallery .gallery.caption-overlay-f .image, .module.module--gallery .gallery.caption-overlay-t .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.module.module--gallery .gallery.caption-overlay-f .caption, .module.module--gallery .gallery.caption-overlay-t .caption {
  position: relative;
  padding: 15px;
  width: 100%;
  margin-top: auto;
}
.module.module--gallery .gallery.caption-overlay-f .caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 767px) {
  .module.module--gallery .gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 500px) {
  .module.module--gallery .gallery {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.module.module--testimonials .testimonial {
  min-height: 150px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
}
.module.module--testimonials .testimonial .image {
  max-width: 100%;
  width: 150px;
  height: 150px;
}
.module.module--testimonials .testimonial .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.module.module--testimonials .testimonial .module--text {
  text-align: left;
  display: table;
  max-width: 100%;
  flex: 1;
}
.module.module--testimonials .testimonial .module--text .quote {
  display: inline;
  margin-bottom: 15px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .module.module--testimonials .testimonial .module--text .quote {
    display: block;
  }
}
.module.module--testimonials .testimonial .module--text .quote h1 {
  display: inherit;
}
@media (max-width: 767px) {
  .module.module--testimonials .testimonial .module--text .quote h1 {
    padding-top: 0;
  }
}
.module.module--testimonials .testimonial .module--text .info {
  display: inline;
}
@media (max-width: 767px) {
  .module.module--testimonials .testimonial .module--text .info {
    display: block;
    font-size: 1.2rem;
  }
}
.module.module--testimonials .testimonial .module--text .info .cite {
  color: #fcb040;
  padding-left: 10px;
}
.module.module--testimonials .testimonial .module--text .info .label {
  font-style: italic;
}
.module.module--testimonials .testimonial .slick-dots {
  bottom: 0;
}
.module.module--testimonials .testimonial.has-image .module--text {
  padding-left: 30px;
  text-align: left;
}
.module.module--testimonials .testimonials {
  padding: 30px 0;
}
@media (max-width: 767px) {
  .module.module--testimonials .testimonials {
    padding: 0;
  }
}
.module.module--testimonials .testimonials.carousel {
  margin: auto;
}
.module.module--testimonials .testimonials.list-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.module.module--testimonials .testimonials.list-2 .module--text {
  margin: 0;
}
@media (max-width: 991px) {
  .module.module--testimonials .testimonials.list-2 {
    display: block;
  }
}
.module.module--testimonials .testimonials.list .image {
  width: 250px;
  height: 250px;
}
.module.module--testimonials .testimonials.list .module--text {
  padding-left: 0px;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .module.module--testimonials .slick-slider .slick-arrow {
    display: none !important;
  }
}
.module.module--text_and_image_block .container {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .module.module--text_and_image_block .container {
    flex-wrap: wrap;
  }
  .module.module--text_and_image_block .container img {
    padding-bottom: 40px;
  }
}
.module.module--text_and_image_block .container[data-direction=row-reverse] {
  flex-direction: row-reverse;
}
@media (min-width: 1200px) {
  .module.module--text_and_image_block .container[data-thirds=true] .image {
    flex: 0 0 66%;
    max-width: 66%;
  }
  .module.module--text_and_image_block .container[data-thirds=true] .module--text {
    flex: 0 0 34%;
    max-width: 34%;
  }
}
@media (min-width: 992px) {
  .module.module--text_and_image_block .container[data-thirds=true] .image {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .module.module--text_and_image_block .container[data-thirds=true] .module--text {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
.module.module--text_and_image_block .container .module--text {
  padding-left: 60px;
}
.module.module--text_and_image_block .container[data-direction=row-reverse] .module--text {
  padding-left: 15px;
  padding-right: 60px;
}
.module.module--text_and_image_block.module-full {
  padding: 0;
}
.module.module--text_and_image_block.module-full .module--title.module--text {
  padding: 60px 0 30px;
}
.module.module--text_and_image_block.module-full .container {
  margin: auto;
  padding: 0;
}
.module.module--text_and_image_block.module-full .container .image {
  padding: 0;
}
.module.module--text_and_image_block.module-full .container .module--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.module.module--text_and_image_block.rounded-image .image.col-md-6 {
  max-width: 450px;
  max-height: 450px;
  padding: 0;
}
.module.module--text_and_image_block.rounded-image .image.col-md-6 .image-container {
  padding-bottom: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.module.module--text_and_image_block.rounded-image .image.col-md-6 img {
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  max-width: 450px;
  max-height: 450px;
  transform: translate(0%, -50%);
  transition: 0.4s ease all;
}
.module.module--text_and_image_block.rounded-image .image.col-md-6 img:hover {
  transform: translate(0%, -50%) scale(1.1);
}
.module.module--text_and_image_block.rounded-image .module--text {
  margin-right: 0;
}
.module.module--text_and_image_block.rounded-image[data-direction=row-reverse] .module--text {
  margin-left: 0;
  margin-right: auto;
}
.module.module--text_and_image_block.rounded-image[data-direction=row-reverse] .image.col-md-6 img {
  left: unset;
  right: 0;
}
@media (max-width: 767px) {
  .module.module--text_and_image_block.rounded-image .image.col-md-6 {
    margin: 0 auto calc(var(--module--padding) / 2);
  }
}

.body-content .bg-wrapper {
  display: none;
}

.project-single .container,
.project-single .single-project-content .container {
  max-width: 1500px;
}
@media (max-width: 767px) {
  .project-single section {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .project-single #content > .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .project-single #content > .container {
    padding: 0px;
  }
}
.project-single .module--text_and_image_block .container {
  max-width: 100%;
}
.project-single .module--text_and_image_block + .module--text_and_image_block .container {
  flex-direction: row-reverse;
}
.project-single #hero {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .project-single .module--simple-text .container:not(.wide-container),
.project-single #hero .container:not(.wide-container) {
    max-width: 100%;
    padding: 0px 50px;
  }
}
@media (min-width: 992px) {
  .project-single .module--simple-text,
.project-single #hero {
    max-width: 90%;
    padding: 0 60px;
    margin: auto;
  }
}
@media (min-width: 1200px) {
  .project-single .module--simple-text .container:not(.wide-container),
.project-single #hero .container:not(.wide-container) {
    max-width: var(--module--width);
  }
}
@media (min-width: 1441px) {
  .project-single .module--simple-text .container:not(.wide-container),
.project-single #hero .container:not(.wide-container) {
    max-width: var(--module--max-width);
  }
}
@media (max-width: 767px) {
  .project-single .module--simple-text h1,
.project-single #hero h1 {
    font-size: 1.9em;
  }
}
@media (max-width: 450px) {
  .project-single .module--simple-text h1,
.project-single #hero h1 {
    font-size: 1.6em;
  }
}
@media (max-width: 767px) {
  .project-single .module.module--text_and_image_block .container img {
    padding-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .project-single .module.module--text_and_image_block .container .module--text {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .project-single .module.module--text_and_image_block .container .module--text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .project-single .module--text_and_image_block {
    padding-top: 0rem;
  }
}
.project-single .module--text_and_image_block .module--image,
.project-single .module--video-block {
  padding: 2.1rem;
}
@media (max-width: 575px) {
  .project-single .module--text_and_image_block .module--image,
.project-single .module--video-block {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 575px) {
  .project-single .module--text_and_image_block .module--image .video-bg,
.project-single .module--video-block .video-bg {
    background: black;
    display: none;
  }
  .project-single .module--text_and_image_block .module--image .video-mobile,
.project-single .module--video-block .video-mobile {
    display: block;
  }
}
@media (min-width: 576px) {
  .project-single .module--text_and_image_block .module--image .video-mobile,
.project-single .module--video-block .video-mobile {
    display: none;
  }
}
.project-single .module--text_and_image_block .module--image img,
.project-single .module--text_and_image_block .module--image video,
.project-single .module--video-block img,
.project-single .module--video-block video {
  width: 100%;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .project-single .module--text_and_image_block .module--image img,
.project-single .module--text_and_image_block .module--image video,
.project-single .module--video-block img,
.project-single .module--video-block video {
    border-radius: 0.5rem;
  }
}
@media (max-width: 991px) {
  .project-single .module .container {
    padding: 0px;
  }
}
@media (max-width: 767px) {
  .project-single .module--simple-text .module--text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.project-single h2 {
  color: #fcb040;
  font-size: 2.3rem;
}
@media (max-width: 767px) {
  .project-single h2 {
    padding: 0;
    font-size: 1.9rem;
  }
  .project-single h2 + p {
    margin-top: 1rem;
  }
}
.project-single p {
  font-size: 1.5rem;
}
@media (max-width: 575px) {
  .project-single p {
    font-size: 1.2rem;
  }
}
.project-single .project-nav {
  text-align: center;
  padding: 0 calc(30px + 2.1rem);
}
@media (max-width: 849px) {
  .project-single .project-nav {
    padding: 0 2rem;
  }
  .project-single .project-nav h3 {
    font-size: 1rem;
    padding: 0 0.25rem;
  }
}
.project-single .text-slide {
  display: flex;
  justify-content: space-between;
}

#post {
  background: #dddddd;
}
#post, #post p {
  color: black;
  font-size: 1.2rem;
  font-weight: 300;
}
#post h2, #post a, #post strong {
  color: #fcb040;
}
#post .tags, #post .back, #post .split {
  display: none;
}

footer.footer-wide .container,
.copyright-bar.footer-wide .container {
  max-width: 100%;
}
@media (min-width: 768px) {
  footer.footer-wide .container,
.copyright-bar.footer-wide .container {
    padding: 0 60px;
  }
}
footer a,
.copyright-bar a {
  color: white;
}
footer a:hover,
.copyright-bar a:hover {
  color: var(--color--link-hover);
}
footer .privacy-policy a,
.copyright-bar .privacy-policy a {
  margin: 0 10px;
}

footer {
  background-color: #363636;
  padding: 60px 0;
  animation-delay: 0s;
}
footer .container {
  max-width: 100%;
}
footer .footer-cols {
  width: 100%;
}
@media (max-width: 575px) {
  footer .footer-cols {
    margin: 0 auto;
  }
}
footer .footer-cols .column-part {
  padding: 0 20px;
}
@media (max-width: 575px) {
  footer .footer-cols .column-part {
    padding: 0;
  }
}
footer .footer-cols .column-part.align-right {
  text-align: right;
}
footer .footer-cols .column-part.align-left {
  text-align: left;
}
footer .footer-cols .column-part.align-center {
  text-align: center;
}
footer .footer-cols .column-part:last-child .content:first-child {
  text-align: end;
}
footer .footer-cols .column-part:last-child .content:first-child img {
  max-width: 60px;
}
footer .footer-cols .column-part .content:first-child {
  margin-bottom: 5em;
}
@media (max-width: 575px) {
  footer .footer-cols.row .column-part {
    text-align-last: center;
  }
  footer .footer-cols.row .content h2 {
    padding-bottom: 10px;
  }
  footer .footer-cols.row .content:first-child {
    margin-bottom: 1em;
  }
  footer .footer-cols.row .menu li {
    padding: 0 10px 5px;
  }
  footer .footer-cols.row .column-part:last-child {
    flex-direction: column;
  }
  footer .footer-cols.row .column-part:last-child .content:first-child img {
    padding-top: 10px;
  }
}
footer .footer-cols h2 {
  color: #fcb040;
  padding: 0 0 0.5rem;
}
footer .footer-cols p {
  color: white;
}
footer .footer-cols p img {
  max-width: 25%;
  width: 100%;
  height: auto;
}
footer .footer-cols .contact-info p {
  font-size: 0.875rem;
}
@media (max-width: 575px) {
  footer .footer-cols .contact-info {
    display: none;
  }
}
footer .footer-cols .social-icons {
  margin-bottom: 1rem;
}
footer .footer-cols .social-icons a {
  margin: 0 5px;
  font-size: 1.6em;
}
footer .footer-cols .menu-footer-menu-pages-container {
  text-align: end;
}
footer .footer-cols ul.menu {
  display: inline-grid;
  grid-gap: 0.25rem;
  grid-template-columns: repeat(2, 1fr);
}
footer .footer-cols ul.menu li {
  display: flex;
  justify-content: center;
  padding-left: 60px;
  font-size: 0.875rem;
}
footer .footer-cols.vertical-centered .column-part {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.copyright-bar {
  padding: 15px 0;
  background: var(--color--brand);
  text-align: center;
}
.copyright-bar.multi-item .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright-bar p {
  color: white;
  margin: 0;
  font-size: 14px;
}

#scroll-top-btn {
  opacity: 0;
  z-index: -1;
  position: fixed;
  bottom: 20px;
  right: 30px;
  background: none;
  padding: 5px;
  border: none;
}
#scroll-top-btn.visible {
  opacity: 1;
  z-index: 99;
}
#scroll-top-btn svg {
  font-size: 50px;
  color: var(--color--accent);
}

/*# sourceMappingURL=custom.css.map */
