@import url(https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap);
/*
 * Colors
*/
/*
* Measurements
*/
/*   
 * Screen sizes
*/
/*   
 * Media queries
*/
.hide-small {
  display: none; }
  @media screen and ((min-width: 900px)) {
    .hide-small {
      display: block; } }

.hide-large {
  display: block; }
  @media screen and ((min-width: 900px)) {
    .hide-large {
      display: none; } }

.button, button {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  line-height: 1.5em;
  background: #69803C;
  color: #F9FBF6;
  margin-top: 2rem;
  display: inline-block;
  border-radius: 10px;
  min-width: 230px;
  max-width: 100%;
  border: none; }
  .button:hover, button:hover {
    background: #3A4721;
    color: #F9FBF6;
    cursor: pointer; }
  .button:visited, button:visited {
    color: #F9FBF6; }
  .button.small, button.small {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.03em; }
  .button.full-width, button.full-width {
    width: 100%;
    min-width: initial; }
  @media (max-width: 720px) {
    .button, button {
      min-width: initial;
      width: 100%;
      padding: 1rem; }
      .button.small, button.small {
        min-width: initial;
        width: 100%; }
      .button.full-width, button.full-width {
        min-width: initial;
        width: 100%; } }

table {
  border-collapse: collapse;
  border: none;
  width: 100%;
  margin-bottom: 0;
  border-radius: 5px;
  overflow: hidden; }
  @media (max-width: 720px) {
    table {
      display: block;
      overflow-x: auto; } }
  table tr {
    border: none;
    padding: 0px 20px;
    font-size: 14px;
    text-align: left;
    background: #A6A6A6;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    line-height: 19px; }
    table tr:nth-child(even) {
      background: #D4D4D4; }
    table tr:first-child {
      background: #3c3c3c;
      color: #FFF; }
  table td {
    border: none;
    padding: 1rem;
    white-space: nowrap; }

/*! normalize.css v1.0.0 | MIT License | git.io/normalize */
* {
  box-sizing: border-box; }

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block; }

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

audio:not([controls]) {
  display: none; }

[hidden] {
  display: none; }

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Force vertical scrollbar in non-IE
 * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0;
  font-size: 1em;
  line-height: 1.4; }

body, button, input, select, textarea {
  font-family: sans-serif; }

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection {
  background: #69803C;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #69803C;
  color: #fff;
  text-shadow: none; }

/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active {
  outline: 0; }

/* =============================================================================
   Typography
   ========================================================================== */
b, strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

dfn {
  font-style: italic; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

ins {
  background: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold; }

/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }

q:before, q:after {
  content: "";
  content: none; }

small {
  font-size: 85%; }

/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset {
  margin-bottom: 10px; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.3em; }

h1 {
  font-size: 24px; }

h2 {
  font-size: 22px; }

h3 {
  font-size: 18px; }

h4 {
  font-size: 14px; }

/* =============================================================================
   Lists
   ========================================================================== */
ul, ol {
  margin: 0 0 1em 0;
  padding: 0 0 0 40px; }

dd {
  margin: 0 0 0 40px; }

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

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

/*
 * Correct overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden; }

/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0; }

/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
  display: block; }

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button, input {
  line-height: normal; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */
button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible; }

/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

/* Colors for form validity */
input:invalid, textarea:invalid {
  background-color: #f0dddd; }

/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Clearfix */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */ }

.cookie-information {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  width: 100%;
  max-width: 340px;
  padding: 40px;
  position: fixed;
  bottom: -140px;
  left: 20px;
  opacity: 0;
  z-index: 10;
  transition: all ease-out 0.8s; }
  .cookie-information.show {
    bottom: 20px;
    opacity: 1; }
  .cookie-information .cookie-information-text {
    color: #fff; }
  .cookie-information a {
    color: #fff;
    display: inline-block;
    margin-top: 5px; }
  .cookie-information .accept-cookies {
    background: #69803C;
    color: #eee;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center; }

.hero-block-wrapper {
  position: relative;
  height: 100vh; }
  .hero-block-wrapper h1 {
    font-weight: bold;
    font-size: 62px;
    line-height: 1.15em;
    letter-spacing: 0.055em;
    margin-top: 0; }
    @media (max-width: 900px) {
      .hero-block-wrapper h1 {
        font-size: 42px; } }
    @media (max-width: 720px) {
      .hero-block-wrapper h1 {
        font-size: 34px; } }
    @media (max-width: 375px) {
      .hero-block-wrapper h1 {
        font-size: 26px; } }
  .hero-block-wrapper .overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.6) 75%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2; }
  .hero-block-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block; }
  .hero-block-wrapper .slide-item {
    position: relative;
    height: 100vh; }
  .hero-block-wrapper .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: 3; }
    .hero-block-wrapper .hero-content .inner {
      position: relative;
      height: 100%; }
    .hero-block-wrapper .hero-content .content {
      width: 100%;
      position: absolute;
      top: 50%;
      transform: translate(-50%);
      left: 50%;
      padding: 0 2rem;
      border-radius: 5px;
      font-weight: bold;
      font-size: 20px;
      line-height: 27px;
      letter-spacing: 0.07em;
      color: #F9FBF6;
      max-width: 768px; }
  .hero-block-wrapper .hero-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6rem;
    height: 26px;
    width: auto;
    transition: 0.3s;
    z-index: 4; }
    .hero-block-wrapper .hero-arrow:hover {
      bottom: 5.5rem;
      cursor: pointer; }
  .hero-block-wrapper .slick-arrow {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    -webkit-appearance: none;
    border: none;
    text-indent: -9999px;
    width: 20px;
    height: 20px;
    transition: all 200ms ease;
    z-index: 5;
    border-radius: 50%;
    opacity: 0.72;
    background: transparent;
    padding: 1.5rem; }
    .hero-block-wrapper .slick-arrow:hover {
      opacity: 1; }
    .hero-block-wrapper .slick-arrow:after {
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
      position: absolute; }
    .hero-block-wrapper .slick-arrow:focus {
      outline: none; }
  .hero-block-wrapper .slick-prev {
    left: 0;
    transform: translate3d(0, -50%, 0); }
    .hero-block-wrapper .slick-prev:after {
      top: 50%;
      left: 10px;
      transform: translate(50%, -50%) rotate(-135deg); }
  .hero-block-wrapper .slick-next {
    right: 0;
    transform: translate3d(0, -50%, 0); }
    .hero-block-wrapper .slick-next:after {
      top: 50%;
      right: 10px;
      transform: translate(-50%, -50%) rotate(45deg); }

.banner-block-wrapper {
  position: relative;
  height: 627px; }
  .banner-block-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block; }
  .banner-block-wrapper .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%; }
    .banner-block-wrapper .banner-content .inner {
      position: relative;
      height: 100%; }
    .banner-block-wrapper .banner-content .content {
      border-radius: 5px;
      max-width: 553px;
      position: absolute;
      top: 50%;
      left: 2rem;
      transform: translateY(-50%);
      color: #F9FBF6;
      font-size: 18px;
      line-height: 29px; }
      .banner-block-wrapper .banner-content .content.right {
        text-align: right;
        left: inherit;
        right: 2rem; }
      @media (max-width: 720px) {
        .banner-block-wrapper .banner-content .content {
          font-size: 16px;
          left: 1rem; }
          .banner-block-wrapper .banner-content .content.right {
            left: 1rem;
            right: 1rem; } }

.text-image-block-wrapper .content {
  padding-top: 4rem; }
  @media (max-width: 900px) {
    .text-image-block-wrapper .content {
      padding-top: 0; } }

.text-column-block-wrapper .column {
  display: flex; }
  .text-column-block-wrapper .column:last-child {
    justify-content: flex-end; }
    @media (max-width: 900px) {
      .text-column-block-wrapper .column:last-child {
        justify-content: flex-start; } }

.text-column-block-wrapper .content {
  max-width: 500px; }

.project-block-wrapper {
  padding: 2rem 0; }
  .project-block-wrapper .column {
    flex-grow: initial !important; }
  .project-block-wrapper .title {
    font-weight: bold;
    font-size: 26px;
    line-height: 35px;
    margin-bottom: 1rem;
    margin-top: 0; }
  .project-block-wrapper .project-list {
    padding: 2rem 0; }
    .project-block-wrapper .project-list .item {
      position: relative; }
      .project-block-wrapper .project-list .item .image {
        height: 368px;
        background: #eee;
        overflow: hidden;
        margin-bottom: 1rem;
        border-radius: 10px;
        overflow: hidden; }
        .project-block-wrapper .project-list .item .image img {
          height: 100%;
          width: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          display: block;
          -webkit-filter: grayscale(100%);
                  filter: grayscale(100%);
          transition: -webkit-filter ease-in-out .3s;
          transition: filter ease-in-out .3s;
          transition: filter ease-in-out .3s, -webkit-filter ease-in-out .3s; }
          .project-block-wrapper .project-list .item .image img:hover {
            opacity: 1;
            -webkit-filter: grayscale(0);
                    filter: grayscale(0); }
      .project-block-wrapper .project-list .item h3 {
        color: #A8C079;
        font-weight: bold;
        font-size: 18px;
        line-height: 23px;
        letter-spacing: 0.115em;
        text-transform: uppercase; }
      .project-block-wrapper .project-list .item .text {
        font-weight: 500;
        font-size: 18px;
        line-height: 29px; }

.product-list {
  margin: 0 -1rem;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 720px) {
    .product-list {
      margin: 0; } }
  .product-list .product-item {
    flex: 1 1 auto;
    margin: 1rem;
    flex: 0 1 calc(25% - 2rem); }
    @media (max-width: 1113px) {
      .product-list .product-item {
        flex: 0 1 calc(50% - 2rem);
        max-width: 100%; } }
    @media (max-width: 720px) {
      .product-list .product-item {
        flex: 1 1 100%;
        margin: 1rem 0; } }
    .product-list .product-item .image {
      height: 360px;
      border: 1px solid #D4D4D4;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem; }
      .product-list .product-item .image img {
        -o-object-fit: cover;
           object-fit: cover;
        height: 358px;
        width: 100%; }
    .product-list .product-item h3 {
      font-weight: bold;
      font-size: 16px;
      line-height: 22px;
      color: #17201C;
      margin-bottom: 0; }
    .product-list .product-item .text {
      margin-top: 1rem;
      font-weight: normal;
      font-size: 14px;
      line-height: 19px;
      letter-spacing: 0.02em; }
    .product-list .product-item .button {
      margin-top: 1rem; }

.product-category-wrapper, .product-archive-wrapper {
  padding: 4rem 0; }
  .product-category-wrapper .product-list, .product-archive-wrapper .product-list {
    padding: 1rem 0; }

.gallery-block-wrapper .title {
  margin-top: 0; }

.gallery-block-wrapper .image-list.masonry .gallery-row {
  display: flex;
  flex-wrap: wrap; }
  .gallery-block-wrapper .image-list.masonry .gallery-row:nth-child(even) .gallery-column {
    order: 1; }
  .gallery-block-wrapper .image-list.masonry .gallery-row:nth-child(even) .gallery-column:nth-child(even) {
    order: 0; }
  .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column {
    flex: 0 1 45%;
    overflow: hidden; }
    .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column img {
      height: 440px;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block; }
      .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column img:nth-child(even) {
        height: 360px; }
    .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column:nth-child(even) {
      flex: 0 1 55%; }
      .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column:nth-child(even) img {
        height: 800px; }
    @media (max-width: 900px) {
      .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column {
        flex: 0 1 100%; }
        .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column img {
          height: 320px; }
          .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column img:nth-child(even) {
            height: 320px; }
        .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column:nth-child(even) {
          flex: 0 1 100%; }
          .gallery-block-wrapper .image-list.masonry .gallery-row .gallery-column:nth-child(even) img {
            height: 320px; } }

.gallery-block-wrapper .image-list.grid .gallery-row {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem; }
  .gallery-block-wrapper .image-list.grid .gallery-row .gallery-column {
    flex: 0 1 calc(50% - 2rem);
    overflow: hidden;
    margin: 1rem; }
    .gallery-block-wrapper .image-list.grid .gallery-row .gallery-column img {
      height: 616px;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block; }
    @media (max-width: 900px) {
      .gallery-block-wrapper .image-list.grid .gallery-row .gallery-column {
        flex: 0 1 100%; }
        .gallery-block-wrapper .image-list.grid .gallery-row .gallery-column img {
          height: 320px; } }

.contact-block-wrapper .column-3 {
  flex-grow: initial !important; }

.contact-block-wrapper .filter {
  display: flex;
  margin: 0 -1rem;
  padding-bottom: 5rem; }
  @media (max-width: 720px) {
    .contact-block-wrapper .filter {
      flex-wrap: wrap; } }
  .contact-block-wrapper .filter fieldset {
    flex: 0 1 auto;
    margin: 0.5rem 1rem; }
    @media (max-width: 900px) {
      .contact-block-wrapper .filter fieldset {
        flex: 0 1 100%; } }
    @media (max-width: 720px) {
      .contact-block-wrapper .filter fieldset {
        flex: 0 1 100%; } }
    .contact-block-wrapper .filter fieldset button {
      font-size: 14px;
      min-width: auto; }
      @media (max-width: 900px) {
        .contact-block-wrapper .filter fieldset button {
          width: 100%; } }
    .contact-block-wrapper .filter fieldset .mixitup-control-active {
      background: #3A4721; }

.contact-block-wrapper .person {
  padding-bottom: 4rem; }
  .contact-block-wrapper .person .image {
    height: 388px;
    background: #7C7C7C;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem; }
    .contact-block-wrapper .person .image img {
      height: 100%;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block; }
  .contact-block-wrapper .person .name {
    color: #A8C079;
    font-weight: bold;
    font-size: 16px;
    line-height: 36px;
    display: flex;
    align-items: center;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
  .contact-block-wrapper .person .info {
    font-weight: 500;
    font-size: 16px;
    line-height: 36px; }
    .contact-block-wrapper .person .info a {
      color: #171C0D; }

.job-block-wrapper .column-3 {
  flex-grow: initial !important;
  background: #f0f0f0;
  border-radius: 6px; }

.job-block-wrapper .main-title {
  font-weight: bold;
  font-size: 25.92px;
  line-height: 35px;
  margin-bottom: 4rem;
  margin-top: 0; }

.job-block-wrapper .job-list {
  padding: 2rem 0; }
  .job-block-wrapper .job-list .item {
    padding: 2rem 1rem;
    min-height: 510px;
    padding-bottom: 6rem;
    position: relative; }
    .job-block-wrapper .job-list .item .title {
      font-weight: bold;
      font-size: 18px;
      line-height: 23px; }
    .job-block-wrapper .job-list .item .bottom {
      position: absolute;
      bottom: 2rem;
      left: 1rem;
      right: 1rem; }
      .job-block-wrapper .job-list .item .bottom .link-arrow {
        display: block;
        color: #3A4721;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding-right: 2rem;
        position: relative;
        transition: 0.2s; }
        .job-block-wrapper .job-list .item .bottom .link-arrow:after {
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%) rotate(45deg);
          content: "";
          border-style: solid;
          color: #171C0D;
          border-width: 2px 2px 0 0;
          content: '';
          display: inline-block;
          height: 16px;
          width: 16px;
          vertical-align: top;
          transition: 0.2s; }
        .job-block-wrapper .job-list .item .bottom .link-arrow:hover {
          color: #A8C079; }
          .job-block-wrapper .job-list .item .bottom .link-arrow:hover:after {
            color: #A8C079; }

.news-block-wrapper .column-4 {
  flex-grow: initial !important; }

.news-block-wrapper .news-list {
  padding: 2rem 0; }
  .news-block-wrapper .news-list .item {
    padding-bottom: 6rem;
    position: relative;
    margin-bottom: 4rem; }
    .news-block-wrapper .news-list .item .image {
      height: 388px;
      background: #7C7C7C;
      overflow: hidden;
      margin-bottom: 1rem; }
      .news-block-wrapper .news-list .item .image img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        display: block; }
    .news-block-wrapper .news-list .item .title {
      color: #3A4721;
      font-weight: 500;
      font-size: 25.92px;
      line-height: 46px;
      margin-bottom: 1.5rem; }
    .news-block-wrapper .news-list .item .date {
      color: #A8C079;
      font-weight: 500;
      font-size: 18px;
      line-height: 23px;
      letter-spacing: 0.115em;
      text-transform: uppercase;
      margin-bottom: 1.5rem; }
    .news-block-wrapper .news-list .item .bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0; }

.sub-block-wrapper .column-3 {
  flex-grow: initial !important; }

.sub-block-wrapper .item .link-arrow {
  display: block;
  color: #3A4721;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.115em;
  text-transform: uppercase;
  padding-right: 1.5rem;
  position: relative;
  transition: 0.2s;
  margin-bottom: 1rem; }
  .sub-block-wrapper .item .link-arrow:after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    content: "";
    border-style: solid;
    color: #A8C079;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 10px;
    width: 10px;
    vertical-align: top;
    transition: 0.2s; }
  .sub-block-wrapper .item .link-arrow:hover {
    color: #A8C079; }
    .sub-block-wrapper .item .link-arrow:hover:after {
      color: #A8C079; }
  @media (max-width: 1113px) {
    .sub-block-wrapper .item .link-arrow {
      font-size: 16px;
      letter-spacing: 0; } }
  @media (max-width: 900px) {
    .sub-block-wrapper .item .link-arrow {
      font-size: 18px;
      letter-spacing: 0.115em; } }

.sub-block-wrapper .item .image {
  height: 272px;
  border-radius: 10px;
  background: #7c7c7c;
  overflow: hidden; }
  .sub-block-wrapper .item .image img {
    display: block;
    height: 100%;
    width: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover; }

.text-block-wrapper .content {
  max-width: 750px; }

.qoute-block-wrapper .column {
  flex-grow: initial !important; }

.qoute-block-wrapper .item {
  background: #A8C079;
  padding: 2rem;
  border-radius: 10px; }
  .qoute-block-wrapper .item .title {
    font-size: 18px;
    line-height: 23px;
    font-weight: bold;
    display: flex;
    align-items: center;
    letter-spacing: 0.115em;
    text-transform: uppercase;
    color: #F9FBF6;
    margin-bottom: 1.5rem;
    margin-top: 0; }
  .qoute-block-wrapper .item .text-display {
    min-height: 124px; }
  .qoute-block-wrapper .item .text-short {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0C0E07;
    min-height: 44px;
    max-width: 391px; }
  .qoute-block-wrapper .item .text-display, .qoute-block-wrapper .item .text-more {
    padding: 0.5rem 0; }
  .qoute-block-wrapper .item .text-more {
    display: none; }
  .qoute-block-wrapper .item .expand {
    margin-top: 1.5rem;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0C0E07; }
    .qoute-block-wrapper .item .expand .less {
      display: none; }
    .qoute-block-wrapper .item .expand:hover {
      cursor: pointer; }

.qoute-block-wrapper .content {
  max-width: 500px; }

body .umbraco-forms-submitmessage {
  font-size: 24px;
  font-weight: bold;
  padding: 4rem 0;
  display: block; }

body input, body select, body textarea {
  width: 100%; }

body .umbraco-forms-form {
  width: 100%;
  padding: 0; }

body .umbraco-forms-page {
  max-width: 526px; }
  body .umbraco-forms-page .umbraco-forms-indicator {
    color: #69803C; }
  body .umbraco-forms-page fieldset {
    margin-bottom: 0;
    padding: 0; }
  body .umbraco-forms-page .umbraco-forms-container {
    padding: 0; }
  body .umbraco-forms-page .umbraco-forms-field {
    margin-bottom: 2rem; }
    body .umbraco-forms-page .umbraco-forms-field label {
      margin-bottom: 1rem;
      font-weight: 600;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: 0.1em;
      text-transform: uppercase; }
  body .umbraco-forms-page textarea {
    height: 8rem; }
  body .umbraco-forms-page .umbraco-forms-navigation .col-md-12 {
    padding-left: 0;
    padding-right: 0;
    float: none; }
  body .umbraco-forms-page .umbraco-forms-navigation button, body .umbraco-forms-page .umbraco-forms-navigation input[type="button"], body .umbraco-forms-page .umbraco-forms-navigation input[type="reset"], body .umbraco-forms-page .umbraco-forms-navigation input[type="submit"] {
    text-align: center;
    display: inline-block;
    padding: 20px 30px;
    background: #69803C;
    font-size: 14px;
    color: #FFF;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    box-shadow: none;
    width: auto;
    min-width: 301px;
    transition: 0.3s;
    letter-spacing: 0.03em;
    text-transform: uppercase; }
    body .umbraco-forms-page .umbraco-forms-navigation button:hover, body .umbraco-forms-page .umbraco-forms-navigation input[type="button"]:hover, body .umbraco-forms-page .umbraco-forms-navigation input[type="reset"]:hover, body .umbraco-forms-page .umbraco-forms-navigation input[type="submit"]:hover {
      opacity: 0.85; }
    @media (max-width: 900px) {
      body .umbraco-forms-page .umbraco-forms-navigation button, body .umbraco-forms-page .umbraco-forms-navigation input[type="button"], body .umbraco-forms-page .umbraco-forms-navigation input[type="reset"], body .umbraco-forms-page .umbraco-forms-navigation input[type="submit"] {
        width: 100%; } }
  body .umbraco-forms-page input.text, body .umbraco-forms-page input.title, body .umbraco-forms-page textarea, body .umbraco-forms-page select {
    background: #F0F0F0;
    padding: 0.5rem;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    width: 100%;
    max-width: 100% !important;
    border-radius: 6px; }
    body .umbraco-forms-page input.text:focus, body .umbraco-forms-page input.title:focus, body .umbraco-forms-page textarea:focus, body .umbraco-forms-page select:focus {
      border: 1px solid #777; }

.slider-block-wrapper {
  position: relative;
  overflow: hidden; }
  .slider-block-wrapper .block-slider {
    position: relative;
    overflow: hidden; }
    .slider-block-wrapper .block-slider .slide-item {
      height: 712px;
      position: relative; }
      .slider-block-wrapper .block-slider .slide-item img {
        position: absolute;
        right: 0;
        top: 0;
        left: 0;
        bottom: 0;
        -o-object-fit: cover;
           object-fit: cover;
        height: 100%;
        width: 100%; }
      .slider-block-wrapper .block-slider .slide-item .inner {
        position: relative;
        height: 100%; }
      .slider-block-wrapper .block-slider .slide-item:after {
        content: "";
        background: linear-gradient(90deg, rgba(229, 229, 229, 0.7) 10%, rgba(23, 28, 13, 0) 45%, rgba(23, 28, 13, 0) 60%, rgba(229, 229, 229, 0.5) 100%);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2; }
        @media (max-width: 900px) {
          .slider-block-wrapper .block-slider .slide-item:after {
            background: linear-gradient(180deg, rgba(229, 229, 229, 0.5) 0%, rgba(23, 28, 13, 0) 45%, rgba(23, 28, 13, 0) 60%, rgba(229, 229, 229, 0.5) 100%); } }
  .slider-block-wrapper .content {
    position: absolute;
    top: 20%;
    z-index: 50;
    max-width: 562px; }
    @media (max-width: 900px) {
      .slider-block-wrapper .content {
        top: 10%; } }
  .slider-block-wrapper .slick-arrow {
    position: absolute;
    -webkit-appearance: none;
    border: none;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: 0 0 0 lightgray;
    transition: all 200ms ease;
    padding: 1rem 4rem;
    z-index: 5;
    border-radius: 50%;
    opacity: 1;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: inherit; }
    .slider-block-wrapper .slick-arrow:hover {
      opacity: 0.8; }
    .slider-block-wrapper .slick-arrow:after {
      content: "";
      display: block;
      width: 24px;
      height: 24px;
      border-top: 3px solid #A8C079;
      border-right: 3px solid #A8C079;
      position: absolute; }
    .slider-block-wrapper .slick-arrow:focus {
      outline: none; }
  .slider-block-wrapper .prev {
    left: 0;
    bottom: 10%; }
    @media (max-width: 900px) {
      .slider-block-wrapper .prev {
        top: initial;
        bottom: 5%;
        transform: none; } }
    .slider-block-wrapper .prev:after {
      left: 0;
      top: 50%;
      transform: translate(100%, -50%) rotate(-135deg); }
  .slider-block-wrapper .next {
    right: 0;
    transform: translateY(-50%);
    top: 50%; }
    @media (max-width: 900px) {
      .slider-block-wrapper .next {
        top: initial;
        bottom: 15%;
        transform: none; } }
    .slider-block-wrapper .next:after {
      right: 0;
      top: 50%;
      transform: translate(-100%, -50%) rotate(45deg); }
  .slider-block-wrapper .slider-nav {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    z-index: 3; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  height: 140px; }
  .site-header.background, .site-header.scrolled {
    background: #171C0D; }
    .site-header.background .info-bar-desktop, .site-header.scrolled .info-bar-desktop {
      background: rgba(0, 0, 0, 0.2); }
  .site-header .inner {
    display: flex;
    height: 100%;
    padding: 2.5rem 2rem 1rem 2rem; }
  .site-header .info-bar-phone {
    display: none; }
  .site-header .info-bar-desktop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2rem; }
    .site-header .info-bar-desktop .inner {
      padding: 0 2rem; }
    .site-header .info-bar-desktop a, .site-header .info-bar-desktop span {
      font-size: 14px;
      line-height: 2rem;
      color: #FFF;
      margin-right: 2rem; }
      .site-header .info-bar-desktop a img, .site-header .info-bar-desktop span img {
        height: 14px;
        width: auto;
        margin-right: 0.5rem;
        margin-bottom: -2px; }
  .site-header .logo {
    flex: 0 1 337px;
    display: flex;
    align-items: center; }
    @media (max-width: 720px) {
      .site-header .logo {
        flex: 0 1 220px; } }
  .site-header .main-navigation {
    flex: 1 1 auto;
    align-self: flex-end;
    text-align: right; }
    .site-header .main-navigation ul {
      list-style: none; }
    .site-header .main-navigation li {
      display: inline-block;
      margin-left: 2rem;
      position: relative; }
      .site-header .main-navigation li a {
        display: block;
        color: #FFF;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center; }
        .site-header .main-navigation li a:hover {
          opacity: 0.8; }
      .site-header .main-navigation li.active > a {
        color: #69803C; }
    .site-header .main-navigation .top-menu li a {
      font-weight: bold;
      font-size: 14px;
      line-height: 25px;
      letter-spacing: 0.03em;
      text-transform: uppercase; }
    .site-header .main-navigation .main-menu {
      margin-top: 0.5rem; }
      .site-header .main-navigation .main-menu li {
        height: 40px; }
        .site-header .main-navigation .main-menu li.has-children {
          padding-right: 1.3rem; }
        .site-header .main-navigation .main-menu li a {
          font-weight: bold;
          font-size: 18px;
          line-height: 40px; }
        .site-header .main-navigation .main-menu li .arrow {
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%); }
          .site-header .main-navigation .main-menu li .arrow img {
            height: 10px; }
        @media (min-width: 900px) {
          .site-header .main-navigation .main-menu li:hover > .sub-menu {
            display: block; } }
    .site-header .main-navigation .sub-menu {
      display: none;
      position: absolute;
      top: 40px;
      right: -0.5rem;
      text-align: left;
      padding: 1rem 0; }
      .site-header .main-navigation .sub-menu.open {
        display: block; }
      .site-header .main-navigation .sub-menu li {
        padding: 1rem 0.5rem;
        margin: 0;
        background: rgba(88, 87, 86, 0.8);
        height: auto; }
        .site-header .main-navigation .sub-menu li.active > a {
          color: #A8C079; }
        .site-header .main-navigation .sub-menu li a {
          width: 225px;
          justify-content: left;
          font-weight: 500;
          line-height: 1em;
          font-size: 14px;
          line-height: 19px;
          letter-spacing: 0.03em;
          text-transform: uppercase; }
  .site-header .nav-icon {
    display: none; }

@media (max-width: 900px) {
  .site-header {
    height: 90px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1); }
    .site-header .inner {
      padding: 1rem; }
    .site-header .info-bar-desktop {
      display: none; }
    .site-header .info-bar-phone {
      padding: 1rem 0 3rem 0;
      display: block; }
      .site-header .info-bar-phone a, .site-header .info-bar-phone span {
        font-size: 14px;
        line-height: 1em;
        color: #FFF;
        display: block;
        padding: 1rem 1.5rem;
        width: 100%; }
        .site-header .info-bar-phone a img, .site-header .info-bar-phone span img {
          height: 14px;
          width: auto;
          margin-right: 0.5rem;
          margin-bottom: -2px; }
    .site-header .logo {
      max-width: 280px; }
    .site-header .main-navigation {
      width: 100%;
      display: block;
      height: calc(100vh - 90px);
      overflow-y: auto;
      position: fixed;
      top: 90px;
      z-index: 9998;
      right: -100%;
      transition: right ease-in-out .3s;
      background: #2d2d2d;
      text-align: left; }
      .site-header .main-navigation.active {
        right: 0; }
      .site-header .main-navigation .main-menu {
        margin-top: 0;
        overflow: initial; }
        .site-header .main-navigation .main-menu li.has-children {
          padding-right: 0; }
        .site-header .main-navigation .main-menu li .arrow {
          width: 4rem;
          right: 0;
          top: 0;
          transform: none;
          height: 65px;
          display: flex;
          justify-content: center;
          align-items: center;
          position: absolute; }
      .site-header .main-navigation .sub-menu {
        padding: 0;
        margin: 0;
        position: initial;
        right: inherit;
        top: inherit; }
        .site-header .main-navigation .sub-menu li {
          padding: 0;
          opacity: 1; }
      .site-header .main-navigation ul {
        padding: 0;
        overflow: hidden;
        width: 100%;
        margin-top: 2rem; }
      .site-header .main-navigation li {
        width: 100%;
        display: block;
        padding: 0;
        height: auto !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-left: 0; }
        .site-header .main-navigation li a {
          font-size: 14px !important;
          line-height: 25px !important;
          text-transform: uppercase;
          width: 100%;
          display: block;
          padding: 1.25rem 1.5rem;
          background-color: transparent;
          position: relative; }
    .site-header .nav-icon {
      width: 24px;
      position: absolute;
      right: 1.5rem;
      top: 25px;
      display: block; }
      .site-header .nav-icon:hover {
        cursor: pointer; }
      .site-header .nav-icon:after, .site-header .nav-icon:before, .site-header .nav-icon div {
        background-color: #FFF;
        content: '';
        display: block;
        height: 2px;
        margin: 6px 0;
        transition: all .2s ease-in-out; }
      .site-header .nav-icon.active:before {
        transform: translateY(8px) rotate(135deg); }
      .site-header .nav-icon.active:after {
        transform: translateY(-8px) rotate(-135deg); }
      .site-header .nav-icon.active div {
        transform: scale(0); } }

body {
  color: #171C0D;
  font-size: 16px;
  line-height: 36px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 1rem;
  margin-bottom: 1em; }

h1, h2 {
  font-weight: bold;
  font-size: 42px;
  line-height: 1.15em;
  letter-spacing: -0.01em; }
  @media (max-width: 720px) {
    h1, h2 {
      font-size: 34px; } }
  @media (max-width: 375px) {
    h1, h2 {
      font-size: 26px; } }

h3 {
  font-size: 26px; }
  @media (max-width: 900px) {
    h3 {
      font-size: 22px; } }

h4 {
  font-size: 20px;
  margin-bottom: 0.5em; }

.green-text {
  color: #A8C079; }

.dark-green-text {
  color: #69803C; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

*:focus {
  outline: none; }

a {
  text-decoration: none;
  color: #69803C;
  transition: 0.3s; }
  a img {
    opacity: 1; }
  a:hover {
    color: #A8C079; }
    a:hover img {
      opacity: 0.7;
      transition: 0.3s; }
  a:focus {
    text-decoration: none; }

.pre {
  font-weight: 500;
  font-size: 25.92px;
  line-height: 46px;
  color: #3A4721;
  margin-bottom: 3rem;
  display: block; }

.breadcrumbs {
  background: #3A4721;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.03em;
  color: #F9FBF6; }
  @media (max-width: 720px) {
    .breadcrumbs {
      display: none; } }
  .breadcrumbs .inner {
    padding: 1rem 2rem; }
    @media (max-width: 900px) {
      .breadcrumbs .inner {
        padding: 1rem; } }
  .breadcrumbs .active {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold; }
  .breadcrumbs a {
    color: #FFF;
    transition: 0.3s; }
    .breadcrumbs a:hover {
      opacity: 0.8; }

.page-content {
  min-height: 100px;
  overflow: hidden; }
  .page-content.margin {
    margin-top: 140px; }

img {
  max-width: 100%; }

.block {
  padding-top: 2rem;
  padding-bottom: 2rem; }
  .block:first-child {
    padding-top: 0; }

.inner {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  margin: 0 auto;
  padding: 2rem; }
  @media (max-width: 900px) {
    .inner {
      padding: 1rem; } }
  .inner .columns {
    display: flex;
    margin: -1rem;
    flex-wrap: wrap; }
    @media (max-width: 900px) {
      .inner .columns {
        flex-wrap: wrap; } }
    .inner .columns .column {
      flex: 1 1 calc(50% - 2rem);
      margin: 1rem;
      padding: 1rem 0; }
      @media (max-width: 900px) {
        .inner .columns .column {
          flex: 1 1 100%; } }
    .inner .columns .column-12 {
      flex: 1 1 100%;
      margin: 1rem;
      padding: 0.5rem 0; }
    .inner .columns .column-4 {
      flex: 1 1 calc(33.33% - 2rem);
      margin: 1rem;
      padding: 0.5rem 0; }
      @media (max-width: 900px) {
        .inner .columns .column-4 {
          flex: 1 1 calc(50% - 2rem); } }
      @media (max-width: 720px) {
        .inner .columns .column-4 {
          flex: 1 1 100%; } }
    .inner .columns .column-3 {
      flex: 1 1 calc(25% - 2rem);
      margin: 1rem;
      padding: 0.5rem 0; }
      @media (max-width: 900px) {
        .inner .columns .column-3 {
          flex: 1 1 calc(50% - 2rem); } }
      @media (max-width: 720px) {
        .inner .columns .column-3 {
          flex: 1 1 100%; } }
    .inner .columns.reverse-order .column:nth-child(1) {
      order: 2; }
    .inner .columns.reverse-order .column:nth-child(2) {
      order: 1; }

.site-footer {
  color: #F9FBF6;
  position: relative;
  padding: 4rem 0 0 0;
  font-size: 16px;
  line-height: 36px;
  margin-top: 6rem; }
  @media (max-width: 900px) {
    .site-footer {
      padding: 4rem 0; } }
  .site-footer .inner.top {
    min-height: 381px; }
  .site-footer .overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.6) 75%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2; }
  .site-footer .logo img {
    transform: translateY(-25%); }
  .site-footer a {
    color: #F9FBF6; }
  .site-footer .background-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%; }
  .site-footer .inner {
    position: relative;
    z-index: 3; }
  .site-footer h4 {
    color: #A8C079;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.115em;
    text-transform: uppercase; }
  .site-footer ul {
    padding: 0 0 4rem 0;
    margin: 0;
    list-style: none; }
    @media (max-width: 900px) {
      .site-footer ul {
        padding: 0 0 0 0; } }
    .site-footer ul li a {
      color: #F9FBF6; }

.article-wrapper {
  padding-top: 4rem; }
  .article-wrapper .top {
    padding-bottom: 0; }
    .article-wrapper .top .date {
      color: #A8C079;
      font-weight: 500;
      font-size: 18px;
      line-height: 23px;
      letter-spacing: 0.115em;
      text-transform: uppercase;
      margin-top: 2rem; }
  .article-wrapper .article-title {
    margin-bottom: 0; }

